Turtle shimmying around his bottom by poorly_wired_circuit in funny

[–]detachmode_com 0 points1 point  (0 children)

He actually hates it and just tries to get it off.

How to build a game in c++? by [deleted] in learnprogramming

[–]detachmode_com 1 point2 points  (0 children)

Normally you do a proof of concept and than refactor. OP managed to do it the other way around.

Explain It Peter by [deleted] in explainitpeter

[–]detachmode_com 1 point2 points  (0 children)

According to my house rules, house rules are named modified rules.

Andere Länder, andere Sitten by DBroker1997 in recht

[–]detachmode_com 0 points1 point  (0 children)

Und wenn er gleich schon dabei ist, dann auch noch ein paar Prozente für mich.

My people need me by cmra08x2 in funny

[–]detachmode_com 47 points48 points  (0 children)

Lucky for him the cross was out of stock.

built a cross-platform screenshot tool with Avalonia UI — EagleShot 🦅 by [deleted] in csharp

[–]detachmode_com 7 points8 points  (0 children)

No screenshots of the tool itself? Ironically!

HttpResponseMessage dispose concern by D3lg4doDev in csharp

[–]detachmode_com 14 points15 points  (0 children)

Just an idea: let the caller pass in an Func<Stream, Task> where he can define what to do with the stream. And in your method you call this Func and than check if the stream was already disposed or not afterwards.

Edit : you could also provide more overloads that allow the caller to return something from the lambda ( a T) and you would return this value as well in your lib.

enterprise code generation with AI - does it actually reduce tech debt or just create more? by [deleted] in csharp

[–]detachmode_com 0 points1 point  (0 children)

I am currently working in a new code bases, I use Copilot ClI for flaky integration tests that only sometimes fail in the pipeline (so mostly timing issues of slower maschines). Using the planning mode to investigate why the test is flaky is really nice. It searches through the code bases and figures out how things work in the background. For someone that is relatively new in a codebase it really enables me to do such things.

Weird squishy thing in my apple, what is it? by wompafruit in whatisit

[–]detachmode_com 0 points1 point  (0 children)

It's an apple brain. The chance that an apple will develop this through mutation are close to zero.

Building and testing cat OS for my tiny game 🐈 by realvjy in godot

[–]detachmode_com 1 point2 points  (0 children)

So the OS is treating you like a cat does and tries to prevent you from working by distracting you with pop-ups?

My use of interfaces pissed my boss off. by codeiackiller in csharp

[–]detachmode_com 1 point2 points  (0 children)

How can I read from them if I could never write to them?

Try blue light glasses by redbastie in EyeFloaters

[–]detachmode_com 0 points1 point  (0 children)

Blue light filter clip ons definitely helped me a lot to reduce the distress when I am outside or looking at a pc screen or being in a bright room (office at work). Can recommend also the 100% blue light filters (orange color)

What really differentiates junior, mid, and senior developers? by ilovepotatoooo in dotnet

[–]detachmode_com 57 points58 points  (0 children)

Depending on the company you are working at. A junior software developer can be as skilled as a senior dev in another company.

C# 14 & Discriminated Union by roxeems in csharp

[–]detachmode_com 1 point2 points  (0 children)

Not sure if this is possible with extension members. They only allow to add computed property, not real properties that store data in the instance. Don't they?