Live data from Hacker News

Ask HN: Tools you have made for yourself?

news.ycombinator.com

71–80 of 458 posts

Re: Ask HN: Tools you have made for yourself?

#72
I built a tiny Windows desktop app to hide files on my lap top from anyone who might be using the lap top briefly - visiting in-laws, friends who wanted to check email, etc. Building it was triggered by a nosy but technically un-savy sister who was always poking around.

This was about 8 years ago and I use it on all my machines since, even work ones. It 'hides' files by randomly renaming a folder's contents and removing the file extension. Simple, but surprisingly effective.

I called it Cloak My Stuff.

https://badwolfsoftware.com/cloakmystuff.html

Re: Ask HN: Tools you have made for yourself?

#73
I have a couple of projects that I’ve used over the years. My favourite is probably Architect, which is yet another Arch installer configured with a little bit of YAML and all in bash

https://github.com/jnsgruk/architect

It supports a couple of different options for partitioning, encryption, flicker free boot and some other nice bits :)

Re: Ask HN: Tools you have made for yourself?

#75
Back in 2006 I had a side job as an IT journalist. I wanted to draft my articles while away from the computer on the Pocket PC, as laptops were really out of my reach, and back in the day the localized input methods (touchscreen keyboards) were paid and expensive apps.

I ended up with a text editor supporting various formats and inpit languages, implemented in quite dreadful verbose C#, as I didn’t know any better.

https://sourceforge.net/projects/ppc-edit/

Re: Ask HN: Tools you have made for yourself?

#76
I wanted a way to keep track of my expenses so I built a mobile app in Flutter to do just that. App data is stored on device, no cloud, no tracking, no third parties, and I use SQLite files for storage and export. I made it available for free:

- for Android (https://play.google.com/store/apps/details?id=ro.lansator.ba...)

- iOS (https://apps.apple.com/us/app/banii-mei/id1436417739)

Great experience learning Flutter and publishing the app in both stores.

Re: Ask HN: Tools you have made for yourself?

#77
I'm in the middle of building an ML model to make it so I don't have to use green screen anymore when making my short films! It's based off of some recent research at the University of Washington, pretty fun stuff. Maybe 75% complete, starting to get semi-reasonable results finally.

Re: Ask HN: Tools you have made for yourself?

#80
I wanted frontend debugging in prod so I've been halfway through building a source map injection browser extension for a while. The problem is that source map comments don't work well when the same artifact is deployed across prod and multiple staging environments. For each env at work we have different asset paths which need to be generated. Each server already serves up its source maps behind a firewall (for other reasons). The main work of the browser extension is to inject the source map dynamically at runtime when the page is loaded in the browser.

It can do this by taking a mapping of regex asset paths for each server in each env and the url of the source map location. Then it fetches the source maps internally, injects them using a SourceMap header with the chrome devtools network api, and that attaches the source maps in chrome's sources panel.

We used to get hit with production issues during oncall shifts more often. This came out of thinking about ways I could make debugging under pressure a bit easier for myself. If it helps I also automate common debugging steps with chrome snippets to save time.

We haven't been dealing with prod issues that need debugging for most of the last year so I haven't really needed it. It's not super hard to build though. If anyone wants to you should go for it!

Post reply on HN