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
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
[remote "origin"] | |
url = [email protected]:paltman/<private_repo>.git | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
[branch "master"] |
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
At GoPollGo we're changing the way people ask for information on the web, with an innovative data-driven approach to polling. We make heavily intensive reporting and analytics tools simple and easy, & we're looking for relentlessly resourceful hackers to join our team and shape the future. | |
We're primarily a Ruby environment, using all the modern tools you'd expect, like jQuery and Git. Since we deal with a ton of data, we also use $BIG_DATA_TECH and Protovis to display it. | |
We are an awesome company with an excellent set of products, and we've built an awesome culture. We are people who can get stuff done and have a good time in the process. We just got some great office space (~1000 sq ft) on California Avenue in Palo Alto as well. | |
This is a full-time salaried position with generous options. You’ll be getting in at the ground floor as one of our first employees. Come join our team with backgrounds at TechCrunch, Lockheed Martin, HP, Data Domain, Storwize, to name a few. | |
This position is on-site in Palo Al |
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
namenode = search(:node, "chef_environment:#{node.chef_environment} AND role:hadoop_namenode_server").first | |
vars = { :options => node[:hadoop][:core_site] } | |
vars[:namenode_ip] = namenode[:ipaddress] if namenode | |
template "/etc/hadoop-#{node[:hadoop][:version]}/conf.chef/core-site.xml" do | |
mode 0750 | |
owner "hdfs" | |
group "hdfs" | |
action :create |
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
config_path = File.expand_path("~/.nexus_cli") | |
config = File.exists?(config_path) ? YAML::load_file(config_path) : {} |