Skip to content

Instantly share code, notes, and snippets.

View ofou's full-sized avatar
🚀
Launching

Omar Nomad ofou

🚀
Launching
View GitHub Profile
@ofou
ofou / commits.sh
Last active January 18, 2025 21:00
Fill your GitHub calendar with fake commits to confuse recruiters
#!/bin/bash
set -euo pipefail
# Validate we're in a git repository
if ! git rev-parse --git-dir > /dev/null 2>&1; then
echo "Error: Not in a git repository"
exit 1
fi
# Function to validate date format
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "[email protected]",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
@ofou
ofou / resume.json
Created March 3, 2025 15:28
JSON Resume
{
"basics": {
"name": "Omar Olivares Urrutia",
"label": "Ingeniero de Inteligencia Artificial",
"image": "photo.jpeg",
"email": "[email protected]",
"phone": "+56 9 8381 0103",
"url": "https://olivares.cl",
"summary": "Ingeniero de Software especializado en Inteligencia Artificial, Machine Learning y aplicaciones. He implementado sistemas RAG y fine-tuning para mejorar la calidad de las respuestas de modelos de lenguaje. Como divulgador científico y creador de contenidos independiente (en inglés), he producido videos virales que han superado las 200.000 vistas sobre contenidos técnicos acerca de interfaces cerebro-computador.",
"location": {
@ofou
ofou / resume.json
Created March 3, 2025 15:28
JSON Resume
{
"basics": {
"name": "Omar Olivares Urrutia",
"label": "Ingeniero de Inteligencia Artificial",
"image": "photo.jpeg",
"email": "[email protected]",
"phone": "+56 9 8381 0103",
"url": "https://olivares.cl",
"summary": "Ingeniero de Software especializado en Inteligencia Artificial, Machine Learning y aplicaciones. He implementado sistemas RAG y fine-tuning para mejorar la calidad de las respuestas de modelos de lenguaje. Como divulgador científico y creador de contenidos independiente (en inglés), he producido videos virales que han superado las 200.000 vistas sobre contenidos técnicos acerca de interfaces cerebro-computador.",
"location": {
@ofou
ofou / resume.json
Last active March 3, 2025 22:11
JSON Resume
{
"basics": {
"name": "Omar Olivares Urrutia",
"label": "Artificial Intelligence Engineer",
"image": "https://pbs.twimg.com/profile_images/1863382371749203968/bsiYXfxb_400x400.jpg",
"email": "[email protected]",
"phone": "+56983810103",
"url": "https://olivares.cl",
"summary": "Artificial Intelligence Engineer at Emergent Mind, specializing in AI + Machine Learning, focusing on accelerating scientific discovery. Freelance content creator interested in neurotech and brain-machine interfaces. In free time, I make music, contribute to open-source, learn Mandarin, and travel.",
"location": {
@ofou
ofou / claude37.js
Created March 28, 2025 17:56
Dinosaur game vibecoding
// Pixelated Dinosaur Runner - Endless Runner Game
// Controls: Press SPACE, UP ARROW, or CLICK to jump
// Game variables
let dino;
let obstacles = [];
let grounds = [];
let clouds = [];
let score = 0;
let gameSpeed = 5;