Skip to content

Instantly share code, notes, and snippets.

View atlas-jedi's full-sized avatar
🏠
Working from home

André Pestana Silva atlas-jedi

🏠
Working from home
View GitHub Profile
@atlas-jedi
atlas-jedi / settings.json
Last active October 15, 2025 14:16
vscode settings | Windows
{
"breadcrumbs.enabled": true,
"cmake.configureOnOpen": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.bracketPairColorization.enabled": false,
"editor.colorDecorators": true,
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
@atlas-jedi
atlas-jedi / InternetMonitor.ps1
Created March 21, 2025 20:57
Script Powershell para monitorar a conexão com a internet
# Script para monitorar a conexão com a internet
# Exibe notificações quando a internet cai e quando volta
# TODO: Adicionar suporte a formatação UTF-8
# Função para exibir notificação do Windows
function Show-Notification {
param (
[string]$Title,
[string]$Message
)