HackerLangs
TopNewTrendsCommentsPastAskShowJobs

insumanth

no profile record

comments

insumanth
·vor 23 Tagen·discuss
Multi-Modal is the way to go. Deepmind nailed this a long back.
insumanth
·vor 26 Tagen·discuss
[dead]
insumanth
·vor 26 Tagen·discuss
>> The bad guys won’t rest > Probably not. But we will.

This is Exceptional. Perfect EuroMaxxing
insumanth
·vor 26 Tagen·discuss
This was expected. Apple will carefully choose what & how people can use AI in their ecosystem and will make sure of it. I hope "Apple Foundation Models" Eco-system grows with support from major model providers.
insumanth
·vor 26 Tagen·discuss
As I read this, all of my favorite things about ruby compared to something like python were influenced by lisp. Ruby is a joy to program and it seems mostly due to design influence from lisp.
insumanth
·vor 26 Tagen·discuss
I have always been fascinated by Hash Functions. Modern hash functions are incredibly fast and unbelievably secure (crypto hashes). Also, equally important is how hashes have adopted to the usecases. We are intentionally developing slow hashes (BCrypt, Argon2id) with memory, time tradeoff to slow down hash generation as a security measure. One of the fascinating corners of Computers
insumanth
·vor 26 Tagen·discuss
I will be doing these things with local LLMs

Take a fast, small and powerful LLM running locally to index my personal data like images, videos, documents and enrich them and tag with the enriched metadata.

Want to group by people - Search tagged metadata and group it What to search an image by description - tagged metadata What to organize by anything - tagged metadata

This should (hopefully) put an end to my file clutter
insumanth
·vor 26 Tagen·discuss
This mostly applies to almost any database.

Deletes are Writes and Writes are resource intensive. This is more prominent on databases like Elastic Search.

When I was tasked to delete millions of (old) documents, it overloaded the cluster and almost brought it down. Only scalable solution was to split the index and drop the whole index.
insumanth
·vor 26 Tagen·discuss
> that bloated pinnacle of software that is 80% about DRM, 20% about the reading experience

I have never seen someone explain the adobe software so perfectly. Using any adobe software is exactly this.
insumanth
·vor 29 Tagen·discuss
I honestly don't think this is bad. For anyone who is not a frontend engineer / designer, using tailwind gives good defaults and better LLM support. Frameworks were always about lowering the bar for entry with cost to genuine new design. The alternative is worse than this. I honestly prefer this over a backend engineer using WordPress / static site generators / other no-code platforms.
insumanth
·vor 29 Tagen·discuss
> MiMo Code is a terminal-based coding agent built by Xiaomi's MiMo team on top of OpenCode and open-sourced under the MIT license.

I think it is great that they built it on top of open code. Open Code harness is good and I want it to grow. Harness is very important and more projects use it, the more it is adopted.
insumanth
·vor 29 Tagen·discuss
> If Fable had been acting on malicious instructions—a prompt injection attack ... it’s alarming to think quite how far it could go to exfiltrate data or cause other forms of mischief.

Yet another reminder to use Sandbox and Guardrails. Trusting model to be nice is not a good way.
insumanth
·vor 29 Tagen·discuss
Boring is Better
insumanth
·vor 30 Tagen·discuss
[dead]
insumanth
·vor 30 Tagen·discuss
[dead]
insumanth
·vor 30 Tagen·discuss
[dead]
insumanth
·vor 30 Tagen·discuss
[dead]
insumanth
·vor 30 Tagen·discuss
[dead]
insumanth
·vor 30 Tagen·discuss
I'm worried at the general direction of this. More and more companies will gatekeep the model capability even if it is just a few percent increase in capabilities than other models. Lot of companies will start doing this in various degrees.
insumanth
·vor 2 Monaten·discuss
The line that stuck with me: "Recovery after congestion collapse is an uncommon regime, but it is exactly the regime a congestion controller exists to handle." This generalizes well beyond congestion control.

Most control loops have the same property. The path the system follows 99% of the time gets well-exercised; the path it falls into when things go wrong is the path you actually need to be correct on. There's usually no way to discover the bug until you deliberately drive the system into the bad regime and watch it try to climb out.