Skip to content

Instantly share code, notes, and snippets.

View uniphonic's full-sized avatar

Jacob (jsh4) uniphonic

View GitHub Profile
@uniphonic
uniphonic / roundrobin.ksp
Created December 11, 2015 13:36 — forked from austensatterlee/roundrobin.ksp
Kontakt Round Robin Script
on init
declare $last_groupid := -1
declare $new_groupid
declare $N
end on
on note
$N := $NUM_GROUPS
disallow_group($ALL_GROUPS)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>map vs filter arr</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
@uniphonic
uniphonic / open-webinspector.applescript
Last active December 19, 2018 02:53 — forked from Thinkscape/open-webinspector.applescript
This is an AppleScript to automatically compile Cordova and open the Safari debugger. You can also use Automator to assign this script to a shortcut key.
#!/usr/bin/osascript
# AppleScript to automatically compile Cordova and open the Safari debugger
set maxWait to 20
set hasClicked to false
set x to 0
set device_name to "iOS Simulator"
# delay fix for yosemite
@uniphonic
uniphonic / notion2Habitica.py
Created August 10, 2022 02:18 — forked from gauchy/notion2Habitica.py
Notion to Habitica Sync tool
import requests, json
token = 'XXX'
databaseId = 'XXX'
headers = {
"Authorization": "Bearer " + token,
"Content-Type": "application/json",
"Notion-Version": "2021-05-13"
# once you have an app created and downloaded:
curl -sSL https://get.wasp-lang.dev/installer.sh | sh
cd {app_folder}
# to install NVM:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
nvm install 18
nvm use 18
wasp db migrate-dev
wasp start