Skip to content

Instantly share code, notes, and snippets.

View anastabiti's full-sized avatar
🎯
Focusing

Anas TABITI anastabiti

🎯
Focusing
View GitHub Profile
@HimDek
HimDek / Install Android apps or apk files in Windows using Windows Subsystem for Android (No Emulator).md
Last active August 9, 2025 07:31
This Guide will show you how to install and run apk files or Android apps in any Edition of Windows 11 using Windows Subsystem for Android. WSA or Windows Subsystem for Android is a Tool that allows Windows to run Android Apps directly without using any emulator.

Install Android apps or apk files in Windows using Windows Subsystem for Android

WSA or Windows Subsystem for Android is a Tool that allows Windows to run Android Apps directly without using any emulator. The problem is Windows Subsystem for Android is currently only available through preview via the Beta Channel of the Windows Insider Program. But if you follow my guide, you don't have to be in Windows Insider Program to try it out. The only thing you need is Windows 11 installed and some patience.

Prerequisites:

  • Windows Subsystem for Android or WSA must be Installed.

Click here to view the guide that shows how to install Windows Subsystem for Android in any Edition of Windows 11 (including Windows 11 Home) non Inider or stable release.

How to Install Android Apps or apk files in Windows Subsystem for Android:

@hauthorn
hauthorn / postman.desktop
Last active February 12, 2025 19:17
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