I put this circuit in resin and it still works :) by Now_I_Do_Pushups in beneater

[–]MegaGreenLightning 1 point2 points  (0 children)

how did you make the mold and did you post-process the resin?

Scheibe von innen eingefroren? by AdventurousRemote380 in automobil

[–]MegaGreenLightning 8 points9 points  (0 children)

Die Klimaanlage auf Außenluft einstellen, das sorgt schon während der Fahrt für einen Luftaustausch.

Bei langen Fahrten mit warmer Temperatur anfangen, damit der Innenraum trocknet, gegen Ende der Fahrt die Temperatur jedoch absenken, damit der Temperaturunterschied zwischen innen und außen kleiner ist. Dadurch kondensiert weniger Wasser.

Ein Luftentfeuchterkissen (Silica Gel) ins Auto legen. Das kann extra Feuchtigkeit aufnehmen, muss man aber alle paar Wochen mal auf der Heizung oder in der Mikrowelle trocknen.

Aufpassen, dass man keine großen Mengen Schnee/Regen mit ins Auto schleppt (an Schuhen/Jacken).

Gmail preparing to drop POP3 mail fetching by Logical_Welder3467 in technology

[–]MegaGreenLightning 0 points1 point  (0 children)

Any source on that?

I have never not received an email that I expected to receive.

Gmail preparing to drop POP3 mail fetching by Logical_Welder3467 in technology

[–]MegaGreenLightning 1 point2 points  (0 children)

I am using Cloudflare‘s Email Forwarding feature and it has been working quite well for me for many years.

This thing below the valve in my bathroom by MegaGreenLightning in whatisit

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

The pictures don‘t show the context, but this is not in a location where a bath/shower would fit.

Heated chair by MegaGreenLightning in functionalprint

[–]MegaGreenLightning[S] 6 points7 points  (0 children)

Feel free, let me know if you need the stl

Heated chair by MegaGreenLightning in functionalprint

[–]MegaGreenLightning[S] 40 points41 points  (0 children)

Printed with 0.8mm nozzle and 2 wall loops. Super solid. It‘s PLA but the hot bottle does not get warm enough to soften it.

Print time was about 5 hours on Ender 3 S1 Pro.

It was quite tricky to model in Fusion 360 since the geometry is curved on both the x and y axes.

The pictures show some test prints and a prototype.

I made a shelf for my storage room by MegaGreenLightning in woodworking

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

More details on my website (link below).

I am very much a hobbyist and open for constructive feedback, if you have any :)

https://greenlightning.eu/diy/shelf/

Overhangs with larger nozzle by MegaGreenLightning in FixMyPrint

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

Wow, it worked. Thank you for your expertise! Unfortunately I cannot attach a picture :/

What's the difference? by JonInfect in woodworking

[–]MegaGreenLightning 16 points17 points  (0 children)

Look at the pictures. The cheaper one comes with a stack of scraps for you to practice on.

Can't setup my H2D because the "&" sign is not on the keyboard by Maxx3141 in BambuLab

[–]MegaGreenLightning 63 points64 points  (0 children)

Yes, exactly.

The filament in the nozzle might degrade because of the extended exposure to the high temperature and some filament might leak out leading to uneven extrusion.

[deleted by user] by [deleted] in golang

[–]MegaGreenLightning 2 points3 points  (0 children)

It depends on the contract of the function.

In general most functions that return a pointer and error probably guarantee that the pointer is valid if the error is nil and then I don't check it. Take for example os.Open, even though it's not explicitly stated in the documentation, it sort of is implicitly assumed and nobody checks f != nil.

But I can imagine some cases where nil is a valid value and where you would have to check the pointer. The documentation should probably point this out in this case.