Skip to content

Instantly share code, notes, and snippets.

View misaka's full-sized avatar

Misha Gorodnitzky misaka

  • Digitally Manufactured
  • London, UK
View GitHub Profile
@misaka
misaka / Gemfile
Created January 27, 2012 11:29
Guardfile for py.test
source "http://rubygems.org"
group :development do
gem 'guard'
gem 'ruby_gntp'
gem 'growl'
end

Keybase proof

I hereby claim:

  • I am misaka on github.
  • I am misaka (https://keybase.io/misaka) on keybase.
  • I have a public key ASBrhuFUaRVKKB1ZhjlTaRkRG8OtX8FdmVl7jynJzkS5ego

To claim this, I am signing this object:

@misaka
misaka / CategoriseTransactions.js
Last active March 19, 2023 13:04
JXA script to categorise transactions in Numbers.app
// JXA script to categorise selected rows of bank transactions in Numbers.app. Paste
// this script into ScriptEditor.app and run it there.
//
// See these for more info on using JXA:
//
// https://developer.apple.com/library/archive/releasenotes/InterapplicationCommunication/RN-JavaScriptForAutomation/Articles/Introduction.html
// https://www.macstories.net/tutorials/getting-started-with-javascript-for-automation-on-yosemite/
//
//
//
@misaka
misaka / install.sh
Created July 30, 2019 09:51
Homedirectory installer thing.
#!/bin/sh
while [ -n "$*" ]
do
opt=$1
shift
case $opt in
-f|--force)
force=1
;;