Skip to content

Instantly share code, notes, and snippets.

View ygorlf's full-sized avatar
🏠
Working from home

Ygor Fonseca ygorlf

🏠
Working from home
View GitHub Profile
@bjarneo
bjarneo / hackerman.json
Created October 20, 2025 18:05
Hackerman Blueprint for Aether
{
"name": "Hacker",
"timestamp": 1760965387035,
"palette": {
"wallpaper": "",
"colors": [
"#0B0C16",
"#31f759",
"#4fe88f",
"#50f7d4",
@frankandrobot
frankandrobot / Boid.ts
Created January 17, 2022 06:02
Flocking - An implementation of Daniel Shiffman's Boids program to simulate the flocking behavior of birds. Each boid steers itself based on rules of avoidance, alignment, and coherence. https://processing.org/examples/flocking.html
import "@pixi/math-extras";
import { Point } from "pixi.js";
/**
*
* Limit the magnitude of the point to the given max.
*/
function limit(p: Point, max: number): Point {
const x = p.x;
const y = p.y;
@koingdev
koingdev / ExportOptions.plist
Last active October 15, 2025 06:22
Script to automatically upload iOS App to AppStore and TestFlight (including versioning)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>destination</key>
<string>upload</string>
<key>method</key>
<string>app-store</string>
<key>provisioningProfiles</key>
<dict>