#dotnet's
#GameDev #Programming #Godot #Coding

One thing that keeps throwing me off in Godot C# is that it has several methods that are nearly identical to Dotnet's regular premade methods and Im like "so do I use the godot version? Or the one I know" lol
December 10, 2024 at 10:42 PM
I especially loved the datetime field overflow when passing dotnet's date time.minvalue because we didn't preemptively use datetime2 in the schema lol.
September 16, 2025 at 8:58 PM
I decided to use C# with my Godot 4.4 project (as it's *probably* closer to TypeScript, which I'm largely comfortable with). I've added dotnet's .editorconfig and set many severity levels to 'warn' rather than 'suggestion'...
March 9, 2025 at 3:43 PM
@captainsafia.com does (or will) #dotnet's OpenApi generator have a way to declare a custom schema transformer for type as an attribute, like we can with JsonConverter?

E.g.:

[OpenApiTransformer()]
public record MyId(int Value);
March 1, 2025 at 11:23 AM
iceshrimp.net is stuck using http/2 for the foreseeable future because dotnet's http/3 does not seem to expose the ability for us to create our own socket for the connection to go through, all just to validate that the IP we're connecting to is not local.
July 27, 2026 at 3:19 PM
https://jeremybytes.blogspot.com/2022/07/null-forgiving-operator-in-c.html?m=1 - #dotNET's #null forgiving operator. Or said differently "I know what I'm doing". Use it sparingly, but it's incredibly helpful for removing null warnings.
Null Forgiving Operator in C# - !
Over the last couple articles, we have been looking at nullability in C#. When we have nullability enabled, we need to respond to warni...
jeremybytes.blogspot.com
November 20, 2024 at 5:31 PM
Getting a lot of offers to help promote my new book [The Ganymedan] by [author name here]. Not an AI scam.
November 13, 2025 at 11:56 PM
www.code4it.dev/blog/debugge... - #dotNET's [DebuggerDisplay] attribute allows writing a much better debugging message without overriding .ToString(). Nice post www.linkedin.com/in/belloneda....
July 14, 2025 at 3:25 PM
https://dusted.codes/dotenv-in-dotnet - building support for .env files in #dotNET's IConfiguration. Nice code walk-throughs https://www.linkedin.com/in/dustinmoris/.
Using .env in .NET
Programming Adventures
dusted.codes
February 14, 2025 at 4:55 PM
The answer is yes. Java has always had a pie-in-the-sky side, somewhat mirroring dotNET's and its makers' talent for marketing. There are solutions that everyone dreams of, with bloated proof of concepts that barely work, versus solutions that work well today.
August 29, 2025 at 11:33 AM
Fuckin Julia gets this right and I can even work with dotnet's install script consistently on Gentoo lol. This is absolutely on some of these languages just being really fucking annoying for the sake of it
April 8, 2026 at 12:17 AM
May 27, 2025 at 7:04 PM
Have you ever run into the issue that T4 (Text Template Transformation Toolkit) scripts can't be transformed with the dotnet CLI or don't automatically transform during a build in JetBrains Rider?

I've written a script and blog post that could help: duerrenberger.dev/blog/2025/06...

#dotnet #t4
T4 Text Transform With the dotnet CLI - DevLog
For T4 scripts dotnet’s own MSBuild version is bad news, as the necessary MSBuild targets and tooling only ship with Visual Studio
duerrenberger.dev
June 25, 2025 at 12:59 PM
I’ve actually used dafny’s predecessor, the c# code contracts stuff. It was very neat, but it was very windows specific and wasn’t part of dotnet’s multi-platform transition, instead just dying of neglect like so many interesting research products that didn’t quite make it into the real world.
January 17, 2026 at 1:32 PM
All my experiences with dotnet's global.json summarized:

1. Clone a repository that has global.json
2. Build fails because installed SDK is off by 1 nano-version
3. Delete global.json
May 19, 2023 at 10:59 PM
In a browser you could use dotnet's JS Interop, but for server side I think I'd just spin up a separate node server and expose my JS needs as api calls.
January 20, 2025 at 7:48 PM
Span/Memory types could be one of #dotnet's underrated features for writing safe and performant code. they even surpass #golang/#swift slices thanks to their read-only variants. https://twitter.com/esesci/status/1501345444986646528
December 5, 2024 at 10:15 PM