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...
Unofficial Warp Client on Linux (WGCF+wireguard)
on July 25, 2024
with
No comments
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...
Guide to Installing MariaDB/MySQL on Arch Linux
on July 06, 2024
with
No comments
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...
Mastering Productivity: Firefox's URL Bar as a Powerful Calculator
on June 19, 2023
with
No comments
Introduction:When it comes to browsing the web, Firefox has long been a popular choice among users due to its flexibility and customization options. However, did you know that there’s a hidden gem within Firefox that can transform your browsing experience? By enabling the calculator functionality...
Beyond SVG: Discovering the Top Alternatives for Flutter Development
on June 02, 2023
with
No comments
Introduction:When developing Flutter applications, incorporating SVG (Scalable Vector Graphics) files can add visual appeal and flexibility to your UI. However, the standard approach of using the flutter_svg package to render SVG files may result in larger file sizes, potentially impacting app performance....
Read Medium Article for Free
on May 22, 2023
with
No comments
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...
How to compress json file
on May 19, 2023
with
No comments
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...