I hereby claim:
- I am paddyzab on github.
- I am paddyzab (https://keybase.io/paddyzab) on keybase.
- I have a public key whose fingerprint is 5034 7928 087B CFE9 D962 C410 8843 B667 1D88 C023
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| private boolean isOutsideRange(int i, int lowerBound, int upperBound) { | |
| return (i < lowerBound || upperBound < i); | |
| } | |
| private boolean isInsideRange(int i, int lowerBound, int upperBound) { | |
| return (i < lowerBound && upperBound < i); | |
| } |
| public class RootUtil { | |
| public static boolean isDeviceRooted() { | |
| return checkRootMethod1() || checkRootMethod2() || checkRootMethod3(); | |
| } | |
| private static boolean checkRootMethod1() { | |
| String buildTags = android.os.Build.TAGS; | |
| return buildTags != null && buildTags.contains("test-keys"); | |
| } |
| function mytakescreenshoot() { | |
| adb shell screencap -p | perl -pe 's/\x0D\x0A/\x0A/g' > screen.png sips -Z 640 screen.png | |
| echo "Resized and saved in current folder as: screen.png" | |
| } |
| #!/usr/bin/python | |
| # -*- coding: iso-8859-15 -*- | |
| import os | |
| #Small script to change the names of the files | |
| #containing dashes to replace them with underline | |
| #Android asset manager cannot compile dashes, and | |
| #sometimes it's easier to run the script than to | |
| #bother designer to change. |
| private static void assertIsColorClose(TextView label, int textColor) { | |
| int currentTextColor = label.getCurrentTextColor(); | |
| int currentRed = (currentTextColor >> 16) & 0xFF; | |
| int currentGreen = (currentTextColor >> 8) & 0xFF; | |
| int currentBlue = (currentTextColor >> 0) & 0xFF; | |
| int expectedRed = (textColor >> 16) & 0xFF; | |
| int expectedGreen = (textColor >> 8) & 0xFF; | |
| int expectedBlue = (textColor >> 0) & 0xFF; |
| #!/bin/bash | |
| #Get all of a directory(sdcard), and filter them | |
| for file in `adb shell ls /sdcard/Pictures/Screenshots/ | grep .png` | |
| do | |
| file=`echo -e $file | tr -d "\r\n"`; | |
| # create the directory to store the files in your filesystem | |
| mkdir -p ~/fetched_screenshots |
| Verifying that +patryk is my Bitcoin username. You can send me #bitcoin here: https://onename.io/patryk |
| void lcdPrintFloat( float val, byte precision) { | |
| // prints val on a ver 0012 text lcd with number of decimal places determine by precision | |
| // precision is a number from 0 to 6 indicating the desired decimial places | |
| // example: lcdPrintFloat( 3.1415, 2); // prints 3.14 (two decimal places) | |
| if(val < 0.0){ | |
| lcd.print('-'); | |
| val = -val; | |
| } |
| #!/bin/bash | |
| # Script adb+ | |
| # Usage | |
| # You can run any command adb provides on all your currently connected devices | |
| # ./adb+ <command> is the equivalent of ./adb -s <serial number> <command> | |
| # | |
| # Examples | |
| # ./adb+ version | |
| # ./adb+ install apidemo.apk | |
| # ./adb+ uninstall com.example.android.apis |