Skip to content

Instantly share code, notes, and snippets.

View epramono's full-sized avatar

Eric Pramono epramono

View GitHub Profile
@epramono
epramono / SendFantasticalEventToSomeone
Created November 5, 2013 14:53
This action allows you to send a Fantastical event to someone else via iMessage. This requires the recipient to have Fantastical 2 installed. Requires: Launch Center Pro 2.
launchpro-messaging://x-callback-url/?
to=[prompt-email:Recipient's Email Address]&
body=Please%20add%20this%20event%20to%20your%20Calendar%0A%0A
{{fantastical2://x-callback-url/parse?
sentence=[prompt-text:Fantastical Event Sentence]}}&
x-success=launchpro%3A%2F%2F
@epramono
epramono / FantasticalShow
Created November 5, 2013 14:42
These are some examples of Launch Center Pro actions that you can create to jump to a particular date in Fantastical. Requires: Fantastical 2 and Launch Center Pro 2.
fantastical2://show?date=[prompt-text:Date]
fantastical2://show?date=Today
fantastical2://show?date=Tomorrow
fantastical2://show?date=Weekend
fantastical2://show?date=Next%20Monday
@epramono
epramono / FantasticalSearch
Created November 5, 2013 14:41
These are examples of Launch Center Pro actions that you can create to search for events in Fantastical. Requires: Fantastical 2 and Launch Center Pro 2.
fantastical2://search?query=
[prompt-text:Search Keyword]&
scope=all
fantastical2://search?
query=Birthday&
scope=title
fantastical2://search?
query=Meet%20%2Fw&
@epramono
epramono / AddTasksToOmniFocus
Created October 31, 2013 11:53
This action will process each line in your draft into multiple emails sent into your OmniFocus mail drop account. This action assumes you have a Mail Action called OmniFocus that sends the [[title]] to your OmniFocus Mail Drop account. Requires: Drafts 3.5.4.
drafts://x-callback-url/create?
text=[[title]]&
action=OmniFocus&
allowEmpty=NO&
x-success=
{{drafts://x-callback-url/create?
text=[[body]]&
action=Add%20Tasks%20to%20OmniFocus&
allowEmpty=NO&
afterSuccess=Delete}}&
@epramono
epramono / AddEntriesToFantastical2
Created October 31, 2013 11:36
This action allows you to add multiple entries (events and reminders) into Fantastical 2 from a single post in Drafts. Requires: Drafts 3.5.4 and Fantastical 2.
fantastical2://x-callback-url/parse/?
sentence=[[title]]&
x-success=
{{drafts://x-callback-url/create?
text=[[body]]&
action=Add%20Entries%20to%20Fantastical%202&
allowEmpty=NO&
afterSuccess=Delete}}&
x-cancel=
{{drafts://x-callback-url/create?
@epramono
epramono / DraftsDropboxSync
Created October 18, 2013 09:10
This custom URL Action in Drafts allows you to sync the changes you made to a text file in your Dropbox folder using Launch Center Pro's [prompt] and 1Writer's replace URL. You need to map the Dropbox folders that you want to use in 1Writer, and use the mapped folder name as the parameter for the 1Writer URL. Requires: Drafts 2.5, 1Writer 1.2, a…
launchpro://?url={{
onewriter://x-callback-url/replace?
type=dropbox&
path=[prompt-text:Folder Name in 1Writer]&
name=[prompt-text:Filename with Extension]&
text=[[draft]]&
x-success=drafts%3A%2F%2F}}
@epramono
epramono / AddToQuotebook
Created October 17, 2013 16:35
This is a Javascript bookmarklet for Chrome on iOS. It lets you put the clipboard as the quotation you want to save in Quotebook, and the page URL as the quotation's source. It will trigger Launch Center Pro to prompt you the Author's name before redirecting you to Quotebook. Requires: Chrome, Quotebook 2.0, and Launch Center Pro 2.0.
javascript:window.location=
'launchpro://?url='+
encodeURIComponent(
'quotebook://add?quote=[clipboard]&author=[prompt:Author]&source='+
window.location.href);
@epramono
epramono / NewListInBeginFromLCP
Created October 14, 2013 15:24
This action allows you to use separate lines for each item that you want to add to an existing list in Begin. By default, Begin will add the new items to its Today's list. If you want any item to be added to the Tomorrow's list instead, append (tomorrow) to the end of each item that falls into this category. Requires: Begin 1.0 and Launch Center…
beginapp://x-callback-url/addTasks?
text=[prompt-list:List Items]&
x-success={{launchpro:}}
@epramono
epramono / NewListInSiloFromLCP
Created October 14, 2013 15:20
This action allows you to use separate lines for each item that you want to add to an existing list in Silo. Silo will create a new list even when the list name already exists.. Requires: Silo 1.0.5 and Launch Center Pro 2.0.
silo://x-callback-url/list_entity/add?
title=[prompt:List Name]&
notes=[prompt-list:List Items]&
x-success={{launchpro:}}&
x-source={{Launch Center Pro}}
@epramono
epramono / NewListinClearFromLCP
Created October 14, 2013 15:16
This action allows you to use separate lines for each item that you want to add to a new list in Clear. If you want to add to an existing list, provide the existing list name in the first prompt. Requires: Clear 1.2 and Launch Center Pro 2.0.
clearapp://list/create?
listName=[prompt:List Name]&
tasks=[prompt-list:List Items]