The SICK BAG Song by Nick Cave

The Sick Bag Song chronicles
Nick Cave’s 2014 tour of North
America with The Bad Seeds.
The account of this 22-city journey
began life scribbled on airline sick bags
and grew into a restless full-length epic,
seeking out the roots of inspiration,
love and meaning.

http://www.thesickbagsong.com/

10 weeks of node.js after 10 years of PHP

How I did things before on the server with PHP and the Laravel framework:

Route::get(‘user/{id}’, function($id) {
  $user = User::find($id);
  return Response::json($user->toArray());
});

And how I do the same thing now with node.js, Express and mongoose

app.route(‘/user/:id’).get(function(req, res) {
  User.findById(req.params.id).exec(function(err, user) {
    res.jsonp(user);
  });
});

Looking at this you might wonder what all the fuzz is about and why people get so emotional when talking about different programming languages.

source: https://medium.com/unexpected-token/10-weeks-of-node-js-after-10-years-of-php-a352042c0c11