Ask HN: Tools you have made for yourself?
71–80 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#72This 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.
Re: Ask HN: Tools you have made for yourself?
#73https://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?
#74Re: Ask HN: Tools you have made for yourself?
#75I 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.
Re: Ask HN: Tools you have made for yourself?
#76- 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?
#77Re: Ask HN: Tools you have made for yourself?
#78Re: Ask HN: Tools you have made for yourself?
#79I wrote an in-terminal histogram tool[0] because... that's when/where I always need histograms. [0] https://github.com/wizzat/distribution
Re: Ask HN: Tools you have made for yourself?
#80It 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!