top of page

Technology Insights & Software Development News


C# tips and tricks - part 2
Switch property pattern Switch property pattern allows you to check the values of one or more properties of an object directly in the switch expression without having to create complex if checks. Here's an example using the Student class from the example above: string description = student switch { { FirstName: "John", Age: 25 } => "John is 25 years old", { FirstName: "John", Age: 30 } => "Jane is 30 years old", { Age: > 18 } => "Adult", { Age: < 18 } => "Minor", _ => "Unknow
Sep 26, 20241 min read


C# tips and tricks - part 1
C# is a powerful and widely used programming language, but there are often techniques and tricks that are not so well known and can greatly improve the performance of your code. So we're going to do a series of articles demonstrating how to make the code you write more efficient, also some useful tips. Deconstructor A destructor is a method that allows you to "disassemble" an object into separate parts so that you can easily assign those values to separate variables. It has
Sep 19, 20242 min read




Streamlining Multi-Cloud Management with Terraform: A Beginner's Guide
What is Terraform ? Terraform is an open source tool that uses a declarative language called HashiCorp Configuration Language (HCL) to define the desired state of the infrastructure. It supports multiple cloud service providers, such as AWS , Azure , Google Cloud Platform , and others, making it an extremely flexible and powerful tool for multi-cloud environments. Terraform's core workflow consists of three stages: Write : identifying resources that may be across multiple clo
Aug 6, 20242 min read




Expose Your Localhost to the World
Nowadays, developers often need to expose their local development environment to the web. This can make it easier to share work with clients or colleagues, test webhooks, or access a local service from a remote device. Here's a comprehensive guide to the tools and techniques available for exposing your local server to the world. Why expose your local server? Exposing your local server to the Internet can be useful for: Sharing development progress: you can easily show the cur
Jul 5, 20242 min read


Host ASP.NET Core on Linux with Nginx
Today we are going to tell in more detail how to host an ASP.NET Core application on Ubuntu (open source Linux distribution) using Ngninx . Before that, let's get familiar with Nginx and what it is. Nginx is a popular web server known for its high performance, stability, rich features and easy configuration. It was created by Igor Sisoev and was originally released in 2004. Since then, Nginx has become one of the most used web servers in the world. Key features of Nginx : Ser
Jun 27, 20243 min read


.http Files in Visual Studio
.http file editor provides an easy and convenient way to test Web APIs directly in Visual Studio
Jun 13, 20242 min read
bottom of page