Keybase proof
I hereby claim:
- I am splitbrain on github.
- I am splitbrain (https://keybase.io/splitbrain) on keybase.
- I have a public key whose fingerprint is 6AAD B781 05DD F7AB 7627 E73B 8EAD 3A2A 7700 A618
To claim this, I am signing this object:
<?php | |
// composer require phpseclib/phpseclib | |
require_once('vendor/autoload.php'); | |
$tenant = 'cosmocode'; | |
$policy = 'b2c_1_signupandsignin'; | |
<?php | |
/** | |
* DokuWiki Plugin jscheck (Action Component) | |
* | |
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html | |
* @author Andreas Gohr <andi@splitbrain.org> | |
*/ | |
// must be run within Dokuwiki | |
if(!defined('DOKU_INC')) die(); |
#!/usr/bin/php | |
<?php | |
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/'); | |
define('NOSESSION', 1); | |
require_once(DOKU_INC . 'inc/init.php'); | |
class FixerCLI extends DokuCLI { | |
protected $dir; |
#!/usr/bin/php | |
<?php | |
/** | |
* Very simple script to convert iOS xcode imageset directories to DIP buckets | |
* for Android development | |
*/ | |
if(!isset($argv[2])) { | |
die("Usage: ios2and.php <ios image asset folder> <android res folder>\n"); | |
} |
import smbus | |
from time import sleep | |
# select the correct i2c bus for this revision of Raspberry Pi | |
revision = ([l[12:-1] for l in open('/proc/cpuinfo','r').readlines() if l[:8]=="Revision"]+['0000'])[0] | |
bus = smbus.SMBus(1 if int(revision, 16) >= 4 else 0) | |
class TSL45315: | |
VAL_COMMAND = 0x80 | |
REG_CONTROL = 0x00 | VAL_COMMAND |
#!/usr/bin/php | |
<?php | |
echo 'please use https://github.com/splitbrain/dokuwiki-versionfix now'; |
I hereby claim:
To claim this, I am signing this object:
#! /usr/bin/php | |
<?php | |
class AndroidApp { | |
#0: Trees for Cars by Leo Grand | |
#1: 0,99 $ | |
#2: December 11, 2013 | |
#3: Complete | |
#4: Android Apps | |
#5: Transportation |
diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h | |
index a935bde..3ca167c 100644 | |
--- a/Marlin/Configuration.h | |
+++ b/Marlin/Configuration.h | |
@@ -8,13 +8,13 @@ | |
// Huxley: http://reprap.org/wiki/RepRapPro_Huxley_maintenance | |
// Uncomment ONE of the next three lines - the one for your RepRap machine | |
-//#define REPRAPPRO_HUXLEY | |
-#define REPRAPPRO_MENDEL |
#!/bin/sh | |
# | |
# Usage: wget -qO- https://raw.github.com/gist/4195252/ickeinit.sh |sh -s <installdir> | |
DIR="$1" | |
if [ -z "$DIR" ] | |
then | |
echo "Please give install directory as first parameter." | |
exit |