Dashing widget to display first two coming-up Google Calendar events.
Basically, you do not need more than two events on your dashboard, but it can be easily extended to the neighboring cells and show, say, 4 events instead of 2.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Dashing widget to display first two coming-up Google Calendar events.
Basically, you do not need more than two events on your dashboard, but it can be easily extended to the neighboring cells and show, say, 4 events instead of 2.
Standard practices say no non-root process gets to talk to the Internet on a port less than 1024. How, then, could I get Node talking on port 80 on EC2? (I wanted it to go as fast as possible and use the smallest possible share of my teeny tiny little micro-instance's resources, so proxying through nginx or Apache seemed suboptimal.)
Alter the port the script talks to from 8000 to 80:
}).listen(80);
site 'http://community.opscode.com/api/v1' | |
cookbook 'sprout-osx-base', | |
:git => 'git://github.com/pivotal-sprout/sprout.git', | |
:path => 'sprout-osx-base' | |
cookbook 'pivotal_workstation', | |
:git => 'git://github.com/pivotal-sprout/sprout.git', | |
:path => 'pivotal_workstation' | |