SortedCoding
1.2K subscribers
185 photos
38 videos
194 files
140 links
Learn to code with clarity and precision
Download Telegram
Thank you Everyone
For 600 subscribers πŸ₯³
Love you so much guys πŸ’•

#youtube
πŸ”₯1
This media is not supported in your browser
VIEW IN TELEGRAM
Thank you Everyone
For 800 subscribers πŸ₯³
πŸ”₯1
We are thrilled to announce that our YouTube channel has reached its first milestone of 1,000 subscribers! We extend our heartfelt gratitude to each of you for taking the time to watch our videos. Your support means the world to us, and we truly appreciate it. Thank you!
πŸ”₯1
Best Deal Available only at 19999 rs πŸ’₯
Apply SBI Credit card and get it at 15500 rs πŸ’₯
Limited-time deal: Samsung Galaxy Tab S6 Lite 26.31 cm (10.4 inch), S-Pen in Box, Slim and Light, Dolby Atmos Sound, 4 GB RAM, 64 GB ROM, Wi-Fi Tablet, Gray Upto INR 5000 Bank Discount https://amzn.in/d/0vxUJI4
πŸ”₯1
Best offer available get It under 30000rs πŸ’₯
Apply SBI Credit card and get it at 28000rs only πŸ’₯
Limited-time deal: Apple iPad (10th generation): with A14 Bionic chip, 27.69 cm (10.9β€³) Liquid Retina display, 64GB, Wi-Fi 6, 12MP front/12MP back camera, Touch ID, all-day battery life – Blue https://amzn.in/d/1ZvQN24
πŸ”₯1
Get Mac M1 At 66000 rs πŸ’₯
Apply SBI Credit card you will get it at 64000 rs only πŸ’₯
Limited-time deal: Apple MacBook Air Laptop M1 chip, 13.3-inch/33.74 cm Retina Display, 8GB RAM, 256GB SSD Storage, Backlit Keyboard, FaceTime HD Camera, Touch ID. Works with iPhone/iPad; Space Grey https://amzn.in/d/gFy0gTb
πŸ”₯1
Thank you Everyone
For 1.1K subscribers πŸ₯³
πŸ”₯1
Web2.png
8 MB
How To Make A Website With Login And Register - HTML CSS & Javascript
Download Source code πŸ‘‡
https://github.com/SortedCoding/WebsiteLoginRegisterMountain
πŸ”₯1
Screenshot 2024-08-06 173138.png
373 KB
import turtle
t = turtle.Turtle()
t.screen.bgcolor('black')
t.pensize(3)
t.color('green')
t.left(90)
t.backward(180)
t.speed(300)
t.shape('turtle')

def tree(i):
if i<15:
return
else:
t.forward(i)
t.color('green')
t.circle(2)
t.left(30)
tree(3* i/4)
t.right(60)
tree(3* i/4)
t.left(30)
t.backward(i)
tree(120)
turtle.done()
πŸ”₯1
Screenshot 2024-08-06 174911.png
1.1 MB
from turtle import*
import colorsys
bgcolor('black')
tracer(10)
pensize(5)
h = 0
for i in range(300):
c = colorsys.hsv_to_rgb(h,1,1)
h += 0.005
pencolor(c)
fillcolor('black')
begin_fill()
for j in range(2):
fd(i*1.2)
rt(60)
fd(300)
rt(120)
rt(121)
end_fill()
done()
πŸ”₯1
Screenshot 2024-08-06 175703.png
803.1 KB
import turtle as tur
import colorsys as cs
tur.speed(0)
tur.width(2)
tur.bgcolor('black')
for i in range(300):
tur.color(cs.hsv_to_rgb(i/300, 0.5, 1))
tur.forward(i)
tur.left(59)
tur.hideturtle()
tur.done()
πŸ‘1πŸ”₯1
Screenshot 2024-08-06 181314.png
1.3 MB
import turtle as t
t.bgcolor('black')
t.speed(0)
t.hideturtle()

colors = ['yellow','red','yellow','red']

