var xhr = Ti.Network.createHTTPClient();
xhr.onload = function() {
Ti.API.info(this.responseText);
}
var payload = {
"foo":{
"foo":"bar"
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
``` | |
#!/usr/bin/env bash | |
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x | |
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions" | |
source "$PLUGIN_AVAILABLE_PATH/nginx-vhosts/functions" | |
case "$1" in | |
letsencrypt:sign) | |
[[ -z $2 ]] && dokku_log_fail "Please specify an app to run the command on" |
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
echo "Enter your Github email" | |
read githubid | |
echo "Resume RepoName you wish to give? Your resume will be accessible from http://"$github".github.io/RepoName" | |
read reponame | |
echo curl -u $githubid https://api.github.com/user/repos -d \'{\"name\":\"$reponame\"}\' | bash - | |
echo "Enter the complete path of your resume file" | |
read resumepath | |
cp $resumepath . |
The .screenflow
project contains much more than the .scc such as imported media and the edited timeline as well.
.screenflow
is the project..scc
is the screen recording within the project (or the scratch area until the project is saved)..dat
is an NSArchiver file object in binary format (bplist). It persists state at runtime without the need to manually save a project.media
is a folder containing physical media files that were imported and renamed with a hash. The.dat
file is updated.
Note: < i=OS 5.1 use
prefs:
. > 5.1 useapp-settings:
- app-settings:root=General&path=About
- app-settings:root=General&path=ACCESSIBILITY
- app-settings:root=AIRPLANE_MODE
- app-settings:root=General&path=AUTOLOCK
- app-settings:root=General&path=USAGE/CELLULAR_USAGE
- app-settings:root=Brightness
Original source: https://github.com/0xced/iOS-Artwork-Extractor/wiki/Extracting-more-artwork
You can extract even more artwork if you decrypt and mount an iOS firmware (.ipsw file).
- ipsw_decrypt.py
- Python 3.2 (required by ipsw_decrypt.py)
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
<div id="iPhoneBro" class="iPhone gen"> | |
<div class="title"> | |
<input type="submit" class="back button" value="Messages"> | |
<span class="contact_name button">(614) MEME-BRO</span> | |
<input type="submit" class="edit button" value="Edit"> | |
</div> | |
<div id="conversation" class="conversation "> | |
<div class="time"><div class="time"><p>Aug 9, 2012 3:43 AM</p></div></div><div class="text sent" id="query"><div class="reflect"></div><p>Check Out <a href-"http://www.memebro.com/?r=codepen">memebro.com</a></p></div> | |
<div class="text receive"><div class="reflect"></div><p>Try "+popular", "+trending", or "+new" for meme lists</p></div> | |
<div class="text sent" id="query"><div class="reflect"></div><p>+popular</p></div> |
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
'use strict'; | |
const Queue = require( 'firebase-queue' ); | |
function EventsCollector ( app_name, firebase, keen_client ) { | |
this.app_name = app_name; | |
this.firebase = firebase; | |
this.keen_client = keen_client; | |
} |