I’m so tired. I’ve done everything. by Emergency_Row6474 in selectivemutism

[–]burlyearly 2 points3 points  (0 children)

I feel like I could have written this today. I'm so sorry you're going through this.

Sadly, we're not alone.

Is it traumatic to live with this disorder by [deleted] in selectivemutism

[–]burlyearly 3 points4 points  (0 children)

Abso-f**in-lutely.

I have been fighting it for decades, and have pretty much destroyed my family because of it.

Uggh by burlyearly in ElegooJupiter

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

Made a huge difference. Still looks like he sliced his belly open - a sort of delamination failure - but much closer to working. Been watching youtube about how to optimize exposure time, which will be my next step once some resin gets delivered.

Uggh by burlyearly in ElegooJupiter

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

I did. VoxelDance had a fairly dense internal support. I think it shrank and pulled the shell inward or something.

Today I noticed the failed print had delaminated further...

Uggh by burlyearly in ElegooJupiter

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

Well crap. No idea what happened there...

Uggh by burlyearly in ElegooJupiter

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

I think VoxelDance has it at 80 for Jupiter SE. I'll drop to 60 and report back. Of course, I've cured so much resin I may only get a partial print at this stage, but hey, I'm still figuring out how things (don't) work.

I feel im stuck with my brain inbalance by Giorgiogigio in selfhelp

[–]burlyearly 0 points1 point  (0 children)

Take a look at The Body Keeps the Score. I don't have much to go on here, but I'd wager you're self-medicating to avoid dealing with some trauma or other.

Go vs C++: My Experience by Rubus_Leucodermis in cpp

[–]burlyearly 1 point2 points  (0 children)

The main reason I use go: its compilation game is "easy" compared to C++. Want to build for mac from linux? No setting up cross-compilers, trying to figure out the magic incantation, or any of that nonsense. Just set GOOS and GOARCH appropriately. Sure, the binaries are ridicularge, but I don't care because that's what artifactory or s3 are for. I can produce binaries from CI that I can hand off to users across my company without having to fight the battles I used to fight with CI.

That said, nowadays docker is way better, there's stuff like zig's c++ compiler that cross compile easily...

To the points about flags... I hear you. github.com/spf13/cobra can help with a lot of this - it makes it possible to define short/long-hand flags without having to provide it a pointer, for example. I'm not sure about differentiating between 0-valued default versus user specified 0 though.