- Close duplicate tabs
- Save all your tabs to an Apple Notes Note
Run with osascript ~/close_chrome_duplicates.scpt
or osascript ~/save_chrome_tabs_to_notes.scpt
Setup some alisases
enum StringValueKey | |
{ | |
Name = 1, | |
Title = 5, | |
Inscription = 7, | |
InscribedBy = 8, | |
FellowshipName = 10, | |
UsageInstructions = 14, | |
SimpleDescription = 15, | |
FullDescription = 16, |
ExportOptions.plist - Options in a better order | |
Xcodebuild manfile says the following | |
> **Distributing Archives** | |
> The -exportArchive option specifies that xcodebuild should distribute the archive specified by -archivePath using the options specified by | |
> -exportOptionsPlist. xcodebuild -help can print the full set of available inputs to -exportOptionsPlist. The product can either be uploaded to Apple or | |
> exported locally. The exported product will be placed at the path specified by -exportPath. | |
The following is the list of settings (as of Xcode 10.1) output by `xcodebuild --help` but in a more logical order. |
Sometimes you need the latest updates from Laravel Settler the Homestead base box source.
This assumes you're on macOS and have homebrew, Vagrant and Virtualbox installed.
These instructions are a slighly expanded version of the settler readme
mkdir settler-master
#include <Filter.h> | |
#include "U8glib.h" | |
#define RST 8 // Reset | |
#define CE 9 // CS | |
#define DC 10 // A0 | |
#define DIN 11 // MOSI | |
#define CLK 12 // SCLK | |
#define CURR 0 |
//: Playground - noun: a place where people can play | |
import UIKit | |
// If you're in a playground, you need to swizzle current locale | |
extension NSLocale { | |
class func jc_currentLocale() -> NSLocale { | |
return NSLocale.init(localeIdentifier: "en_AU") | |
} | |
} |
(function() { | |
/** | |
* This is an example fetching /users/current from cloud kit with a server to server token without utilising aplpe's cloudkit.js | |
* https://developer.apple.com/library/ios/samplecode/CloudAtlas/Listings/Node_node_client_s2s_index_js.html#//apple_ref/doc/uid/TP40014599-Node_node_client_s2s_index_js-DontLinkElementID_22 | |
*/ | |
const https = require('https'); | |
var fs = require('fs'); | |
var crypto = require('crypto'); |
Valid Schema
{
"swagger": "2.0",
"info": {
"version": "2.0.0",
"title": "Beanhunter API",
"description": "Description of the api goes here."
},