(Bipin Joshi) In Part -1 and Part – 2 of this article you created EmployeeCRUD service definition using Protocol Buffer language and also implemented it in EmployeeCRUDService class.
Tag: Development
Superficial Performance Comparison Between ColdFusion Query-of-Queries (QoQ) And Array Functions In Lucee CFML 5.3.3.62
(Ben Nadel) You should always take a controlled performance comparison with a grain of salt. These were not done in a production environment; they were not done under load; and the performance at small scale for either approach is significantly fast.
Debugging Lock Contention Performance Issues in C# .NET
(Michael Shpilt) One of the reasons modern computers are so fast is because of multi-core processors. New CPUs can execute many instructions in parallel. How many? As many as the number of logical CPU cores. This allows us, programmers, to run code in parallel using Threads.
Licensing Solutions for .NET Applications
(Hannes DuPreez) Protecting your work is difficult protecting, especially if you’re a relatively small start-up, trying to generate an income and there is no affordable way to protect your applications from being pirated.
Working with Claims to Authorize Users in ASP.NET Core and Blazor
(Peter Vogel) When you need to integrate authorizing the user to perform some activity (or just want to retrieve information about the current user), you need to work with the ClaimsPrincipal’s Claims objects. Here’s everything you might want to do.
Replacing ColdFusion Query-of-Query (QoQ) INNER JOIN And LEFT OUTER JOIN With Array Functions In Lucee CFML 5.3.3.62
(Ben Nadel) Earlier this week, I took a look through the InVision codebase, pulled-out several ColdFusion Query-of-Query (QoQ) examples, and then demonstrated how those query-of-queries could be re-implemented using Array functions in Lucee CFML.
Using foreach with index in C#
(Thomas Levesque) Just a quick tip today!
Using FluentValidation in ASP.NET Core
(Shawn Wildermuth) I’m working on an example to explore some more complex modeling in EF (for SQL and NoSQL) but that’s not ready so I thought I’d use it as a bed for some Validation testing I’m doing.
Understanding Automatic Type Conversion in C++
(Manoj Debnath) There are many data types in C++; some are related to each other. Conversion between related types is implicitly supported by C++.
Accessing and Extending Authorization Claims in ASP.NET Core and Blazor
(Peter Vogel) When you need to integrate authorization with procedural code, you’re going to need your application’s ClaimsPrincipal object so that you can check the user’s authorization claims. Here’s both how to get to the ClaimsPrincipal and how to extend it with custom claims.