Skip to content

Instantly share code, notes, and snippets.

View JGalego's full-sized avatar
🕹️
ai-to-zx.com

João Galego JGalego

🕹️
ai-to-zx.com
View GitHub Profile
# /// script
# dependencies = [
# "requests<3",
# "rich",
# ]
# ///
# Code to reveal the easter egg in the Gemini 2.5 paper (https://www.arxiv.org/abs/2507.06261)
# Take the first letter of each author to spell out
# "GEMINI MODELS CANT THINK AND GET BACK TO YOU IN A FLASH"
@JGalego
JGalego / hopfield.py
Last active September 15, 2025 14:47
Implementation of a traditional Hopfield network in Python 🧠
# pylint: disable=invalid-name,non-ascii-name,line-too-long
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "numpy",
# "matplotlib",
# "Pillow",
# ]
# ///