I built my own blogging engine (source at https://jlel.se/goblog ). Previously I used Hugo, but there were just too many workarounds to get my IndieWeb and ActivityPub setups working the way I want them. Writing my own blog software also enabled me to implement other features and focus on performance and simplicity. In addition to that I built a few other tools, like my link shortener. It does everything I need it to…
Interesting. What do you think about such an approach to (micro)blogging for a broad, tech-layperson audience: https://mro.name/o/2021-03-30-142424-prototypefund10-068.pdf
Ask HN: What are some tools / libraries you built yourself?
291–300 of 617 posts
Re: Ask HN: What are some tools / libraries you built yourself?
#292I built it because at the time there weren’t any good FIX library written in JS/TS and because I wanted to learn how it works.
Re: Ask HN: What are some tools / libraries you built yourself?
#293I have created Codekeep.io that lets you store and share bits of code and text with other users. Snippets can be organized into folders/labels for instant reuse. Create code screenshots and link it with codekeep. It was inspired from Google keep ,I have made the ui and ux similar to it and also added syntax highlighting https://codekeep.io
Re: Ask HN: What are some tools / libraries you built yourself?
#294Re: Ask HN: What are some tools / libraries you built yourself?
#295Re: Ask HN: What are some tools / libraries you built yourself?
#296Last year I built Recut[0], a native Mac app that helps speed up video editing by automating the rough-cut process. It finds silence, gaps, and pauses and removes them, creating a cut list that you can import into editors like ScreenFlow, Final Cut, Premiere and Resolve. Here’s the Show HN [1] from a couple months ago. I built it because I was making screencasts and cutting out silence + mistakes was 90% of my editin…
Genius. You need to find a way to market to the right audience and up your price to $79 or something. The current price seems too low for all the time it saves (if I'm a serious vlogger). I'll definitely check it out (and maybe purchase it before your price increase, haha).
I’m thinking the YouTuber audience might be a good place to start. People seem to “get it” right away, but nobody knows about it yet.
Re: Ask HN: What are some tools / libraries you built yourself?
#297I created a dotfiles management tool, yadm https://yadm.io I'm a huge fan of Git, and the Git mental model just makes sense to me. I wanted to manage my dotfiles in the same way. At the time I had tried several other solutions, mostly similar tools like homeschick and vcsh. I wanted a solution that was very portable, which both of those existing tools were. However, homeschick became a bit clunky to use because each…
But is there a way to "promote" my existing Git repo to something yadm can use? If I just `cd ~; yadm status` I'm told a Git repo doesn't exist, when it most certainly does (`git status` behaves as expected). Or is the best way to just blow away my existing .git directory and start over using only yadm? I skimmed your docs for an answer to this but couldn't find it.
Re: Ask HN: What are some tools / libraries you built yourself?
#298Dbmate: https://github.com/amacneil/dbmate I found most database migration tools tried to be too smart (I'm not a fan of automatic migrations), were too tightly integrated with specific languages or frameworks, or didn't support basic developer workflow pleasantries such as dropping and recreating the database. I created a simple single binary migration tool that runs migrations (sql files), and keeps track of applie…
Re: Ask HN: What are some tools / libraries you built yourself?
#299Created TAO[0] -- a minimal syntax that's even simpler than S-expressions. Building notations on top of it, currently focusing on one for data -- an alternative to XML, JSON et al. Open-source, prototyping on GitHub[1]. Keepin' it simple ain't easy. [0] https://tree-annotation.org/ [1] https://github.com/tree-annotation