Skip to content

Instantly share code, notes, and snippets.

View anastabiti's full-sized avatar
🎯
Focusing

Anas TABITI anastabiti

🎯
Focusing
View GitHub Profile
@butageek
butageek / windows_activation.md
Last active September 18, 2024 19:33
Activate Windows for free

For Windows 10

Step 1 - Open PowerShell or Command Prompt as administrator

Step 2 - Install KMS client key

slmgr /ipk your_license_key

Replace your_license_key with following volumn license keys according to Windows Edition:

@hauthorn
hauthorn / postman.desktop
Last active July 18, 2024 04:46
Postman desktop entry
[Desktop Entry]
Categories=Development;
Comment=Supercharge your API workflow
Exec="/home/hauthorn/Programs/Postman/Postman"
Icon=/home/hauthorn/Programs/Postman/app/resources/app/assets/icon.png
Name=Postman
Terminal=false
Type=Application
Version=1.0
@mrtnpar
mrtnpar / gist:1200699
Created September 7, 2011 14:24
Create Large 1GB Binary Image File With dd Command
# 1MB
dd if=/dev/zero of=test.img bs=1024 count=0 seek=1024
# 10MB
dd if=/dev/zero of=test.img bs=1024 count=0 seek=$[1024*10]
# 100MB
dd if=/dev/zero of=test.img bs=1024 count=0 seek=$[1024*100]
# 10BG