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
| 1. Create a folder called Payload | |
| 2. Place the .app folder inside of that | |
| 3. Zip up the Payload folder using normal compression | |
| 4. Then rename the file with a .ipa extension |
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
| eval "$(rbenv init - zsh)" | |
| function parse_git_branch() { | |
| git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p' | |
| } | |
| COLOR_DEF=$'%f' | |
| COLOR_USR=$'%F{243}' | |
| COLOR_DIR=$'%F{197}' | |
| COLOR_GIT=$'%F{39}' |
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
| alias deeplink="xcrun simctl openurl booted" | |
| alias ssh-keychain="ssh-add --apple-use-keychain ~/.ssh/id_rsa" | |
| adb-killall () { | |
| adb devices | grep emulator | while read line; do adb -s $line emu kill; done | |
| } |
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
| git update-index --assume-unchanged FILENAME | |
| git update-index --no-assume-unchanged FILENAME |
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
| rename 's/13-3-0/13-5-0/' */* |
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
| find . -type f -name '*.txt' -exec sed -i '' s/drutex/michal@test.pl/ {} + |
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
| ps aux | grep _sim | grep -v grep | awk '{print $2}' | xargs kill -9 2>/dev/null |
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
| *~ | |
| FailedSnapshots | |
| #*# | |
| *orig | |
| *_BACKUP_* | |
| *_BASE_* | |
| *_LOCAL*_ | |
| *_REMOTE*_ |
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
| #!/bin/bash | |
| echo Deleting merged branches... | |
| #git pull | |
| for b in $(git branch -a --merged develop); | |
| do | |
| branch=${b#"remotes/origin/"} | |
| if [[ "$branch" == "develop" ]]; then | |
| continue | |
| fi |
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
| @implementation ChildManagedObjectContext | |
| - (BOOL)save:(NSError *__autoreleasing *)error | |
| { | |
| NSError* superError; | |
| BOOL superResult = [super save:&superError]; | |
| if (!superResult) { | |
| *error = superError; | |
| return NO; |
NewerOlder