-
Use an iDevice
- Use an iPod or an iPad without a SIM card
- Use an iPhone
- Do not jailbreak
-
Use Signal (iOS)
-
Use TextSecure + RedPhone (Android)
-
Android?
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am sneakyness on github. | |
* I am sneakyness (https://keybase.io/sneakyness) on keybase. | |
* I have a public key whose fingerprint is 3B3A 7121 8095 1DB6 8F22 4631 7DA4 08F5 2FF2 FED1 | |
To claim this, I am signing this object: |
This file contains 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 __future__ import print_function, unicode_literals | |
import os | |
import os.path as path | |
import shutil | |
import subprocess | |
import sys | |
import tarfile | |
import urllib2 | |
import ssl |
This file contains 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
iPhone 5S Portrait (272, 441.5) | |
iPhone 5S Landscape (520, 205.5) | |
iPhone 6 Portrait (327, 540.5) | |
iPhone 6 Landscape (586, 260.5) | |
iPhone 6 Plus Portrait (362, 610) | |
iPhone 6 Plus Landscape (585, 288) | |
iPad Mini Portrait (535, 853) |
This file contains 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
Slayer's Testament I | |
In the first age, in the first battle, when the shadows first lengthened, one stood. Burned by the embers of Armageddon, his soul blistered by the fires of Hell and tainted beyond ascension, he chose the path of perpetual torment. In his ravenous hatred he found no peace; and with boiling blood he scoured the Umbral Plains seeking vengeance against the dark lords who had wronged him. He wore the crown of the Night Sentinels, and those that tasted the bile of his sword named him... the Doom Slayer. | |
Slayer's Testament II | |
Tempered by the fires of Hell, his iron will remained steadfast through the passage that preys upon the weak. For he alone was the Hell Walker, the Unchained Predator, who sought retribution in all quarters, dark and light, fire and ice, in the beginning and the end, and he hunted the slaves of Doom with barbarous cruelty; for he passed through the divide as none but demon had before. | |
This file contains 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
func queryItems(dict:[String:String]) -> [URLQueryItem] { | |
var items = [URLQueryItem]() | |
for (name, value) in dict { | |
items.append(URLQueryItem(name: name, value: value)) | |
} | |
return items | |
} |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>04:4B:ED:AD:C2:41-screen</key> | |
<dict> | |
<key>controls</key> | |
<array> | |
<dict> | |
<key>element</key> |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>1 1 1 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>SFMono-Bold - 12.0</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>1 1 1 1</string> |
This file contains 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 Foundation | |
enum ChampionString: String, Codable { | |
case ranger = "RANGER" | |
case scalebearer = "SCALEBEARER" | |
case visor = "VISOR" | |
case anarki = "ANARKI" | |
case nyx = "NYX" | |
case sorlag = "SORLAG" | |
case clutch = "CLUTCH" |
This file contains 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
//: A Cocoa based Playground to present user interface | |
import AppKit | |
import PlaygroundSupport | |
import Foundation | |
import CoreImage | |
import ImageIO | |
let nibFile = NSNib.Name("MyView") | |
var topLevelObjects : NSArray? |