Skip to content

Instantly share code, notes, and snippets.

View deyhle's full-sized avatar
🎯
Focusing

Ruben Deyhle deyhle

🎯
Focusing
View GitHub Profile
@deyhle
deyhle / gist:d1b967304cb046e7d87a82d9364c8445
Created February 26, 2021 07:52
regex that matches illegal invisible characters in code
[^\x00-\x7F]
@deyhle
deyhle / moneymoney_export.applescript
Created April 23, 2017 19:56
apple script to export all money money account data of the last 90 days as OFX to $HOME/Dropbox/MoneyMoney
#!/usr/bin/osascript
set backTo to ((current date) - 90 * days) as string
set now to (current date) as string
tell application "MoneyMoney"
set exported to export accounts
end tell
set tempDir to (path to temporary items as text)
set tempFile to tempDir & "accounts.xml"