DRYing Out Your Zapier Paths

If you've built anything complex in Zapier, you've probably used the Paths app to provide conditional logic. If you're working with paths, you've probably found yourself tediously setting up duplicate actions in multiple locations within your workflow, wishing for a way to have two Zapier paths end up at the same action step. Fortunately there's … Continue reading DRYing Out Your Zapier Paths

Testing Pre-Request Scripts in Postman

I don't have enough time to give the full background that I would want to give, because Luke is having a tantrum downstairs and I think my buddy-free time is about to end. I am using Postman as a real-code alternative to Integromat. I'm using Postman to connect Quickbooks to Airtable and Zoho CRM. Coding … Continue reading Testing Pre-Request Scripts in Postman

So I Just Finished Reading Joel on Software…

Since he started blogging 18 years ago, Joel Spolsky has written over a thousand posts. His blog is big enough to fill four books and then some! And... I just read the whole thing in two weeks.  (He mostly quit blogging after 2010, so it went pretty quick toward the end, but still!) Fortunately he introduced me … Continue reading So I Just Finished Reading Joel on Software…

How to Bind Parameters to SQL Queries Using node-sqlite3

So you're using node-sqlite3 to work with a database. You want to run a SQL query that uses lots of parameters. You could string everything together with + operators but that's a big ugly pain: var sqlStatement = 'INSERT INTO Timesheet (date, category, duration) ' + 'VALUES ("' + newDate + '","' + newCategory +'","' newDuration … Continue reading How to Bind Parameters to SQL Queries Using node-sqlite3