Live data from Hacker News

Viewing profile — wrapperup

wrapperup

HN member
Joined
Wed, May 10, 2023, 6:34 PM UTC
HN karma
26
Public activity
18 items

About wrapperup

No profile information was provided.

Recent public activity

  1. comment
    Comment #39494920

    Agree on the first point, I think using JS makes more sense when you need to update some client state, like a dropdown or even that edit example. But htmx makes a lot more sense wh…

  2. comment
    Comment #37599912

    Oh yeah for sure. I haven't had that happen to me, but when I dropped AstroNvim, I had a chance to start from fresh (on lazy). Small customized config also means smaller and more p…

  3. comment
    Comment #37599629

    I've used all except Kakoune. For me, Neovim is the one that stuck. Helix is cool, but having no plugins is a deal breaker (for now!) The onboarding experience is much nicer for su…

  4. comment
    Comment #37441196

    I recently did this in a relatively small crate, and it halved the dependencies. Highly recommended if you don't need async.

  5. comment
    Comment #37298319

    Hetzner is fantastic. We switched from Linode to Hetzner over a year ago for our website and backend, and have been running with zero downtime. The pricing is also pretty darn chea…

  6. comment
    Comment #37150013

    Yep, indeed. But htmx can reduce that a lot (to 0 even, in some instances), which is why it's really nice. There's also WASM, which is slowly gaining steam, but it still isn't a fi…

  7. comment
    Comment #37149989

    Much of your business logic can live in the backend, and it keeps your frontend really tiny. The idea is to generate HTML on the backend, instead of using a front-end framework to …

  8. comment
    Comment #36898187

    I think something like Twitter and Discord could be written in it, but something like Google Maps or VSCode, definitely not. For anything where you need server data rendered, it's …

  9. comment
    Comment #36898088

    Mostly great, there is a lack of native Rust frontend tooling outside of Leptos/Dioxus for templated websites, such as static file handling and bundling. Previously, I used vite fo…

  10. comment
    Comment #36897750

    Yeah with these frameworks, you usually need to pair it with a backend that talks to your database. Most of the code you write in these frameworks run on the client (but they emplo…

  11. comment
    Comment #36897489

    If you want a job, it's probably going to be React. But for personal projects, I hear Svelte would be up your alley. SolidJS is another nice option if you want to get into JSX temp…

  12. comment
    Comment #36880671

    I use 10x editor, Rider/Clion

  13. comment
    Comment #36755784

    Agreed. Back then, I tried to get into neovim with packer and a ton of plugins, then tried AstroVim and stuff broke all the time. Went back to vscode. I tried it again about half a…

  14. comment
    Comment #36649948

    Yup. It's pretty common to see Alpine + HTMX used together since they are both HTML first. I've heard web components work well with HTMX too.

  15. comment
    Comment #36576295

    It's fantastic, and also my favorite. And for those who might not know, he was the one who really mainstreamed Data-oriented design and ECS architecture in my eyes. He previously w…

  16. comment
    Comment #36522078

    JetBrains' IDEs are very heavyweight, it's apples to oranges. And while there is some native code in them, they're still driven by the JVM mostly. There is fleet, but it's not an i…

  17. comment
    Comment #36460077

    Yes. It's increasingly common in big C++ code bases (Unreal for example) to prefer interfaces, templates and composition over inheritance, though it's mostly found in newer code. U…

  18. comment
    Comment #36404697

    The tooling is great, don't get me wrong. But as soon as you need to do anything that slightly deviates the norm in Unreal engine, you're constantly butted up against broken featur…