Skip to content

Instantly share code, notes, and snippets.

View luizfranzon's full-sized avatar
💻
Studying

Luiz Franzon luizfranzon

💻
Studying
View GitHub Profile
@luizfranzon
luizfranzon / settings.json
Last active July 18, 2024 00:05
vscode settings.json 17-07-24
{
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Min Darkest Dracula",
"editor.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontLigatures": true,
"workbench.productIconTheme": "fluent-icons",
"editor.fontSize": 16,
"editor.suggestFontSize": 18,
"editor.lineHeight": 1.8,

Keybase proof

I hereby claim:

  • I am luizfranzon on github.
  • I am luizffranzon (https://keybase.io/luizffranzon) on keybase.
  • I have a public key ASDFv45YlFABzC1sgkPDW4hOEu0VyLt1CuERdzPTAg_HQAo

To claim this, I am signing this object:

int segundosEntreMensagens = 2;
int interval = segundosEntreMensagens * 1000;
void setup()
{
Serial.begin(9600);
}
void loop()
{
from pynput.keyboard import Key, Controller
import time
import os
keyboard = Controller()
segundosAtéDigitar = 5
def pressTab(timesPressed):
for i in range(timesPressed):
keyboard.press(Key.tab)
@luizfranzon
luizfranzon / settings.json
Created January 23, 2024 17:31
windows terminal config backup
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [
{
"command": {
"action": "copy",
"singleLine": false
},
"keys": "ctrl+c"
@luizfranzon
luizfranzon / docker-compose.yaml
Created March 12, 2024 19:16
postgres + pgadmin docker compose
version: "3.8"
services:
db:
container_name: postgres_database
image: postgres:latest
restart: always
environment:
POSTGRES_USER: USER
POSTGRES_PASSWORD: PASSWORD
POSTGRES_DB: postgresdb
TypeScript 6 hrs 25 mins ███████████████▎░░░░░ 72.8%
YAML 1 hr 36 mins ███▊░░░░░░░░░░░░░░░░░ 18.3%
HTML 18 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.5%
JSON 10 mins ▍░░░░░░░░░░░░░░░░░░░░ 2.0%
CSS 10 mins ▍░░░░░░░░░░░░░░░░░░░░ 1.9%