This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; |
OlderNewer