HackerLangs
トップ新着トレンドコメント過去質問紹介求人

functional_dev

no profile record

投稿

Show HN: Vectree – Learn complex concepts through AI-generated interactive SVGs

vectree.io
2 ポイント·投稿者 functional_dev·4 か月前·3 コメント

I Hate Go, but It Saved My Startup: An Architectural Autopsy

audiotext.live
14 ポイント·投稿者 functional_dev·6 か月前·15 コメント

コメント

functional_dev
·18 日前·議論
I did not know this until today... vision models don't hunt for the white space between letters like old OCR does. They just chop the whole image into a fixed grid of equal squares (patches) and treat each square like a word in a sentence.

This will help if you want to dig deeper - https://vectree.io/c/how-ocr-works-traditional-pipelines-vs-...
functional_dev
·18 日前·議論
I always used memcached without knowing how it stores things.. never knew about the slab thing.

It is more sophisticated than grab memory per item.

This helped be to understand it better - https://vectree.io/c/memcached-internals-slab-allocation-lru...
functional_dev
·3 か月前·議論
actually local MCP just spawns a subprocess and talks via stdin/stdout.. same as CLI tool. Extra layer is only for remote case.

This might help if interested - https://vectree.io/c/implementation-details-of-stdio-and-sse...
functional_dev
·3 か月前·議論
You are right, PRs are not in git. format-patch and request-pull are originals designed for mailings lists. Github just put UI on top.

Interesting that DAG model means any branch from anywhere can be merged... the forge is just coordination.

Explored here if curious - https://vectree.io/c/git-graph-theory-logic
functional_dev
·3 か月前·議論
The ETH article title is actually fine - "a new trick brings stability."

The hype is in the HN title.
functional_dev
·3 か月前·議論
true, but reading this made me learn something new.

Turns out HashCash (system Bitcoin borrowed), was originally built to fight email spam in 1977 - https://vectree.io/c/hashcash-the-proof-of-work-system-cited...
functional_dev
·3 か月前·議論
I like the garden analogy.

Writing online used to bring you readers. Now it trains model, which answers the same questions without sending anyone to your site.
functional_dev
·3 か月前·議論
really cool, data pipeline alone sounds like fun challenge
functional_dev
·3 か月前·議論
better tooling and integration
functional_dev
·3 か月前·議論
Did you try increasing protein intake during the cut?
functional_dev
·3 か月前·議論
I found it interesting, that Git itself has built in similarity notion... when it packs objects, it groups files by path+size, runs delta cmpression to find which are close.

Very different from just counting commits - https://vectree.io/c/delta-compression-heuristics-and-packfi...
functional_dev
·3 か月前·議論
Do you have a link to the paper showing the 20x improvement?
functional_dev
·3 か月前·議論
Such a simple trick, but effective!
functional_dev
·3 か月前·議論
Right, the default boxes into heap, but unions are different. Some languages pack them as a flat struct (tag + payload, no allocation).

Here is visual layout if anyone is interested - https://vectree.io/c/memory-layout-tagging-and-payload-overl...
functional_dev
·3 か月前·議論
Backwards compatibility point is interesting.

Found this visual breakdown of IPv4 -> IPv6 transition.

Dual stack and tunneling sections show how much complexity came from not having a clean migration path - https://vectree.io/c/ipv4-vs-ipv6-address-architecture-nat-a...
functional_dev
·3 か月前·議論
100% true, but method still matters
functional_dev
·3 か月前·議論
I am with you here.. there is actually name for why companies do this. They are not pushing app because it is better, but because browser tab cannot lock you in.

Mapped it out here if curious - https://vectree.io/c/enshittification-how-digital-platforms-...
functional_dev
·3 か月前·議論
This confused me at first as well.. inactive experts skip compute, but weights are sill loaded. So memory does not shrink at all.

I found this visualisation helpful - https://vectree.io/c/sparse-activation-patterns-and-memory-e...
functional_dev
·3 か月前·議論
100%

There is genuine demand for physical AI in Japan, there are not enough humans to hire.

I bet, EU will start long debates wether to automate or not :) Japan already skipped that part
functional_dev
·3 か月前·議論
exactly, the simplicity is its beauty!

A single data structure (tables), no built in OOP (you build it with metatables).

Coroutines instead of threads.

I was curious and explored it in detail here - https://vectree.io/c/lua-language-design-metatables-coroutin...