184 Qt Libraries
Inqlude now lists 184 third-party Qt libraries, providing a comprehensive archive and tools for Qt developers to discover and integrate extensions.
Inqlude now lists 184 third-party Qt libraries, providing a comprehensive archive and tools for Qt developers to discover and integrate extensions.
A developer recounts their experience participating in Ludum Dare 33, a game jam, detailing their technical challenges and tools used.
An improved implementation of the weak event pattern in C# to prevent memory leaks, focusing on performance and API design.
Comparing Swift protocol extensions with C# abstract classes, analyzing similarities, differences, and best use cases.
Comparing Swift protocol extensions with C# abstract classes, exploring similarities, differences, and which is preferred for abstraction.
Explains the key advantage of C# 6 exception filters: they preserve the call stack for debugging by not unwinding it when a filter condition fails.
Explores how C# 6.0 features, like the nameof operator, help developers write safer, less error-prone code by preventing common mistakes.
Explains differences in Swift access control vs C#, focusing on how 'private' works differently in Swift.
Explains how to use ReSharper's code annotation attributes to improve static analysis and code quality in C# development.
A C# programming puzzle testing understanding of the 'out' parameter keyword and variable assignment.
Explores advanced C# 6 string interpolation, covering IFormattable conversion for custom formatting like culture control and URL encoding.
Guide to using Microsoft's Office 365 API Sandbox for testing REST APIs with sample or real tenant data.
Explores writing asynchronous unit tests in NUnit, comparing async void vs. async Task methods and detailing NUnit 2.6's internal handling.
Explains how to use Reactive Extensions (Rx) to sample high-frequency C# events like TextChanged in WPF, reducing UI updates.
Discusses the misuse of guard clauses in code, arguing for domain-specific exceptions over generic null checks.
Explains performance issues with ToArray/ToList and proposes a custom extension method to optimize them by providing the element count.
A tutorial on how to write your own malloc memory allocator in C, explaining core concepts and providing sample code.
Explores C# string interpolation and a custom StringTemplate library for named placeholders, useful for localization and readability.
Explains a workaround for passing parameters by reference to async methods in C# using a custom Ref<T> class.
A method to automate unit testing for null argument validation, reducing repetitive test code for methods with multiple parameters.