Download or Copy All codes from here:
 |
| Pseudo code |
1. Code Download : Create Password Setup for Web browser|
Please copy the following code:
--------------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<title>Create password</title>
</head>
<body>
<script type="text/javascript">
var pass = prompt("Enter the password");
if(pass == 3210){
alert("You are welcome");
}else{
while(pass != 3210){
var pass = prompt("Enter the password");
}
if (pass == 3210 ){
alert("Welcome");
}
}
</script>
</body>
</html>
belongs to Pseudo Tribe
-------------------------------------------------------------------------------------------------------
2. Code Download :Send automatic message in messenger very easy 2 minutes || 2022
-----------------------------------------------------------------------------------------------------
# download pip install pyautogui in terminal then only write this program
import pyautogui
import time
while True:
time.sleep(2)
pyautogui.typewrite("hello brother")
time.sleep(2)
pyautogui.typewrite("happy birthday")
time.sleep(2)
pyautogui.typewrite("thankyou")
pyautogui.press('enter')
------------------------------------------------------------------------------------------------
3.create Facebook login interface with html+css with ese
Post a Comment