Skip to content

Instantly share code, notes, and snippets.

View MembrilloAmarillo's full-sized avatar
🦆
Catching flies

MembrilloAmarillo

🦆
Catching flies
  • University Of Cadiz
  • Spain
View GitHub Profile
@MembrilloAmarillo
MembrilloAmarillo / python_2_7_18_install.sh
Created February 20, 2026 13:31
Automatic download and compilation of Python2.7.18
wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz
tar xvf Python-2.7.18.tgz
cd Python-2.7.18
./configure
line_num=$(grep -n 'CFLAGS' Makefile | head -1 | cut -d: -f1)
sed -i "${line_num}s/$/ -std=c99/" Makefile
@MembrilloAmarillo
MembrilloAmarillo / HandmadeHero.toml
Created February 6, 2025 11:11
Handmade Hero inspired theme - Helix
"ui.background" = "#0c0c0cff" # Text area background color
"ui.text" = "#b99468ff" # UI Regular text
"ui.text.focus" = { bg = "#1E1E1Eff",fg = "#a08563ff" }
variable = "#b99468ff"
label = "#b99468ff"
comment = "#686868ff"
"ui.cursor" = { bg = "#00EE00ff", fg = "#00EE00ff"}
"ui.cursor.insert" = { bg = "#00EE00ff", fg = "#00EE00ff"}
"ui.cursor.select" = { bg = "#00EE00ff", fg = "#00EE00ff"}
keyword = "#ac7b0bff"