Buster Collings https://www.bustercollings.com build, measure, learn, share & enjoy Sun, 27 Dec 2020 17:50:26 +0000 en-US hourly 1 The Best New Things of 2020 (for me) https://www.bustercollings.com/blog/2020/12/27/the-best-new-things-of-2020-for-me/ Sun, 27 Dec 2020 17:50:26 +0000 https://www.bustercollings.com/?p=1389 Continue reading The Best New Things of 2020 (for me) ]]> In the year 2020… well… there were some things that were good.

For the past several years, I’ve been keeping a list of the “best new things” I’ve personally discovered in each year. I just add things to the list on my iPhone’s Notes app throughout the year. Looking back on past lists always brings me a smile.

Whether or not you find my list interesting, perhaps you too might enjoy keeping a list of your own personal “best new things.”

Keep in mind, these are things that were new to me; not necessarily new to the world.

Ready or not, here’s My List of the Best New Things of 2020:

Have a Happy New Year and may 2021 bring you many wonderful new things.

]]>
Helpful Free Mac Apps for Beginners and Essential Productivity Utilities for OS X https://www.bustercollings.com/blog/2016/05/14/helpful-free-mac-apps-for-beginners-and-essential-productivity-utilities-for-os-x/ Sat, 14 May 2016 20:39:51 +0000 http://www.bustercollings.com/?p=1175 Continue reading Helpful Free Mac Apps for Beginners and Essential Productivity Utilities for OS X ]]> As a relatively new user of Apple Mac OS X, I thought it might be useful to share what I think are must have Mac apps that everybody should consider using.

For Mac beginners, you’ll be glad to know that OS X has a lot of really nice built in features. My personal favorite is Spotlight. I highly recommend you browse through the official Mac Basics guides if you haven’t already; you might find an even better feature that you weren’t aware of.

For seasoned Mac users, hopefully you’ll discover a new gem from my short list!

Unlike other lists online that have 20, 50 sometimes 100 Mac apps, many of which you must pay for, I’ve really boiled things down to apps that I think beginners and long time users can appreciate. Paid apps can be great but, my hope is that, like me, you find these free apps help you start to become more productive with OS X and let you enjoy using your Mac even more than before.

So, first off is RescueTime. It’s a free app with a free service tier that will enlighten you on how you use your Mac. It’s a great way to see how much time you spend reading, writing, watching, listening, playing games, etc. You can see breakdowns by app and app category (which you can customize). RescueTime isn’t just for tracking “work” although it’s really good for that too.

★★★★★

Next up, Cheatsheet. “If you ain’t cheatin’ you ain’t tryin'” ☺ You should know, “a keyboard shortcut is a combination of keys that, when pressed simultaneously, perform some task that ordinarily requires use of a mouse or other input device and may take longer to do”. With Cheatsheet, as their website says, “Just hold the ⌘-Key a bit longer to get a list of all active short cuts of the current application. It’s as simple as that.” Keyboard shortcuts can be big time savers but often there are so many to choose from and multiple menus to pick from; it can be difficult to find what you’re looking for. Just Cheat with Cheatsheet!

★★★★★

My next recommendation, Spectacle, takes advantage of keyboard shortcuts to make the apps on your screen fit neatly together side-by-side. So, if you like having 2 apps view-able at the same time, perhaps your browser and word processor, you can neatly organize them without needing to clumsily drag and stretch them across your screen. You can even go wild, maybe you want 4 separate apps open at the same time; heck maybe 9! Whatever works for you; that’s the point.

★★★★★

Finally, as much as we love using our Macs, sometimes we over-do it. We stay up too late on our Macs and mess up our sleep schedule. There’s nothing good about not getting proper sleep. Check out f.lux and have sweet dreams.

★★★★★

Again, I hope you found at least 1 gem here to make you Mac experience even better than it was before. Adios.

]]>
Simple Countdown Timer and Stopwatch with Laps for Bash https://www.bustercollings.com/blog/2016/03/03/simple-countdown-timer-and-stopwatch-with-laps-for-bash/ Thu, 03 Mar 2016 22:18:23 +0000 http://www.bustercollings.com/?p=1156 Continue reading Simple Countdown Timer and Stopwatch with Laps for Bash ]]> There are a lot of decent, small shell scripts for creating a simple timer or simple stopwatch. Yet, I needed a bit more than the ones I found on Google, so of course, I made some of my own.

My simple stopwatch for Bash lets you create laps, pause and gives you a total elapsed time. Keep in mind, it’s all presented in seconds.

stopwatch with laps for bash

My simple timer for Bash just countdowns the number of seconds you provide and then beeps. Like my stopwatch script, it’s all based on seconds so that there aren’t a bunch of command line arguments to deal with.

countdown timer for bash

]]>
Cordova Tip: Automatically Open Web Inspector for iOS Simulator https://www.bustercollings.com/blog/2016/02/03/cordova-tip-automatically-open-web-inspector-for-ios-simulator/ Wed, 03 Feb 2016 17:44:06 +0000 http://www.bustercollings.com/?p=1138 Continue reading Cordova Tip: Automatically Open Web Inspector for iOS Simulator ]]> How many times have you painfully, manually opened Safari Web Inspector after starting the iOS Simulator with `cordova emulate`? Too often. Me too. No more.

I found a nifty osascript gist then tweaked it a little and put it inside a shell script `ios-sim-inspector`.

Then, I added a couple of new Cordova aliases to my bash profile (leveraging a couple of existing aliases)


## Existing Aliases ##

# Run iOS Simulator
alias corem="killall Simulator || echo && cordova emulate"

# Build and Run iOS Simulator
alias corbem="killall Simulator || echo && cordova build && cordova emulate"


## New Aliases with Web Inspector'ing ##

# Run iOS Simulator with Safari Web Inspector (for Debugging)
alias coremd="corem && ios-sim-inspector"

# Build and Run iOS Simulator with Safari Web Inspector (for Debugging)
alias corbemd="corbem && ios-sim-inspector"

Now you know how to painlessly open Safari Web Inspector after starting the iOS Simulator with Cordova emulate from the command line.

]]>