SortedCoding
1.2K subscribers
185 photos
38 videos
194 files
140 links
Learn to code with clarity and precision
Download Telegram
SolarFlare.png
650.9 KB
import turtle as tur

tur.bgcolor("black")
tur.speed(0)
tur.hideturtle()

colors = ['yellow','yellow','red','red']
for i in range(200):
for c in colors:
tur.color(c)
tur.left(200)
tur.circle(200-i, 80)
tur.mainloop()
🔥1
StellarWhirlwind.png
1000.5 KB
import turtle
t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor('black')
t.speed(0)
col = ['yellow','red','pink','cyan','light green','blue']

for i in range(150):
t.pencolor(col[i%6])
t.circle(190-i/2,90)
t.lt(90)
t.circle(190-i/3,90)
t.lt(60)
s.exitonclick()
🔥1
TrangularSpiral.png
1015.7 KB
from turtle import *
import colorsys
speed("fastest")
bgcolor('white')
width(2)
hue = 0.0
for i in range(250):
col = colorsys.hsv_to_rgb(hue,1,1)
color(col)
forward(i*2)
right(121)
hue += 0.005

done()
🔥1
Turtle Graphic.png
2.8 MB
from turtle import *
speed(0)
hideturtle()
bgcolor('black')
for i in range(150):
color('blue')
circle(i)
color('red')
circle(i*1.2)
color('orange')
circle(1*1.5)
left(5)
backward(5)

done()
🔥1
clock.png
395.5 KB
import turtle as tur

x = 150
tur.speed(7)

tur.penup()
tur.goto(0,x)
tur.seth(0)
for i in range(12):
tur.circle(-x,29 if i>= 9 else 30)
tur.write(i+1, font=("Arial",40,'bold'))

tur.goto(10,10)
tur.pendown()
tur.seth(140)
tur.width(15)
tur.forward(x-70)

tur.goto(10,10)
tur.seth(30)
tur.width(5)
tur.forward(x-30)


tur.seth(90)
tur.width(10)
tur.goto(20,10)
tur.pendown()
tur.color("#d4af37")
tur.circle(10)

tur.penup()
tur.goto(10, x+70)
tur.pendown()
tur.color('#2e2eb8')
tur.width(40)
tur.seth(180)
tur.circle(x+50)

tur.penup()
tur.color('black')
tur.goto(-30,x-40)
tur.pendown()
tur.write("Snake Coding \n please subscribe")

tur.hideturtle()
tur.done()
🔥1
pythonlogo.png
292.4 KB
Download The Source Code👇 https://github.com/SortedCoding/PythonLogo
🔥1
image2.png
7.3 MB
HTML & CSS Tutorial: Create a Beautiful Login Form
Download Source code 👇
https://github.com/SortedCoding/BeautifulLoginForm6
🔥1
image4.png
7.6 MB
HTML & CSS Login Form Tutorial | Beautiful Design
Download Source code 👇
https://github.com/SortedCoding/BeautifulLogiForm8
🔥1
image1.png
1.5 MB
Build a Beautiful Login Form with HTML & CSS
Download Source code 👇
https://github.com/SortedCoding/BeautifulLoginForm5
🔥1
image6.png
10.3 MB
Create a Stylish Login Form with HTML & CSS
Download Source code 👇
https://github.com/SortedCoding/BeautifulLoginForm10
🔥1
image7.png
4.1 MB
Create a Modern Login Form with HTML & CSS
Download Source code 👇 https://github.com/SortedCoding/BeautifulLoginForm11
🔥1
image3.png
6.8 MB
Creating a Beautiful Login Form With HTML & CSS
Download Source code 👇:-
https://github.com/SortedCoding/BeautifulLoginForm7
🔥1
Screenshot 2024-07-30 021639.png
93.6 KB
Login and Register System Tutorial: HTML, CSS, and JavaScript for Beginners
Download Source code 👇
https://github.com/SortedCoding/WebsiteLoginRegister
🔥1
sky4.png
4 MB
BUILD A COMPLETE LOGIN AND REGISTER SYSTEM WITH HTML CSS and JavaScript 1-Hour Step-by-Step Tutorial
Download Source Code 👇
https://github.com/SortedCoding/WebsiteLoginRegisterSkyBLue
🔥1
lake2.png
7.6 MB
BUILD A COMPLETE LOGIN AND REGISTER SYSTEM WITH HTML CSS and JavaScript 1-Hour Step-by-Step Tutorial
Download Source Code 👇
https://github.com/SortedCoding/WebsiteLake
🔥1
image9.png
6.5 MB
Soothing Login Form Creation with HTML & CSS
Download Source code 👇:-
https://github.com/SortedCoding/BeautifuloginForm12
🔥1
image12.png
8.2 MB
Stylish Login Form with HTML & CSS
Download Source code 👇:-
https://github.com/SortedCoding/BeautifulLoginForm15
🔥1
image10.png
8.1 MB
Soothing Login Form Design | ASMR HTML & CSS
Download Source code 👇:-
https://github.com/SortedCoding/BeautifulloginForm13
🔥1
Screenshot 2024-08-02 094559.png
2.8 MB
Create a Sleek Black Login Page with HTML & CSS
Download Source code 👇
https://github.com/SortedCoding/BeautifulloginForm16
🔥1
image11.png
6.7 MB
Calming Code: Designing a Modern Login Form with HTML & CSS
Download Source code 👇
https://github.com/SortedCoding/BeautifulLoginForm14
🔥1
image13.png
6 MB
Login Form Tutorial with HTML & CSS
Download Source code 👇
https://github.com/SortedCoding/BeautifulLoginForm21
🔥1