for i in range(120):
for c in colors:
t.color(c)
t.circle(200-i, 100)
t.lt(90)
t.circle(200-i, 100)
t.rt(60)
t.end_fill()
t.mainloop()
πŸ”₯1
japan2.png
6.5 MB
How To Make A Website With Login And Register - HTML CSS & Javascript
Download Source code πŸ‘‡ https://github.com/SortedCoding/WebsiteLoginRegisterJapan
πŸ”₯1
Screenshot 2024-08-07 105601.png
293.2 KB
import turtle as t
t.color('red')
t.begin_fill()
t.circle(120)
t.end_fill()
t.up()
t.color('white')
t.begin_fill()
t.down()
t.circle(100)
t.end_fill()
t.hideturtle()
t.done()
πŸ”₯1
Screenshot 2024-08-07 110009.png
1 MB
import turtle as t
import colorsys
t.bgcolor('black')
t.tracer(100)
h = 0.4
def draw(ang,n):
t.circle(5+n,60)
t.left(ang)
t.circle(5+n,60)
for i in range(200):
c = colorsys.hsv_to_rgb(h,1,1)
h += 0.005
t.color(c)
t.pensize(5)
draw(90,i*2)
draw(120,1*2.5)
t.done()
πŸ”₯1
Screenshot 2024-08-07 111802.png
408.3 KB
from turtle import *
import colorsys
speed(0)
bgcolor('black')
h = 0.1
pensize(4)

def fun():
global h
for i in range(4):
c = colorsys.hsv_to_rgb(h,1,1)
fillcolor(c)
h += 0.004
begin_fill()
fd(50)
rt(20)
fd(40)
rt(9)
end_fill()
for j in range(300):
fun()
goto(0,0)
rt(10)
done()
πŸ”₯1
Screenshot 2024-08-07 111241.png
408.8 KB
from turtle import *
import colorsys
speed(0)
bgcolor('black')
h = 0.1
pensize(4)

def fun():
global h
for i in range(4):
c = colorsys.hsv_to_rgb(h,1,1)
fillcolor(c)
h += 0.004
begin_fill()
fd(50)
rt(20)
fd(40)
rt(9)
end_fill()
for j in range(300):
fun()
goto(0,0)
rt(10)
done()
πŸ”₯1
AuroraSpiral.png
1.6 MB
import turtle as tur
import colorsys as cs
tur.setup(800,800)
tur.speed(0)
tur.width(2)
tur.bgcolor('black')
for j in range(25):
for i in range(15):
tur.color(cs.hsv_to_rgb(i/15, j/25,1))
tur.right(90)
tur.circle(200-j*4,90)
tur.left(90)
tur.circle(200-j*4,90)
tur.right(180)
tur.circle(50,24)

tur.hideturtle()
tur.done()
πŸ‘1πŸ”₯1
CelestialBlooms.png
670 KB
import turtle as tur
import colorsys as cs
tur.setup(800,800)
tur.speed(0)
tur.tracer(10)
tur.width(2)
tur.bgcolor('black')
for i in range(25):
for j in range(15):
tur.color(cs.hsv_to_rgb(j/15,i/25,1))
tur.right(90)
tur.circle(200-i*4, 90)
tur.left(90)
tur.circle(100-i*4, 90)
tur.right(180)
tur.circle(50,20)

tur.hideturtle()
tur.done()
πŸ”₯1
CosmicFlower.png
1.5 MB
from turtle import *
import colorsys as cs
bgcolor('black')
tracer(20)
pensize(4)
h = 0
def draw(ang , n):
circle(5+n, 90)
left(ang)
circle(5+n, 60)
goto(-10,0)
for i in range(700):
c = cs.hsv_to_rgb(h, 1, 1)
h += 0.05
color(c)
up()
draw(90, i/5)
draw(180, i/2)
down()
fillcolor('black')
begin_fill()
draw(i/2, 0)
draw(90, i / 2)
draw(180, i/2)
end_fill()
draw(60, i)
done()
πŸ”₯1