Live data from Hacker News

Viewing profile — momo_dev

momo_dev

HN member
Joined
Thu, Apr 02, 2026, 6:31 PM UTC
HN karma
4
Public activity
15 items

About momo_dev

No profile information was provided.

Recent public activity

  1. comment
    Comment #47658175

    If you ever need a backend for storing the edited PDFs, FilePost ( https://filepost.dev ) could handle that. One API call to upload and you get a permanent CDN URL back. Could be a…

  2. comment
    Comment #47658098

    Nice idea, image upload from mobile is underserved. If you ever need a backend for it, FilePost ( https://filepost.dev ) could work well as the upload target. Single POST with the …

  3. comment
  4. comment
    Comment #47658084

    Cool setup. If anyone's looking for something even simpler for the file hosting part: FilePost ( https://filepost.dev ) handles upload + CDN serving in a single API call. No S3 con…

  5. comment
    Comment #47658075

    Interesting project. I built something in a similar space: FilePost ( https://filepost.dev ). Different approach though: API-first, one POST request gives you a permanent CDN URL v…

  6. comment
  7. comment
    Comment #47632078

    i guess the difference is i chose my hyperscalers à la carte instead of getting the all-in-one bundle. at least when cloudflare breaks something i can still ssh into my linode and …

  8. comment
    Comment #47632074

    i wasn't aware npm lockfiles check hashes by default now. my concern is more about the initial install before a lockfile exists, like in CI from a fresh clone without a committed l…

  9. comment
  10. comment
    Comment #47624006

    this is why i pin every dependency hash in my python projects. pip install --require-hashes with a locked requirements file catches exactly this, if the package hash changes unexpe…

  11. comment
    Comment #47624002

    i run fastapi APIs on linode with cloudflare in front and honestly the simplicity is underrated. predictable billing, docs that match reality, no surprise platform regressions. for…

  12. comment
    Comment #47623939

    yeah fair point, validation should ideally happen at the app layer first. in my case it was a quick prototype where i skipped the proper serialization step and STRICT caught it bef…

  13. comment
    Comment #47619193

    interesting that most scrapers are still just regex-searching for @ in raw bytes. on the receiving side i've been dealing with a different angle of the same problem, blocking dispo…

  14. comment
    Comment #47619174

    the JSON functions are genuinely useful even for simple apps. i use sqlite as a dev database and being able to query JSON columns without a preprocessing step saves a lot of time. …

  15. comment
    Comment #47619154

    for cloud/VPS hosting hetzner has been solid for me. their object storage is S3-compatible and way cheaper than AWS. the only downside is the region options are limited to EU which…