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/)S
Posts
0
Comments
91
Joined
3 yr. ago

  • idk for me it's easier to rember ex xdna was merged on 6.14 than 2.253

  • i use git. got a tree alias a tree-like log. and an amend alias to add changes to the prev comit to keep the message

  • composition can help with all of that. factories, strategies, injections are all composition patterns that work fine.

    business logic that repeats? extract it to it's own thing (class, function, etc) and pass it as a param to the supposed childs.

    mvc? controllers don't need to extend anything, just have them accept the framework through the constructor and request and response as args. views? same. models? perhaps only if doing an active record, but a repo pattern with plain objects is a good pattern too.

    I never seen a clean inheritance implementation for a decently sized problem. it mostly works for tiny ones.

  • imo more. just a hunch

  • it's not a big deal for me, for the couple of daily sudos I type.

  • I added "alias fucking=sudo" and I never remeber to use it :(

  • I'm fine reviewing, if I'm familiar with the task, codebase and especially if I've been involved with the proposed technical solution.

    reviewing gen code? Hell, NO!

  • I'm not reviewint that butload of code. Just today I had to rollback some shit I "reviewed" a month ago. Huge ass refactor. I reviewed for 1 hour and then I just yolo'd it.

    I'm not reviewing anymore.

  • hopefully it doesn't have the full kde ecosystem as deps and can be used standalone.

    <insert doubt here>

  • rx 6650 xt, stock drivers that come with arch, amdgpu. issue is both on lts and latest. seems to be a ring buffer error. there's an open ticket about it.

    I don't remeber the flag, but it's to disable some power saving feature.

  • I despise python syntax.

  • right. I got an AMD and the driver is utter shit. I had to disable features using kernel cmdline bitmask flags, so that it doesn't crash every 2 hours. wayland + amd classic.

    never had compositor or display server issues with nvidia on linux.

  • chatgpt happened

  • they are explicitly excluded, right?

  • I asked chatgpt for a few languages with a good typesystem and it suggested ocaml among other (scala, rust, haskell, f#)

    Then asked for a 100 line ocaml REST API example with a popular framework and db lib.. and it looks mostly like Haskell.

    edit: async is done with monads

  • i wish a more performing language would have this type system. the only other ones I know are Rust which is a bit strict and slow to dev on, and Haskell which is too much.