Printing PDFs to the Dropzone Drop Bar
• 3 min read
Skip all of the clicking-and-dragging by printing directly to the Dropzone Drop Bar right from the macOS print dialog window.
• 3 min read
Skip all of the clicking-and-dragging by printing directly to the Dropzone Drop Bar right from the macOS print dialog window.
• 7 min read
Some of my scripts for Adobe products have the ability to save user preferences. Here's how I save those preferences to a JSON like file on disk using ExtendScript and the Adobe Bridge Messaging API.
• 6 min read
Making neat little progress spinners that let you know things are working in your cli apps is quite simple using Python generators and context manager.
• 8 min read
Searching through HTML tables is super simple using Vanilla JavaScript, a few query selectors, and some neat methods.
• 6 min read
If you use Chrome on macOS and are jealous of Safari's ability to autofill Two Factor Authentication (2FA) security codes checkout this sweet Keyboard Maestro macro.
• 4 min read
I recently found myself needing to sort a list by cardinal directions. Here's a super simple solution to do custom sorting in Python.
• 6 min read
I needed a quick way to check off a bunch of linked records in Airtable so I worked up this little script to do it from an Airtable button.
• 6 min read
Building a search results page? Thinking about highlighting the search terms so they standout? Here's how I did it using vanilla JavaScript.
• 10 min read
I decided to switch my to-do list to Things 3 and needed to move a lot of to-dos over from Todoist. Seemed like a great project to explore their API and save myself a bunch of copying and pasting.
• 7 min read
While leaning about Python Type Hints, I wrote a nifty little function to display cool banners and help remind me about the concepts of type hinting.
• 5 min read
Need to generate a valid RSS feed for your Flask website? Using Flask-FlatPages? Well, it's really quite simple.
• 3 min read
If you're using Flask-FlatPages, it's really simple to generate a sitemap that plays nice with search engines and helps your website get noticed.
• 2 min read
Have you ever noticed as you learn more and more of a programming language, you often forgo the basics for a more complex solution? Well, today I was reminded of the KISS principle when I needed to unpack a bunch of tuples.