• 10 Posts
  • 589 Comments
Joined 4 years ago
cake
Cake day: May 31st, 2020

help-circle




  • Das Gespräch war halt wie Schnackstunde im Altersheim. Einer, der irgendwie psychisch durch ist und ständig irgendwelche offensichtlichen Lügen erfindet, wie toll er sei. Und der andere, der dagegen hält, aber teilweise zu senil ist, um einen Satz zu vollenden.

    Dass die beiden sich als Präsident der USA bewerben, macht es dann so richtig surreal.


  • Yeah, that is my understanding, too. Otherwise you’d only want to generate them on the database host, as even with NTP there will be small differences. This would kind of defeat the purpose of UUIDs.

    If you’re saying that even without NTP, just by manually setting the time, things will be fine. I mean, maybe. But I’ve seen it far too many times already that some host shows up with 1970-01-01…


  • For others wondering what’s wrong with UUIDv4:

    UUID versions that are not time ordered, such as UUIDv4, have poor database-index locality. This means that new values created in succession are not close to each other in the index; thus, they require inserts to be performed at random locations. The resulting negative performance effects on the common structures used for this (B-tree and its variants) can be dramatic.

    I guess, this means with these new UUIDs, ideally you only create UUIDs on systems that are hooked up to NTP, though I guess, it won’t really be worse than UUIDv4 either way.





  • We’ve been using Leptos at work, which is a similar framework (and probably shares half the stack with Dioxus).

    And yeah, it’s really good. My favorite thing about using Rust for the UI is algebraic data types.
    So, in Rust when you call a function which can fail, there isn’t an exception being thrown, but rather you get a Result-type as return value.
    This Result can either contain an Ok with the actual return value inside. Or it can contain an Err with an error message inside.
    So, in your UI code, you just hand this Result all the way to your display code and there you either display the value or you display the error.

    No more uninitialized variables, no more separate booleans to indicate that the variable is uninitialized, no more unreadable multi-line ternaries.
    It just becomes so much simpler to load something from the backend and display it, which is kind of important in frontend code.








  • I actually even made my own bullshit-Spotify. As in, I’ve got a server running on a single-board computer which reads my music folder and serves a small music player as a webpage.

    I didn’t want to install a music player client on my work laptop, but still wanted to listen to my own songs there.


  • Da müsste man sich jetzt so richtig einlesen, und wahrscheinlich noch ein paar neue Studien durchführen, um das wirklich richtig interpretieren zu können, aber es gibt zumindest richtige Studien, die zeigen, dass Cannabis Einfluss auf die Testosteron- und Östrogen-Bildung haben.

    Also soweit ich mich gerade eingelesen habe, scheint es die Östrogenbildung bei Frauen zu fördern.
    Siehe z.B.: https://leafwell.com/blog/effect-cannabis-hormones
    Ich bin mir noch nicht sicher, ob “Frauen” eigentlich weibliche Laborratten in dieser Aussage sind. Das könnte aber eben bedeuten, dass es bei Männern ebenfalls zur Östrogenbildung beiträgt.

    Es scheint aber auch eine umgekehrte Korrelation zu geben, also Testosteron und Östrogen beeinflussen das Cannabis-Konsumverhalten.
    Es steht z.B. hier drin:

    Spoiler

    Males also show different cannabis use patterns as compared to females and appear to use cannabis more frequently and at higher amounts (Cuttler et al., 2016). However, a faster progression to problematic cannabis use (Cooper and Haney, 2014) and more severe withdrawal symptoms (Levin et al., 2010) could explain why women typically show greater propensity to relapse to drug use than men (Becker and Hu, 2008; Fattore et al., 2008).

    ZL;NG: Männer greifen bereitwilliger zu Cannabis, Frauen kommen aber schwerer davon weg.

    Vielleicht also sind Männer mit Brüsten ein ganz besonderer Cocktail aus viel Testosteron + viel Östrogen, der sie sowohl mehr dumme Dinge machen lässt, als auch es erschwert von Cannabis wegzukommen.

    Aber ja, insgesamt würde ich die Beobachtung absolut nicht abschreiben.