This file contains hidden or 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
[{"female_workers":"45,462","total_workers":"102,749","male_earnings":"$854","male_workers":"57,286","female_earnings":"$691","total_earnings":"$768","label":"Total, full-time wage and salary workers"},{"label":""},{"female_workers":"21,059","total_workers":"40,984","male_earnings":"1,328","male_workers":"19,926","female_earnings":"951","total_earnings":"1,108","label":"Management, professional, and related occupations"},{"female_workers":"7,869","total_workers":"16,991","male_earnings":"1,387","male_workers":"9,121","female_earnings":"993","total_earnings":"1,171","label":"Management, business, and financial operations occupations"},{"female_workers":"4,765","total_workers":"11,547","male_earnings":"1,428","male_workers":"6,783","female_earnings":"1,036","total_earnings":"1,248","label":"Management occupations"},{"female_workers":"265","total_workers":"1,004","male_earnings":"2,275","male_workers":"739","female_earnings":"1,730","total_earnings":"2,060","label":"Chief executives"},{"female_workers":"278","to |
This file contains hidden or 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
Compact | |
Fast | |
Fine grained | |
Granular | |
Grip | |
Hard | |
Hard packed | |
Hard packed variable | |
Heavy | |
Icy |
This file contains hidden or 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
#!/usr/bin/env ruby | |
# ruby 1.8 hash (rocket) syntax | |
# this version goes out to @A_L and all the => homies | |
# Usage: | |
# git clog # prints | |
# git clog -w # writes | |
# | |
# https://gist.github.com/2880525 |
This file contains hidden or 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
#!/usr/bin/env ruby | |
# Usage: | |
# git clog # prints | |
# git clog -w # writes | |
# | |
# https://gist.github.com/2880525 | |
module Clog | |
extend self |
This file contains hidden or 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
execute "gemrc" do | |
action :run | |
command "echo 'gem: --no-ri --no-rdoc' > /root/.gemrc" | |
end | |
This file contains hidden or 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
var url = window.location.href; | |
var matched = url.match(/http:\/\/(.*?)\//); | |
if (matched != null) { | |
var current_host = matched[1]; | |
var admin_url = url.replace(current_host, 'thegames.nytsyn.com'); | |
window.location.href = admin_url; | |
} |
This file contains hidden or 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
var url = window.location.href; | |
var matched = url.match(/http:\/\/(.*?)\//); | |
if (matched != null) { | |
var current_host = matched[1]; | |
var local_url = url.replace(current_host, 'localhost.nytimes.com:3000'); | |
window.location.href = local_url; | |
} |
This file contains hidden or 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
var url = window.location.href; | |
var matched = url.match(/http:\/\/(.*?)\//); | |
if (matched != null) { | |
var current_host = matched[1]; | |
var local_url = url.replace(current_host, 'localhost:3000'); | |
window.location.href = local_url; | |
} |
This file contains hidden or 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
include CampaignCash | |
Base.api_key = "YOUR API KEY" |