Skip to content

Instantly share code, notes, and snippets.

My only previous exposure to the development world fell within a waterfall-style format. It has been inspiring to learn about the Agile method and the ways in which Substantial and other forward-thinking development teams work to achieve their goals and solve problems. It is exciting to be learning about working in this way and integrating the principles into my own development practices.

The Agile method provides solutions to some major problems that are encountered in a software development environment. Here are a few of the problems that I have noticed.

Problem no.1 : Trying to Solve Too Many Problems at Once

Planning out our ideas for our Midterm project has been a fantastic show of how an unknowing client/person can try to do ALL OF THE THINGS and set far too large of a scope for a project. In the beginning, we wanted to develop an tool that could be used between personal trainers/nutritionists/wellness physicians and their clients/patients to be used as a wellness plan tracking system. It woul

// Node.js CheatSheet.
// Download the Node.js source code or a pre-built installer for your platform, and start developing today.
// Download: http://nodejs.org/download/
// More: http://nodejs.org/api/all.html
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
class PinsController < ApplicationController
skip_before_filter :verify_authenticity_token
before_filter :cors_preflight_check
after_filter :cors_set_access_control_headers
before_filter :authenticate_user!, except: [:index]
before_action :set_pin, only: [:show, :edit, :update, :destroy]
# For all responses in this controller, return the CORS access control headers.
…or create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/nileshlg2003/picmeal.git
git push -u origin master
…or push an existing repository from the command line
gem install rails-api
gem install rest-client
create controller/api/v1 folders
move controller.rb to /v1 folder
add namespace to routes.rb as follows,
namespace :api do
namespace :v1 do
resources :notes
@nileshlg2003
nileshlg2003 / gist:2fdaf5a8f928874597e4
Created September 10, 2014 18:55
ruby on rails errors and solution
Link for installing ImageMagick on windows:
http://codeofalice.com/code/installing-rmagick-on-windows-7/