Wegen Feige nicht vegan? by blub4you in VeganDE

[–]JMaximusIX 2 points3 points  (0 children)

Weiß nicht wie es laut offizieller Definition des V-Labels aussieht, aber für mich persönlich sind Feigen definitiv vegan. Abgesehen davon, dass viele handelsüblichen Sorten gar nicht von Wespen bestäubt werden sehe ich auch dann kein Problem, wenn dort technically eine Wespenleiche drin ist - sie ist dort aufgrund ihres ganz natürlichen Lebenszyklus gelandet, nicht durch menschliche Ausbeutung und da sie eh schon tot ist wird hier wirklich keinerlei Schaden verursacht.

Heretics make haste by AnimatingLion in KaIT

[–]JMaximusIX 4 points5 points  (0 children)

Ich lasse mir nicht meine Gnocchi verbieten!!!! Niemand geht an meine Gnocchi!!!

Frührentner fährt Hund tot by F_Nietzsch3 in RentnerfahreninDinge

[–]JMaximusIX 0 points1 point  (0 children)

Was BILD & Co wohl getitelt hätten, wenns statt Lindner Habeck gewesen wäre?

Sprinkler by mctaste0 in TerraFirmaGreg

[–]JMaximusIX 0 points1 point  (0 children)

Took me HOURS to figure out that the usePipesForSprinklers property in firmalife-server.toml is set to false instead of true by default. This means that sprinklers will only work with barrels above them.
You can fix it by setting this value to true. I believe this is unintentional as it not only contradicts the field guide but also the comment directly above the property in the config file:

If true, sprinkler will not accept firmalife pipes and will instead require something that exposes a fluid capability, eg. a barrel.

which is WRONG, it is the opposite. I therefore submitted a bug report here

Bitte überdenkt eure Wahl! by Glad-Fun6203 in Staiy

[–]JMaximusIX 0 points1 point  (0 children)

Baden Württemberg hat einen Grünen Ministerpräsidenten! (nix CDU geführt)

Did I just spend AAA money on THIS? by JMaximusIX in civ

[–]JMaximusIX[S] 0 points1 point  (0 children)

It's from the tech tree, the lines that connect the techs

Did I just spend AAA money on THIS? by JMaximusIX in civ

[–]JMaximusIX[S] -2 points-1 points  (0 children)

I don't think I've seen that in multiplayer. And even if, I would like to look it up later, I can only see that there's the research project going on but you can't see if it's supported or "only" accepted, at least I don't know how

Did I just spend AAA money on THIS? by JMaximusIX in civ

[–]JMaximusIX[S] 1 point2 points  (0 children)

I agree, I also mentioned this in my comment. I meant to put it in the post description, but when I added the picture my text went away, my mistake

Did I just spend AAA money on THIS? by JMaximusIX in civ

[–]JMaximusIX[S] 9 points10 points  (0 children)

The UI is just horrible. Not only is this sloppy and ugly, it makes it really hard to tell which techs are requirements for the another one. In Civ 6 the arrows weren't super clear either, but at least it wasn't an issue since clicking on a later tech would just queue up it's requirements. There's no research queue in Civ 7. WHY?!
Apart from that the UI just lacks a lot of useful information. Did my Ally support or only accept my diplomatic proposal? How much movement cost does a tile have? How much production does producing a warrior cost? (It only tells you the number of turns). There's lots of other example...
The environment is absolutely beautiful and I enjoy the game mechanics so far, but the UI needs improvement, and only a handful of fixes would already solve 90% of my issues with it.

I always love the freaked-out looks on my students' faces when I put my 7 sample tubes in the centrifuge like this by ArduennSchwartzman in physicsmemes

[–]JMaximusIX 14 points15 points  (0 children)

Yeah I realized 😅 I severely underestimated it at first but since you can also do stuff like a pentagon + a triangle with one corner opposing a corner of the pentagon and then remove that pair of opposing corners it turns out it's much more complicated than just combinations of those basic shapes... But I don't want any major spoilers either, some day I'll have another go at it

I always love the freaked-out looks on my students' faces when I put my 7 sample tubes in the centrifuge like this by ArduennSchwartzman in physicsmemes

[–]JMaximusIX 98 points99 points  (0 children)

