We have just released a new C++Online 2026 Conference Video! Zero-Cost Abstractions in Large C++ Systems - Lessons from OpenJDK’s Barrier Refactoring - Shubhankar Gambhir - C++Online 2026 https://lnkd.in/eZgJ7PYy #cpp #cplusplus #softwaredesign #programming
C++Online 2026 Conference Video: Zero-Cost Abstractions in Large C++ Systems
More Relevant Posts
-
Both intercept requests — but Middleware is app-wide and Endpoint Filter is endpoint-scoped. Using the wrong one means running logic on every request when you only needed it on one. Full comparison + decision rule in the image 👇 Which do you use more? 👇 #MinimalAPI #AspNetCore #DotNet #CleanCode #CSharp #SoftwareEngineering #Programming #DotNet9
To view or add a comment, sign in
-
-
Thread safety issues often stay invisible… until production traffic hits 👀 Here’s a quick breakdown of how ConcurrentDictionary<TKey, TValue> works in C#, what pitfalls to watch for, and when ImmutableDictionary<TKey, TValue> might actually be the better choice 🧵 #dotnet #csharp #backend #softwareengineering #concurrency #multithreading #async #programming #dotnetdeveloper #backenddevelopment #systemdesign #performance #threading #developers #coding
To view or add a comment, sign in
-
🚀 Building on Strong Foundations Inheritance is about reusability and hierarchical logic. Tackling 22 problems in this intensive module allowed me to master how to build on existing foundations to create better, more efficient software. Module: Inheritance Subjective Progress: 22 problems solved 📈 Consistency: Every problem solved is a step toward making advanced syntax feel like second nature. #CoreJava #Inheritance #CleanCode #Programming #TAPAcademy #LogicBuilding
To view or add a comment, sign in
-
-
Built a Student Performance Analyzer using C++ Features: ✅ Student records ✅ Grade calculation ✅ Topper analysis ✅ Student search ✅ File handling Concepts used: - OOP - Vectors - Functions Improved my programming and problem-solving skills through this project. #c++ #Programming #Projects
To view or add a comment, sign in
-
-
Minimal APIs don't support [ActionFilter] — so where does your validation go? Endpoint Filters. Write once, attach to any endpoint in one line. Zero duplication. Before/after + use cases in the image 👇 Are you using endpoint filters? 👇 #MinimalAPI #AspNetCore #DotNet #CleanCode #CSharp #SoftwareEngineering #Programming #DotNet9
To view or add a comment, sign in
-
-
How to Make a UIStackView Scrollable with UIScrollView in Swift Let's learn together how to make UIStackView Scrollable with UIScrollView. https://lnkd.in/dBcKP2g7 #swift #uistackview #uiscrollview #xcode #apple #development #programming #developer #learn #coding
To view or add a comment, sign in
-
-
Scrutor or Autofac for CSharp dependency injection... Who wins? Which one comes out on top between these two solutions for dependency injection in dotnet? TL; DR: - Scrutor easily integrates with IServiceCollection - Scrutor supports lightweight assembly scanning - Autofac is extremely feature-rich (may be overkill for many) - Integrates with IServiceCollection but not as elegant Have you used either of these libraries for dependency injection? Share your experiences, or if you use something else! Check out the article: https://bgh.st/t9el4g #CSharp #DotNet #Code #Programming
To view or add a comment, sign in
-
-
Solved the "Best Time to Buy and Sell Stock" problem using C++ 🚀 Today I learned: ✅ How to optimize array problems from brute force to O(n) ✅ Importance of tracking minimum value while traversing the array ✅ Why buy should always happen before sell in stock problems ✅ Small optimization techniques like storing a.size() in a variable Implemented using: 🔹 Arrays 🔹 Pair 🔹 Loop Optimization 🔹 Time Complexity Analysis This problem helped me better understand real-world use of arrays and optimization in DSA. #cpp #cplusplus #dsa #leetcode #programming #softwareengineering #coding #arrays #developers #learning
To view or add a comment, sign in
-
Here are 3 simple tips for working with Scrutor for dependency injection This article is for folks who are working with IServiceCollection in their ASP NET Core applications and looking to enhance their dependency injection. Scrutor is a great addition that can help make scanning assemblies for dependencies to load much easier. Have you used Scrutor? What's your favorite use case for it in your applications? Check out the article: https://bgh.st/tjuupi #CSharp #DotNet #Coding #Programming
To view or add a comment, sign in
-
-
You can create new object instance in CSharp with THIS... The Activator static class in CSharp allows us to, via reflection, create new instances of objects. This beginner's guide walks you through simple CSharp code examples to show you how this works. What cases have you used reflection and Activator.CreateInstance to create new instances of objects? Why did you use this over just directly calling new()? Check out the article: https://bgh.st/ynslyl #CSharp #DotNet #Code #Programming
To view or add a comment, sign in
-