Showing: 38 RESULTS
Git Process

🖥️ How to use Git with Gitlab in 2023 ?

I’have been asked how to use Git with Gitlab. Here is a tutorial that explains the process to follow. 1 Install Git client 1.1 Install Git on Windows Go to https://git-scm.com/. Download Git for Windows The website will automatically detect your operating system and provide the appropriate installer for your version of Windows. Run the …

Git Process

🖥️ Using Git Workflow

Git workflow Today, it becomes more and more important to have clean and easy processes for your software applications developments. Wether you are working for a big company or for a small startup, you may have to use a code versioning tool. Git a very powerful tool for such purpose. It enables developers to collaborate …

Process

🐛 Release Process using Standard-version

What is standard-version tool ? Standard-version is an incredibly useful tool that leverages a well-maintained git history to generate easily readable change-logs. This npm package is designed to streamline the process of creating change-logs and facilitate their delivery to clients. It offers several benefits, including automated version incrementing based on the git history and adherence …

C++ Code Process

🖥️ Set up your dev workspace C++

In this article, I will show you how to setup your working environment for C++ Projects. Let’s get started: Create a folder named: HOME_DEV, ideally in : C:/ for Windows ~ for Linux /Users/${YOUR_NAME}/ for Mac Examples: – Windows: `C:/HOME_DEV/` – Linux: `~/HOME_DEV` – Mac: `/Users/${YOUR_NAME}/HOME_DEV` 💡 CLI: Run mkdir “/Users/${USER}/HOME_DEV” to create the folder. …

Code Encoding/Decoding

🖥️ Base64 Decoding Table

Here’s the table of the 64 characters used in base64 decoding, along with their binary value and corresponding decimal value. The table is presented in markdown format: Base64 Character Binary Value Decimal Value A 000000 0 B 000001 1 C 000010 2 D 000011 3 E 000100 4 F 000101 5 G 000110 6 H …

Code Encoding/Decoding

🖥️ Base64 Decoding

Understanding Base64 Decoding In the digital world, encoding schemes are used to convert data or information into a form that can be transmitted easily. One such encoding scheme is called Base64, which converts binary data into a set of characters. This article explains how Base64 decoding works and why it is useful. What is Base64 …

Anaconda Code

🖥️ .condarc Location Windows

The .condarc file is a configuration file for Conda, a cross-platform, language-agnostic binary package manager. .condarc lets you configure various aspects of Conda, such as the channels to search for packages, the location of the Conda environments, proxy settings, and so on. It is often located in the user’s home directory, but its location can …