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
| sudo gem install cocoapods -n /usr/local/bin |
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
| kuno-birdman:~ kuno$ defaults write com.apple.screencapture location ~/Documents/Screenshots/ | |
| kuno-birdman:~ kuno$ defaults write com.apple.screencapture name "" | |
| kuno-birdman:~ kuno$ defaults write com.apple.screencapture type jpg | |
| kuno-birdman:~ kuno$ killall SystemUIServer |
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
| defaults write com.apple.finder AppleShowAllFiles -boolean true | |
| killAll Finder |
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
| adb install -r /Users/path/is/here/app.apk |
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
| keytool -genkey -v -keyalg RSA -keystore /Users/kuno/path/is/here/[name].keystore -alias [appname] -validity 10000 |
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 UIKit | |
| class InstaStories: NSObject { | |
| private let urlScheme = URL(string: "instagram-stories://share")! | |
| enum optionsKey: String { | |
| case StickerImage = "com.instagram.sharedSticker.stickerImage" | |
| case bgImage = "com.instagram.sharedSticker.backgroundImage" | |
| case bgVideo = "com.instagram.sharedSticker.backgroundVideo" |