Skip to content

Instantly share code, notes, and snippets.

View devhijazi's full-sized avatar
👋
Hello World!

Gabriel Hijazi devhijazi

👋
Hello World!
View GitHub Profile
@beaucarnes
beaucarnes / keep_alive.py
Created December 10, 2020 15:42
Python Server for Discord Bot
from flask import Flask
from threading import Thread
app = Flask('')
@app.route('/')
def home():
return "Hello. I am alive!"
def run():
@devhijazi
devhijazi / settings.json
Last active May 28, 2025 20:39
what my guitar want's say
{
"workbench.colorTheme": "OM Theme (No Italic)",
"workbench.iconTheme": "symbols",
"workbench.editor.labelFormat": "short",
"workbench.startupEditor": "newUntitledFile",
"window.restoreWindows": "none",
"window.newWindowDimensions": "default",
"editor.tabSize": 2,
"editor.fontFamily": "JetBrains Mono",
"editor.hideCursorInOverviewRuler": true,
{
// Window
"window.restoreWindows": "none",
"window.newWindowDimensions": "default",
"window.newWindowProfile": "Default",
"window.commandCenter": false,
// Workbench
"workbench.colorTheme": "Stay On Theme",
"workbench.iconTheme": "symbols",
#!/usr/bin/env bash
# Script created by Filipe Mosca for personal use.
# Update the system
echo "Updating the system! Please, write yout password"
sudo apt update && apt upgrade
# Configurando sudoers
echo "Adicione a entrada de seu nome de usuário abaixo"
echo "# User privilege specification
root ALL=(ALL:ALL) ALL
@diego3g
diego3g / NODE.md
Last active June 6, 2025 19:39
VSCode Settings (Updated)

⚠️ Note!

With VSCode version 1.94, the APC extension broke and there is no fix yet.

So, for those having issues with APC after the VSCode update, I recommend downloading the previous version of VSCode for now (https://code.visualstudio.com/updates/v1_93) and setting updates to manual by adding this to the editor's configuration:

"update.mode": "manual",
:root {
--white: #fff;
--black: #000;
--turquoise: #1abc9c;
--green-sea: #16a085;
--emerald: #2ecc71;
--nephrits: #27ae60;
--peter-river: #3498db;
--belize-hole: #2980b9;