Skip to content

Instantly share code, notes, and snippets.

View gingerbeardman's full-sized avatar

Matt Sephton gingerbeardman

View GitHub Profile
@gingerbeardman
gingerbeardman / lite_yt_embed.rb
Last active January 4, 2025 19:35
jekyll plugin to enable better youtube embeds with lite-yt-embed
module Jekyll
class YouTubeEmbed < Liquid::Tag
def initialize(tag_name, input, tokens)
super
@input = input.strip
end
def render(context)
parts = @input.split(' ')
@gingerbeardman
gingerbeardman / DSSPlayer.txt
Last active January 4, 2025 19:36
DSS Player version 7 software serial number for OM/Olympus DS-30 DS-40 DS-50 Digital Voice Recorder
8360-0101-0044-4084-1936
@gingerbeardman
gingerbeardman / cdn_img.rb
Last active August 19, 2024 17:22
transform local image paths to use your own CDN server
# file: _plugins/cdn_img.rb
module Jekyll
class CDNImageTransformer < Generator
def generate(site)
@site = site
@cdn_url = "https://cdn.example.com"
@site.pages.each { |page| process(page) }
@site.posts.docs.each { |post| process(post) }
end
@gingerbeardman
gingerbeardman / maboshi-dslite.scad
Created April 20, 2024 19:26
Mockup of a modded DSlite specifically to play the game MaBoShi
// MaBoShi DSlite mod idea
$fn = 50;
module roundedcube_simple(size = [1, 1, 1], center = false, radius = 0.5) {
size = (size[0] == undef) ? [size, size, size] : size;
translate = (center == false) ?
[radius, radius, radius] :
[
@gingerbeardman
gingerbeardman / huginn.yahooauctions.json
Last active November 1, 2024 13:00
Huginn JSON for Yahoo! Japan Auctions, for importing into a Scenario
{
"expected_update_period_in_days": "1",
"url": [
"https://auctions.yahoo.co.jp/search/search?p=花札&en=Hanafuda&exflg=1&b=1&n=100&s1=new&o1=d&mode=1",
],
"type": "html",
"mode": "on_change",
"extract": {
"url": {
"css": "a.Product__titleLink",
{
"name": "NDS MaBoShi",
"identifier": "com.gingerbeardman.delta.ds.maboshi",
"gameTypeIdentifier": "com.rileytestut.delta.game.ds",
"debug": false,
"representations": {
"iphone": {
"edgeToEdge": {
"portrait": {
"extendedEdges": {
@gingerbeardman
gingerbeardman / FinderHackMod_CDRV_0_.FinderHack.68k.asm.txt
Created April 15, 2024 13:48
main code resource for FinderHackMod (oddly labelled as CDRV rather than DRVR)
# name: .FinderHack
# flags: 0x6400 (ENABLE_CONTROL, NEED_TIME, NEED_LOCK)
# delay: 1
# event mask: 0x0000
# menu id: 0
# open label: 0022
# prime label: 00A0
# control label: 0040
# status label: 00A0
# close label: 01D6
@gingerbeardman
gingerbeardman / 40 things.txt
Created April 5, 2024 13:53
40 things I have learned being a creative entrepreneur, by Michael Flarup, 2024 (Strategies for Playdate)
40 things I have learned\being a creative entrepreneur\\\\Michael Flarup\2024
system
Do what you think is fun
You become what you work on
Creative work\doesn't follow a straight line\from not-good to good
Be opinionated\about your work
Nothing is perfect
Find inspiration\in things you love
Love things fiercely
Impress your inner child\(or your actual children)
@gingerbeardman
gingerbeardman / rq_parallel.sh
Created March 22, 2024 16:18
parallel version of script in the Alfred Remove Quarantine workflow
# Helpers
function app_as_json {
/usr/bin/osascript -l JavaScript -e 'function run(argv) { return JSON.stringify({
title: $(argv[0]).stringByDeletingPathExtension.lastPathComponent.js,
subtitle: argv[0],
type: "file",
icon: { type: "fileicon", path: argv[0] },
arg: argv[0]
})}' "${1}"
}
@gingerbeardman
gingerbeardman / 192.168.8.1.js
Created March 4, 2024 18:42
Web UI login script for Huawei 5G CPE Pro router (H112-370)
if ( window.location.pathname.startsWith('/html/index.html') ) {
document.getElementById("login_password").value = "YourPasswordGoesHere!!1!"
setTimeout(function(){ document.getElementById("login_btn").click(); }, 300);
}