Skip to content

Instantly share code, notes, and snippets.

View amjiddader's full-sized avatar
👨‍💻
Working on my heath lol

AMJID DADER amjiddader

👨‍💻
Working on my heath lol
View GitHub Profile
@amjiddader
amjiddader / windows on linode
Last active August 14, 2023 23:00
Install windows on linode , windows 11 on linode, windows 10 on linode
Install Windows on any Cloud VM including Digitalocean , vultr...
3 files are included with different versions and size. choose one based on your needs.
ORIGINAL CODE IS HOSTED ON GITHUB. FOR HELP AND MORE CHECK GITHUB REPO
https://github.com/amjiddader/windows-on-cloud
1. WIN11
This one is pure windows 11 default windows settings and apps.
@amjiddader
amjiddader / win10_on_digitalocean_droplet
Created August 14, 2023 22:59
Install windows 10 on DigitalOcean droplet
Install Windows on any Cloud VM including Digitalocean , vultr...
3 files are included with different versions and size. choose one based on your needs.
ORIGINAL CODE IS HOSTED ON GITHUB. FOR HELP AND MORE CHECK GITHUB REPO
https://github.com/amjiddader/windows-on-cloud
1. WIN11
This one is pure windows 11 default windows settings and apps.
@amjiddader
amjiddader / win11_on_digitalocean
Last active August 14, 2023 22:58
Install windows 11 on DigitalOcean droplet
Install Windows on any Cloud VM including Digitalocean , vultr...
3 files are included with different versions and size. choose one based on your needs.
ORIGINAL CODE IS HOSTED ON GITHUB. FOR HELP AND MORE CHECK GITHUB REPO
https://github.com/amjiddader/windows-on-cloud
1. WIN11
This one is pure windows 11 default windows settings and apps.
@amjiddader
amjiddader / postman-deb.sh
Created May 3, 2022 13:23 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
curlExists=$(command -v curl)
echo "Testing Postman version"
targetName=""
if [ -z $curlExists ]; then
targetName=$(wget -S --spider "https://dl.pstmn.io/download/latest/linux64" 2>&1 | grep "Content-Disposition" | awk -F '=' '{ print $2 }')
else