Skip to content

Instantly share code, notes, and snippets.

View gustiando's full-sized avatar
🏠
Working from home

Gustavo Matias dos Santos gustiando

🏠
Working from home
View GitHub Profile
@gustiando
gustiando / repl.rb
Last active August 29, 2015 14:15
My nasty Ruby REPL
#!/usr/bin/env ruby
def repl
input = gets.chomp
result = eval input
puts result
repl
end
repl
@gustiando
gustiando / repl.clj
Last active August 29, 2015 14:15
My nasty Clojure REPL
; Didn't looking on how to run it standalone, so it needs to run inside a REPL!
(defn repl []
(let [result (eval (read-string (read-line)))]
(println result)
(recur)))
@gustiando
gustiando / 0_reuse_code.js
Last active August 29, 2015 14:12
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console