Skip to content

Instantly share code, notes, and snippets.

View jonatassaraiva's full-sized avatar

Jonatas Saraiva jonatassaraiva

  • São Paulo, SP
View GitHub Profile
# List Devices
$ xcrun simctl list
# Open Simulator
$ open -a Simulator --args -CurrentDeviceUDID [UDID]
@jonatassaraiva
jonatassaraiva / 01 - id_rsa
Last active July 7, 2021 17:08
Config Mult GIT
# Existing SSH keys
> ls -al ~/.ssh
# Generate id_rsa
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
# Copy the SSH key to your clipboard.
> pbcopy < ~/.ssh/id_rsa.pub
# Generate id_rsa devops
service: my-api-gateway
provider:
name: aws
runtime: nodejs6.10
region: sa-east-1
stage: v1
deploymentBucket: ${env:DEPLOYMENT_BUCKET}
iamRoleStatements:
- Effect: Allow
@jonatassaraiva
jonatassaraiva / vscode-settings.json
Last active April 5, 2017 20:18
Global VSCode settings
// Place your settings in this file to overwrite the default settings
{
"editor.formatOnSave": false,
"editor.fontSize": 13,
"editor.lineNumbers": "on",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": false,
"editor.renderIndentGuides": false,
@jonatassaraiva
jonatassaraiva / . react-native-setup
Last active August 26, 2017 14:31
Start project React Native
Files:
* .gitignore
* index.android.js
* index.ios.js
* package.json
* settings.json
* src/actions/application/index.js
* src/app.js
* src/components/info.js
* src/reducers/application/info.js