November 2012

11/30/2012 22:21:10

I really like how you edited the video by arranging each cut to the beats to the music. Let’s keep all that. Just one small thing - let’s change the music.

That’s pretty much the worst thing that can happen with a client.

(via clientsfromhell)

11/29/2012 22:20:16

Send messages and URL's to your Pushover client easily

Today in the morning I tinkered with prowl.sh. I found the repo recently and think it’s a nice script to send Push Notifications to Prowl from just about everything. I never knew what curl -F does. Now I do, and because I do, I forked the repo and submitted a change that adds another script for Pushover.

I couldn’t help myself to make this a slightly more advanced Keyboard Maestro macro.

Download: https://www.box.com/s/v6ym85e1js4zzsrc1h1h

The macro displays a prompt where you can add everything the API supports. Message, title, etc. The most important one for me is the URL. Unfortunately this does not directly redirect right from where the notification is displayed. The app has to be opened first.
At the end of the prompt is a little tick box that reads “Google Chrome redirect”. I figured the way you, and I, want to use this is by dumbly pasting in the URL from any browser. The macro should take care of the redirect. It’s basically an if statement which replaces http or https with the Google Chrome URL scheme.

Search:

(http)(s?)

Replace:

googlechrome$2

The box is ticked by default. If you don’t want to have it ticked flip 1 and 0. (or remove it entirely in case you don’t use Chrome at all.)

Note 1: You may add iCab Mobile support this way easily.
Note 2: You can safely remove all parameters you don’t need. I’ve added all of them mainly for completeness. I’ll never use priority or URL title, but device may come in handy.
Note 3: API key for your Pushover client is required.

11/29/2012 21:40:06

Geek And Poke *.* is so great: Parenting A Geek

11/28/2012 22:20:27

The Reset

The Reset is a technique I’ve come to known lately. I was actually doing a “reset” once a day before, but now this thing has an actual name.

What is a Reset?

I’ve touched on what a reset is already. It’s basically a tool you can use to get your brain into a neutral position. It is meant to help you get back on track when you are mentally lost in a rabbit hole.

How to do it?

A reset is actually really easy. You try to fill your brain with any kind of thought that is not the thing you are doing at the moment.

Some examples:

There are no rules, as far as I know, the only thing you need to try is “think outside the box”. If you really really really need an app for that. Try Unstuck or Obliquely.

Just 10 minutes can lead to great results and get you back on track quickly.

11/27/2012 21:40:16

My Recurring OmniFocus Projects and Tasks

My Recurring OmniFocus Tasks

I thought I should share my recurring OmniFocus projects. They are far less elaborate than you might think. I’m probably just embarrassing myself with this, but here we go.

I’ll start with the Daily project:

Weekly:

Monthly:

Yearly:

I hope you find this most useful and inspirational.

11/25/2012 22:20:23

Quick Tip: ClickToPlugin for Chrome (sort of)

I recently “switched” to Chrome(ium)1 for no other reason than curiousness and was looking desperately for a an alternative to ClickToPlugin. The answer is ridiculously easy, because the function is built into Chrome. No extensions are required.

Go to your Settings. Advanced → Content Settings and enable Click to play.

Now when you visit a website with Flash content you can either click each of them to load individually or click the location bar2 icon.


  1. I’ll probably switch back to Safari though. 

  2. What’s it called again in Chrome? AwesomeBar? TremendouslyUsefulBar? ChillaxingBar? 

11/23/2012 22:20:00

Make your weblife Zapier

I have to write about Zapier here. I’ve first seen the app when I heard about Pushover. Recently I also stumbled across Gabe’s post on Zapier, which brought the tool again to mind, but it wasn’t until SendToDropbox stopped working before I gave it a try again.

To remind you of my main reason I need/want SendToDropbox. Read the original tutorial on MacStories.

With Zapier, or IFTTT, you can do the same. Zapier is free for 5 “zaps”. The free version has a time limitation and doesn’t include premium services like Basecamp, PayPal, QuickBooks, Zendesk, etc.

But for the thing I want it to do now, it’s good enough. All you have to do is connect Dropbox with Zapier. Add you custom “SendToZapier” email to Contacts.app and you’re good to go. Zapier works as well as SendToDropbox, except that it’s actually working. I sincerely hope SendToDropbox will continue its service, but I doubt it.

This is a referral link for Zapier, which you can click on and do me a favor. I’d appreciate it.

Here are some advanced tips (subscribe to their newsletter!):

11/23/2012 22:00:35

Black Friday Price Drops

11/23/2012 19:02:00

Poor (or rich?) person’s Launch Center Pro for iPad

I’m calling this a poor person’s workflow, because the solution I’m going to propose is a bit “hack-y”, but it’s for rich people who can afford $5 for Pythonista instead of Launch Center’s $2.

Ever since I wrote my first Python script, the Daily Diary one, and after I saw that you can put direct “links” to scripts on the springboard, it dawned on me that Pythonista could be used as Launch Center equivalent.

