• 3 Posts
  • 22 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle

  • Voll, aus der Sichtweise siehts lächerlich aus, ich möcht da gar nicht widersprechen.

    Für mich repräsentiert aber bei mcs zu essen nicht, dass man ein Mann des Volkes ist. Da könnte man anderes machen. Selbst Hand anlegen für nen gemeinschaftlichen Zweck wäre doch was, oder aber einen angemessenen Beitrag für eine gemeinnützige Spendenaktion springen lassen.

    Und wenn man mal absieht von der Kampagne, die bei mir einfach nicht gezogen hätte, bleibt bei mir der Gedanke, warum juckt es mich, dass sich jemand etwas erklären lassen muss, was er nicht kennt. Wissensaustausch ist schon nice, nach dem Motto “wer nicht fragt bleibt dumm”.

    Ja, ich seh die Ironie dahinter, dass genau das ja das Marketingversagen ist, aber… meh, ich reg mich lieber über seine Politik auf als über verhauenes Marketing in Form einer Situation, wo sich jemand den Bestellvorgang erklären lassen muss.



  • Joa, obs gut ist ist subjektiv. Ich habe es jetzt auch erst anderthalb wochen im einsatz. Es funktioniert auf jeden Fall. Eigentlich mag ich Distributionen lieber, bei denen ich selbst alles in der Hand habe und verzichte dafür gerne auf Komfort, also quasi das Gegenteil von Nobara.

    Hm, die Seite ist noch im Aufbau, meinst du das mit unseriös? 😄 Jedenfalls: Dahinter steht GloriousEggroll, den ich besonders für seine custom proton builds schätze, da diese fixes für games beinhalten, die auf dem Standard Proton nicht laufen. Die Person hat sich über die Jahre alleine damit schon Respekt verdient, ich verfolge aber nicht, was sie sonst so treibt.

















  • I use tridactyl in firefox. Except for emacs and tiling wms I’m not too deep in applications for reducing mouse usage, I tend to use keyboards with ‘better mouse placement’ for example the tex shura which copies the thinkpad trackpoint, or a corne keyboard with a pimoroni trackball. Or a charybdis nano. Even using a smaller keyboard layout counts imo, my favourite non-ergo keyboard layout is 60% which reduces necessary arm-travel-distance a lot :)


  • A database optimization I made was changing a tables id generation from a manual generation scheme (some other table had an entry with the next usable id, it was updated with every entry written) to a uuid generation scheme. The table stores data from a daily import, on a fresh import all previous data is deleted. On some systems, there are more than 10 000 000 entries to be imported on a daily basis, which took 8 hours. Now, with batched inserts and the mentioned improvement in the db scheme, it’s at about 20 minutes.

    TLDR: Reducing the amount of queries sent is good, because although network is usually fast (ms), db requests are still slow compared to the speed of an application (clock cycles).

    And yeah, there is an option to only import changes daily, but sadly that isn’t supported in every environment.