I hereby claim:
- I am ajmeese7 on github.
- I am ajmeese7 (https://keybase.io/ajmeese7) on keybase.
- I have a public key ASCBYacYo9geS14d88Hv0dxuWLh6nuPu5ZQPYTKemTKKhQo
To claim this, I am signing this object:
| sudo apt-get update | |
| sudo apt-get install make gcc linux-headers-$(uname -r) build-essential git dkms | |
| git clone https://github.com/lwfinger/rtl8188eu.git | |
| cd rtl8188eu | |
| make all | |
| sudo make install |
| alias cat='_cat(){ echo "$(<$1)";}; _cat' |
| #!/bin/bash | |
| git fetch --all | |
| git reset --hard origin/master |
| curl https://raw.githubusercontent.com/TheSpeedX/SOCKS-List/master/http.txt -o proxyList.txt |
| /** Modified from https://stackoverflow.com/a/26917987/6456163 */ | |
| String.prototype.parseFunction = function () { | |
| /** Removes inline comments, courtesy of https://www.regextester.com/93742 */ | |
| const strippedOfComments = this.replace(/[^:]\/\/.*/g, ''); | |
| const funcReg = /function *\(([^()]*)\)[ \n\t]*{(.*)}/gmi; | |
| const match = funcReg.exec(strippedOfComments.replace(/(\n|\t)/g, '')); | |
| // If the passed string is somehow not a function | |
| if (!match) return null; |
| @keyframes static { | |
| 0% { | |
| transform: translateX(-1000px); | |
| } | |
| 33% { | |
| transform: translateY(-1000px); | |
| } | |
| 66% { |
| did:3:kjzl6cwe1jw1496p6mu2si9t1s6q1uyyez90t4irl7l2hng5rpfh3prchm18xk2 |
| // Set console.log to log to a file, for easy debugging of large amounts of data; | |
| // https://stackoverflow.com/a/33898010/6456163 | |
| const fs = require('fs'); | |
| const util = require('util'); | |
| const logFile = fs.createWriteStream('console.log', { flags: 'w' }); | |
| var logStdout = process.stdout; | |
| console.log = function () { | |
| logFile.write(util.format.apply(null, arguments) + '\n'); | |
| logStdout.write(util.format.apply(null, arguments) + '\n'); | |
| } |
| /* | |
| Please write a function that adds two large numbers represented by a string , such that the output is not expressed in scientific notation. | |
| */ | |
| function add(a, b) { | |
| let aNums = breakIntoManageableParts(a); | |
| let bNums = breakIntoManageableParts(b); | |
| let remainder = 0, bigSum = ""; | |
| while (aNums.length > 0 || bNums.length > 0) { |
I hereby claim:
To claim this, I am signing this object: