Skip to content

Instantly share code, notes, and snippets.

View joex92's full-sized avatar
🖥️
Music Programming

Joe X! joex92

🖥️
Music Programming
View GitHub Profile
@joex92
joex92 / LogFileDark.udl.xml
Last active June 29, 2023 15:08 — forked from mmdemirbas/LogFile.udl.xml
Custom log file syntax highlightings for Notepad++ by @foreachthing (Dark Theme) & @mmdemirbas (Light Theme)
<NotepadPlus>
<UserLang name="LogFile (Dark Theme)" ext="log">
<Settings>
<Global caseIgnored="yes" />
<TreatAsSymbol comment="no" commentLine="no" />
<Prefix words1="no" words2="no" words3="no" words4="no" />
</Settings>
<KeywordLists>
<Keywords name="Delimiters">[(0])0</Keywords>
<Keywords name="Folder+"></Keywords>
@joex92
joex92 / OpenSimplexNoise.js
Last active November 11, 2020 04:46 — forked from PARC6502/0_README.md
OpenSimplex Noise for openprocessing
// original from https://gist.github.com/PARC6502/85c99c04c9b3c6ae52c3c27605b4df0a
"use strict";
var OpenSimplexNoise;
(function() {
var constants_1 = {
NORM_2D: 1.0 / 47.0,
NORM_3D: 1.0 / 103.0,
NORM_4D: 1.0 / 30.0,
SQUISH_2D: (Math.sqrt(2 + 1) - 1) / 2,
@joex92
joex92 / appify
Last active April 10, 2020 08:55 — forked from mathiasbynens/appify
appify — create the simplest possible Mac app from a shell script
#!/bin/bash
if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF
appify v3.1.1 for Mac OS X - http://mths.be/appify
Creates the simplest possible Mac app from a shell script.
Appify takes a shell script as its first argument:
`basename "$0"` my-script.sh