Systems | Development | Analytics | API | Testing

July 2023

SOLID Design Principles Explained: Dependency Inversion Principle with Code Examples

The SOLID design principles were promoted by Robert C. Martin and are some of the best-known design principles in object-oriented software development. SOLID is a mnemonic acronym for the following five principles: Each of these principles can stand on its own and has the goal to improve the robustness and maintainability of object-oriented applications and software components.

Display All PHP Errors: Basic & Advanced Usage

A PHP application might produce many different levels of warnings and errors during its execution. Seeing these errors is crucial for developers when troubleshooting a misbehaving application. However, many developers often encounter difficulties displaying errors in their PHP applications, leading to silent app failures.

How C# Reflection Works With Code Examples

To write code that can read, examine and even write code in runtime. Sounds like magic? Welcome to the world of C# reflection. Being able to write code that can examine and modify other pieces of code dynamically is quite a useful power. That’s what we call reflection, and in this post, you’ll learn how C# reflection works. We’ll open the post by covering some fundamentals. What is reflection in C#? Why do people use it? We’ll break all that down for you in plain English.

How to Use LoggerFactory and Microsoft.Extensions.Logging for .NET Core Logging With C#

Do you use.NET (formerly.NET Core)? If so, you’re probably familiar with the built-in.NET Core LoggerFactory which is in Microsoft.Extensions.Logging. Back when it was introduced, it created a lot of confusion around logging with ASP.NET Core. Several years latter, the dust has settled down, and.NET logging has become somewhat “boring”, which means predictable and consistent. In this post, we’ll offer you a guide on.NET logging.

.Net Core Dependency Injection

Dependency Injection (DI) is a pattern that can help developers decouple the different pieces of their applications. It provides a mechanism for the construction of dependency graphs independent of the class definitions. Throughout this article, I will be focusing on constructor injection where dependencies are provided to consumers through their constructors.

OOP Concepts in C#: Code Examples and How to Create a Class

Object-oriented programming (OOP) is a paradigm (a sort of “style”) of programming that revolves around objects communicating with each other, as opposed to functions operating on data structures. C# is the flagship language of the.NET ecosystem. Despite being a multi-paradigm language, its forte is certainly OOP. OOP is a recognized programming paradigm, but programming languages differ in how they interpret and implement its tenants.

TensorFlow vs. PyTorch: Which Deep Learning Framework is Right for You?

A deep learning framework is essential for building and deploying deep neural networks, a class of artificial intelligence algorithms inspired by the human brain’s structure and functioning. These frameworks provide a high-level interface, libraries and tools that simplify the development process of complex machine-learning models. Choosing the proper deep learning framework is crucial as it directly impacts your machine learning projects’ efficiency, productivity, and success.

Gradle vs. Maven: Performance, Compatibility, Builds, & More

Gradle is one of several Java development tools featured in Stackify’s Comprehensive Java Developer’s Guide, but it’s not the only build automation tool to consider. Maven is an older and commonly used alternative, but which build system is best for your project? With other tools, such as Spring, allowing developers to choose between the two systems, coupled with an increasing number of integrations for both, the decision is largely up to you.

The Ultimate List of C# Tools: IDEs, Profilers, Automation Tools, and More

C# is a widely used programming language in enterprises, especially for those that are heavily Microsoft-dependent. This language comprises a lot of tools with individual strengths. Here, we list C# tools for IDEs, profilers, automation tools, and more. If you build apps using C#, you most likely use Visual Studio and have explored some of its extensions to supercharge your development. However, this list of C# tools might just change the way you write C# code for good.

Best Log Management Tools: Useful Tools for Log Management, Monitoring, Analytics, and More

Gone are the days of painful plain-text log management. While plain-text data is still useful in certain situations, when it comes to doing extended analysis to gather insightful infrastructure data – and improve the quality of your code – it pays to invest in reliable log management tools and systems that can empower your business workflow. Logs are not an easy thing to deal with, but regardless is an important aspect of any production system.

7 Real-time Use Cases of Groovy Scripting

In the context of software development, automating repetitive tasks and accelerating application development is the name of the game. Hence, having a versatile language with faster and more efficient results at your disposal is a must. Groovy Scripting will save your day! Groovy scripting is a dynamic language with a range of features and functionalities specifically around automation and rapid application development.

Best Practices for Error Handling in ASP.NET MVC

How easy would our lives be, as programmers, if our applications behaved correctly 100% of the time? Unfortunately, that’s not the case: things go wrong, often in serious ways. In order to offer the user the best possible experience—and also understand what went wrong so you can fix it—your application needs to handle its errors, and that’s why error handling is an important part of any application.

Ultimate log4j Tutorial for Java Logging - Best Practices, Resources and Tips

Logging plays a critical role in every application. In this tutorial, we’ll explore how to use Apache Log4j 2.x and highlight best practices that can help you in getting started and improve logging capabilities. Additionally, we’ll discuss various key features and improvements of Log4j 2.x over its predecessor, Log4j 1.x.

How to Catch All Exceptions in C# & Find All Application Errors

Exception handling is a critical component of every software application. The last thing you want your users to see is errors, or even worse, your application crashing. In this article, we will discuss how to find and catch all exceptions in C# applications. .NET provides several different ways to catch exceptions and view unhandled exceptions. Topics in this article.