Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)H
Posts
4
Comments
33
Joined
3 yr. ago

  • Only reliable web server is an Erlang web server.

  • No connection proxy in this case. The pooled sync test uses client side pooling which shows better performance. Using a proxy would have the same effect, just moves the pooling to server side.

  • It is using the async driver. I am using FastAPI’s thin wrapper around SQLAlchemy which also does some slight tuning for it to work better with FastAPI in an async mode.

  • This is running with concurrent requests. 64 workers firing request to be exact.

  • Python @programming.dev

    What async really means for your python web app?

    hackeryarn.com /post/async-python-benchmarks/
  • I will take a “No AI” label so I can filter down to the games I want to buy.

  • There are various rating systems, but it boils down to comprehension. 6th grade reading level is about the level to be able to follow the plot of Harry Potter.

  • Do ya’ll just not use linters?

  • If Microsoft knows how to do one thing well, it’s killing a successful product.

  • A lot of companies make their most senior devs engineering managers, and expect them to stay technical. I assume this was the case here.

  • That’s the project’s goal and they have 100% comparability across quite a few of the tools. Definitely still a ways to go before they can fully replace all of coreutils, but Ubuntu’s goal is to replace the tools peace meal with the once that are ready.

  • That looks really well done. And a lot of stuff would be condensed by having viduals.

    Doesn’t look like my preferred style… Maybe that’s why I couldn’t get into the book either 😅

  • War and Peace. Heard so many good things about it. Despite everything, went in not having super high expectations.

    The whole book turned out like a reality tv show. All the characters had some petty drama that they blew out of proportion. Hundreds of pages where nothing really happens, people just complain or bad mouth other characters.

    I had to stop half way through.

  • Totally get that. Just saying that different people want different things out of their jobs, and it’s a good thing that there are places where all of them can fit.

  • Isn’t that the whole point of hiring people that fit the company culture? I’ve worked at both types of places in different stages of my life. Both can feel good or bad depending on where you’re at. Don’t try to change the job to fit your needs. Find a different one.

  • I would separate NixOS from other immutable distros. NixOS is really about giving you blank slate and letting you fully configure it.

    You do that configuration using a static config language that is able to be far more idempotent than Andible. It’s also able to define packages that are well contained and don’t require dynamic linking setup by manually installing other packages.

    Immutable distros, on the other hand, really have no advantage to your setup and will probably feel more restrictive. The main use I see for them is for someone new or lazy that wants to get a working system up and running quickly.

  • I’ve worked on dev tooling in a fairly large company. Especially for cyber security, do not get a Mac. A lot of the tools are just different enough on a Mac that they will make your life much harder.

  • I would say it’s actually easier in many cases. Nix has really fantastic packaging tooling. You do have to learn a bit of the nix language, however (not become an expert).

    The issue comes when trying to build from source. In most other distros, ou just follow the readme. In nix, you have to package it.

  • I wasn't trying to go into typing as much as using structs or objects when working with known data attributes. Sorry that it was a bit misleading.

    The original actually went into using trees, sets, heaps, tries, etc., but it felt way too... ranty. After writing all that out, I realized that most of those other cases come up really infrequently, and that my biggest gripe was about not using structs or other pre-defined key container types. I thought it would be better to keep things short and focused.

    Maybe I should re-write and publish a data structures edition.

  • I love the addition of dataclass. Makes refactoring such a breeze. If you need to extract some function, boom, you already have a class that you’re using everywhere.

  • Programming @programming.dev

    You don't need a map for that

    hackeryarn.com /post/maps/
  • Linux @lemmy.ml

    Distrobox in practice

    hackeryarn.com /post/distrobox/
  • Programming @beehaw.org

    When DRY goes wrong

    hackeryarn.com /post/dry/