Skip to content

Instantly share code, notes, and snippets.

View stuartpalmer's full-sized avatar

Stuart Palmer stuartpalmer

View GitHub Profile
@stuartpalmer
stuartpalmer / rails.vim
Last active April 12, 2017 18:01
Color coding for rails logs with timestamps (based on commit 09ffc844)
" autoload/rails.vim
" Author: Tim Pope <http://tpo.pe/>
" Install this file as autoload/rails.vim.
if exists('g:autoloaded_rails') || &cp
finish
endif
let g:autoloaded_rails = '5.2'
@stuartpalmer
stuartpalmer / gist:5541165
Last active December 17, 2015 03:09
Questions and comments about Practical Object Oriented Development with Ruby by Sandi Metz

Comments

I have had some of the most amazing revelations while reading this book! I now understand why my code gets so entangled even though I do create objects and try to respect boundaries I constantly fight code changes that ripple throughout the application. I have been refactoring like crazy!

Chapter 7
"The previous chapter ended on a high note, with code that looked so promising you may be wondering where it's been all your life." YES!!!

Chapter 2
"The future is uncertain and you will never know less than you know right now." I think you need to emphasize this more!