Live data from Hacker News

Viewing profile — vlmutolo

vlmutolo

HN member
Joined
Tue, May 28, 2019, 3:04 AM UTC
HN karma
1,302
Public activity
299 items

About vlmutolo

No profile information was provided.

Recent public activity

  1. comment
    Comment #49123673

    It’s a very soft skill that changes as the capabilities of AI change. But one thing that doesn’t change is the need to specify an end goal correctly and precisely. I think the emph…

  2. comment
    Comment #48437627

    Pretty cool, rendering PowerPoint files to an image is probably the only way for LLMs to make sense of them. Does this work in Cloudflare’s workerd environment? Would be nice to ha…

  3. comment
    Comment #48202703

    > While OpenAI originally pioneered Codex (which went on to power GitHub Copilot), Google’s direct answer for dedicated, native code completion and natural-language-to-code generat…

  4. comment
    Comment #47640083

    If you give every agent an isolated container to use, you’re going to be paying for the reserved memory while the container is active, even if the agent isn’t doing anything.

  5. comment
    Comment #47241588

    Wow, that’s very interesting. I wish more benchmarks were reported along with the total cost of running that benchmark. Dollars per token is kind of useless for the reasons you men…

  6. comment
    Comment #47236248

    Lots of comments about the price change, but Artifical Analysis reports that 3.1 Flash-Lite (reasoning) used fewer than half of the tokens of 2.5 Flash-Lite (reasoning). This will …

  7. comment
    Comment #47172195

    C2PA has lots of problems. https://www.hackerfactor.com/blog/index.php?%2Farchives%2F10...

  8. comment
    Comment #47113077

    Very interesting blog post. I’d never seen that method for quickly computing the patterns. I thought I had done a lot of research on bloom filters, too!

  9. comment
    Comment #47112975

    Yeah, I agree with this. I think there are open addressing hash tables like Swiss Table that do something similar. IIRC, they have buckets with a portion at the beginning with loss…

  10. comment
    Comment #47108228

    This article is a little confusing. I think this is a roundabout way to invent the blocked bloom filter with k=2 bits inserted per element. It seems like the authors wanted to use …

  11. comment
    Comment #47097056

    I wonder if the “spawn” API is ever preferable over “fork”. Do we really want to remove context if we can help it? There will certainly be situations where we have to, but then wha…

  12. comment
    Comment #46587833

    AmIUnique.org has a good collection of non-cookie tracking techniques. https://amiunique.org/fingerprint

  13. comment
    Comment #45690658

    I wonder how this compares to similar initiatives by e.g. Sony [0] and Leica [1]. [0]: https://authenticity.sony.net/camera/en-us/ [1]: https://petapixel.com/2023/10/26/leica-m11-p…

  14. comment
    Comment #45660698

    "Scientists unscramble egg proteins" https://www.science.org/content/article/scientists-unscrambl...

  15. comment
    Comment #45339571

    It’s vibrating at a microscopic level. You won’t be able to feel it at all.

  16. comment
    Comment #44864909

    What are your thoughts on how Bevy's developing UI toolkit compares (in terms of goals and use cases) to some of the other Rust efforts in the space (egui, xilem, iced, etc.)? Do y…

  17. comment
    Comment #44803090

    About 7% of people who have ever lived are alive today. Still pretty lucky, but not quite winning the lottery.

  18. story
  19. comment
    Comment #44065977

    For sure; using total energy delivered makes a lot more sense. But then I think it would be better to use whatever tool humanity has that delivers the max total energy; let’s say T…

  20. comment
    Comment #44054678

    To kill a mosquito, you need "a few tens of millijoules, delivered within a few milliseconds" [0], so let's say 10W. To destroy the Earth (so that it turns into scattered dust and …

  21. comment
    Comment #44037256

    A company called Invent Wood (based on research out of UMD) is creating “densified” wood that solves a lot of these problems. They have a process that collapses the cell walls in w…

  22. comment
    Comment #43990597

    Modern mini-led monitors are very good. The “local” dimming is so local that there isn’t much light bleed even in the worst-case situations (cursor over black background makes it p…

  23. comment
    Comment #43987527

    You can definitely get around a lot of the pain points by using owned types like String as much as possible instead of borrowed types like &str. This is even generally recommended;…

  24. comment
    Comment #43887790

    A simple extension of the Bloom filter called “block Bloom filters” fixes this. The idea is that the first hash is the index of a small constant-size block of your array, and the r…

  25. comment
    Comment #43560969

    The Underway app is basically an interactive version of this (NYC-specific). It’s just the transit map, but you can click on stations to see current arrival/departure times (“3min”…