612
Subscribers
No data24 hours
No data7 days
No data30 days
Data loading in progress...
Similar Channels
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
August '24
August '240
in 0 channels
July '240
in 0 channels
Get PRO
June '24
+3
in 0 channels
Get PRO
May '24
+3
in 0 channels
Get PRO
April '24
+7
in 0 channels
Get PRO
March '24
+5
in 0 channels
Get PRO
February '24
+635
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 06 August | 0 | |||
| 05 August | 0 | |||
| 04 August | 0 | |||
| 03 August | 0 | |||
| 02 August | 0 | |||
| 01 August | 0 |
Channel Posts
import turtle as tu
import colorsys
tu.Screen().bgcolor("black")
t = tu.Turtle()
t.speed(0)
h = 0.6
t.pensize(3)
def kreggscode(ang,n):
t.circle(60+n,90)
t.left(ang)
t.circle(60+n,90)
for i in range(100):
c = colorsys.hsv_to_rgb(h,0.8,1)
t.pencolor(c)
kreggscode(60,i)
kreggscode(30,i)
kreggscode(120,i)
kreggscode(30,i)
kreggscode(60,i)
h += 0.006
tu.done()
| 2 | https://youtube.com/shorts/wU6RXp0Gu2s?feature=share | 140 |
| 3 | import turtle as tu
import colorsys
tu.Screen().bgcolor("black")
t = tu.Turtle()
t.speed(0)
h = 0.99
t.pensize(3)
def kreggscode(len,ang=0):
t.seth(ang)
t.forward(len)
t.circle(0.13*len,180)
t.seth(29.1+ang)
t.circle(0.13*len,180)
t.forward(len)
for i in range(12):
c = colorsys.hsv_to_rgb(h,1,1)
t.pencolor(c)
t.fillcolor(c)
for j in range(25):
kreggscode(250-(j*5),i*30)
if j>=24:
t.begin_fill()
kreggscode(250-(j*5),i*30)
t.end_fill()
h += 0.1299
t.ht()
tu.done() | 133 |
| 4 | https://youtube.com/shorts/dG7E3ayxSUY?feature=share | 109 |
| 5 | import turtle as tu
import colorsys
tu.Screen().bgcolor("black")
t = tu.Turtle()
h = 0.3
def kreggscode(len,ang=0,cl="#000000",c="black"):
t.seth(ang)
t.fillcolor(cl)
t.begin_fill()
t.forward(len)
t.seth(60+ang)
t.forward((73/200)*len)
t.seth(150+ang)
t.forward((73/200)*len)
t.seth(210+ang)
t.forward(len)
t.end_fill()
t.fillcolor(c)
t.begin_fill()
t.seth(ang+0.01)
t.forward(len/2)
t.circle((13/200)*len,180)
t.seth(30+ang)
t.circle((14/200)*len,180)
t.forward(len/2)
t.end_fill()
for i in range(12):
c = colorsys.hsv_to_rgb(h,1,1)
cl = colorsys.hsv_to_rgb(h+0.5,1,1)
t.pencolor(c)
kreggscode(280,i*30,c,cl)
h += 0.15
t.ht()
tu.done() | 132 |
| 6 | https://youtube.com/shorts/dG7E3ayxSUY?feature=share | 122 |
| 7 | import turtle as tu
import colorsys
tu.Screen().bgcolor("black")
t = tu.Turtle()
t.speed(0)
h = 0.3
t.pensize(4)
def design(ang,n):
t.circle(60+n,90)
t.left(ang)
t.circle(60+n,90)
t.penup()
t.goto(0,60)
t.pendown()
for i in range(70):
c = colorsys.hsv_to_rgb(h,0.8,1)
t.pencolor(c)
design(150,i)
design(60,i)
design(210,i)
design(60,i)
design(150,i)
h += 1/80
tu.done() | 207 |
| 8 | https://youtube.com/shorts/aj3dRw2nN4Y?feature=share | 158 |
| 9 | https://youtube.com/shorts/aj3dRw2nN4Y?feature=share | 1 |
| 10 | import turtle as tu
import colorsys
tu.Screen().bgcolor("black")
t = tu.Turtle()
t.speed(0)
h = 0
t.pensize(3)
def design(ang,n):
t.circle(60+n,90)
t.left(ang)
t.circle(60+n,90)
t.penup()
t.goto(-30,0)
t.pendown()
t.seth(15)
for i in range(80):
c = colorsys.hsv_to_rgb(h,0.8,1)
t.pencolor(c)
design(60,i)
design(45,i)
design(120,i)
design(45,i)
h += 1/55
tu.done() | 210 |
| 11 | https://youtube.com/shorts/LYfsDEraPSw?feature=share | 161 |
| 12 | import turtle as tu
import colorsys
tu.Screen().bgcolor("black")
t = tu.Turtle()
t.speed(0)
h = 0
t.pensize(2)
for i in range(300):
c = colorsys.hsv_to_rgb(h,0.8,1)
t.pencolor(c)
t.fillcolor(c)
t.circle(i,-90)
t.left(54)
t.circle(-i,90)
h += 0.006
tu.done() | 160 |
| 13 | https://youtube.com/shorts/FzIB1mHJEns?feature=share | 141 |
| 14 | https://play.google.com/store/apps/details?id=com.kreggscode.top50oswapvulnerabilities | 158 |
| 15 | import turtle
import colorsys
turtle.Screen().bgcolor("black")
t = turtle.Pen()
h = 0
t.speed(0)
for i in range(300):
t.width(i//100+1)
c = colorsys.hsv_to_rgb(h,1,1)
t.pencolor(c)
t.right(59)
t.forward(30)
t.circle(i*0.5,180)
h += 0.005
turtle.done() | 194 |
| 16 | https://youtube.com/shorts/BDMDD2IwfYw?feature=share | 176 |
| 17 | https://play.google.com/store/apps/details?id=com.kreggscode.linuxnetworkingtools | 112 |
| 18 | https://play.google.com/store/apps/details?id=com.kreggscode.spanishphrases | 180 |
| 19 | https://play.google.com/store/apps/dev?id=4822923174061161987 | 293 |
| 20 | 24 ny.py | 278 |
