Live data from Hacker News

Ask HN: If you could automate one thing you do often at work, what would it be?

news.ycombinator.com

31–36 of 36 posts

Re: Ask HN: If you could automate one thing you do often at work, what would it be?

#31

We have many software programs that need to be run in sequence to transform a set of data from one form (on the order of tens to hundreds of GB) into a bunch of different output file formats. At some points the tools need to be run linearly, and at other points there are a few tools that need to be run in a branched fashion and then their outputs are combined in some complicated way using the next tool. Some of these…

did u look at aws batch maybe

Re: Ask HN: If you could automate one thing you do often at work, what would it be?

#32

It's not fully automate, but I frequently find myself having to do a lot of one off shell tasks, which are not quite worth the effort of writing a bash script. While some command is running I would like to start enqueing the next command. Technically I could write one command like this and go get a coffee: cd dir1 && task1 && cd ../dir2 && task2 some arg && etc But then the task would only start executing when I'm do…

How about run-parts?

Re: Ask HN: If you could automate one thing you do often at work, what would it be?

#33
post #9
post #4

Earlier quoted context omitted.

Meetings / stand ups We have recently automated stand ups, so the what I did yesterday/what I will do today/blockers are all pulled from Jira so now we only discuss major sprint goals and how to unblock any blockers...this reduces the meeting to just the important stuff

nice Does this mean keeping all status up to date in Jira? would you mind sharing how you do this?

We have really pushed the "Jira as the source of truth" mantra. Git commit hooks keep Jira up to date as far as moving tickets into "ready for review" when the PR is submitted, and into test when the PR is approved. The only manual cases are when a ticket is moved into "in progress" or blocked, otherwise it is assumed yesterday you worked on the last ticket you had in progress, and today you will continue it

Re: Ask HN: If you could automate one thing you do often at work, what would it be?

#35

It's not fully automate, but I frequently find myself having to do a lot of one off shell tasks, which are not quite worth the effort of writing a bash script. While some command is running I would like to start enqueing the next command. Technically I could write one command like this and go get a coffee: cd dir1 && task1 && cd ../dir2 && task2 some arg && etc But then the task would only start executing when I'm do…

Might be worth it for you to just get better at bash. Use background jobs and "wait":

    do.sh stuff &
    wait; do-other-stuff.sh -123 &
    wait; cd ../; do-something-else.sh
It'll run the first command, when it's done it'll move on to the next one, etc. Use "jobs" to see jobs. Further reading: https://tldp.org/LDP/abs/html/x9644.html
Post reply on HN