←back to thread

1901 points l2silver | 6 comments | | HN request time: 0.779s | source | bottom

Maybe you've created your own AR program for wearables that shows the definition of a word when you highlight it IRL, or you've built a personal calendar app for your family to display on a monitor in the kitchen. Whatever it is, I'd love to hear it.
1. parentheses ◴[] No.35744039[source]
I'm slightly embarrassed that in terms of building personally relevant things, my proudest (digital) work is always shell scripts I use daily. Most of my personal projects are non-technical meat-space things like building with wood and the like. Here's some that I've open-sourced:

- A git interface using fzf that works pretty nicely and is very composable. https://github.com/bigH/git-fuzzy

- An interactive evaluator, perfect for interactive `sed`, `grep`, `jq`, etc. If properly configured, it'll keep history per command or using whatever key you give it. I find myself using it often with `jq`. https://github.com/bigH/interactively

There are many other shell functions/scripts that are interesting from my `dotfiles`. Particularly interesting snippets for anyone who wants them:

- A recursize `which` that follows symlinks and stops at a real file. https://github.com/bigH/dotfiles/blob/3d48792b4e910d2fc82504...

- A `watch` alternative that runs in the current shell. https://github.com/bigH/dotfiles/blob/3d48792b4e910d2fc82504...

replies(4): >>35744366 #>>35745438 #>>35759761 #>>35855476 #
2. seanw444 ◴[] No.35744366[source]
You accomplish things in real non-computer life? Nerd.

For the downvoters, that's what we call a "joke". I appreciate when I hear from not-terminally-online people on here.

replies(1): >>35744541 #
3. parentheses ◴[] No.35744541[source]
Upvoted ;)
4. alin23 ◴[] No.35745438[source]
I’m a long time user of git-fuzzy, thank you for that!

I am also grateful to hear about “interactively”, I always had to write some kind of half baked implementation, it’s great to finally have a defacto solution.

5. mjbamford ◴[] No.35759761[source]
I've just discovered git-fuzzy - it's fantastic! I missed its announcement on Hacker News some 3 years ago. Thanks for highlighting it in this thread!
6. toddyamakawa ◴[] No.35855476[source]
What kind of work do you do? Does your day job involve writing shell scripts? Or is that something you do on the side?