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

Programación Web - Club de Programación CMD 2014

Programación Web - Club de Programación CMD 2014

Charla introductoria a la web y la programación para el Club de Programación en el Centro Metropolitano de Diseño de Buenos Aires 2014 - Guión: https://gist.github.com/inkel/85b0ff564af6c002919b

Leandro López

December 06, 2014
Tweet

More Decks by Leandro López

Other Decks in Technology

Transcript

  1. WWW

  2. @inkel Leandro López" Programando la web desde 2000" Actualmente para

    Citrusbyte" Organizador de RubyConf Argentina" Coach de las Punchgirls
  3. <!doctype html> <html> <head> <title>Club de Programación</title> </head> <body> <h1>Club

    de Programación</h1> <p>Gracias por venir.</p> <p> <a href=“https://www.ruby-lang.org/es/”> Ruby Language </a> </p> </body> </html>
  4. <!doctype html> <html> <head> <title>Club de Programación</title> </head> <body> <h1>Club

    de Programación</h1> <p>Gracias por venir.</p> <p> <a href=“https://www.ruby-lang.org/es/”> Ruby Language </a> </p> </body> </html>
  5. <!doctype html> <html> <head> <title>Club de Programación</title> </head> <body> <h1>Club

    de Programación</h1> <p>Gracias por venir.</p> <p> <a href=“https://www.ruby-lang.org/es/”> Ruby Language </a> </p> </body> </html>
  6. <!doctype html> <html> <head> <title>Club de Programación</title> </head> <body> <h1>Club

    de Programación</h1> <p>Gracias por venir.</p> <p> <a href=“https://www.ruby-lang.org/es/”> Ruby Language </a> </p> </body> </html>
  7. <!doctype html> <html> <head> <title>Club de Programación</title> </head> <body> <h1>Club

    de Programación</h1> <p>Gracias por venir.</p> <p> <a href=“https://www.ruby-lang.org/es/”> Ruby Language </a> </p> </body> </html>
  8. <!doctype html> <html> <head> <title>Club de Programación</title> </head> <body> <h1>Club

    de Programación</h1> <p>Gracias por venir.</p> <p> <a href=“https://www.ruby-lang.org/es/”> Ruby Language </a> </p> </body> </html>
  9. require "sinatra" ! get "/hola" do "¡Hola, Mundo!\r\n" end !

    post "/hola" do name = params[:name] "¡Hola, #{name}!\r\n" end
  10. require "cuba" ! Cuba.define do on "hola" do on get

    do res.write "¡Hola, Mundo!\r\n" end ! on post, param("name") do |name| res.write "¡Hola, #{name}!\r\n" end end end