Skip to content

Instantly share code, notes, and snippets.

View felipebueno's full-sized avatar

Felipe Bueno felipebueno

View GitHub Profile
@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
;; 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]

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:

@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

@felipebueno
felipebueno / genymotionwithplay.md
Last active December 21, 2015 13:56 — forked from wbroek/genymotionwithplay.txt
Genymotion with Google Play Services
Verifying that +felipebueno is my blockchain ID. https://onename.com/felipebueno
@felipebueno
felipebueno / produtos.json
Last active June 7, 2016 19:47
Testing Dynamic Content on Hugo SSG
[
{
"foto": {
"text": "",
"alt": "Hi-top Game Turbo, Caixa, 2 Controles, E Varios Jogos Grátis",
"src": "http://mlb-s1-p.mlstatic.com/nes-consoles-en-nintendo-954211-MLB20524330070_122015-Y.jpg"
},
"descricao": {
"text": "Hi-top Game Turbo, Caixa, 2 Controles, E Varios Jogos Grátis",
"href": "http://produto.mercadolivre.com.br/MLB-730548280-hi-top-game-turbo-caixa-2-controles-e-varios-jogos-gratis-_JM"
@felipebueno
felipebueno / multiple_ssh_setting.md
Created June 8, 2016 22:04 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "[email protected]"
@felipebueno
felipebueno / Makefile
Created January 6, 2017 12:10 — forked from jessevanherk/Makefile
A sample makefile and support files to build a love2d game for multiple platforms from linux
LOVE_BIN=/usr/bin/love
LOVE_DIR=./src/love
DIST_DIR=./src/dist
PATCH_DIR=./src/patch
BUILD_DIR=./build
BIN_DIR=./bin
LOVE_VERSION=0.9.1
GAME_NAME=MySampleGame
PRETTY_NAME=My Sample Game
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override