<a href="paw://current.document/requests/import?directoryapi_id=mashape.{MASHAPE_API_AUTHOR}.{MASHAPE_API_ID}" data-paw-api-name="{API_NAME}">Open in Paw</a>
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
<script type="text/x-handlebars" data-template-name="title"> | |
{{view.title}} | |
</script> | |
<script type="text/x-handlebars"> | |
<header class="topbar">{{view App.TitleView}}</header> | |
</script> |
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
/* | |
* Copyright (c) 2013 Micha Mazaheri | |
* Released under the MIT License: http://opensource.org/licenses/MIT | |
*/ | |
#define LMWindowDEBUGResponders | |
#ifdef LMWindowDEBUGResponders | |
static BOOL _showFirstResponderOverlay = YES; | |
#endif |
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
function evaluate(context){ | |
// get response body | |
var responseBody = context.getCurrentRequest().getLastExchange().responseBody; | |
// parse JSON | |
var jsonDict = JSON.parse(responseBody); | |
// access the value we need | |
var value = jsonDict.id; // e.g. access the "id" field | |
Find pictures from a directory and move them somewhere else (useful to find pictures from an iOS backup)
$ python findpic.py --rename --copy DESTINATION_DIR SOURCE_DIR
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
{ | |
"@context": "http://json-ld.org/contexts/person.jsonld", | |
"@id": "http://dbpedia.org/resource/John_Lennon", | |
"name": "John Lennon", | |
"born": "1940-10-09", | |
"spouse": "http://dbpedia.org/resource/Cynthia_Lennon" | |
} |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "Artist", | |
"description": "An artist from our database", | |
"type": "object", | |
"properties": { | |
"id": { | |
"description": "The unique identifier for an artist", | |
"type": "integer" | |
}, |
OlderNewer