Author: Sean Gillies Version: 1.0
This document describes a GeoJSON-like protocol for geo-spatial (GIS) vector data.
| #!/bin/bash | |
| # This script automatically sets the version and short version string of | |
| # an Xcode project from the Git repository containing the project. | |
| # | |
| # To use this script in Xcode 4, add the contents to a "Run Script" build | |
| # phase for your application target. | |
| set -o errexit | |
| set -o nounset |
| lines with $ are commands | |
| ### install mkvtoolnix: | |
| $ brew install mkvtoolnix | |
| ### list content of the mkv-file: | |
| $ mkvmerge -i mymoviefile.mkv | |
| ### what will give you: |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>charactersArray</key> | |
| <array> | |
| <dict> | |
| <key>beginString</key> | |
| <string>'</string> | |
| <key>endString</key> |
| BathyScaphe Link Preview プラグイン システム ガイド | |
| プラグインのロード | |
| プラグインのロードのタイミング | |
| プラグインはデフォルトではリンクがクリックされるまでそのロードが遅延されます。 | |
| ユーザー/Library/Application Support/BathyScaphe/PlugIns フォルダからのプラグインのロード |
Unfortunately, xcode does not yet have support for importing OSX crash logs and symbolizing them. Therefore, you must use the command line and a little bit of manual work.
| //disable TOC button | |
| window.HelpViewer.showTOCButton(false); | |
| //enable TOC button | |
| //If you call this on window load it will flash active for a brief second and then disable again. | |
| //Call if after a delay of 250ms and is works fine | |
| //Not sure what the second variable does yet, but passing false works fine | |
| window.HelpViewer.showTOCButton( true, false, function() { | |
| //do something to toggle TOC in your webpage | |
| }); |
| # GPG on Tower |
| app = Application("CotEditor") | |
| app.includeStandardAdditions = true | |
| doc = app.documents()[0] | |
| function replaceSelectedText1(newText) { | |
| selectedRange = doc.selection.range() | |
| if(!selectedRange[1]){ | |
| // omit | |
| return newText | |
| } |