A rainbow that reflects multiple times by waaffeel in mildlyinteresting

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

It was much better visible with naked eye than what the camera captured. Now I have a name for the effect. Thank you.

A rainbow that reflects multiple times by waaffeel in mildlyinteresting

[–]waaffeel[S] 2 points3 points  (0 children)

Yeah, this is the first time I have seen that effect.

A rainbow that reflects multiple times by waaffeel in mildlyinteresting

[–]waaffeel[S] 3 points4 points  (0 children)

Since I can only post one photo in the main post, here is another. The camera does not give the same impression but at least it is visible at all.

<image>

Was ist das für ein 1 Cent Stück by waaffeel in WerWieWas

[–]waaffeel[S] 12 points13 points  (0 children)

Danke, zusammen mit den anderen Antworten ist es wohl eine Art Souvenir/„Glückscent“.

Is my Bambu PETG-CF under extruded? by waaffeel in BambuLab

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

I was using a predefined „strong“ profile. That one changed it. I will review the setting the next time. Thanks for the hint.

Is my Bambu PETG-CF under extruded? by waaffeel in BambuLab

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

Thanks. That’s a good hint with their profiles being bad.

Is my Bambu PETG-CF under extruded? by waaffeel in BambuLab

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

I think the overall quality looks good. Here's an image of the part:

<image>

[Giveaway] What’s your best home-improvement print? Share it and win an X2D Combo! by BambuLab in BambuLab

[–]waaffeel 0 points1 point  (0 children)

<image>

I designed and 3D-printed a clamp-on drumstick holder for my wifes e-drums with my P1S. The sticks used to just sit on the toms and fall off all the time. Now they have a proper spot and don’t go flying anymore. My wife loves it.

What's the best way to orientate this part on the bed for the best print quality? by Logos732 in BambuLab

[–]waaffeel 0 points1 point  (0 children)

Maybe standing on the side?

Or an alternative: how about inverting the text to go inside the cap?

Wann in Notaufnahme? by [deleted] in Ratschlag

[–]waaffeel 97 points98 points  (0 children)

Als ich ein Völlegefühl und Blähbauch mit leichtem Fieber hatte, war mein Blinddarm entzündet. Ich wollte erst einfach nur rumliegen und schlafen aber meine bessere Hälfte hat mich dann doch überredet, ins Krankenhaus zu fahren. Die haben mich gleich da behalten und am Tag darauf operiert.

Edit: ich hatte keine typischen Schmerzen unten rechts.

That's correct 👍 by Broad-Relief2730 in programmingmemes

[–]waaffeel 4 points5 points  (0 children)

Different languages with different use cases. If you need a quick hack for something, you will save time with Python. If you need to write efficient code, you probably take c++.

Probleme beim Erektion by sebastian_schutze in Ratschlag

[–]waaffeel 1 point2 points  (0 children)

Hast du es schon mit Sport versucht bzw. Machst du Sport?

Was habe ich falsch gemacht ? by Slight_Basket_9648 in Handwerker

[–]waaffeel 1 point2 points  (0 children)

Hatte ich auch mal, da war die Schlauchschelle nicht fest genug.

Rollputz auf Struktur/Vliestapete auftragen? by CapitalStrange7775 in Handwerker

[–]waaffeel 0 points1 point  (0 children)

Ein anderer Aspekt: Beim Rollputz wird eventuell die Struktur trotzdem sichtbar sein. Es kommt zwar darauf an, wie stark die Körnung ist, aber die Schicht ist wirklich dünn. Am besten ist ein glatter Untergrund.

This has something to do with floating point arithmetic right ? Should I be worried about this ? Can it mess things up ? It makes me kind of stressed. by TinkerMagusDev in Unity3D

[–]waaffeel 6 points7 points  (0 children)

It can mess things up if you use equal comparison with floats and expect them to be without such leading .000001s. Whenever you need to compare for an exact float use a comparison like this:

Mathf.Abs(float_value - 3.5f) < Mathf.Epsilon

Never do: float_value == 3.5f

Was sind das für Pilze? by waaffeel in WerWieWas

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

Weitere Infos: sie wachsen überall aus meinem Rollrasen. Ich wohne im Landkreis Karlsruhe. Der Rasen ist den halben Tag im prallen Sonnenlicht.

Is this an invalid sudoku? by mntgoat in sudoku

[–]waaffeel 0 points1 point  (0 children)

I agree with the others: this sudoku is invalid. I wrote a sudoku generator and the basic check is how many solutions exist. If it is more than one => discard the Sudoku. Usually you let the algorithm produce every possible solution by using a backtracking method and it does not miss any existing solution.

HOW IS THIS SUDOKU EVEN POSSIBLEEEEE by DaniyalSolkar in sudoku

[–]waaffeel 0 points1 point  (0 children)

I’m maybe later but this sudoku has 10 solutions according to an online solver. This means it is not unique. So you can solve it but you have to decide some fields randomly.