-
-
InfluxDB
InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
-
-
I have a utility called ZSH Autosuggestions, and it's probably one of the most useful things on my computer. It shows you a sort of preview of the most recent command you typed that matches the prefix of the current command you are typing. It's basically an automatic tool that bookmarks commands based on usage. I think the best bookmark systems are ones which simply track your entire history and suggest relevant pages based on it. That way the process of bookmark creation is automatic and you don't have to predict what you will need to access frequently.
https://github.com/zsh-users/zsh-autosuggestions?tab=readme-...
-
I’ve used “bashmarks” for this for years: https://github.com/huyng/bashmarks
Super handy. This looks like it might be more polished version.
-
I use https://github.com/jarun/nnn/ with `cd` on quit if I need to scan around manually. Otherwise, zoxide.
-
I never used pushd and popd. Did not even know about them. But I use autojump it give directories a prioroty numbers and then you just have to type "j pro" and you cd into your projects folder for example.
https://github.com/wting/autojump
just looked at it again it also has a jc comment do and commands to open file explorer that I never used.
-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
working-directory
Random-access directory storage in your shell. Navigate deep project hierarchies super fast. The root of your current project is just a 'wd' away.
This is great!
I wrote a very similar tool for myself a long time ago: “wd” or Working Directory. Uses similar numeric slots but also has named “schemes” and sets environment variables for your slots for you.
https://github.com/karlin/working-directory