#Programming Manifesto
##Books
Ruby
- Learn to Program by Chris Pine
- The Well-Grounded Rubyist by David Black
- Eloquent Ruby by Russ Olsen
- Practical Object-Oriented Design in Ruby by Sandi Metz
| #user nobody; | |
| #Defines which Linux system user will own and run the Nginx server | |
| worker_processes 1; | |
| #Referes to single threaded process. Generally set to be equal to the number of CPUs or cores. | |
| #error_log logs/error.log; #error_log logs/error.log notice; | |
| #Specifies the file where server logs. |
| # Allow some helpful debugging of localization issues. | |
| # You can see translations in the UI by adding the following (or like it) to your CSS. | |
| # .translation_missing { background-color: red; color: white !important; } | |
| # .translation_fallback { background-color: green; color: white !important; } | |
| # | |
| # You will also need to have the following in your development group in your Gemfile: | |
| # gem 'term-ansicolor' | |
| # | |
| # To turn this off, change this to false. | |
| LOG_LOCALIZATION_ERRORS = true unless defined?(LOG_LOCALIZATION_ERRORS) |
#Programming Manifesto
##Books
Ruby
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |