Remove c
article thumbnail

C# Errors by Example: Checking the DotNetNuke CMS

DZone

Today, we discuss C# code quality and a variety of errors by the example of CMS DotNetNuke. We're going to dig into its source code. DotNetNuke is an open-source content management system (CMS) written mainly in C#. The source code is available on GitHub. You're going to need a cup of coffee. DotNetNuke.

C++ 256
article thumbnail

Why business digital transformation is still a key C-level priority today

Dynatrace

According to a recent Thomson Reuters survey, nearly 50% of C-level executives said that business digital transformation was their top priority over the next 18 months, followed by reducing costs (44%) and increasing customer satisfaction (44%). “Now, Not surprisingly, business digital transformation is also a growing market.

C++ 184
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

MongoDB SSL with self-signed certificates in C#

Scalegrid

In this blog post, we show you two methods to securely connect to a MongoDB server configured with self-signed certificates for SSL, using the official C# MongoDB driver. How to Connect MongoDB SSL to your C# Application Click To Tweet. Note: All the code samples have been tested using MongoDB Driver v2.8.1 Prerequisites.

C++ 244
article thumbnail

Trip report: Summer ISO C++ standards meeting (Varna, Bulgaria)

Sutter's Mill

Minutes ago, the ISO C++ committee finished its meeting in-person in Varna, Bulgaria and online via Zoom, where we formally began adopting features into C++26. For example, the feature freeze for C++23 was in early 2022. Already in C++23] Rule 2. You can find a brief summary of ISO procedures here.

C++ 143
article thumbnail

Trip report: Autumn ISO C++ standards meeting (Kona, HI, USA)

Sutter's Mill

Today, the ISO C++ committee completed its second meeting of C++26, held in Kona, HI, USA. Our hosts, Standard C++ Foundation and WorldQuant, arranged for high-quality facilities for our six-day meeting from Monday through Saturday. This time, the committee adopted the next set of features for C++26.

C++ 107
article thumbnail

Debugging MySQL Core File in Visual Studio Code

Percona

Visual Studio Code (VS) supports memory dump debugging via C/C++ extension: [link]. When MySQL generates a core file, the VS code simplifies the process of debugging. This blog will discuss how to debug the core file in VS code. Installing c/c++ extension We need to install the c/c++ extension.

Code 99
article thumbnail

NUnit Tutorial: Parameterized Tests With Examples

DZone

As testing has to be performed on varied combinations, it can lead to code duplication as a lot of test methods will be doing the same thing but on different input combinations. I have come across many such situations during the code optimization process when I felt that a part of the code is either duplicated or redundant.

Testing 227