photographingandstuff.blogspot.com
Photographing and stuff: Barcelona - Tarragona
http://photographingandstuff.blogspot.com/2014/12/barcelona-tarragona.html
Photos of everyday's wonders. Part of the Developing and stuff. Tuesday, December 30, 2014. Subscribe to: Post Comments (Atom). Ignore a file globally in git. Set up a global .gitignore: git config - global core.excludesfile /.gitignore global Put the file name in the global gitignore file: echo .DS Store . I've recently been using Fiverr to explore making money as a Freelancer using my web development skills. Here's a little guide I wrote as I went along, ex. Mac OS X setup for Web Development.
photographingandstuff.blogspot.com
Photographing and stuff: Kiel
http://photographingandstuff.blogspot.com/2013/09/kiel.html
Photos of everyday's wonders. Part of the Developing and stuff. Monday, September 30, 2013. Subscribe to: Post Comments (Atom). Ignore a file globally in git. Set up a global .gitignore: git config - global core.excludesfile /.gitignore global Put the file name in the global gitignore file: echo .DS Store . I've recently been using Fiverr to explore making money as a Freelancer using my web development skills. Here's a little guide I wrote as I went along, ex. Mac OS X setup for Web Development.
developingandrails.com
Developing and Rails: A Social Network in Rails: Comments
http://www.developingandrails.com/2015/01/a-social-network-in-rails-comments.html
Ruby, Ruby on Rails, and everything around it. Part of the Developing and stuff. A Social Network in Rails: Comments. This post is part of an ongoing feature about creating a social network in Rails. This time, we're adding comments to our Photo model, as presented in the elegant permalinks. Post First of all, I looked for a gem to do this job for us, and found acts as commentable. Its setup goes something like this:. Add the gem to our Gemfile, and run `bundle install`:. Gem 'acts as commentable'. Now w...
developingandrails.com
Developing and Rails: A Social Network in Rails: 5-minute setup with RVM and Railsbricks
http://www.developingandrails.com/2015/01/a-social-network-in-rails-5-minute.html
Ruby, Ruby on Rails, and everything around it. Part of the Developing and stuff. A Social Network in Rails: 5-minute setup with RVM and Railsbricks. This post is part of an ongoing feature about creating a social network in Rails. Here we'll set up the Rails app for our photo social network, codenamed Piccy. No fumbling around with different ruby version managers and complex Rails setups: RVM Railsbricks, done in 5 minutes:. Install rvm following the instructions on its website. 1 rake some task (default...
developingandrails.com
Developing and Rails: Freelancing with Fiverr
http://www.developingandrails.com/2015/06/freelancing-with-fiverr.html
Ruby, Ruby on Rails, and everything around it. Part of the Developing and stuff. I've recently been using Fiverr to explore making money as a Freelancer using my web development skills. Here's a little guide I wrote as I went along, explaining the process. Get aquainted with Fiverr. Create one gig showcasing your skills, for every skillset you have, you can use this one. As template. Important things to point out:. Web technologies HTML, CSS, JS. Backend skills: Ruby, Python, PHP, MySQL, PostgreSQL.
photographingandstuff.blogspot.com
Photographing and stuff: Hamburg City Tour
http://photographingandstuff.blogspot.com/2013/08/hamburg-city-tour.html
Photos of everyday's wonders. Part of the Developing and stuff. Tuesday, August 13, 2013. Here are some pictures I took of Hamburg while doing the Sandemans New Hamburg Tour. Subscribe to: Post Comments (Atom). Ignore a file globally in git. Set up a global .gitignore: git config - global core.excludesfile /.gitignore global Put the file name in the global gitignore file: echo .DS Store . Mac OS X setup for Web Development. Get 40 € worth of free food with UberEats (Barcelona only).
photographingandstuff.blogspot.com
Photographing and stuff: Paris, Normandie, Beauvais…
http://photographingandstuff.blogspot.com/2013/09/paris-normandie-beauvais.html
Photos of everyday's wonders. Part of the Developing and stuff. Tuesday, September 17, 2013. Paris, Normandie, Beauvais…. Subscribe to: Post Comments (Atom). Ignore a file globally in git. Set up a global .gitignore: git config - global core.excludesfile /.gitignore global Put the file name in the global gitignore file: echo .DS Store . I've recently been using Fiverr to explore making money as a Freelancer using my web development skills. Here's a little guide I wrote as I went along, ex.
developingandrails.com
Developing and Rails: Develop your app on the cloud with the Nitrous.io web IDE
http://www.developingandrails.com/2015/03/setup-your-rails-app-on-nitrousio.html
Ruby, Ruby on Rails, and everything around it. Part of the Developing and stuff. Develop your app on the cloud with the Nitrous.io web IDE. Seeing how running Rails on Windows. Is not everybody's cup of tea, here's a quick guide on how to run your app on Nitrous.io, a cloud development box that you can access from wherever you have a browser. Yes, even Chrome OS. This guide uses a Ruby on Rails app as an example, but Nitrous.io supports NodeJS, Python/Django, Go, PHP and Meteor apps out of the box. Devel...
developingandrails.com
Developing and Rails: API authentication with devise_token_auth
http://www.developingandrails.com/2015/02/api-authentication-with-devisetokenauth.html
Ruby, Ruby on Rails, and everything around it. Part of the Developing and stuff. API authentication with devise token auth. This post is part of an ongoing feature about creating a social network in Rails. Any modern Rails web app will need an API to power mobile and/or desktop clients, and maybe even a SPA. Later on. The devise token auth. We start on our. Gem 'devise' gem 'devise token auth' # Token based authentication for Rails JSON APIs gem 'omniauth' # required for devise token auth. Finally, the r...