#Hacktoberfest 2023 is coming up and #nugetdefense will be participating. A few bugs need squashed, docs need updated, and tests need added. Feel free to raise an issue for anything you'd want to work and I'll do what I can to assist with learning the codebase. Opportunities for PR to be submitted in #TypeScript #Markdown #csharp #ReactJS
I'm gearing up for an overhaul of the caching system, but anything is up for grabs. Refactoring (for performance or readability) are acceptable.
#Hacktoberfest #nugetdefense #TypeScript #Markdown #CSharp #ReactJS
Hmm... That is strange. I'm using #csharp records as well including primary constructors and I expected some issues when converting JSON to data. But both #MongoDb and #aspnet (core) worked fine with it.
The biggest issue was that I use the abstract record a lot.
Some sources that might help
- https://github.com/NTTB/table-tennis-tournament/blob/68031411b929a9f5cb10b978cea82e0617a075cc/src/server/T3.Web/Services/Commit/SetCommitBodyConvertor.cs
- https://github.com/NTTB/table-tennis-tournament/blob/68031411b929a9f5cb10b978cea82e0617a075cc/src/server/T3.Web/Services/Commit/_CommitModule.cs#L17-L19
- https://github.com/NTTB/table-tennis-tournament/blob/68031411b929a9f5cb10b978cea82e0617a075cc/src/server/T3.Web/Program.cs#L22-L27
I can read #csharp switch *expressions* fine, but all my writing was done by the IDE that converts it.
TIL: params is a reserved keyword in C#, cannot name parameter like that. Compiler error could be clearer though.
#CSharp #programming
Just put another article online (well, they are scheduled, and I only need to share them online) about how I prefer to do #translations. It's also one of those rare posts that contains a bit of #csharp #code and mostly because this contains those few instances where I use implicit operators to do casting for me.
https://poweredbydev.com/a-simple-solution-to-add-translation-in-c/
Make Use Of: The 11 Best Coding Games to Build Your Programming Skills https://www.makeuseof.com/tag/best-programming-games/ #Tech #MakeUseOf #TechNews #IT via @morganeogerbc #ProgrammingGames #Programming #JavaScript #CSharp #Java
#Tech #MakeUseOf #technews #it #programminggames #programming #javascript #CSharp #java
#CSharp #Java and #Rust apparently have* logical XOR operator:
x ==! y
* It does not, that's two operators written to look like one. But it works like XOR would.
#programming
#CSharp #Java #Rust #programming
Make Use Of: Different Ways to Write Conditional Statements in C# https://www.makeuseof.com/c-sharp-conditional-statements-write-different-ways/ #Tech #MakeUseOf #TechNews #IT via @morganeogerbc #Programming #CodingTips #CSharp
#Tech #MakeUseOf #technews #it #programming #CodingTips #CSharp
@michel_slm Sadly, not really.
I mostly got really good at abusing #CSharp into being a functional language. With a little practice, it can be a very good one. (I'm trying to do the same thing to Python now, but it's a lot harder.)
If you were looking for functional, your best bet would be #scala by way of data engineering someplace that deals with very high traffic, though that's probably not breaking news.
Make Use Of: How to Design and Code a Health Bar in Unity3D https://www.makeuseof.com/unity3d-health-bars-design-code/ #Tech #MakeUseOf #TechNews #IT via @morganeogerbc #GameDevelopment #Programming #CSharp #Unity
#Tech #MakeUseOf #technews #it #gamedevelopment #programming #CSharp #unity
Make Use Of: How to Code a Physics-Based Character Controller in Unity3D https://www.makeuseof.com/unity3d-physics-character-controller-build-code/ #Tech #MakeUseOf #TechNews #IT via @morganeogerbc #GameDevelopment #Programming #CSharp
#Tech #MakeUseOf #technews #it #gamedevelopment #programming #CSharp
#Unity / #CSharp question:
How should I store a potentially huge 3D array, that needs to support serialisation?
If I store it as a flattened 1D array then all is good and Unity can serialise it, but it will result in one massive linear memory allocation - which may fail.
If I store it as a jagged array I will not have the same memory-related issues, but Unity won't be able to serialise it.
Is there maybe some support for custom serialisation that I don't know of?
Just got out of a meeting of and happy to inform all of you that the #opensource #sport federation project will be written in #CSharp primarily.
The biggest reason is because we can deploy it as a single self-contained application.
Normally I would have chosen for #typescript for this kind of project since #javascript being the universal language but that would have been difficult with all the runtime requirements.
#opensource #Sport #CSharp #typescript #javascript
Maybe a temporary solution or something? The “e” is esproj can refer to ECMAScript but #csharp is also an ECMA standard. Or it can point to an old format used by Espresso.
I have sooo many questions 😅
#Adobe #AdobeCreativeCloud #AI #AIArt #API #AWS #BattlestarGalactica #BritCom #BSG #Columbo #CreativeCloud #CSharp #Docker #DoctorWho #Dogs #DotNet #DrWho #Giallo #Godzilla #Illustrator #InfoSec #KeepingUpAppearances #Linux #MST3k #MurderSheWrote #OpenSource #Photoshop #Privacy #Programming #Rifftrax #Rifftrax #Shudder #StarTrek #WellingtonParanormal
#Adobe #AdobeCreativeCloud #ai #AIArt #API #aws #battlestargalactica #BritCom #BSG #Columbo #CreativeCloud #CSharp #Docker #DoctorWho #Dogs #DotNet #drwho #giallo #Godzilla #Illustrator #infosec #KeepingUpAppearances #Linux #MST3K #MurderSheWrote #OpenSource #photoshop #Privacy #Programming #Rifftrax #shudder #StarTrek #WellingtonParanormal
Any other #CSharp #dotnet devs out there will understand that “fiddling with Polly” is neither a perverse activity with a psittacine nor a rehash of #MontyPython 😜 https://github.com/App-vNext/Polly/wiki
Hmm, #VisualStudio has started doing this maddening thing where it deletes the .csproj file when scaffolding a new class or some other solution change. It pops us the save as dialog, but it won’t save. I end up reverting the change then having to show all/include in project to get my new item back. Why!!?? 😤
#VisualStudio #dev #code #CSharp
TIL in #CSharp you can `goto case` inside of a switch statement. That's actually pretty sweet imo.