And here's a command that tries to fix up a mistake after you type it. Like this one, it's also named like what you might say afterwards. https://github.com/nvbn/thefuck
Show HN: Oh-heck, a terminal command for when you forget other terminal commands
81–90 of 132 posts
Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#82This used to be called "man".
Because a man page for how to remove a limit of 50 files in a certain directory created after a certain date is equal to an AI-powered script to make the entire almost unreadable command in 2 seconds.
Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#83All problems in software development can be solved by another level of indirection. Slow and buggy neural networks are especially suited for such a task.
Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#84The quick demo looks pretty dope, but I am never gonna pay a subscription for a closed source token-identified cli tool. I would have paid a one time fee for a similar tool that doesn't phone home to check my api key every time I use it.
Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#85The quick demo looks pretty dope, but I am never gonna pay a subscription for a closed source token-identified cli tool. I would have paid a one time fee for a similar tool that doesn't phone home to check my api key every time I use it.
Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#86Am I crazy to think that a tool like this is an accident waiting to happen? I'm assuming that this tool is for people who aren't familiar with the system enough to get what they need from the man pages and would rather not invest the time to become deeper on it. If you don't remember the command you need to use, how can you be sure it is the correct command and options before you run it? edit: typo
sudo rm -rf /Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#87Example:
# 2022-02-07
# because `poetry show --outdated` includes *all* packages (!), not just top-level dependencies
function poetry-show-outdated {
poetry show --outdated | grep --file=
Or: function disk-usage-summary () {
# output high-level disk usage stats
set -x
du --human-readable --summarize
du --human-readable --max-depth=1
df --human-readable --total
set +x
}Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#88Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#89Re: Show HN: Oh-heck, a terminal command for when you forget other terminal commands
#90The quick demo looks pretty dope, but I am never gonna pay a subscription for a closed source token-identified cli tool. I would have paid a one time fee for a similar tool that doesn't phone home to check my api key every time I use it.
My guess is that it's relying on openai calls to do the hard work, and thus someone has to pay for them. I believe that GPT-3, which this relies on, is not open source and probably not easy to run on your device.
Microsoft announced on September 22, 2020, that it had licensed "exclusive" use of GPT-3; others can still use the public API to receive output, but only Microsoft has access to GPT-3's underlying model. https://en.wikipedia.org/wiki/GPT-3