This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import re | |
import os | |
import evernote | |
import evernote.api.client | |
import evernote.edam.type | |
import datetime | |
dev_token = # token here | |
client = evernote.api.client.EvernoteClient(token=dev_token) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defalias 'ask-user-about-supersession-threat '(lambda (fn) nil)) | |
(defalias 'verify-visited-file-modtime '(lambda (&optional p) t)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CFLAGS=-Os | |
ndkroot=/usr/local/android-ndk.8b | |
platformroot=$(ndkroot)/platforms/android-14/arch-arm/ | |
cc=$(ndkroot)/toolchains/arm-linux-androideabi-4.6/prebuilt/darwin-x86/bin/arm-linux-androideabi-gcc | |
cflags_all=$(CFLAGS) | |
cppflags_all=$(CPPFLAGS) --sysroot=$(platformroot) | |
ldflags_all=$(LDFLAGS) --sysroot=$(platformroot) | |
all: hello |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# io.smashthestack.org (level ~10) exploit tool | |
# alterakey <[email protected]> | |
import sys | |
import math | |
import re | |
import shutil | |
import tempfile | |
import subprocess |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# use as: cp adb-wrapper.sh ~/bin/adb (somewhere in your PATH) | |
here=`dirname $0` | |
adb=`env PATH="${PATH/$here//}" which adb` | |
$adb $@ | grep --line-buffered -v ' bta_pan_co_tx_path,' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From e134c55979f63a48868189b82b5c1ac4ad03fd0a Mon Sep 17 00:00:00 2001 | |
From: Takahiro Yoshimura <[email protected]> | |
Date: Fri, 13 Sep 2013 11:41:50 +0900 | |
Subject: [PATCH] Porting to Java 6/BC-149 | |
--- | |
abe.sh | 6 +++--- | |
build.xml | 4 ++-- | |
src/org/nick/abe/AndroidBackup.java | 6 +++--- | |
3 files changed, 8 insertions(+), 8 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
pid="$1" | |
if test -z "$pid"; then | |
echo "usage: $0 <pid>" | |
echo "debuggable PIDs:" | |
adb jdwp | |
exit 1 | |
fi | |
adb forward tcp:8600 jdwp:"$1" | |
rlwrap jdb -attach localhost:8600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2013 Takahiro Yoshimura <[email protected]> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Copyright 2013 Takahiro Yoshimura | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2013 Takahiro Yoshimura | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |