Skip to content

Instantly share code, notes, and snippets.

View brkscosta's full-sized avatar

Joanã Costa brkscosta

  • Critical Techworks
  • Portugal
  • 20:24 (UTC +01:00)
  • Instagram ojsandev
View GitHub Profile
#!/usr/bin/env bash
set -e
echo "▶️ Checking Homebrew..."
if ! command -v brew >/dev/null 2>&1; then
echo "❌ Homebrew not found"
exit 1
fi
#!/bin/bash
set -e # Stop the script if anythin whent wrong
GCC_VERSION=9.5.0
GCC_SRC_URL="https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.gz"
NUM_CORES=$(nproc)
install_dependencies() {
echo "[+] Installing dependencies..."
@brkscosta
brkscosta / settings.json
Last active March 14, 2025 15:00
Settings for VS Code
{
"window.zoomLevel": 0,
"window.commandCenter": false,
"window.titleBarStyle": "native",
"window.titleSeparator": " - ",
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
"window.menuBarVisibility": "toggle",
"workbench.layoutControl.enabled": false,
"jest.runMode": "on-demand",