HackerTrans
TopNewTrendsCommentsPastAskShowJobs

micvbang

no profile record

Submissions

Text inputs are weird [video]

youtube.com
1 points·by micvbang·9 months ago·0 comments

Ask HN: How to get portfolio exposure to RISC-V?

4 points·by micvbang·12 months ago·1 comments

Tools I love: mise(-en-place)

blog.vbang.dk
176 points·by micvbang·last year·50 comments

On A Great Discussion

blog.vbang.dk
2 points·by micvbang·last year·0 comments

AI exploits a gamebreaking bug in Trackmania [video]

youtube.com
3 points·by micvbang·last year·0 comments

Simple event broker: data serialization is expensive

blog.vbang.dk
2 points·by micvbang·2 years ago·0 comments

Simple event broker tries Tiger Style

blog.vbang.dk
4 points·by micvbang·2 years ago·0 comments

comments

micvbang
·last year·discuss
Thanks a lot for telling me!
micvbang
·last year·discuss
Yep! And direnv on top of that :)
micvbang
·last year·discuss
I got tired of the pricing and/or complexity of running message queues/event brokers, so decided to play around with implementing my own. It utilizes S3 as the source of truth, which makes it orders of magnitude easier to manage and cheaper to run. There's an ongoing blog series on the implementation: https://github.com/micvbang/simple-event-broker
micvbang
·last year·discuss
Surely You're Joking, Mr. Feynman! by Richard Feynman
micvbang
·2 years ago·discuss
I've had many use cases for using an event broker, but never found one that was simple enough that I would venture into hosting it myself, or cheap enough to rent/host that it was feasible. Once I realized that cloud object stores fit this problem perfectly (they provide durability and are cheap to use), I realized that it would be possible to write one myself. I wrote a post on it here, along with a tiny performance evaluation: https://blog.vbang.dk/2024/05/26/seb/

I spent the better part of a week working on it full time, but spread over months. I use it daily - it's serving the needs of multiple projects that I needed it for :)