Skip to content

Instantly share code, notes, and snippets.

View martinheidegger's full-sized avatar
😅
working

Martin Heidegger martinheidegger

😅
working
View GitHub Profile
@martinheidegger
martinheidegger / aws_regions.json
Last active April 4, 2022 17:51 — forked from atyachin/aws_regions.json
AWS Regions / Datacenters Geo Locations
[
{
"code": "us-east-1",
"region": "US East",
"city": "Virginia",
"lat": 38.9940541,
"long": -77.4524237,
"country": "US"
},
{

International NodeSchool 2015

[logo]

Let me start by saying how grateful I am to everyone who contributed to this event. From comment to code, your contributions were essential in shaping the success of the day. So: Thank you! Thank you! Thank you!

The International Day was the biggest coordinated effort of NodeSchool so far. Sure, it was rough around many edges but from where I stood it looked like everyone was having a great time.

[photo]

International Nodeschool 2015

[logo]

Let me start by saying how grateful I am to everyone who contributed to this event. From comment to code, your contributions were essential in shaping the success of the day, so thank you, thank you, thank you.

Did everyone have a good time?

From where I was stood it looked like everyone was having a ball.

var rl = require('readline').createInterface({
input: process.stdin,
output: process.stdout
});
function Point(x, y){
this.x = x;
this.y = y;
}
var phantom=require('phantom');
phantom.create(function(ph) {
ph.createPage(function(page) {
page.set('onInitialized', function() {
console.log("We are now inside onInitialized");
});
page.set('onLoadStarted', function() {
console.log("We are now inside onLoadStarted");