Skip to content

Instantly share code, notes, and snippets.

View pavanb0's full-sized avatar
🐐
Focusing

pavan bagwe pavanb0

🐐
Focusing
  • DesignAccent
  • india
  • 11:23 (UTC -12:00)
View GitHub Profile
@pavanb0
pavanb0 / AdbCommands
Created November 20, 2022 08:38 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@pavanb0
pavanb0 / Dont_Leave_Keyboard_For_Android.py
Last active November 18, 2022 06:56
a simple yet time saving tool for android development
import tempfile
import os
import tkinter as tk
import tkinter.font as tkFont
import re
class App:
def __init__(self, root):
self.count = 0
#setting title
@pavanb0
pavanb0 / python_typing_speed _meter_consol
Last active November 21, 2023 17:48
python_typing_speed _meter_consol.py
#created by pavan 2022
import re
import time
import random
t1="It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout."
t2="There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form,"
t3="All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary,"
t4="encompasses the social behavior and norms found in human societies, as well as the knowledge, beliefs, arts, laws, customs"
t5="India is a country in South Asia whose name comes from the Indus River. The name 'Bharata' is used as a designation for the country in their constitution"
lista=[t1,t2,t3,t4,t5]
@raveenb
raveenb / ssh_into_android.md
Last active April 23, 2025 13:25
SSH into Android

Connecting to an Android device over SSH

Initial Setup

Install Android App Termux from APKPure or AppStore. If the app exists, just delete and re-install it to get the latest version, The APK can be downloaded from https://apkpure.com/termux/com.termux/ Install the APK using by running

adb install ~/Downloads/Termux_v0.73_apkpure.com.apk
@Pulimet
Pulimet / AdbCommands
Last active April 26, 2025 13:51
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.