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 / 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;
@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 / 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": {
{
"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 / 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
{
"idx": 1,
"question": "What publicly available datasets are typically used for evaluating type inference systems in python?",
"folder": "b76c543d4510f862",
"key_ingredients": [
"https://docs.google.com/document/d/1GrNP4h2LDOADgSSPJ6shTyTdkuaJk_KQksE9V-Uc7z0/edit?usp=drivesdk",
"https://docs.google.com/document/d/1MJq20MMR3Qt5BozyrVlXlJdkbJE2jyi0iepfeyxp94Y/edit?usp=drivesdk"
],
"sources": "https://docs.google.com/document/d/1sDKis_Xz08YbMnGLHbnzvOByFc3WuAhRUrpKkABaRbI/edit?usp=drivesdk",
"src_answers": {
@ofou
ofou / How to Change Your Default Search Engine for an LLM with Web Search.md
Last active March 28, 2025 01:19
How to Change Your Default Search Engine

Instructions to Change Your Default Search Engine

Large language model (LLM) providers have integrated search capabilities into their platforms, combining traditional search with AI-powered reasoning for contextual and accurate responses. Customize your browser to use these AI-enhanced tools as your default search engine to improve your search experience. For Safari users, install this extension to customize search engines.[^1]

Steps to Change Your Default Search Engine

  1. Open your browser's settings.
  2. Navigate to the "Search Engine" or "Manage Search Engines" section.
  3. Follow these steps to update your default search engine:
  • Add a new search engine:
@ofou
ofou / git.md
Last active February 7, 2024 23:54
Git Commit History Exporter with Detailed Diffs in JSONL Format
git log --reverse --pretty=format:'%H' | while read commit_hash;
do
  # Extract required commit information
  commit_author=$(git show -s --format='%an' $commit_hash 2>/dev/null)
  if [ -z "$commit_author" ]; then
    echo "Skipping invalid commit hash: $commit_hash"
    continue
  fi
  
@ofou
ofou / heteronyms_by_freq.txt
Last active June 4, 2023 06:54
Heteronyms in Mandarin
('了', ['le', 'liǎo', 'liào']) 3
('是', ['shì', 'tí']) 2
('和', ['hé', 'hè', 'hú', 'huó', 'huò', 'huo']) 6
('有', ['yǒu', 'yòu', 'wěi']) 3
('他', ['tā', 'tuó']) 2
('不', ['bù', 'fǒu', 'fōu', 'fū', 'bú']) 5
('的', ['de', 'dī', 'dí', 'dì']) 4
('也', ['yě', 'yí']) 2
('为', ['wèi', 'wéi']) 2
('这', ['zhè', 'zhèi']) 2