I am a big fan of the application launcher Alfred. To call it an application launcher is an understatement as it is very powerful. In my day to day usage I probably only use a quarter of its entire feature set.

One feature I’ve been using a lot more of lately is its snippets. This is considered a power feature and requires the “power pack” that costs between £17.00 (single license) and £32.00 (mega supporter).

To set up snippets launch Alfred and go to settings. Then Features -> Clipboard -> Snippets. (The screenshot above is from this area)

Once you are on this screen you can add shortcuts of text that you typically use.

Here are the ones that I use a lot:

Today

This just generates today’s​ date:

{date}

Laravel Query Debugging

For those times when you want to see the SQL being generated by a query:

\DB::listen(function($sql, $bindings, $time) {
  var_dump($sql);
  var_dump($bindings);
  var_dump($time);
});

Lorem Ipsum Text

I surprisingly use this a lot.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Stripe Credit Card Testing

Stripe Snippets
Stripe Snippets

I use two numbers for most common testing:

Valid Card

4242424242424242

Declined Card

4000000000000002

Changing the Snippet keyword

If you’d like another shortcut other than snip you can set this from the history tab

Screen Shot 2016-02-08 at 11.03.01 AM
Edit the Snippet Keyword

I know several other apps handle snippets but I like Alfred since I already use it all the time and it prevents me from having to have multiple apps open.

2 thoughts on “ Alfred Snippets ”

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s