(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
var gulp = require('gulp'); | |
var sass = require('gulp-ruby-sass'); | |
var prefix = require('gulp-autoprefixer'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var jade = require('gulp-jade'); | |
// FILES PATHS | |
var jsSrcDir = ['js/app.js','js/**/*.js','js/*/*/*.js']; | |
var sassSrcDir = ['css/**/*.sass', 'css/*/*.sass']; |
/bin/ls /etc |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/RailsCasts Colour Scheme/RailsCastsColorScheme.tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "PragmataPro", | |
"font_size": 14.5, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": |
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |
Atualizado em: 11/07/2012
Entre nós [nome da empresa] e você [nome do cliente]
Nós faremos o melhor para satisfazer suas necessidades e atender suas expectativas, mas é importante registrar tudo por escrito para que todos conheçam suas responsabilidades (quem faz o quê) e saibam o que acontece quando algo dá errado. Neste contrato você não encontrará termos jurídicos complicados ou textos longos e incompreensíveis. Nós não temos interesse em fazê-lo assinar algo que poderá se arrepender depois. O que nós queremos é o melhor para os dois lados, agora e no futuro.
brew install ssh-copy-id | |
ssh-copy-id user@server | |
# Romain Champourlier © softr.li | |
# Inspired from many gist, recipes on github, tutorials... essentially: | |
# - https://gist.github.com/548927 | |
# - http://techbot.me/2010/08/deployment-recipes-deploying-monitoring-and-securing-your-rails-application-to-a-clean-ubuntu-10-04-install-using-nginx-and-unicorn/ | |
# - https://github.com/ricodigo/ricodigo-capistrano-recipes | |
# | |
# ONGOING WORK | |
# MIT License http://www.opensource.org/licenses/mit-license.php | |
# | |
# - Intended for Ubuntu 10.04.3 |
This is gist. | |
There are many like it, but this one is mine. | |
It is my life. | |
I must master it as I must master my life. | |
Without me gist is useless. | |
Without gist, I am useless. |