Skip to content

Instantly share code, notes, and snippets.

View rakib10rr3's full-sized avatar
🏠
Working from home

Rakibul Huda rakib10rr3

🏠
Working from home
View GitHub Profile
@ImaginativeShohag
ImaginativeShohag / android_libraries_and_tools.md
Last active March 1, 2022 08:22
Android Libraries & Tools
@Pulimet
Pulimet / AdbCommands
Last active June 17, 2024 03:44
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
@techjewel
techjewel / Convert Numbers to Words - Bangladesh.php
Last active April 14, 2023 20:51
Convert Numbers to Words - for Bangladeshi counting system
<?php
/**
* Function: convert_number
*
* Description:
* Converts a given integer (in range [0..1T-1], inclusive) into
* alphabetical format ("one", "two", etc.)
*
* @int
*