Note that for the following workflow Launch Center Pro (shortened to LCP) is not required, although it would make some things easier for you.

Let’s start with talking about URL schemes first. As a power feature many iOS applications support a custom URL scheme. It’s become a very prominent feature in many apps.
LCP is basically a composer for these URLs. Its best feature: displaying a prompt to the user to pass on input on execution. This way it becomes possible to create OmniFocus tasks right from Launch Center Pro or search on DuckDuckGo and many other things. The feature is pretty amazing, but with the power of Pythonista your possibilities become endless. With the app you cannot only display prompts, you can also pull data from the web and do calculations on them. The only problem is that Pyhonista is harder to use than it is to use Launch Center Pro. So by using Pyhonista you gain the possibilities of what an entire computer has to offer, at the cost of usability. You’re not limited anymore by what LCP has to offer, you can build your own stuff. I’m showing how to search DuckDuckGo in Google Chrome below. To my knowledge this is not built into LCP.

We’re going to use Launch Center Pro and Day One as example here. First we need to find our URL. The easiest you can do is open Launch Center Pro and add a new action for the app you want to have a shortcut for. Then when you’re done, go back to editing the action and copy the URL to the clipboard. If you don’t have LCP head over to handleOpenURL and search for your app. Unfortunately Day One is not in their database.

LCP’s “New Entry with Text” with a prompt produces the following URL:

dayone://post?entry=[prompt]

Let’s dissect it first:

Basic Python script

import webbrowser
import urllib

dayone_url = "dayone://post?entry="

# input
prompt = "> "
entry_text = raw_input("User input: \n" + prompt)

# url encode
entry_text = urllib.quote(entry_text)

# open in day one
webbrowser.open(dayone_url + entry_text)

Adapting to your needs

When ever you see a [prompt] in one of Launch Center’s actions, you need these two lines:

entry_text = raw_input("User input: \n")
entry_text = urllib.quote(entry_text)

Give every entry a unique name and use + to concatenate strings together.
urllib.quote encodes the input into URL form, e.g. spaces are replaced with %20, etc.

Getting shortcut icons on your home screen

Now that you have the basic ingredients on how to “convert” LCP actions into a Python script, let’s see how to call these quickly. The method is simple, omz:software has a special page where you can create web clips for Pythonista scripts.

Follow the instructions and make sure to write action=run into the “arguments” field. Then tap “Create Shortcut”. The page reloads. Now add a new bookmark to you home screen. (Action menu)

That’s it, basically, you can call your “Launch Center Pro” action now by tapping its icon on the home screen.

Bonus: Add OmniFocus task as Pythonista shortcut

https://gist.github.com/4136666

Launch Center Pro URL:

omnifocus:///add?name=[prompt]&note=[prompt]

Pythonista script:

import webbrowser
import urllib

# omnifocus:///add?name=[prompt]&note=[prompt]
omnifocus_url = "omnifocus:///add?"
task_name_url = "name="
note_url = "note="

# input
prompt = "> "
task = raw_input("Task: \n" + prompt)
note = raw_input("Note: \n" + prompt)

# url encode
task = urllib.quote(task)
note = urllib.quote(note)

# open in omnifocus
webbrowser.open(omnifocus_url + task_name_url + task + "&" + note_url + note)

Bonus 2: Search DuckDuckGo in Google Chrome for iOS

https://gist.github.com/4136671

Google Chrome URL scheme: googlechromes for https

Pythonista script (I’ve stripped out comments to make it shorter):

import webbrowser
import urllib

# http://duckduckgo.com/?q=asdf
ddg_url = "googlechromes://duckduckgo.com/?"
query_url = "q="

# input
prompt = "> "
query = raw_input("Query: \n" + prompt)
query = urllib.quote(query)

# open in chrome
webbrowser.open(ddg_url + query_url + query)

With a little knowledge of HTML you can even give these web clips custom icons, but this goes to far for this posting…

11/22/2012 22:20:18

