Skip to content

Instantly share code, notes, and snippets.

View 4i8's full-sized avatar
🚬
Algorithmic

Arth 4i8

🚬
Algorithmic
View GitHub Profile
@4i8
4i8 / software_version.md
Created March 29, 2023 02:52
This is a simple explanation of software versioning using the A.B.C format, where A represents the major version, B represents the minor version, and C represents the patch version. I also included examples of how the version numbers can be incremented to indicate changes to the software. My aim was to provide a clear and concise overview of sof…

A.B.C

A => Major

B => Minor

C => Patch

Major: Major changes, not backwards-compatible

Minor: Minor changes, backwards-compatible

Patch: Bug fixes, security updates

Format:v1.2.3❌️ Not Recommended

Recommended:

if Major++[increase]

@linuxoracledev
linuxoracledev / tor.sh
Last active May 31, 2023 07:53
How to install and uninstallTor Browser in Ubuntu 18.04
##Istallation
#Install gtk and gtk3 module
sudo apt-get install libcanberra-gtk-module
sudo apt-get update
#Create a new repository file called tor.list
#cat <<EOF | sudo tee /etc/apt/sources.list.d/tor.list
#deb https://deb.torproject.org/torproject.org bionic main
#deb-src https://deb.torproject.org/torproject.org bionic main
#EOF