I hereby claim:
- I am vitriolix on github.
- I am vitriolix (https://keybase.io/vitriolix) on keybase.
- I have a public key whose fingerprint is C1A7 94D8 9F78 4699 6245 B7CA F272 6EBB 38D2 C97C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| public class ExifUtils { | |
| public static @Nullable Matrix getExifTranspositionMatrix(@NonNull String src) { | |
| Matrix matrix = null; | |
| try { | |
| ExifInterface ei = new ExifInterface(src); | |
| int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); | |
| if (orientation == 1) { | |
| return null; | |
| } |
A collection of links to useful cheat sheets.
Only what's properly printable can get in. It should also be small enough to fit on a few pages.
Pleae contribute any you remember you've seen and liked. It would be wonderful if we can get these to be something more commonly made.
https://cdn-cybersecurity.att.com/blog-content/GoogleHackingCheatSheet.pdf (nicely put together!)
| export var blockList = [] | |
| export var allowList = [] | |
| // export var soloList = ['foo'] | |
| // TODO | |
| // - prepend the name of the arguments that it is printing out? | |
| // - optional color | |
| // - optional spacing | |
| // - solo list |