Alfred custom searches are amazing (in case you didn't know already)

Disclaimer: This was supposed to be a post about how to redeem Mac App Store codes with Alfred, but I was a tad too enthusiastic and it turned out bigger. Enjoy the additional content!

Alfred is pretty useful, you know that already, but what you probably didn’t know that its Custom Searches are even more useful than you would have known. This function essentially lets you call every URL scheme that you want. Alfred allows you to pass arguments to the URL which is great for many things.

Here are some examples:

I could continue this list endlessly. Check out alfredtips.com for more info on custom searches.

A screenshot of my custom searches:

To create your own:

11/22/2012 09:42:15

Developers of Divvy release Shush - Cough and Push-to-Talk Button in one app

Shush app icon

I’ve been beta testing a little “microphone button” app for a while now. The app is called Shush and is pretty much what I would have wanted from apps like MuteMyMic or Push To Talk. I’m sure this is an app Brett Terpstra would be interested in as well. (Cough button)

Shush works in two ways. It’s either a cough button (mute mic when key is down) or a push-to-talk button. The app works either way. I thought it’s a neat idea and was looking for an app like this for a while. Then I found this little gem on MacDeveloper.net and immediately joined the beta. I saw it grow and now it’s released. I didn’t even realize it’s by Mizage. The developers who brought us Divvy. One of many mac user’s favorites.

Shush is $2.99 on the Mac App Store. Available now.

11/19/2012 22:00:28

Keyboard Maestro Macros Repo

Similar to my Launchbar Scripts repository, I’ve been meaning to put one online for Keyboard Maestro fans as well. This weekend I took the time and put it online.

GitHub: km-macros

The repo contains 108 macros at the moment, including my Markdown library. You can browse the repo for inspiration, fork it and contribute, or just download it.

Macros are meant to be imported “folder by folder”, rather than all at once. I’ve tried to make it more convenient for the user by putting all macros in a group labelled “Keyboard Maestro Macros Repo” before exporting. This way they are imported in a group of the same name, so that you can easier find them.

Note however: Some macros have very “commonly” used triggers like F1, ↑, or ↓. In these instances it is best to put the macros in a new group that is only available in one certain application, or a group that can be turned on and off by a separate shortcut. The window manipulation macros are an example of that. The triggers for moving a window by 1px in either direction is simply ↑, ↓, ←, and →. If not put in a new group you won’t be able to use these keys anymore.

Enjoy.

11/14/2012 22:00:00

Track Your Small Wins to Motivate Big Accomplishments (via 99U)

And, obviously, here’s the Keyboard Maestro macro for it. (I may have gone overboard with the Emojies…):

https://www.box.com/s/vopxewse6n2t9htk6yq3

UPDATE: I’ve updated the macro to include a status menu item you can manually click and changed the tagging syntax from @tag to the new #hashtag syntax.

UPDATE 2: hecteddy on Twitter asked how to get a similar workflow running on iOS. He was trying to setup Launch Center Pro, but the app can’t output multi-line strings. So I wrote a quick Python script for Pythonista. Pythonista has the advantage that it’s an universal app, so this runs on either device.

11/09/2012 20:27:00

I made my first donation today so that the money goes out as quickly as possible. 146 sales have been made in total, which sums up to $230 for charity. Not quite as much as Apple’s donation. ;-)

Thanks to everyone for their support!

The deal is still going on by the way!

11/09/2012 09:00:12

Next screencasts: your feedback wanted!

I’m currently trying to figure out which longer screencast to do next. To find out whether a project will be successful I use several products, e.g. Google Trends and Google’s Keyword Tool. Most important is "human generated" feedback, which may be the tipping point for a project. I did Hazel, because I just had to. People wanted it.

Therefore I would really appreciate if you take the time and answer below what app you are most interested in seeing a longer-ish tutorial.
You can also tweet me at @macscreencasts, Google+ or Facebook me.

What’s your most confusing/favorite/best app? What thing about your Mac/iPhone do you have most problems with and want to have someone tell you about?

I’m giving a couple of my favorite options as example.

These options on Google Trends.


  1. Let’s not start the “you can’t manage your time”-discussion here, OK? 

11/08/2012 22:00:11

How to overobsess email signatures with TextExpander

In Germany we are required to include a “business” signature in emails. Here’s a reference on the English Wikipedia, Germans can read this article on the specifics.
In short: we need to include address, commercial register number and some other information in business related emails — by law.

So, to make things more entertaining I figured I should come up with a TextExpander snippet that does everything and more.

Andreas Zeitler

my street
postal code city
%fillpart:name=tel?%my phone number%fillpartend%
––––
%fillpopup:name=mail add:default=main_address@zettt.de:other_addresses@other_domains.com%
%fillpopup:name=www:default=www.macosxscreencast.com and www.macosxscreencasts.de:www.macosxscreencasts.com:www.macosxscreencasts.de:www.zcasting3000.com%
%fillpart:name=affirmation%––––
%snippet:aff..%%fillpartend%
%fillpart:name=nowplaying%––––
%snippet:#nowplaying%%fillpartend%

 

Ok, so how does it work? Expanded it includes my name and address by default, an optional part can be included with my phone number. Then below are two popups for my email address (I use several) and the domain I want to refer to, most of the time this is Mac OS X Screencasts.

I wrote a snippet that uses my Vocab script to parse a list of affirmation messages. You know, to make my tax consultant feel good.

The last part is an AppleScript that checks whether iTunes is running and includes the title of one of my most favorite songs. The last two snippets are optionally of course.

11/07/2012 10:50:14

App Update: MacPilot 5

MacPilot is one of those apps I am so glad to have. About 4 or 5 years ago I bought the Utility Package, which gives you all apps for free for lifetime, upgrades included.

MacPilot is an app that allows you to tweak almost every aspect of OS X, but it doesn’t stop there. Included are even more hidden preferences for the most popular apps, including Transmit, Acorn, BBEdit, Aperture, and many many more. The app allows you to tweak many aspects of OS X, includes a network and disk scanner, plus tons of other features. It’s my favorite app of that sort.