DeepSeek JailBrake Attack
The Chinese government is famous/notorious for its censorship. The Chinese LLM DeepSeek naturally follows this attitude and does not talk about content that is sensitive for China's leadership, such as Tiananmen Square Massacre, Taiwan or the Cultural Revolution. With some simple JailBrakeing you can get DeepSeek to bypass the censorship.
Understanding Memory<T>
Modern applications often require handling large datasets efficiently without unnecessary data copying. C# introduced Memory<T>
as a versatile tool for optimizing memory management. Here we will explore how Memory<T>
solves common issues and its advantages over traditional approaches.
Game Devs still aren't warming up to generative AI
LLMs are not super useful for much of game programming, especially things like engine programming. Too niche, not as well covered in the training set as say building web apps or doing Python stuff.
Inline Lambdas with LINQ in C# 13
Reduce verbosity by simplifying lambda expressions with inline syntax
Aggregating Data with LINQ in .NET9
.NET9 has introduced two new methods, CountBy
and AggregateBy
, making data aggregation easier and more efficient without the need for complex intermediate steps like GroupBy
.
Implementing Modern API Versioning in .NET
How t0 implement modern API versioning in .NET using the latest tooling available. In this video we will focus on Minimal APIs since this is the new feature added in .NET 6, but this approach can be used for Web APIs as well.
Performance increase in LINQ 7
Microsoft used Span and hardware acceleration to work with vectors in order to improve LINQ performance in .NET 7 dramatically.
Parameter Null Checking in C# 11
Get ride of common boilerplate code to validate if the method arguments are null with C# 11.
The magic of LINQ
Practical LINQ: Calculate the duration of whole music album
How to return Yield Results in Async Operations
How to return Yield Results in Async Operations thanks to IAsyncEnumerable in C#