• 6 Posts
  • 162 Comments
Joined 3 年前
cake
Cake day: 2023年6月27日

help-circle

  • Kwdgtoich_iel@feddit.orgich☕🌿🧈iel
    link
    fedilink
    arrow-up
    4
    ·
    7 天前

    Hatte die Butter einen starken cannabisgeschmack? Das war mein Problem beim letzen mal. Da hatte ich es genau so gemacht wie du, aber die Kekse hatten einen (zu) sehr starken Geschmack. Deswegen hab ich gefragt. Beim ersten mal bin ich einem Rezept gefolgt in dem die Butter und das Gras direkt ins Wasser gegeben werden. Das hilft wohl beim starken Grasgeschmack, aber irgendwie gefällt mir der Prozess nicht









  • Thanks, I had the same problem and it’s fixed now.

    But now when I open an image there is a small moment where the screen goes dark (literally just a few frames). This is only happening when opening an image for the first time. Ich guess it is loading the full sized image. If I remember correctly the previous bevaviour was to first show the thumbnail and then the hd version. Can this be made the bahaviour again, even the smal black flash is quite distracting.

    I tried recording but it didn’t show up in the screen capture, though I can reproduce it on without problem


  • I just scrolled through it, so no deep insights, but at first glance it looks pretty good.

    One thing I saw, and that probably every rust programmer has to learn in the beginning, is to use slices for function parameters whenever prossible. Pretty much every time you use fn foo(s: &String) you should use fn foo(s: &str) and the same goes for &Vec<T> -> &[T]. Calling these works still the same so just changing the function definitions should work.

    The advantage of this is, that now you can use every type that can be dereferenced as the slice, so you can now call foo like this foo("bar"); or with a String foo(&String::from("bar"));. The same applies for &[T] which can be called with &Vec<T> or an array &[T; N]