- AdGuard AdBlocker
- AdGuard VPN — free & secure proxy for Chrome
- Angular DevTools
- Awesome Screen Recorder & Screenshot
- Bitwarden Password Manager
- Browser Firewall
- Buster: Captcha Solver for Humans
- Category Tabs for Google Keep
- Chrome Remote Desktop
- CodeSandbox
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 { createServer } from 'node:http'; | |
const server = createServer((req, res) => { | |
res.writeHead(200, { 'Content-Type': 'text/plain' }); | |
res.end('Hello World!\n'); | |
}); | |
server.listen(3000, '127.0.0.1', () => { | |
console.log('Listening on 127.0.0.1:3000'); | |
}); |
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
{ | |
// Iniciar | |
"workbench.startupEditor": "none", | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.empty.hint": "hidden", | |
"workbench.activityBar.location": "bottom", | |
// Segurança | |
"security.promptForLocalFileProtocolHandling": false, | |
// Atualização | |
"update.mode": "manual", |
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
networks: | |
rabbitmq-net: | |
name: rabbitmq-net | |
driver: bridge | |
volumes: | |
rabbitmq-data: | |
name: rabbitmq-data | |
driver: local |
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 pandas as pd | |
# Carregando a planilha original | |
df_original = pd.read_excel('sua_planilha.xlsx', header=None) | |
# Criando um dicionário vazio para armazenar os DataFrames de cada letra | |
dfs_separados = {} | |
# Iterando sobre cada linha da planilha original |
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
database-viewer: | |
image: mongo-express | |
environment: | |
- ME_CONFIG_MONGODB_SERVER=database | |
- ME_CONFIG_MONGODB_PORT=27017 | |
ports: | |
- 8081:8081 | |
depends_on: | |
- database |
- Select HW overlay strategies
- Experimental QUIC protocol
- WebAssembly lazy compilation
- Vulkan
- Block insecure private network requests.
- Parallel downloading
- Back-forward cache
- Enables Display Compositor to use a new gpu thread.
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
#!/bin/sh | |
#LAUNCHERS | |
$HOME/.config/bspwm/autostart.sh | |
#fix for moving spotify to specific workspace | |
#bspc config external_rules_command ~/.config/bspwm/scripts/external_rules_command | |
#BSPWM configuration | |
#bspc config border_radius 8 | |
bspc config border_width 2 |
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
[global/wm] | |
;https://github.com/jaagr/polybar/wiki/Configuration#global-wm-settings | |
margin-top = 0 | |
margin-bottom = 0 | |
[settings] | |
;https://github.com/jaagr/polybar/wiki/Configuration#application-settings | |
screenchange-reload = true | |
compositing-background = over | |
compositing-foreground = over |
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
################################################################# | |
# KEYBOARD BINDINGS FOR ANY TWM | |
################################################################# | |
################################################################# | |
# SUPER + FUNCTION KEYS | |
################################################################# | |
# Navegador Web | |
super + F1 |
OlderNewer