Skip to content

Instantly share code, notes, and snippets.

View felipebueno's full-sized avatar

Felipe Bueno felipebueno

View GitHub Profile
@felipebueno
felipebueno / genymotionwithplay.md
Last active December 21, 2015 13:56 — forked from wbroek/genymotionwithplay.txt
Genymotion with Google Play Services
@felipebueno
felipebueno / figwheel-emacs-cider.md
Created December 4, 2015 15:34 — forked from auramo/figwheel-emacs-cider.txt
figwheel emacs cider stuff

Using Emacs CIDER as the Figwheel REPL tool

project.clj should have this line:

  :figwheel { :nrepl-port 7888 }

At the defproject-level.

It enables external tools to connect to the Figwheel REPL. To connect

Keybase proof

I hereby claim:

  • I am felipebueno on github.
  • I am felipebueno (https://keybase.io/felipebueno) on keybase.
  • I have a public key whose fingerprint is 84AB D201 EF20 4FB1 688D 4E5F 6F80 3111 D230 0508

To claim this, I am signing this object:

;; Write a program that prints the numbers from 1 to 100. But for
;; multiples of three print “Fizz” instead of the number and for
;; the multiples of five print “Buzz”. For numbers which are multiples
;; of both three and five print “FizzBuzz”
;; BEGIN - first solution (not that pretty but, hey, it works :P)
(defn- multiple-of-three [n]
(= 0 (mod n 3)))
(defn- multiple-of-five [n]
@felipebueno
felipebueno / speechhub output
Created April 2, 2012 17:19
Speechhub error
Traceback (most recent call last):
File "/usr/local/bin/speechhub", line 9, in <module>
load_entry_point('SpeechHub==0.1', 'console_scripts', 'speechhub')()
File "/usr/local/lib/python2.6/dist-packages/SpeechHub-0.1-py2.6.egg/speechhub/speechhub.py", line 138, in main
create_new_blog(args)
File "/usr/local/lib/python2.6/dist-packages/SpeechHub-0.1-py2.6.egg/speechhub/speechhub.py", line 95, in create_new_blog
create_blog(vars(parsed_args))
File "/usr/local/lib/python2.6/dist-packages/SpeechHub-0.1-py2.6.egg/speechhub/functions.py", line 43, in create_blog
config_struct = get_initial_config_file(args)
File "/usr/local/lib/python2.6/dist-packages/SpeechHub-0.1-py2.6.egg/speechhub/functions.py", line 81, in get_initial_config_file