Skip to content

Instantly share code, notes, and snippets.

View fucx's full-sized avatar

Thomas Heinrichsdobler fucx

View GitHub Profile
Verifying my Blockstack ID is secured with the address 13Uv8C9n5RgggD4w3rZYMSkZ3nsXYfASyz https://explorer.blockstack.org/address/13Uv8C9n5RgggD4w3rZYMSkZ3nsXYfASyz
Verifying that +fucx is my openname (Bitcoin username). https://onename.com/fucx

Keybase proof

I hereby claim:

  • I am fucx on github.
  • I am fucx (https://keybase.io/fucx) on keybase.
  • I have a public key whose fingerprint is 210A EC0F AF4E 4F07 9B0F DE4A 082A 3C96 A987 87EA

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am dertyp on github.
  • I am fucx (https://keybase.io/fucx) on keybase.
  • I have a public key whose fingerprint is 210A EC0F AF4E 4F07 9B0F DE4A 082A 3C96 A987 87EA

To claim this, I am signing this object:

@fucx
fucx / duplicate-finder-window.applescript
Created August 28, 2012 14:51 — forked from topfunky/duplicate-finder-window.applescript
Make a new Finder window open to the same directory as the current one.
(*
Duplicate current Finder window
Author: Barry Els
Version: 1.1
*)
try
tell application "Finder"
set this_folder to (the target of the front window) as alias
@fucx
fucx / bezahlcode.js
Created October 15, 2011 08:25
Integration eines Bezahlcode in eine GrandTotal-Rechnungsvorlage
var name = ""; // Name des Zahlungsempfängers
var account = ""; // Kontonummer des Zahlungsempfängers
var BNC = ""; // BLZ des Zahlungsempfängers
// hier wird der Verwendungszweck generiert: "RG <Rechnungsnummer> KD <Kundennummer>"
var reason = "RG%20"+grandtotalrecord.name()+"%20KD%20"+grandtotalrecord.client().id();
var URL = "bank://singlepayment?";
URL += "name=" + name.replace(/\ /g,"+");
URL += "&account=" + account;