A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
/** | |
* jQuery Plugin Boilerplate | |
* | |
* Call the plugin by supplying a method and/or options: | |
* | |
* $("element").myplugin(); | |
* $("element").myplugin({ option1: true, option2: true }); | |
* $("element").myplugin("secondary_method"); | |
* $("element").myplugin("secondary_method", { option1: true, option2: true }); | |
* |
1) O Ócio Criativo - Domenico De Masi | |
http://www.livrariasaraiva.com.br/produto/443457/o-ocio-criativo/ | |
2) Você está Louco - Ricardo Semler | |
http://www.livrariasaraiva.com.br/produto/1461877/voce-esta-louco-!-uma-vida-administrada-de-outra-forma/ | |
3) Virando a própria mesa - Ricardo Semler | |
http://www.livrariasaraiva.com.br/produto/100702/virando-a-propria-mesa-uma-historia-de-sucesso-empresarial-made-in-brazil/ | |
4) The 4-Hour Workweek - Tim Ferriss |
This document lays out some baseline expectations between conference speakers and conference presenters. The general goal is to maximize the value the conference provides to its attendees and community and to let speakers know what they might reasonably expect from a conference.
We believe that all speakers should reasonably expect these things, not just speakers who are known to draw large crowds, because no one is a rockstar but more people should have the chance to be one. We believe that conferences are better -- and, dare we say, more diverse -- when the people speaking are not just the people who can afford to get themselves there, either because their company paid or they foot the bill themselves. Basically, this isn't a rock show rider, it's some ideas that should help get the voices of lesser known folks heard.
These expectations should serve as a starting point for discussion between speaker and organizer. They are not a list of demands; they are a list of rea
# codec: blocks | |
describe('articles.views.ArticleView'): | |
context('when user has permissions'): | |
it('should add new article'): | |
# some code | |
it('should delete existing article'): |
package main | |
import ( | |
"http" | |
) | |
func main() { | |
http.Handle("/foo/", http.StripPrefix("/foo", http.FileServer(http.Dir("/xyz/foo/")))) | |
http.ListenAndServe(":6543", nil) | |
} |
--- | |
layout: nil | |
--- | |
<?xml version="1.0" encoding="utf-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom"> | |
<title type="text" xml:lang="en">{{ site.root_desc }}</title> | |
<link type="application/atom+xml" href="http://paulstamatiou.com/feed/" rel="self"/> | |
<link type="text" href="http://paulstamatiou.com" rel="alternate"/> | |
<updated>{{ site.time | date_to_xmlschema }}</updated> |
set :application, "your_application_name" | |
set :ip_address , "000.000.000.000" | |
set :scm, :git | |
set :repository, "[email protected]:albertoleal/OlaMundo.git" | |
set :branch, "master" | |
set :deploy_via, :remote_cache # Deploy only the changes you have made since last deploy. | |
set :user , "albertoleal" | |
set :deploy_to, "/home/albertoleal/#{application}" |