This media is not supported in your browser
VIEW IN TELEGRAM
Thank you Everyone
For 800 subscribers π₯³
For 800 subscribers π₯³
π₯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
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
Amazon
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β¦
Samsung Galaxy S6 Lite Display: 26.31cm (10.4") display size| TFT display screen | 60Hz display | 16M colour support | Metal Uni-body | Slim and lightweight Galaxy S8 Tab Processor: Octa-Core processor type |Network/Bearer : 4G, Operating system: Androidβ¦
π₯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
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
Amazon
Apple iPad (10th Generation): with A14 Bionic chip, 27.69 cm (10.9β³) Liquid Retina Display, 64GB, Wi-Fi 6, 12MP front/12MP Backβ¦
WHY IPAD β Colourfully reimagined and more versatile than ever, iPad is great for the things you do every day. With an all-screen design, 27.69 cm (10.9β³) Liquid Retina display, powerful A14 Bionic chip, superfast Wi-Fi and four gorgeous colours, iPad deliversβ¦
π₯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
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
Amazon
Apple MacBook Air Laptop M1 chip, 13.3-inch/33.74 cm Retina Display, 8GB RAM, 256GB SSD Storage, Backlit Keyboard, FaceTime HDβ¦
All-Day Battery Life β Go longer than ever with up to 18 hours of battery life. Powerful Performance β Take on everything from professional-quality editing to action-packed gaming with ease. The Apple M1 chip with an 8-core CPU delivers up to 3.5x fasterβ¦
π₯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
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()
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()
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()
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()
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
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()
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()
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()
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()
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()
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
Screenshot1.png
499 KB
Download The Source Codeπ https://github.com/SortedCoding/Beautiful-Butterfly-Using-Python-Turtle
π₯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()
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()
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