--- Do you like me Source Code ---
import tkinter as tk
import random
def show_popup():
popup = tk.Toplevel(root)
popup.title("Popup")
label = tk.Label(popup, text="Thanks for Accepting")
label.pack(padx=20, pady=20)
def move_button(event):
x = random.randint(0, 350)
y = random.randint(0, 350)
no_button.place(x=x, y=y)
root = tk.Tk()
root.title("instagram: @SortedCoding")
root.geometry("400x400")
question_label = tk.Label(root, text="Do you like me?")
question_label.pack(pady=20)
yes_button = tk.Button(root, text="Yes", command=show_popup)
yes_button.pack()
no_button = tk.Button(root, text="No")
no_button.pack()
no_button.bind("<Enter>", move_button)
root.mainloop()
import tkinter as tk
import random
def show_popup():
popup = tk.Toplevel(root)
popup.title("Popup")
label = tk.Label(popup, text="Thanks for Accepting")
label.pack(padx=20, pady=20)
def move_button(event):
x = random.randint(0, 350)
y = random.randint(0, 350)
no_button.place(x=x, y=y)
root = tk.Tk()
root.title("instagram: @SortedCoding")
root.geometry("400x400")
question_label = tk.Label(root, text="Do you like me?")
question_label.pack(pady=20)
yes_button = tk.Button(root, text="Yes", command=show_popup)
yes_button.pack()
no_button = tk.Button(root, text="No")
no_button.pack()
no_button.bind("<Enter>", move_button)
root.mainloop()
๐ฅ1
SortedCoding pinned ยซ--- Do you like me Source Code --- import tkinter as tk import random def show_popup(): popup = tk.Toplevel(root) popup.title("Popup") label = tk.Label(popup, text="Thanks for Accepting") label.pack(padx=20, pady=20) def move_button(event):โฆยป
Website.png
328.2 KB
Create Your Personal Responsive Portfolio Website using HTML & CSS only ๐ https://github.com/SortedCoding/PersonalResponsivePortfolioWebsite
๐ฅ1
websitesky.png
4.1 MB
BUILD A COMPLETE LOGIN AND REGISTER SYSTEM WITH HTML CSS and JavaScript Download The Source code for this code ๐ https://github.com/SortedCoding/WebsiteSky1
๐ฅ1
Screenshot 2024-08-08 010243.png
155.1 KB
how you create an AFK bot in Python! requirement ๐ pip install pyautogui pip install random pip install time
๐ฅ1
โAFK Bot Source Code โ import pyautogui as pag
import random
import time
while True:
x = random.randint(600,700)
y = random.randint(200,600)
pag.moveTo(x,y,0.5)
time.sleep(2)
import random
import time
while True:
x = random.randint(600,700)
y = random.randint(200,600)
pag.moveTo(x,y,0.5)
time.sleep(2)
๐ฅ1
OnHover.png
239.5 KB
How To make website Button On Hover using HTML & CSS No javascript code Full Tutorial Available on YouTube download The source code ๐ https://github.com/SortedCoding/ButtonOnHoverEffect
๐ฅ1
Exciting news! Our YouTube channel has hit its first 1,300 subscribers! A huge thank you to everyone who has watched and supported our videos. We appreciate your time and enthusiasm. Stay tuned for more content!
@SortedCoding โ
@SortedCoding โ
๐ฅ1
japan4.png
6.5 MB
How To Make A Website With Login And Register - HTML CSS & Javascript
Download Source code ๐
https://github.com/SortedCoding/WebsiteLoginRegisterJapan
Download Source code ๐
https://github.com/SortedCoding/WebsiteLoginRegisterJapan
๐ฅ1
Screenshot 2024-08-10 161801.png
543.3 KB
Code๐ from turtle import*
bgcolor('black')
c = ['black','white','black',
'white','black','white']
for i in range(800):
color(c[i%6])
fd(7)
lt(88)
fd(i*3)
circle(10)
lt(59)
done()
bgcolor('black')
c = ['black','white','black',
'white','black','white']
for i in range(800):
color(c[i%6])
fd(7)
lt(88)
fd(i*3)
circle(10)
lt(59)
done()
๐ฅ2
Screenshot 2024-08-10 163547.png
273.3 KB
Code ๐ import turtle
turtle.circle(45)
turtle.circle(55)
turtle.circle(65)
turtle.circle(75)
turtle.circle(85)
turtle.circle(95)
turtle.circle(45)
turtle.circle(55)
turtle.circle(65)
turtle.circle(75)
turtle.circle(85)
turtle.circle(95)
๐ฅ1
Screenshot 2024-08-10 164255.png
1 MB
code๐ from turtle import *
import colorsys
width(2)
h = 0.0
for i in range(250):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
forward(i*2)
right(121)
h += 0.005
done()
import colorsys
width(2)
h = 0.0
for i in range(250):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
forward(i*2)
right(121)
h += 0.005
done()
๐ฅ1
Screenshot 2024-08-10 164914.png
1 MB
code ๐ from turtle import *
import colorsys
width(2) bgcolor('Black')
h = 0.0
for i in range(250):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
forward(i*2)
right(121)
h += 0.005
done()
import colorsys
width(2) bgcolor('Black')
h = 0.0
for i in range(250):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
forward(i*2)
right(121)
h += 0.005
done()
๐ฅ1
Screenshot 2024-08-10 165433.png
1.9 MB
Code๐ from turtle import *
import colorsys
tracer(2)
pensize(2)
h = 0.2
bgcolor('black')
lt(80)
fd(250)
lt(180)
lt(80)
for i in range(10000):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.004
fd(i)
rt(50)
rt(40)
fd(500)
rt(120)
done()
import colorsys
tracer(2)
pensize(2)
h = 0.2
bgcolor('black')
lt(80)
fd(250)
lt(180)
lt(80)
for i in range(10000):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.004
fd(i)
rt(50)
rt(40)
fd(500)
rt(120)
done()
๐ฅ1
Screenshot 2024-08-10 170830.png
2.6 MB
Code๐ from turtle import *
import colorsys
tracer(2)
pensize(2)
h = 0.2
bgcolor('black')
lt(80)
fd(250)
lt(180)
lt(80)
for i in range(10000):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.004
fd(i)
rt(50)
rt(40)
fd(500)
rt(120)
done()
import colorsys
tracer(2)
pensize(2)
h = 0.2
bgcolor('black')
lt(80)
fd(250)
lt(180)
lt(80)
for i in range(10000):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.004
fd(i)
rt(50)
rt(40)
fd(500)
rt(120)
done()
๐1๐ฅ1
Screenshot 2024-08-10 170817.png
2.4 MB
Code ๐ from turtle import *
import colorsys
tracer(2)
pensize(2)
h = 0.2
bgcolor('black')
lt(80)
fd(250)
lt(180)
lt(80)
for i in range(10000):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.004
fd(i)
rt(50)
rt(40)
fd(500)
rt(120)
done()
import colorsys
tracer(2)
pensize(2)
h = 0.2
bgcolor('black')
lt(80)
fd(250)
lt(180)
lt(80)
for i in range(10000):
c = colorsys.hsv_to_rgb(h,1,1)
color(c)
h += 0.004
fd(i)
rt(50)
rt(40)
fd(500)
rt(120)
done()
๐ฅ1
Screenshot 2024-08-10 172838.png
648.3 KB
Code ๐ from turtle import *
import colorsys
bgcolor('black')
pensize(2)
h = 0
for i in range(550):
c = colorsys.hsv_to_rgb(h,1,1)
h += 0.008
color(c)
up()
fd(1/2)
goto(0,0)
down()
rt(60)
fillcolor('black')
begin_fill()
circle(-i,60)
rt(144)
for j in range(3):
circle(j*20,100)
rt(105)
done()
import colorsys
bgcolor('black')
pensize(2)
h = 0
for i in range(550):
c = colorsys.hsv_to_rgb(h,1,1)
h += 0.008
color(c)
up()
fd(1/2)
goto(0,0)
down()
rt(60)
fillcolor('black')
begin_fill()
circle(-i,60)
rt(144)
for j in range(3):
circle(j*20,100)
rt(105)
done()
๐ฅ1