Anaconda can help you manage different environments for multiple projects in Python. In this post, you will learn how to install Anaconda on Linux and Windows.
Computers, Coding and Caffeine
Anaconda can help you manage different environments for multiple projects in Python. In this post, you will learn how to install Anaconda on Linux and Windows.
VSCode is one of the best C++ IDEs. In this post, you will learn how to debug your Linux C++ / CMake projects on WSL using VSCode’s launch configurations.
Knowing the path or directory of the current shell script is a very useful thing to know. This post shows you the best way to get the path of a shell script!
Google Test is the most popular testing framework for C++. In this post, you will learn how to integrate GTest into your CMake project in three different ways!
Gradient descent and linear regression go hand in hand. In this post, you will learn the theory and implementation behind these cool machine learning topics!
For beginner developers, this post details useful terminal/command line tools that will boost your productivity. Be a better coder with these tools and tricks!
Fancy learning how to Base64 encode with modern C++? Learn how to implement an easy Base64 encoder and decoder using cutting-edge features of the Cpp standard.
Learn how to create libraries with CMake’s “add_library”. Whether you need a static, shared or another type of library, this post has all C++ libraries covered!
Adding header include directories is straightforward with CMake. Learn how to tell the compiler where to find those pesky C++ header files with simple commands!
Conway’s Game Of Life is a popular 2D cell evolution game. In tis post, we will implement the whole game with graphics display in less than 80 lines of Python!