This file contains 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
04, 05, 06 | |
11, 13, 15, 19 | |
21, 23, 24, 26 | |
31, 36 | |
47 | |
54 | |
67, 69 | |
72, 78 | |
81, 89 | |
91, 96, 99 |
This file contains 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
00, 01, 03 | |
12, 14, 16, 17, 18 | |
20, 27 | |
30, 32, 33, 39 | |
41, 42, 44, 45, 46, 49 | |
50, 52, 58 | |
60, 63, 64, 65, 66, 68 | |
70 | |
82 | |
93, 94, 95, 98 |
This file contains 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
gem install rails | |
rails new blog | |
rails g scaffold Post title:string body:string | |
rake db:migrate | |
rails s |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Dynamic; | |
using System.Linq; | |
using System.Text; | |
using System.Web; | |
using System.Web.Mvc; | |
using Facebook; | |
namespace MvcApplication1.Controllers |
This file contains 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
// Do a post to the server to finish the logon | |
// This is a form post since we don't want to use AJAX | |
var form = document.createElement("form"); | |
form.setAttribute("method", 'post'); | |
form.setAttribute("action", '/FacebookLogin.ashx'); | |
var field = document.createElement("input"); | |
field.setAttribute("type", "hidden"); | |
field.setAttribute("name", 'accessToken'); | |
field.setAttribute("value", accessToken); |
This file contains 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
import sys | |
import urllib2 | |
import re | |
import os.path | |
import time | |
import threading | |
from threading import Thread | |
base_url = "http://www.jivjago.com/audio/" | |
processed = [] |
This file contains 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
#add this to your gemfile | |
gem 'mongoid' | |
gem 'devise' | |
gem "omniauth-facebook" |
This file contains 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
public static void main(String args[]){ | |
System.out.println("Análise"); | |
} | |
<? echo "e" ?> | |
puts "Desenvolvimento" | |
print "de Sistemas" |
This file contains 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
var foo = $(this).parent().parent().parent().parent().parent().find("#list-foos").html() |
This file contains 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
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added) | |
config.assets.precompile += %w( *.css *.js ) |