Skip to content

Instantly share code, notes, and snippets.

@Jimmyson
Jimmyson / Australian_national_highway_blank_inverted.svg
Created September 6, 2023 11:08
Victorian Shaped Trailblazers
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Jimmyson
Jimmyson / Import_OC_ReMix_recording_to_MusicBrainz.user.js
Last active September 5, 2023 11:35
OCRemix Musicbrainz Userscripts
// ==UserScript==
// @name Import OC ReMix recording to MusicBrainz
// @author Jimmyson
// @namespace https://github.com/murdos/musicbrainz-userscripts/
// @version 1
// @grant none
// @match *://ocremix.org/remix/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js
// ==/UserScript==
@Jimmyson
Jimmyson / Australian_state_route_ring_road_80.svg
Last active August 28, 2023 10:15
Victoria Ring Road 80 Shield 1992
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Jimmyson
Jimmyson / ndi-pax.md
Last active November 5, 2022 01:27
NDI at PAX

Broadcasting Gameplay at PAX

This document aims to detail...

What is NDI

NDI (Network Device Interface) is a recently developed communication protocol that travels over the TCP/IP stack, and send real-time low latency audio/visual packets to devices over gigabit ethernet.

Network Device Interface - Wikipedia

@Jimmyson
Jimmyson / after effect loop.js
Created March 12, 2021 09:47
BBC News - Text Decode animation expression
//READS INPUTED TEXT
var string = text.sourceText;
var lng_size = string.length;
var lng_char = string.split("");
//DROPS SPACES
var srt_string = string.replace(/ /gi,"");
var srt_size = srt_string.length;
var srt_char = srt_string.split("");