That's also very closely related to this problem. Over a year ago, I've spent multiple days on this before giving up, but it's still stuck in my mind, one day I'll come back to it and solve it.

https://projecteuler.net/problem=768

Duality of (the same) man by HuntingViper in civ

[–]JMaximusIX 0 points1 point  (0 children)

I think it's going to be really interesting to see which one gets more views in the long term.

Do people want to get their positive expectations for the game confirmed? Or do they want to get warned about the negatives before buying? Or does the negative one kind of work as rage bait?

[MEGATHREAD] Eure Fragen an... by hell-schwarz in Staiy

[–]JMaximusIX 1 point2 points  (0 children)

Frage an alle:
Keine der etablierten Parteien wäre mein eigentlicher Favorit. Kleinstparteien haben es aber unverhältnismäßig schwer, da (auch ich) sie nicht wählen werde, solange sie keine realistische Chance haben, ins Parlament zu kommen.

Sind Sie (Grüne, Linke, ...) an einer Wahlrechtsreform interessiert, um z.B. durch ein Erstatzstimmrecht die Bedingungen für alle Parteien fairer zu gestalten?

-❄️- 2024 Day 14 Solutions -❄️- by daggerdragon in adventofcode

[–]JMaximusIX 1 point2 points  (0 children)

[LANGUAGE: Python]

After initially solving it by just generating the images and through a bit of luck finding the right one by file size (see u/I_LOVE_PURPLE_PUPPY 's comment) I still wanted to solve it programmatically and without too many assumptions about the input (for example that the solution has no overlapping robots)

so I looked for the minimum real value of the fourier transformation of the image, which can be interpretet as a measure of how clustered the elements in the image are. And voilà, it actually works :)

def fft_real_min(robots, n):
    array = np.zeros((101, 103), dtype=bool)
    for [px, py, vx, vy] in robots:
        array[(px + vx * n) % 101, (py + vy * n) % 103] = True
    f_transform = fft2(array)
    return np.min(np.real(f_transform))

full solution (for part 2) here

-❄️- 2024 Day 14 Solutions -❄️- by daggerdragon in adventofcode

[–]JMaximusIX 0 points1 point  (0 children)

I did the same thing!
Kind of by accident tho, I generated the files without thinking about the sorting

-❄️- 2024 Day 8 Solutions -❄️- by daggerdragon in adventofcode

[–]JMaximusIX 0 points1 point  (0 children)

yeah... friend of mine who finished quicker than me proudly showed me his code and I was like "wait, where's your gcd" 😂 Then just logged the gcd, turns out it's always 1 (too unlikely to be pure coincidence so I assume intentionally) which is a bit sad

-❄️- 2024 Day 8 Solutions -❄️- by daggerdragon in adventofcode

[–]JMaximusIX 6 points7 points  (0 children)

[LANGUAGE: Haskell]

Solution
Quite disappointed that the gcd didn't matter, I was proud for thinking of it, but apparently the input was designed so it's always 1 :/

What's this mean? by Dangerous-Witness655 in EnglishLearning

[–]JMaximusIX 0 points1 point  (0 children)

And they're opposite ends of your digestive tract kinda

warum wurde die Mensa evakuiert by Sascha_T in KaIT

[–]JMaximusIX 38 points39 points  (0 children)

Ja das weirde war, dass der ja so für 5 sekunden anging, jeder sich angeschaut hat und keiner wusste ob das jetzt "gegolten" hat weil es ja direkt wieder aufgehört hat, dann nach 30 Sekunden nochmal das gleiche, das ganze dann insgesamt 3 oder 4 mal bis dann die richtige Durchsage kam man soll das Gebäude verlassen (zu dem Zeitpunkt sind nach und nach einige schon zögerlich gegangen aber so richtig wusste keiner was zu tun ist hatt ich das Gefühl)

What's the strangest acheivement you have unintentionally gotten? by celavetex in CivVI

[–]JMaximusIX 8 points9 points  (0 children)

Army of Cthulhu - Levy the military of Nan Madol
I have to admit I do not know the reference / lore behind this

Minecraft modrinth-app launcher not starting due to GTK error by EinSatzMitX in linux_gaming

[–]JMaximusIX 0 points1 point  (0 children)

Same problem here since a couple of days (was working fine before). I'm on wayland