Live data from Hacker News

Viewing profile — mnutt

mnutt

HN member
Joined
Tue, May 11, 2010, 3:00 AM UTC
HN karma
2,668
Public activity
1,044 items

About mnutt

I'm working on a startup called Movable Ink: movableink.com

Recent public activity

  1. comment
    Comment #48761298

    In cases where startup time matters and you have a slow disk, bundling can drastically reduce the number of filesystem calls you have to make for large dependency graphs.

  2. comment
    Comment #48545471

    I have been playing around with building an Iroh Tunnel Sandstorm app that can connect two Sandstorm instances, and share some capabilities exposed from one Sandstorm instance to t…

  3. comment
    Comment #48411357

    WebKit does allow outside contributions, though that example is perhaps not the most illustrative as it is from an Igalia employee. Igalia maintains substantial parts of WebKit and…

  4. comment
    Comment #47757367

    I think you could in theory have a similar webkit-based stripped down headless crate that might have a good tradeoff of features, performance, and size.

  5. comment
  6. comment
    Comment #46205208

    I have a large rails app that was plagued with slow specs using factory_bot. Associations in factories are especially dangerous given how easy it is to build up big dependency chai…

  7. comment
    Comment #46120871

    Would be interesting to see a benchmark with the rust binary with successively more “bloat” in the binary to separate out how much of the cold start is app start time vs app transf…

  8. comment
    Comment #45924106

    Sure, you can only use EC2, not use autoscaling or spot and instead just provision to your highest capacity needs, and not use any other AWS service that relies on dynamo as a depe…

  9. comment
    Comment #45917753

    > we never had any issues, because we didn't depend on calling AWS APIs to continue operating. Things already running continue to run. I think it was just luck of the draw that the…

  10. comment
    Comment #45654935

    Even their transfer rates between AZs _in the same region_ are expensive, given they presumably own the fiber? This aligns with their “you should be in multiple AZs” sales strategy…

  11. comment
    Comment #45563965

    This is a great project writeup, I did something _very_ similar for my son. (HT802, asterisk, twilio, calling relatives) With all of the NAT involved I could never get sjsip to wor…

  12. comment
    Comment #44787446

    That's amazing, what a great idea.

  13. comment
    Comment #44779312

    As a four year old, my child loved playing "the subway game", which is similar to this but just in our heads: I name two subway stations and he tries to think of the fastest route …

  14. comment
    Comment #44589218

    I did a writeup of my own experiences using Asterisk for this exact use case: https://github.com/mnutt/rotary

  15. comment
    Comment #44285141

    We tried this out a middle schoolers at an installfest in Alabama in the 90s, but something was broken with the resulting install and had to wipe it and start over. Funny that 25+ …

  16. comment
    Comment #44011384

    You can even do neat things like having the revalidate fetch tell your backend “I served this object out of cache 1100 times since last fetch, maybe consider putting a few extra cp…

  17. comment
    Comment #43129915

    Looks interesting, I'm curious how you settled on WebDAV? A decade ago I built a NextCloud alternative backend that also used WebDAV, and I'm not sure it's something I would ever t…

  18. comment
    Comment #42805265

    Yes, there are a bunch of redis+disk projects out there, one big consideration is the size of your values: some must hold all keys in memory and only offload values to disk, while …

  19. comment
    Comment #42803979

    I’ve been testing kvrocks as a replacement for a Scylla use case where we have TBs of data and uniform TTLs. In many of these LSM dbs, compaction is the thing that really kills thr…

  20. comment
    Comment #42447635

    I had a similar experience: I built dragging and handle resize, then later added rotation via a bit of trigonometry. Each operation worked fine separately, but if you tried to rota…

  21. comment
    Comment #42033180

    Using jQuery CDN might have helped with cross-site caching in the past, but now all major browsers have cache partitioning by origin for privacy reasons.

  22. comment
    Comment #41851076

    On Mobile Safari at least, you can press and hold the image to share. I imagine there's probably an equivalent gesture on Mobile Chrome. I spent considerable time many years ago tr…

  23. comment
    Comment #41848892

    As of 2024, WebKit's Linux ports (GTK and WPE) are switching to Skia too. [0] Prior to that, they used cairo. [0]: https://blogs.igalia.com/carlosgc/2024/02/19/webkit-switchin...

  24. comment
    Comment #41687724

    Grace mode itself doesn’t prevent thundering herd; varnish coalesces all requests automatically and grace mode is used to increase the likelihood of clients receiving cached (albei…

  25. comment
    Comment #41009375

    Looks very nice. I'm curious about "no mjml" -- I've worked with authoring tools in related domains and found that separating the serialization format from the output format has so…