Skip to content

Instantly share code, notes, and snippets.

View bfollington's full-sized avatar
🪬
channeling

Ben Follington bfollington

🪬
channeling
View GitHub Profile
@cdata
cdata / pokemon_artifacts.csv
Last active May 28, 2025 04:50
CSV dump of Pokemon artifacts
We can't make this file beautiful and searchable because it's too large.
the,of,is,cause
pokemon/avatar_female,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,string:https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/204.png,
pokemon/avatar_female_shiny,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,string:https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/204.png,
pokemon/avatar_male,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,string:https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/204.png,
pokemon/avatar_male_shiny,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,string:https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/204.png,
pokemon/name,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,string:pineco,
pokemon/stat/attack,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,uint:65,
pokemon/stat/defense,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,uint:90,
pokemon/stat/hp,1SkpVtzgQxBRwcw6TB8tX4G41GnZRqJ7XEhSRZy4sVE,uint:50,
@schettino
schettino / useUserReducer.ts
Created March 30, 2019 20:23
Better Reducers with React and Typescript 3.4
import { useReducer } from 'react'
export function updateName(name: string) {
return <const>{
type: 'UPDATE_NAME',
name
}
}
export function addPoints(points: number) {
@NoelFB
NoelFB / TerrainEditor.cs
Last active January 22, 2021 02:13
Terrain Thingy
using UnityEngine;
using System.Collections;
using UnityEditor;
[CustomEditor(typeof(TerrainManager))]
public class TerrainEditor : Editor
{
private TerrainManager terrain { get { return (TerrainManager)target; } }
private Vector2Int? selected;
@staltz
staltz / introrx.md
Last active July 7, 2025 10:24
The introduction to Reactive Programming you've been missing