Arrays Explained: Basics things You Need to Know

Arrays are one of the most fundamental data structures in programming. They’re simple to use, yet powerful in storing multiple elements efficiently. But have you ever wondered what happens behind the scenes when you use an array? Why do different programming languages have various ways of declaring...
Share:

Unofficial Warp Client on Linux (WGCF+wireguard)

WGCF is an unofficial, cross-platform CLI for Cloudflare Warp. It works with Wireguard. So before installing WGCF make sure you’ve installed`wireguard-tools``wireguard-dkms` (if you’re using a Linux Kernel older than 5.6)Note : You’ve to restart your system if you install wireguard-dkms.You can install pre-compiled binary file from it’s releases or you can install it from AUR if you’re using Arch...
Share:

Guide to Installing MariaDB/MySQL on Arch Linux

IntroductionInstalling MariaDB or MySQL on Arch Linux can be a daunting task, especially if you're not familiar with the intricacies of the Arch environment. This guide aims to be a comprehensive, one-stop resource to help you get MariaDB/MySQL up and running on your Arch Linux machine.PreparationBefore we dive into the installation process, ensure your system is up to date. Run the following command:sudo...
Share:

Read Medium Article for Free

It is just quick and simple.replace the medium.com/with scribe.rip/example:Medium URL:    ```https://medium.com/flutter/2023-google-mobile-ads-updates-for-flutter-16b603df9ec9```Free URL:    ```https://scribe.rip/flutter/2023-google-mobile-ads-updates-for-flutter-16b603df9ec9```that's all...
Share:

How to compress json file

For a single file use this: jq -c . all_json_words.json > minify_words.jsonto use it in a for loopfor file in *.json; do     jq -c . "$file" > "${file%.json}.min.json"d...
Share: