Put flip somewhere in your $PATH and chmod a+x it.
Copy fuck into ~/.bashrc.
| --taken from http://benguild.com/2012/04/11/how-to-import-tasks-to-do-items-into-ios-reminders/#comment-1346894559 | |
| --set theFileContents to (read file "Users:n8henrie:Desktop:Reminders.txt") -- Change this to the path to your downloaded text file with your tasks in it! (Note the : instead of a / between folders) Or, just name them Reminders.txt and put them in your downloads folder | |
| --set theLines to paragraphs of theFileContents | |
| set theLines to {"task name 1", "task name 2"} | |
| repeat with eachLine in theLines | |
| tell application "Reminders" | |
| set mylist to list "Your List Name" | |
| tell mylist | |
| make new reminder at end with properties {name:eachLine, due date:date "7/10/2014 3:00 PM"} |
| #!/bin/bash | |
| __lower() { | |
| echo "$@"|tr "[:upper:]" "[:lower:]" | |
| } | |
| __menu() { | |
| local result="" | |
| PS3=$1 | |
| shift |
| -------------------------------------------------- | |
| -------------------------------------------------- | |
| -- Import tasks from Things to OmniFocus | |
| -------------------------------------------------- | |
| -------------------------------------------------- | |
| -- | |
| -- Script taken from: http://forums.omnigroup.com/showthread.php?t=14846&page=2 | |
| -- Added: creation date, due date, start date functionality | |
| -- Empty your Things Trash first. | |
| -- Note that this won't move over scheduled recurring tasks. |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "net/url" | |
| "os/exec" | |
| "strconv" |
| import keychain | |
| def set_get_user_pass(service): | |
| # store username and password in keychain if not found | |
| if not service in [x[0] for x in keychain.get_services()]: | |
| print 'Keychain does not contain %s username and password.' % service | |
| username = raw_input('Enter your %s username and press enter:' % service) | |
| password = raw_input('Enter your %s password and press enter:' % service) | |
| print 'Username %s and password saved for %s.' % (username, service) |
| set clickDelay to 0.3 | |
| set abbreviationList to {} | |
| set snippetsList to {} | |
| set disallowedGroups to {"AutoCorrect", "AutoCorrect Deutsch Snippets", "AlteNeue Rechtschreibung", "Deutsche Akronyme"} | |
| set disallowedSnippetContents to {"%e", "%d", "%a", "%A", "%m", "%1m", "%b", "%B", "%y", "%Y", "%H", "%I", "%1H", "%1I", "%M", "%1M", "%S", "%1S", "%p", "%@+", "%@-", "%key:", "%clipboard", "%|", "%<", "%^", "%>", "%v", "%-", "%+", "%fill:", "%fillpart:", "%filltext:", "%fillpopup:", "%fillarea:"} | |
| -- open the Text tab of Keyboard preferences | |
| tell application "System Preferences" | |
| activate | |
| delay 5 |
ophttp://www.domain.com ophttps://www.domain.com
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| import socket | |
| import webbrowser | |
| import re | |
| html = """ | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |