Live data from Hacker News

Viewing profile — mauricio

mauricio

HN member
Joined
Fri, Mar 23, 2007, 3:13 PM UTC
HN karma
189
Public activity
79 items

About mauricio

http://github.com/mgomes

Recent public activity

  1. comment
    Comment #48099517

    Looking back at this, has there been a maverick company like Nullsoft since then? It's sad, but AOL may have killed off the last one.

  2. story
  3. comment
    Comment #42934522

    Did you read the article? There are large storage and bandwidth requirements.

  4. comment
    Comment #40512969

    22B params * 2 bytes (FP16) = 44GB just for the weights. Doesn't include KV cache and other things. When the model gets quantized to say 4bit ints, it'll be 22B params * 0.5 bytes …

  5. story
  6. story
  7. story
  8. story
  9. comment
    Comment #31004072

    A popular use case for SaaS companies isn't even in utilizing Zapier themselves, but rather adding their API to the list of integrations. This can really speed up onboarding for cu…

  10. comment
    Comment #30058020

    In order to charge 10x faster, you need to deliver 10x the current. That means all the wiring and electronics need to be upgraded to handle the huge increase without melting. Also,…

  11. comment
    Comment #29292260

    The Nintendo Switch. For all the reasons you mention. I have a career, I have a family, and I have side projects. I just don’t have time to dedicate to games. But sometimes you jus…

  12. comment
    Comment #28370985

    I would disagree with the premise that the two stores are comparable. The alternative to not use the Mac App Store is not just financial, but also allows developers to bypass the s…

  13. comment
    Comment #27037203

    Impressive. I wonder if Google will sell servers with these cards via Google Cloud. Seems like it could be pretty competitive in the transcoding space and also help them push AV1 a…

  14. comment
    Comment #26509711

    False dichotomy.

  15. comment
    Comment #25953224

    Hardware: Starlink, ARM/M1, NVMe/SSD, active noise cancellation, AR, VR, OLED, MicroLED, Wifi, GPUs, portable cameras, quantum computing, multi-touch, self-landing rockets, drones,…

  16. comment
    Comment #25365251

    I think the business model and the software license often get conflated like this. Once you release software with an open source license, users are free to do what they wish as lon…

  17. comment
    Comment #25083199

    Highly recommend the Dell XPS 13 if you enjoy the Macbook build quality. The edge-to-edge screen feels like the future. I run EndeavourOS which is like a GUI installer for Arch. Ar…

  18. comment
    Comment #25070660

    For sure, it will only run MacOS barring any jailbreak from the community. Even previous gen Mac Mini's with the T2 chip made it difficult to reinstall even MacOS due to Find My Ma…

  19. comment
    Comment #24223403

    Always good to know the underlying implementation, but for any Ruby readers check out clamp(). It's been available since 2.4. 25.clamp(5, 10) => 10 6.clamp(5, 10) => 6 1.clamp(5, 1…

  20. comment
    Comment #24169236

    People realize this, especially on HN. The post is referring to deprecations. You can patch security vulnerabilities and move a product forward without deprecations. Google does it…

  21. comment
    Comment #23975680

    They also have a really cool zine that's loaded with 90s hacker culture. https://n-o-d-e.net/zine/index.html

  22. story
  23. comment
    Comment #23616055

    It's available https://crystal-lang.org/reference/guides/concurrency.html . Fibers (like goroutines) are scheduled by Crystal and map to system threads. The work on parallelism is …

  24. comment
    Comment #23615972

    We run it in production. Our apps are mostly Ruby but we have been rewriting services in Crystal. Originally we were attracted by the speed and type checks, but one surprising bene…

  25. comment
    Comment #23432775

    Here are thorough benchmarks of Crystal and C up against other interpreted languages: https://github.com/kostya/jit-benchmarks . It has other examples besides Fibonacci.