This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'open-uri' | |
teams = { | |
atl: 'hawks', | |
bkn: 'nets', | |
bos: 'celtics', | |
cha: 'hornets', | |
chi: 'bulls', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
============================= | |
**http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html | |
**http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html | |
**http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html | |
**http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html | |
**http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html | |
*http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html | |
*http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//metodo para montagem do json que vai bater com a classe java | |
getDadosFormulario:function(){ | |
var vaga=[]; | |
//atentar para o fato de que o name deve ser igual ao nome do objeto passado como parametro e suas propriedades | |
vaga.push({name:"vaga.nome",value: $("#titulo").val()}); | |
vaga.push({name:"vaga.salario",value: $("#salario").val()}); | |
vaga.push({name:"vaga.local",value: $("#local").val()}); | |
vaga.push({name:"vaga.descricao",value: $("#descricao").val()}); | |
return vaga; | |