Skip to content

Instantly share code, notes, and snippets.

View regular's full-sized avatar

Jan Bölsche regular

View GitHub Profile
@regular
regular / bop-force-reindex.sh
Created October 30, 2020 07:39
shell script that deletes all leveldb-based indexes of all networks and identities managed by Bay of Plenty (BSD/OSX version)
#!/bin/sh
find ~/.bay-of-plenty/networks -name CURRENT|xargs -I% dirname % | xargs -I% rm -rf %
@regular
regular / keybase,md
Created July 9, 2015 15:35
keybase proof
### Keybase proof
I hereby claim:
* I am regular on github.
* I am regular (https://keybase.io/regular) on keybase.
* I have a public key whose fingerprint is 46CE A154 1AA9 675F 5A1B C272 FA9C 3566 AE53 56B2
To claim this, I am signing this object:
@regular
regular / require.js
Created November 10, 2010 23:47
an implementation of require() that runs in a browser and downloads code from a server
// require.js
// a browser-side implementation of require()
// (c) 2010 Jan Bölsche <jan@muskelfisch.com>
// See my blog post at http://blog.lagomorph.de/2010/11/require-requirements
// This code is licenced under the terms of the GPL (any version you prefer)
// requires JQuery.
var moduleExports = {}; // hash of hashes, stores exported objects of all loaded modules