-
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
// Avoids the keyboard in a UIKit app by leveraging additionalSafeAreaInsets. | |
// You can put this in the root view controller so the whole app will avoid the keyboard. | |
// Only tested on iOS 13.3. | |
// Made for https://douglashill.co/reading-app/ | |
@objc func updateSafeAreaForKeyboardFromNotification(_ notification: Notification) { | |
guard let endFrameInScreenCoords = notification.userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? CGRect else { | |
return | |
} | |
// Please consider whether the force unwrap here is safe for your own use case. |
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
#!/bin/zsh | |
# | |
# | |
# Iconizer shell script by Steve Richey ([email protected]) | |
# Modified by Rich Ellis ([email protected]) based on contributions on Github from crishoj, giria | |
# Further modified by Nick Pannuto ([email protected]) based on gist comments from previous forks | |
# https://gist.github.com/steverichey/8493f3bd31ae71a9c933/forks | |
# | |
# Changelog: |
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
# This file was generated by Tor; if you edit it, comments will not be preserved | |
# The old torrc file was renamed to torrc.orig.1 or similar, and Tor will ignore it | |
ExitNodes {us} | |
StrictExitNodes 1 | |
ControlPort 9051 | |
DirReqStatistics 0 | |
HashedControlPassword 16:B4E75CA579C1C7D46016FFED1E8F35967198031230124FC45E4CD09D97 | |
Log notice stdout |
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
// | |
// SideMenuViewController.m | |
// MFSideMenuDemo | |
// | |
// Created by Michael Frederick on 3/19/12. | |
#import "ANSideMenuController.h" | |
#import "MFSideMenu.h" | |
#import "ANGlobalStreamController.h" | |
#import "ANUserStreamController.h" |