flowchart TD
subgraph theGame[The Game]
openBox-->doSortingComponents
doSortingComponents-->askFirstTime{First time playing?}
askFirstTime -- Yes --> doFirstTimePlaying
askFirstTime-->|No| doPrepareAdventure
end
subgraph doFirstTimePlaying [First time playing]
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
a = "a" | |
puts a | |
a = "b" "b" | |
puts a | |
a = "c""c" | |
puts a | |
a = """" |
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
source 'https://rubygems.org' | |
gem 'sqlite3' | |
gem 'rspec' | |
gem 'rspec-collection_matchers' | |
gem 'activerecord' |
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
source :gemcutter | |
gem 'rspec' | |
gem 'capybara' |
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
require 'securerandom' | |
require 'em-http-request' | |
require 'pry-nav' | |
require 'json' | |
require 'faye/websocket' | |
require 'eventmachine' | |
require 'rest_client' | |
class WTV | |
def initialize(my_id, my_token) |
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
[ | |
{ | |
"Name": "anthonyjsmith", | |
"PRs": [ | |
"https://api.github.com/repos/pmq20/mathjax-rails/pulls/10" | |
], | |
"TotalPRs": 1 | |
}, | |
{ | |
"Name": "Senjai", |
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
package main | |
import ( | |
"flag" | |
"log" | |
"net" | |
"strings" | |
) | |
var isRoot bool |
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
package default_module | |
import ( | |
"appengine" | |
"appengine/datastore" | |
"appengine/delay" | |
"net/http" | |
) | |
func GtinSynchronizeDeleterHandler(context appengine.Context, w http.ResponseWriter, r *http.Request) { |
La idea es que hables de algo que te guste, o que ames, o de vivencias personales. Es algo personal, es sobre compartir con los demas un poco de nosotros.
Chequele el FAQ http://www.pechakucha.org/faq
En el idioma que gustes, preferentemente español o ingles.
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
package main | |
import ( | |
"strings" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"net/url" |
NewerOlder