-
Downloads the Android SDK Command Line Tools
$ unzip android-sdk-macosx.zip $ cd android-sdk-macosx
-
Create a backup folder
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
<?php | |
/* | |
This file a Wordpress to Ghost image importer. | |
Before you run this script, you must have done the following: | |
1. Import your blog content in Ghost with Markdown syntax (very important). | |
I used ExitWP (https://github.com/thomasf/exitwp) then | |
replaced all my Ghost data by its equivalent in Markdown | |
2. Export your Ghost database (yourblogurl/ghost/debug) | |
3. Configure this script (see variables below) |
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
,.ood888888888888boo., | |
.od888P^"" ""^Y888bo. | |
.od8P'' ..oood88888888booo. ``Y8bo. | |
.odP'" .ood8888888888888888888888boo. "`Ybo. | |
.d8' od8'd888888888f`8888't888888888b`8bo `Yb. | |
d8' od8^ 8888888888[ `' ]8888888888 ^8bo `8b | |
.8P d88' 8888888888P Y8888888888 `88b Y8. | |
d8' .d8' `Y88888888' `88888888P' `8b. `8b |
Guide to root your device without installing a custom recovery.
Requires:
- Unlocked device
- TWRP
- Magisk v14.1+
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 | |
export AWS_ACCESS_KEY_ID= | |
export AWS_SECRET_ACCESS_KEY= | |
# Very importe: KEEP the --dryrun flag!! | |
aws s3 cp s3://bucket-name . --dryrun --recursive --exclude '*' --include '*.gzip' \ | |
| tr "\r" "\n" \ | |
| grep -v '^Completed ' \ | |
| cut -d' ' -f3 > filename |
I hereby claim:
- I am eexit on github.
- I am eexit (https://keybase.io/eexit) on keybase.
- I have a public key ASBA_xPOhPPBPMv-2ynWqZ9AoIyX6Sb-mV7nHomaM5gfnQo
To claim this, I am signing this object:
$ xattr -r -d com.apple.quarantine /Applications/BeardedSpice.app
http://osxdaily.com/2010/09/12/disable-application-downloaded-from-the-internet-message-in-mac-os-x/ http://osxdaily.com/2012/07/12/list-download-history-mac-os-x/
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
=== RUN Test_remove | |
=== RUN Test_remove/want_and_list_are_empty | |
=== RUN Test_remove/list_is_empty | |
=== RUN Test_remove/list_contains_only_one_occurence_of_wanted | |
=== RUN Test_remove/list_contains_only_occurences_of_wanted | |
=== RUN Test_remove/list_contains_one_occurence_of_wanted | |
=== RUN Test_remove/list_does_not_contain_occurence_of_wanted | |
--- PASS: Test_remove (0.00s) | |
--- PASS: Test_remove/want_and_list_are_empty (0.00s) | |
--- PASS: Test_remove/list_is_empty (0.00s) |
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
#!/usr/bin/perl | |
use 5.10.0; | |
use Cache::Memcached; | |
use Data::Dumper; | |
use MIME::Base64; | |
use strict; |
OlderNewer