- Toptal
- Nexton Labs
- BairesDev
- Nearsure
- trio.dev - Brazilian CEO
- stackbuilders
- We Work Remotely
- Remote.co
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
import os | |
# Please replace with your AWS access key and secret key | |
aws_access_key = "access_key" | |
aws_secret_key = "secret_key" | |
# Please replace with your desired region | |
region_name = "us-east-1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/app.yaml | |
name: My Python Project | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
services: |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Monokai", | |
"workbench.iconTheme": "vscode-icons", | |
//"workbench.panel.location": "bottom", | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, |
builds the containers:
docker-compose build
remove the containers:
docker-compose rm
'recreate' the containers:
docker-compose up
start the containers:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 * * * |
As configured in my dotfiles.
start new:
tmux
start new with session name:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
{ |
-
Install brew
-
Open a terminal and execute:
sudo su -
-
Install fuse4x:
brew install fuse4x
-
Install ntfs-3g:
brew install ntfs-3g
NewerOlder