I hereby claim:
- I am TommyJerryMairo on github.
- I am t_j_m (https://keybase.io/t_j_m) on keybase.
- I have a public key whose fingerprint is 11A9 FC1B A570 FEEC 0B17 F42D C624 63BE 9F6B 2D7D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
#need ZenFoneRootKit_20150614.zip | |
#set -v | |
BASEDIR=$(dirname $0) | |
cd $BASEDIR | |
chmod +x files/adb.mac | |
chmod +x files/fastboot.mac | |
ADBBINARY="adb" |
#!/bin/bash | |
export TRIGGER=FB_RecoveryLauncher/recovery.trigger.new | |
export LAUNCHER=FB_RecoveryLauncher/recovery.launcher | |
export RECOVERY=FB_RecoveryLauncher/recovery.zip | |
export OEMTRIGGER=/system/bin/logcat | |
export OEMCMD=stop_partitioning | |
fastboot flash /tmp/recovery.zip $RECOVERY | |
fastboot flash /tmp/recovery.launcher $LAUNCHER |
From base/archlinux | |
Maintainer "TJM <[email protected]>" | |
ENV TERM=xterm-256color | |
RUN ["/usr/bin/pacman","-Sy"] | |
RUN ["/usr/bin/pacman","--noconfirm","-S","archlinux-keyring"] | |
RUN ["/usr/bin/pacman","--noconfirm","-S","pacman-mirrorlist"] | |
RUN ["/usr/bin/sed","-i","s/^#Server/Server/","/etc/pacman.d/mirrorlist.pacnew"] | |
RUN /usr/bin/bash -c '/usr/bin/grep -v \# /etc/pacman.d/mirrorlist.pacnew >/tmp/mirrorlist' | |
RUN /usr/bin/bash -c "/usr/bin/rankmirrors /tmp/mirrorlist > /etc/pacman.d/mirrorlist" | |
RUN ["/usr/bin/pacman","--noconfirm","-Syu"] |
// Based on http://stackoverflow.com/a/10520017/1307721 and http://stackoverflow.com/a/16022728/1307721 | |
Podium = {}; | |
Podium.keydown = function(k) { | |
var oEvent = document.createEvent('KeyboardEvent'); | |
// Chromium Hack | |
Object.defineProperty(oEvent, 'keyCode', { | |
get : function() { |
1. Host Tor relay | |
2. Host i2p node | |
3. Tor gateway via i2p | |
4. Gogs | |
5. zeronet node |
#include<iostream> | |
#include<cstdio> | |
using namespace std; | |
int main(int argc, char * argv[]){ | |
if(2==argc){ | |
int x = atoi(argv[1]); | |
cout << "Origional: " << x << endl; | |
//cout << "Big-endian: " << hex << uppercase << x << endl; |
#include<iostream> | |
#include<cstdio> | |
#include<unistd.h> | |
#include<getopt.h> | |
using namespace std; | |
int reverse(int); | |
void help(char *); | |
void big2lettle(int); |
#include <functional> | |
#include <algorithm> | |
#include <iostream> | |
#include <fstream> | |
#include <sstream> | |
#include <iomanip> | |
#include <numeric> | |
#include <cstring> | |
#include <cassert> | |
#include <cstdio> |
#include <functional> | |
#include <algorithm> | |
#include <iostream> | |
#include <fstream> | |
#include <sstream> | |
#include <iomanip> | |
#include <numeric> | |
#include <cstring> | |
#include <cassert> | |
#include <cstdio> |