-
Open settings -> Community plugins
-
Disable Restricted mode
-
Install Advanced Obsidian URI
This file contains 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
## validate an email address | |
def main(): | |
emailaddress = getmyEmail() | |
print(emailaddress) | |
print (len(emailaddress)) | |
if checkatsigninemail(emailaddress) == True and validationwithdot(emailaddress) == True: | |
print("meets all the parameters for email") | |
else: |
This file contains 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
from tkinter import * | |
import random | |
import time | |
class Ball: | |
def __init__(self, canvas, paddle, color): | |
self.canvas = canvas | |
self.paddle = paddle | |
self.id = canvas.create_oval(10, 10, 25, 25, fill=color) |