Python code programmed to make digital art with the studio name. Copy & paste in Visual Studio Coder (Python) and run ;).
import turtle
t=turtle.Turtle()
w=turtle.Screen()
t.shape("circle")
t.speed(0)
def funcion(x, y):
t.goto(x, y)
t.write("AlexAldeguer.studio", move=False, align='left', font=('Arial', 20, 'normal'))
t.write(" ", move=False, align='left', font=('Arial', 10, 'normal'))
t.ondrag(funcion)
w.mainloop()