SortedCoding
1.2K subscribers
185 photos
38 videos
194 files
140 links
Learn to code with clarity and precision
Download Telegram
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()
๐Ÿ‘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()
๐Ÿ”ฅ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()
๐Ÿ”ฅ1
Weโ€™ve hit 1,500 subscribers! ๐ŸŽ‰ Iโ€™m so excited to have you all on this journey with me. Thank you for your support, comments, and likes. Letโ€™s keep growing together!
๐Ÿ”ฅ1
Weโ€™ve hit 1,500 subscribers! ๐ŸŽ‰ Iโ€™m so excited to have you all on this journey with me. Thank you for your support, comments, and likes. Letโ€™s keep growing together!
๐Ÿ”ฅ1
flag.png
81.7 KB
Celebrate This Independence Day Using HTML and CSS Download The Source Code ๐Ÿ‘‡ https://github.com/SortedCoding/HappyIndependanceDay
โค1๐Ÿ‘1๐Ÿ”ฅ1
walk1.png
8.6 MB
How To Make A Website With Login And Register - HTML CSS & Javascript
Download Source code ๐Ÿ‘‡ https://github.com/SortedCoding/WebsiteLoginRegisterFreedomWalk
๐Ÿ”ฅ1
1,600 subscribers! ๐ŸŽ‰ Thank you all for your amazing support. I couldnโ€™t have done it without
๐Ÿ”ฅ1
Thank you all for helping us reach 1.7K subscribers! We're just 300 subscribers away from the 2K milestoneโ€”let's make it happen. Looking forward to celebrating with you all soon!
๐Ÿ”ฅ1
Thank you all for helping us reach 1.7K subscribers! We're just 300 subscribers away from the 2K milestoneโ€”let's make it happen. Looking forward to celebrating with you all soon!
๐Ÿ‘1๐Ÿ”ฅ1
withyou.png
10.9 MB
How To Make A Website With Login And Register - HTML CSS & Javascript
Download Source code ๐Ÿ‘‡ https://github.com/SortedCoding/WebsiteLoginRegisterWithYou
๐Ÿ”ฅ1
Happy Independence Day to everyone! Today, letโ€™s celebrate the spirit of freedom, unity, and the countless sacrifices made by our heroes. Letโ€™s work together to build a brighter, stronger, and more prosperous nation. Jai Hind!
โค2
Screenshot 2024-08-15 215217.png
186.4 KB
code ๐Ÿ‘‡ from turtle import *
import colorsys
bgcolor("black")
tracer(5)
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)
end_fill()
rt(144)
for j in range(3):
circle(j*20, 100)
rt(105)
done()
๐Ÿ”ฅ1
Screenshot 2024-08-15 221131.png
43.6 KB
Code๐Ÿ‘‡ from turtle import *
import colorsys
bgcolor('black')
tracer(5)
h = 0

for i in range(2000):
c = colorsys.hsv_to_rgb(h,1,1)
h += 0.008
fillcolor(c)
begin_fill()
pencolor('black')
forward(i)
right(68)
forward(i)
right(30)
circle(i,50)
forward(i)
right(289)
end_fill()
forward(i)
left(90)
forward(i)
left(20)
forward(i)
left(80)
done()
๐Ÿ”ฅ1
Screenshot 2024-08-15 222723.png
190.4 KB
code ๐Ÿ‘‡ from turtle import *
import colorsys
bgcolor('black')

h = 0.2
speed(0)

def draw():
for i in range(300):
c = colorsys.hsv_to_rgb(h,1,1)
pencolor(c)
fillcolor(c)
circle(190-i, 90)
left(90)
circle(190-i,90)
left(18)
draw()
done()
๐Ÿ”ฅ1
Hey everyone! We're almost at 2K subscribers, and to celebrate this huge milestone, Iโ€™ve upgraded my setup with a professional mic. Thank you so much for your supportโ€”this wouldnโ€™t be possible without each and every one of you. Make sure to stay tuned for more high-quality content coming soon!"
๐Ÿ‘1๐Ÿ”ฅ1
Screenshot 2024-08-16 233154.png
654.6 KB
code๐Ÿ‘‡ import turtle as t
import colorsys as cs
t.tracer(2)
t.speed(100)
t.bgcolor("black")
t.pensize(2)
n = 100
h = 0
for i in range(500):
for i in range(4):
c = cs.hsv_to_rgb(h,1,1)
h += 1/n
t.color(c)
t.circle(49+i*5,90)
t.forward(100)
t.left(90)
t.right(10)
t.done()
โค1
Create a Stylish Login Form with HTML & CSS
Download Source code ๐Ÿ‘‡.

https://github.com/SortedCoding/BeautifulLoginFrom2
โค1๐Ÿค”1
Weโ€™ve hit 1.9K subscribers! ๐ŸŽ‰ Iโ€™m so excited to have you all on this journey with me. Thank you for your support, comments, and likes. Letโ€™s keep growing together!
๐Ÿ”ฅ1
softylog1.png
7.9 MB
Make A Website With Login And Register - HTML CSS & Javascript
Download Source code ๐Ÿ‘‡ https://github.com/SortedCoding/WebsiteLoginRegisterSoftlyFades
๐Ÿ‘2