| Asa Sul | Asa norte |
|---|---|
| sqs-104 | sqn-212 |
| sqs-203 | |
| sqs-303 | |
| sqs-304 | |
| sqs-404 | |
| sqs-405 |
Until last night I lived in fear of tildes, carats, resets and reverts in Git. I cargo culted, I destroyed, I laid waste the tidy indicies, branches and trees Git so diligently tried to maintain. Then Zach Holman gave a talk at Paperless Post. It was about Git secrets. He didn't directly cover these topics but he gave an example that made me realize it was time to learn.
Generally, when I push out bad code, I panic, hit git reset --hard HEAD^, push and clean up the pieces later. I don't even really know what most of that means. Notational Velocity seems to be fond of it ... in that I just keep copying it from Notational Velocity and pasting it. Turns out, this is dumb. I've irreversibly lost the faulty changes I made. I'll probably even make the same mistakes again. It's like torching your house to get rid of some mice.
Enter Holman. He suggests a better default undo. git reset --soft HEAD^. Says it stag
| #! /bin/sh | |
| # Step 1: checkout docker sources, but make sure you do this | |
| # somewhere in /Users directory because boot2docker can only | |
| # share this path with docker containers | |
| git clone https://github.com/docker/docker.git | |
| # Step 2: build docker image | |
| cd docker/man && docker build -t docker/md2man . |
It's a common confusion about terminal colours... Actually we have this:
- plain ascii
- ansi escape codes (16 colour codes with bold/italic and background)
- 256 colour palette (216 colours + 16 ansi + 24 gray) (colors are 24bit)
- 24bit true colour ("888" colours (aka 16 milion))
printf "\x1b[${bg};2;${red};${green};${blue}m\n"
This font is manually patched with Fontforge. It includes the glyphs from DejaVu Sans Mono for Powerline.
I recommend DirectWrite-patched VIM builds. I'm using KaoriYa's build (http://www.kaoriya.net/software/vim/)
Add the following lines to your .vimrc/_vimrc:
(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.
A bagagem de mão ou de cabine é considerada como bagagem não registrada, sob a inteira responsabilidade do passageiro que a transporta, sendo que, a soma das dimensões (altura, largura e comprimento) não pode ultrapassar 115 cm, incluindo rodas, alças, bolsos externos, etc. As medidas máximas para cada dimensão são de 23 x 40 x 55 cm. Seu peso não deve exceder 5 kg. (Portaria 676/GC-5/ 13/11/2000), (IATA PassengerServices – Recomendação 1749).
- mais info aqui
| #!/bin/sh | |
| # | |
| # a simple way to parse shell script arguments | |
| # | |
| # please edit and use to your hearts content | |
| # | |
| ENVIRONMENT="dev" |