$ git remote -v
Shell
| Baixar Ubuntu 12.04.1 | |
| Instalar na VM | |
| Rodar Script: | |
| http://www.linode.com/stackscripts/view/?StackScriptID=1291 |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: nginx | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: nginx init.d dash script for Ubuntu <=9.10. | |
| # Description: nginx init.d dash script for Ubuntu <=9.10. | |
| ### END INIT INFO |
Install brew
Open a terminal and execute: sudo su -
Install fuse4x: brew install fuse4x
Install ntfs-3g: brew install ntfs-3g
| int channel_pin[] = {2, 4}; | |
| static int relayStateA = 0; | |
| static int relayStateB = 0; | |
| void setup() { | |
| // initialize serial communication: | |
| Serial.begin(9600); | |
| for (int i = 0; i < sizeof(channel_pin); ++i) | |
| { |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| Execute um crontab -e para abrir o crontab no editor de texto e cole o texto abaixo no início do arquivo: | |
| ## CRONTAB HINTS AND TIPS | |
| ## | |
| ## | |
| ## Entry Description Equivalent To | |
| ## @yearly (or @annually) Run once a year at midnight in the morning of January 1 0 0 1 1 * | |
| ## @monthly Run once a month at midnight in the morning of the first of the month 0 0 1 * * | |
| ## @weekly Run once a week at midnight in the morning of Sunday 0 0 * * 0 | |
| ## @daily Run once a day at midnight 0 0 * * * |
builds the containers:
docker-compose build
remove the containers:
docker-compose rm
'recreate' the containers:
docker-compose up
start the containers:
| { | |
| "workbench.colorTheme": "Monokai", | |
| "workbench.iconTheme": "vscode-icons", | |
| //"workbench.panel.location": "bottom", | |
| "sublimeTextKeymap.promptV3Features": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "editor.formatOnPaste": true, |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"