Skip to content

Instantly share code, notes, and snippets.

View actionless's full-sized avatar
🎹
https://www.youtube.com/c/ActionlessLoveless13

Actionless Loveless actionless

🎹
https://www.youtube.com/c/ActionlessLoveless13
View GitHub Profile
@actionless
actionless / Rhythm Wolf.control.js
Last active February 13, 2021 01:23
Akai Rhythm Wolf controller script for Bitwig 1.x
loadAPI(1);
host.defineController("Akai", "Rhythm Wolf", "1.0",
"FF7FA0F5-9B53-4854-828A-666666666666");
host.defineMidiPorts(1, 1);
host.addDeviceNameBasedDiscoveryPair(["Rhythm Wolf MIDI 1"], ["Rhythm Wolf MIDI 1"]);
function init() {
var generic = host.getMidiInPort(0).createNoteInput("Rhythm Wolf Pads");
generic.setShouldConsumeEvents(false);
@rikless
rikless / ff-font-arch
Created February 15, 2014 13:32
fix firefox font issue on archlinux
ln -s /etc/fonts/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/
@rxaviers
rxaviers / gist:7360908
Last active April 25, 2024 04:56
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@JNRowe
JNRowe / rc.moon
Created August 30, 2013 11:28
awesomewm config snippet for Matt.
notify =
debug: (text, title, timeout=10 using nil) ->
if settings.debug and text
mytitle = "Debug"
if title
mytitle = "#{mytitle}: #{title}"
_notify_partial(title: mytitle, :text, :timeout),
start: (text) ->
_notify_partial(:text, icon: "actions/system-run"),
stop: (text) ->
@piscisaureus
piscisaureus / pr.md
Created August 13, 2012 16:12
Checkout github pull requests locally

Locate the section for your github remote in the .git/config file. It looks like this:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = git@github.com:joyent/node.git

Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:

@cander
cander / basic.sh
Created May 25, 2012 04:47
Bourne Basic - a BASIC interpreter implemented (painfully) in pure Bourne shell
#!/bin/sh
#
#
# From: allbery@ncoast.UUCP (allbery@ncoast.UUCP)
# Subject: bournebasic
# Newsgroups: comp.sources.misc
# Date: 1987-08-18 18:54:12 PST
#
# Here's a useful BASIC interpreter written in Bourne shell.
# There's no manual but this demo shows the most salient features: