There's a bunch of stuff in there that saves you seconds each time you have to work with a user story or cut a branch or merge etc... Saved me a bunch of time over the years!
Ask HN: What automation tools have you used to replace mundane activities?
41–50 of 234 posts
Re: Ask HN: What automation tools have you used to replace mundane activities?
#42Re: Ask HN: What automation tools have you used to replace mundane activities?
#43Re: Ask HN: What automation tools have you used to replace mundane activities?
#44Have you tried https://pipedream.com ? You can run Node.js (with any npm package) on webhook/http requests, emails and schedules for free. It also manages auth (including oauth token generation and refresh) for popular apps like Google Sheets, Discord, Slack and Airtable -- just use the auths object to reference tokens and keys in code.
Re: Ask HN: What automation tools have you used to replace mundane activities?
#45Re: Ask HN: What automation tools have you used to replace mundane activities?
#46Playwright is a new alternative to Selenium, and besides being cross-browser, is focused on performance, developer ergonomics and reliability (death to flakiness!). Might be worth checking out? https://github.com/microsoft/playwright . Disclaimer: I work with the Playwright team at Microsoft.
Edit: Missed the Microsoft ref. Not so keen.
Re: Ask HN: What automation tools have you used to replace mundane activities?
#47- FileJuggler on Windows, to automatically clean Desktop, Download folder and archive everything into a date-based folder structure in Drive.
- AutoHotKey to insert text templates into everything (e.g. current date, formatted Jira issues, annoying things to type)
The problem with automation is that one will want to break even quickly [time saved > (time spent finding/setting/maintaining)] otherwise automation is just a glorified delayed action. Time saving is not the only reason for automating but I assume it's n°1's when it comes to personal use.
Re: Ask HN: What automation tools have you used to replace mundane activities?
#48Playwright is a new alternative to Selenium, and besides being cross-browser, is focused on performance, developer ergonomics and reliability (death to flakiness!). Might be worth checking out? https://github.com/microsoft/playwright . Disclaimer: I work with the Playwright team at Microsoft.
> setTimeout-free automation
How ? you still need an upper limit for operations
Re: Ask HN: What automation tools have you used to replace mundane activities?
#49Autohotkey on windows is my goto tool. I don;t know much about it but I can do the basics like move mouse to x.y coordinate and click it, or send a string of keystrokes to a form etc.
It is much easier to do those actions with Python ( https://automatetheboringstuff.com/2e/chapter20/ )
Additionally you can bundle the interpreter for your scripts into a standalone .exe that can run on anybody's windows machine without needing ahk installed. It's a one-click operation done in a program that was also written in autohotkey (https://github.com/AutoHotkey/Ahk2Exe). I can't imagine anything as resilient as AHK when it comes to scripting automation programs on windows.
Re: Ask HN: What automation tools have you used to replace mundane activities?
#50>>my goodness, it'd be slow and potentially flaky all via the web UI for those sites Generally, I've had better luck using undocumented APIs for this kind of stuff. I was a heavy user of Selenium to automate many a task (I work in wholesale construction goods, tons of automations needed everywhere). But then discovered that using internal APIs (which surprisingly don't change much) is far easier than trying to except…