Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The modern webtech ecosystem - Vives 2014

The modern webtech ecosystem - Vives 2014

Slides for my "modern web" talk at the "Evening Talks" event hosted by Vives.

Thijs Feryn

April 03, 2014
Tweet

More Decks by Thijs Feryn

Other Decks in Technology

Transcript

  1. Modern  web  developer Code Infrastructure Agile  processes Quality  assurance Frontend

     vs   backend Project   management Build  &  release  cycles Performance  &  scalability Security Flexibility
  2. ✓Canvas drawing ✓Movie support ✓Offline data ✓Document editing ✓Drag &

    drop ✓Geolocation ✓File manipulation ✓New intuitive tags & elements
  3. REST ✓A URL identifies a resource. ✓Resources have a hierarchy,

    so you know that something with additional slashes is a subordinate resource ✓Verbs are used to perform operations on resources ✓The operation is implicit and not part of the URL ✓A hypermedia format is used to represent the data ✓Link relations are used to navigate a service
  4. ✓Twitter Bootstrap ✓Homebrew ✓Ruby On Rails ✓HTML5 Boilerplate ✓Jquery ✓Node.js

    ✓Phonegap ✓Backbone.js ✓Linux Kernel ✓Symfony2 Frame work ✓Django Framework ✓Zend Framework 2 ✓Git Popular GitHub projects
  5. PIP

  6. “I wish I had enough money to run Oracle instead

    of Postgres." ! “Why do you want to do that?" ! “I dont, I just wish I had enough money to”
  7. var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type':

    'text/plain'}); res.end('Hello World\n'); }).listen(1337, '127.0.0.1'); console.log('Server running at http:// 127.0.0.1:1337/');