Skip to content

Instantly share code, notes, and snippets.

View jboursiquot's full-sized avatar
👾

Johnny Boursiquot jboursiquot

👾
View GitHub Profile
@jboursiquot
jboursiquot / stop-git-clrf-warnings
Created March 19, 2013 22:23
Turning on/off Git's CRLF warnings
git config --get core.safecrlf //outputs current setting
git config core.safecrlf [false|true] //turns it [on|off]
@jboursiquot
jboursiquot / mlk-a-time-to-break-silence-excerp
Last active December 15, 2015 19:19
Motivation to "do the work." An excerpt from MLK's A Time to Break Silence speech.
We are now faced with the fact, my friends, that tomorrow is now.
We are confronted with the fierce urgency of now.
In this unfolding connundrum of life and history, there is such a thing as being too late.
Procrastination is still the thief of time.
Life often leaves us bare, naked and dejected with a lost opportunity.
The tide in the affairs of men does not remain at flood--it ebbs.
We may cry out desperately for time to pause in her passage, but time is adamant to every plea and rushes on.
Over the bleached bones and jumbled residues of numerous civilizations are written the pathetic words, "Too late."
Martin Luther King
@jboursiquot
jboursiquot / macosx-clear-cache
Created April 18, 2013 19:46
Clears Mac OS X DNS cache
dscacheutil -flushcache
@jboursiquot
jboursiquot / Object.blank.rb
Created June 21, 2013 13:38
Monkey patch from activesupport 3.1.1 to get objects to respond to blank? method
unless Object.new.respond_to? :blank?
class Object
# An object is blank if it's false, empty, or a whitespace string.
# For example, "", " ", +nil+, [], and {} are all blank.
#
# This simplifies:
#
# if address.nil? || address.empty?
#
# ...to:
@jboursiquot
jboursiquot / zsh-rvm-ruby
Created June 29, 2013 23:07
Ensure rvm sets the ruby version in use in new zsh terminal windows
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
require "rubygems"
require "awesome_print"
Pry.print = proc { |output, value| output.puts value.ai }
[
{
"id": 0,
"name": "Mccoy Craig",
"gender": "male",
"tags": [
"ut",
"consequat",
"laboris"
],
{"dates":{"minimum":"2013-11-26","maximum":"2013-12-17"},"page":1,"results":[{"adult":false,"backdrop_path":"/h5FMMrwFkRUJeT3q5o3wqDHTQa5.jpg","id":172803,"original_title":"Hours","release_date":"2013-12-12","poster_path":"/khFmIOeQuKbftpOTlqTFWsIcAEK.jpg","popularity":38.5141001335841,"title":"Hours","vote_average":6.0,"vote_count":5},{"adult":false,"backdrop_path":null,"id":237413,"original_title":"The Snow Queen","release_date":"2013-11-30","poster_path":"/hFQCeqOdZrzMaJl4mFgTSqpaNMI.jpg","popularity":9.262148,"title":"The Snow Queen","vote_average":10.0,"vote_count":1},{"adult":false,"backdrop_path":"/o2AIvl0PKLoCJq19sqRIYLLrNO7.jpg","id":57158,"original_title":"The Hobbit: The Desolation of Smaug","release_date":"2013-12-13","poster_path":"/ouIvgaSFqBMMailxU9zZiVIXXeV.jpg","popularity":7.63894019578941,"title":"The Hobbit: The Desolation of Smaug","vote_average":6.7,"vote_count":60},{"adult":false,"backdrop_path":"/mdlZZZtSPTeeFiWW8D1WV73zyBt.jpg","id":109445,"original_title":"Frozen","release_date":"201
require 'json'
require 'pry'
require 'csv'
require 'open-uri'
def parse_movie_data(data)
JSON.parse(data)
end
def populate_csv(movies, filename)
class Grade
attr_reader :score
def initialize(score)
@score = score
end
end
class Student