Skip to content

Instantly share code, notes, and snippets.

View leobalter's full-sized avatar
💭
status

Leo Balter leobalter

💭
status
View GitHub Profile
@leobalter
leobalter / LICENSE.txt
Created February 2, 2012 18:25 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE

Informações sobre o evento:

Descrição

O FrontInRio surgiu em 2011 a partir da vontade de que houvesse mais eventos de FrontEnd no Brasil. Tudo veio a partir de conversas com profissionais que trabalham na mesma área e gostariam de ver os assuntos mais interessantes sendo apresentados e debatidos diante de uma quantidade de profissionais que fosse maior do que uma simples mesa de bar. A comunidade FrontEnd estava muito fragmentada, no Rio de Janeiro e no Brasil, as pessoas não se conheciam e essa necessidade de aproximação se tornava cada vez mais urgente. Outra ideia do evento era que ele não trouxesse somente um Hype das tecnologias atuais, mas que tivéssemos apresentações Mind Blowing, cheias de senso crítico para trazer assuntos para debate e que as pessoas saíssem dali com ideias inovadoras.

A expectativa para a próxima edição não é muito diferente. Temas centrados em Open Web e Open Data, dois assuntos diferentes com nomes próximos que tem um ótimo potencial de ex

@leobalter
leobalter / gist:1949863
Created March 1, 2012 13:37
Suggested vim settings
Settings for .vimrc
" set our tabs to four spaces
set ts=4
" turn syntax highlighting on by default
syntax on
" set auto-indenting on for programming
set ai
@leobalter
leobalter / .vimrc
Created March 1, 2012 13:47 — forked from jeresig/.vimrc
VIM Config
au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery
set nocompatible
set autoindent
set tabstop=2
set showmatch
set vb t_vb=
set ruler
set nohls
set incsearch
syntax on
@leobalter
leobalter / node-and-npm-in-30-seconds.sh
Created March 9, 2012 19:20 — forked from isaacs/node-and-npm-in-30-seconds.sh
Use one of these techniques to install node and npm without having to sudo. Discussed in more detail at http://joyeur.com/2010/12/10/installing-node-and-npm/ Note: npm >=0.3 is *safer* when using sudo.
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl http://npmjs.org/install.sh | sh
@leobalter
leobalter / gist:2128168
Created March 19, 2012 23:08
RioJS Meetup do dia 24/03 na UniRio

RioJS Meetup

  • Data: 24/03/2012 às 10h
  • Endereço: UniRio - Av. Pasteur 458, prédio do CCET
  • entrada grátis.
  • tema: Install Fest de NodeJS, NPM, Grunt e diversão com mini projetos que abordem essas tecnologias.

OBS: se possível traga seu notebook Mac, Linux ou até Windows

Inscrição

@leobalter
leobalter / gist:2205654
Created March 26, 2012 14:53
jQuery Inview
$.extend($.expr[':'], {
inview: function(el) {
var e = $(el),
w = $(window),
wt = w.scrollTop(),
wb = wt + w.height(),
et = e.offset().top,
eb = et + e.height();
return eb >= wt && et <= wb;
git clone https://github.com/andreasgal/B2G
cd B2G
make sync # (get a cup of coffee, this takes quite a while)
make config-qemu-ics # (get another cup of coffee)
make gonk #(get another drink, but I think you've had enough coffee by now)
make
.
@leobalter
leobalter / gist:2787933
Created May 25, 2012 12:54
List of languages that compile to JS
# [[Original Link|https://github.com/jashkenas/coffee-script/wiki/List-of-languages-that-compile-to-JS]]
#### CoffeeScript Family (& Friends)
* [[CoffeeScript|http://jashkenas.github.com/coffee-script/]] Unfancy JavaScript
###### Family (share genes with CoffeeScript)
* [[Coco|https://github.com/satyr/coco]] A CoffeeScript dialect that aims to be more radical and practical, also acts as a test bed for features that get imported in CoffeeScript.
* [[LiveScript|http://gkz.github.com/LiveScript/]] is a fork of Coco that is much more compatible with CoffeeScript, more functional, and with more features.