This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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] |