This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --get core.safecrlf //outputs current setting | |
git config core.safecrlf [false|true] //turns it [on|off] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dscacheutil -flushcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "rubygems" | |
require "awesome_print" | |
Pry.print = proc { |output, value| output.puts value.ai } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 0, | |
"name": "Mccoy Craig", | |
"gender": "male", | |
"tags": [ | |
"ut", | |
"consequat", | |
"laboris" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'json' | |
require 'pry' | |
require 'csv' | |
require 'open-uri' | |
def parse_movie_data(data) | |
JSON.parse(data) | |
end | |
def populate_csv(movies, filename) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Grade | |
attr_reader :score | |
def initialize(score) | |
@score = score | |
end | |
end | |
class Student |