Skip to content

Instantly share code, notes, and snippets.

View loverdeveloper's full-sized avatar
🏠
Working from home

Mohmmad Najafian loverdeveloper

🏠
Working from home
  • All Season Inspection
  • La La Land
View GitHub Profile
@loverdeveloper
loverdeveloper / cloudSettings
Last active May 5, 2020 09:15
Vs code sync setting
{"lastUpload":"2020-05-05T09:15:28.440Z","extensionVersion":"v3.4.3"}
@madkoding
madkoding / install-docker-deepin.sh
Last active November 16, 2024 13:57
Install Docker-CE script for Deepin Linux
#!/bin/bash
echo "Starting Docker installation on Deepin Linux..."
# Define a mapping from Deepin version to Debian version
map_deepin_to_debian() {
if [ "$1" -lt 20 ]; then
echo "stretch"
elif [ "$1" -ge 20 ]; then
echo "buster"
@alirezaomidi
alirezaomidi / openconnect.sh
Last active November 28, 2023 12:04
Script to connect and disconnect to/from openconnect without pain
#!/bin/bash
# This script connects the computer to a vpn server using openconnect without pain
prog_name=$(basename $0)
# CHANGE YOUR_VPN_SERVER_DOMAIN to the VPN server you know like example.com
domain=YOUR_VPN_SERVER_DOMAIN
function help {