Skip to content

Instantly share code, notes, and snippets.

View bogstandard's full-sized avatar
🌲
Making Things

Eric bogstandard

🌲
Making Things
View GitHub Profile
@tomhicks
tomhicks / plink-plonk.js
Last active March 18, 2024 02:23
Listen to your web pages
@mpmckenna8
mpmckenna8 / bbcradio.sh
Created July 21, 2017 19:47 — forked from stengland/bbcradio.sh
Play BBC Radio with mpd or mplayer from the command line
#!/bin/bash
play() {
playlist="http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/uk/sbr_high/ak/bbc_$1.m3u8"
echo $playlist
if mpc
then
mpc add $playlist
mpc play
else
mplayer $playlist
@sebask
sebask / AgeofMythology.md
Last active February 16, 2024 21:10
Tweaks and Hacks for the classic Age of Mythology

Age of Mythology

Custom resolution

Create user.cfg in /startup and add the following lines (replace the values with suitable dimensions):

+nointrocinematics
xres=2880
yres=1800
@micahstubbs
micahstubbs / .block
Last active November 22, 2022 14:57
3D wireframe interaction with d3 zoom
license: MIT
border: no
@micahstubbs
micahstubbs / .block
Last active January 16, 2023 00:33
Soviet Bl.ock
license: CC0-1.0
@gre
gre / easing.js
Last active May 17, 2024 03:33
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {