c++

8 Articles 1 Followers


Understanding CLI Commands for Testing/Running Beginning C++ Programs

1 Sep 2024 3 minute read 0 comments WinterYeti

So, you want to learn C++? Great, but you have to pass another challenge first. That namely is, understanding how to make your IDE work. What's an IDE? The short acronym for an Integrated Development Environment, an IDE is where to draft, test, compi...

Hey, KeePassXC, why you no native GNU/Linux installer package?

21 Sep 2023 2 minute read 0 comments Great White Snark

Some software (such as Base2 and KeePassXC) only runs on Mac or Windows. For everything else, there's GNU/Linux ... All Your Base In the case of Base (Mac OS X only), DB Browser for SQLite (sqlitedbbrowser) is an adequate replacement and is available...

Download a File using libcurl in C++

5 Dec 2022 1 minute read 0 comments TheJan

It's super simple to download any accessible file from the internet when using libcurl. To download a file using curl in cpp, you can use the following code: Include the curl library in your cpp file using the "#include" directive. Initialize a c...

Would you like to learn to program the blockchain?

9 Jul 2021 1 minute read 0 comments Great White Snark

Seeing as I have a lot of time on my hands when not trying to hustle together enough fiat to pump into crypto and sustain me (and I stuffed around instead  of taking my education seriously), I have decided that I should upskill by going back to basic...

C++ Basics - [Part 2] Input/Output

24 Feb 2021 3 minute read 0 comments Giemo

Before we start with this lesson, I recommend adding your code to GitHub. It's free, easy to use and will help you in the long run. If you never used GitHub before, have a look at this guide, which will help you setting up a GitHub repository and get...

C++ Basics - [Part 1] Hello, Publish0x!

17 Feb 2021 4 minute read 0 comments Giemo

This series is for people with no or very little programming experience. We will be programming in C++, a programming language that is used in a lot of domains (like automotive, aerospace and many more). Although this series is dedicated to complete...

Hello World in C++

3 Mar 2020 1 minute read 0 comments TechCogs

C++ is truly a historic language.  Based heavily on C, most client applications, especially in embedded systems and commercial software, are still written in C++, and the language continues to evolve and add new features.  C++ compilers have become m...

How a Regex Engine Work?

7 Feb 2020 1 minute read 0 comments Bluehive

  A regular expression defines a set of string. A regex engine matches a pattern against input and returns true/false for the condition that pattern exists in the input.I have got a C++ implementation of a regex engine which uses...