HackerLangs
TopNewTrendsCommentsPastAskShowJobs

functional_dev

no profile record

Submissions

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

vectree.io
2 points·by functional_dev·4 個月前·3 comments

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

audiotext.live
14 points·by functional_dev·6 個月前·15 comments

comments

functional_dev
·18 天前·discuss
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 天前·discuss
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 個月前·discuss
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 個月前·discuss
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 個月前·discuss
The ETH article title is actually fine - "a new trick brings stability."

The hype is in the HN title.
functional_dev
·3 個月前·discuss
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 個月前·discuss
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 個月前·discuss
really cool, data pipeline alone sounds like fun challenge
functional_dev
·3 個月前·discuss
better tooling and integration
functional_dev
·3 個月前·discuss
Did you try increasing protein intake during the cut?
functional_dev
·3 個月前·discuss
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 個月前·discuss
Do you have a link to the paper showing the 20x improvement?
functional_dev
·3 個月前·discuss
Such a simple trick, but effective!
functional_dev
·3 個月前·discuss
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 個月前·discuss
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 個月前·discuss
100% true, but method still matters
functional_dev
·3 個月前·discuss
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 個月前·discuss
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 個月前·discuss
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 個月前·discuss
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...