Skip to content

Instantly share code, notes, and snippets.

View Khip01's full-sized avatar
πŸ—‘οΈ
Fear me, if you dare!

Akhmad Aakhif Athallah Khip01

πŸ—‘οΈ
Fear me, if you dare!
View GitHub Profile
@Khip01
Khip01 / postman_installation.md
Last active September 6, 2025 07:50 — forked from Akhil-Suresh/postman_installation.md
Installing Postman on Ubuntu/Debian/OpenSUSE

Installing Postman

Install Postman with xdg-utils on Linux to fix the authentication redirect error

- Unable to create KIO worker. Unknown protocol 'postman'.

Step 1

@Khip01
Khip01 / README.md
Last active September 5, 2025 06:48
daivasmara-custom.zsh-theme
@Khip01
Khip01 / waydroid-adb-connect.sh
Created September 2, 2025 04:06
A simple Bash script to automatically set up and connect ADB over TCP/IP with Waydroid, designed for Android development and testing.
#!/bin/bash
echo "πŸš€ Checking Waydroid session..."
if [ "$(waydroid status | awk -F':' '/^Session:/ {print $2}' | xargs)" = "RUNNING" ]; then
echo "ℹ️ Waydroid session already running"
else
echo "▢️ Starting Waydroid session..."
nohup waydroid session start >/dev/null 2>&1 &