I hereby claim:
- I am xperimental on github.
- I am xperimental (https://keybase.io/xperimental) on keybase.
- I have a public key whose fingerprint is 6774 0203 4C2D 1311 0D9B 1749 2FA2 8F9B 0AB2 4687
To claim this, I am signing this object:
lb: | |
image: 'dockercloud/haproxy:latest' | |
links: | |
- web | |
ports: | |
- '80:80' | |
roles: | |
- global | |
web: | |
image: 'xperimental/goecho:v1.5' |
{ | |
"clientId": "", | |
"clientSecret": "", | |
"username": "", | |
"password": "" | |
} |
# Login to router using SSH | |
# Check if you have an invalid IPv6 address | |
# Should yield something with a mask /64 "in the middle" | |
uci get network.freifunk.ip6addr | |
# Set new prefix and remove invalid address | |
uci set network.globals.ula_prefix='fdef:1701:b5ee:42::/64' | |
uci delete network.freifunk.ip6addr |
#!/bin/sh | |
readonly _on=default-on # can also be "timer" when you want it to blink | |
readonly _led=/sys/devices/platform/leds-gpio/leds/tp-link:blue:qss/trigger | |
readonly _counter=$(cat /sys/kernel/debug/batman_adv/bat0/transtable_local 2> /dev/null | grep -c 'W') | |
if [ "${_counter}" = "0" ]; then | |
echo "none" > ${_led} | |
else | |
echo "${_on}" > ${_led} |
[ | |
{ | |
"_id": 0, | |
"modules": { | |
"main": "var _ = require('lodash');\nvar spawn = require('spawn');\nvar harvester = require('harvester');\nvar builder = require('builder');\nvar guard = require('guard');\n\nGame.s = spawn;\nGame.r = {\n h: harvester,\n b: builder,\n g: guard\n};\n\n_.forEach(_.values(Game.creeps), function (c) {\n _.forEach(_.values(Game.r), function(r) {\n if (c.memory.role == r.role) {\n r.brain(c);\n }\n });\n});\n", | |
"harvester": "/*\n * Module code goes here. Use 'module.exports' to export things:\n * module.exports = 'a thing';\n *\n * You can import it from another modules like this:\n * var mod = require('harvester'); // -> 'a thing'\n */\nmodule.exports = {\n role: 'harvester',\n body: [Game.WORK, Game.CARRY, Game.MOVE, Game.MOVE],\n brain: function (c) {\n if (c.energy < c.energyCapacity) {\n var sources = c.room.find(Game.SOURCES_ACTIVE);\n if (sources.length) {\n c.moveTo(sources[0]);\n c.harvest(sources[0]);\n }\n } else {\n var s = Game.spawns.Spawn1;\n c.moveTo( |
I hereby claim:
To claim this, I am signing this object:
ADD 2014 Prize Serials | |
---------------------- | |
Decompilation of ADD app by: goddchen, mauimauer and xperimental | |
4527 | |
1137 | |
1300 | |
3584 | |
3130 |
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
const ( | |
ScoreFactor = 10 | |
) |
#!/bin/bash | |
adb shell am start --ez confirm_credentials false --ei "lockscreen.password_type" 0 com.android.settings/.ChooseLockGeneric |
/* | |
* Copyright 2011 Benjamin Tissoires <benjamin....@gmail.com> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |