Live data from Hacker News

Viewing profile — trufas

trufas

HN member
Joined
Thu, Aug 01, 2019, 8:54 PM UTC
HN karma
68
Public activity
36 items

About trufas

No profile information was provided.

Recent public activity

  1. comment
    Comment #46137461

    s3proxy has a filesystem backend [0]. Possibly of interest: s3gw[1] is a modified version of ceph's radosgw that allows it to run standalone. It's geared towards kubernetes (notabl…

  2. comment
    Comment #41712568

    You're conflating git with git forges. Most popular forges use a centralized model. Git was built as distributed from the start and it's original mode of collaboration was through …

  3. comment
    Comment #41698188

    Apache doesn't enforce copyleft, so the Pear authors can license whatever changes they made to Continue with any license they want. What isn't ok is to change the license of the ex…

  4. comment
    Comment #38570642

    I guess it makes sense but still, brave to be running all the infra on Arch ;) This is really clean! I'll definitely be using it as a reference for IaC done right. Congrats on the …

  5. comment
    Comment #38570473

    They're using Gitlab CE. I assume the whole thing is running on their own servers.

  6. comment
    Comment #36748626

    How is setting up a Dockerfile and then a docker-compose file any simpler than just writing a unit file? This seems like a perfect application of the init system.

  7. comment
    Comment #36669901

    I use it a lot for personal homelab infrastructure. I find it feels a lot more natural than single process containers for the workloads I use (torrent clients, game servers, plex..…

  8. comment
    Comment #36669100

    LXD is great tech and a pleasure to work with. This blows. Hopefully an actually open alternative pops up. Canonical's general bad attitude towards FOSS is just appalling.

  9. comment
    Comment #36539367

    SLUB is a nice story of a simpler implementation winning out, even when SLAB may have been more technically sophisticated.

  10. comment
    Comment #36421150

    CentOS 7 is supported and will be EOL at the same time as RHEL 7. Stream does have major versions so you can continue to use CentOS Stream 8 and get backports. You only lose anythi…

  11. comment
    Comment #36298402

    product-market fit

  12. comment
    Comment #36048336

    Plugging a llm into dbus may take you surprisingly far.

  13. comment
    Comment #35916420

    It's happened before[0] [0] https://en.wikipedia.org/wiki/New_Nintendo_3DS

  14. comment
    Comment #35561738

    There's no guarantee the boilerplate an LLM spits out will be up to date. It'll almost definitely have some outdated code in it's dataset that it can reference.

  15. comment
    Comment #35541472

    Only if you ignore the flawlessly at 60 fps part.

  16. comment
    Comment #35374454

    The one with the turtle[0] [0] https://en.wikipedia.org/wiki/Logo_(programming_language)

  17. comment
    Comment #35250546

    If any other alacritty on macos users were looking for a workaround: https://github.com/alacritty/alacritty/issues/93#issuecommen... Apparently an option_as_alt option should also …

  18. comment
    Comment #35203131

    That's what I thought too, but seems like that happened over a year later. The data seems very questionable in general, so who knows.

  19. comment
    Comment #34840549

    For the UI part cockpit [1] lets you manage containers (amongst many other things). I use it with fedora for my home server and rarely feel the need to drop into the command line i…

  20. comment
    Comment #33123331

    Ceph is the big one

  21. comment
    Comment #33101965

    Possible violations of the terms of use [1]? > Engaging in automated uses of the site that are abusive or disruptive of the services and have not been approved by the Wikimedia com…

  22. comment
    Comment #31938733

    The fzf plugin is really nice for navigating through files and for code search, but not really necessary. The editing plugins I use most heavily are probably vim-surround and vim-c…

  23. comment
    Comment #31755882

    I doubt they'll want to compete in the consumer OS space after the ubuntu phone mess.

  24. comment
    Comment #29876824

    To be fair, you almost never should use the map builtin instead of the pythonic equivalent, list comprehensions. `print([x + 1 for x in [1, 2, 3])` I agree that the ruby approach i…

  25. comment
    Comment #29200743

    The tradeoff here is that you don't have to explicitly declare new variables (something like `var` in js). Most people who work with python on a daily basis know you need the `glob…