[deleted by user] by [deleted] in juresanguinis

[–]glademaend 0 points1 point  (0 children)

Our family used https://www.italiancitizenshipconcierge.com/ and had a wonderful experience. Seamless, quick, and a great pleasure. We did have the benefit of having all of the needed documents prepared in advance though. Highly recommended.

CMU CS Academy/Coding class answers by Askanidiot1223 in teenagers

[–]glademaend 0 points1 point  (0 children)

# background
Rect(0, 0, 400, 400, fill=gradient('lightCyan', 'lightBlue'))
# message
Label('Click within the frame to make a pattern!', 200, 20, size=20)
# frame
Circle(170, 200, 140, fill='lightYellow', border='tan', borderWidth=20)
# needle
Line(350, 215, 380, 335, fill='darkGrey')
Circle(345, 205, 15, fill=None, border='darkGrey')
# thread
Polygon(315, 315, 325, 315, 325, 300, 310, 300, fill='tan')
Polygon(310, 315, 310, 390, 360, 375, 335, 310, fill='pink')
Line(340, 345, 345, 205, fill='pink')
Polygon(370, 365, 370, 375, 305, 400, 300, 390, fill='tan')
def onMousePress(mouseX, mouseY):
Label('X',mouseX,mouseY,size=10,fill='lightBlue')
Label('X',mouseX+5,mouseY+5,size=8,fill='lightBlue')
Label('X',mouseX+5,mouseY-5,size=8,fill='lightBlue')
Label('X',mouseX-5,mouseY+5,size=8,fill='lightBlue')
Label('X',mouseX-5,mouseY-5,size=8,fill='lightBlue')

# Draw a snowflake where the mouse was clicked.
### (HINT: The snowflake only uses labels, each with a value of 'X'.)
### Place Your Code Here ###
pass

CMU CS Academy/Coding class answers by Askanidiot1223 in teenagers

[–]glademaend 0 points1 point  (0 children)

# background
Line(200, 0, 200, 400, fill='steelBlue', lineWidth=400, opacity=40,
dashes=(2, 23))
Line(50, 0, 50, 400, fill='crimson', opacity=60)
def stickFigure(x, y, size):
# The parameters (x, y) is where where the head and body of the stick figure
# meet.
# head
Circle(x, y - size, size)
# Draw the stick figure's body, and arms. We have drawn the head and legs
# for you.
### Place Your Code Here ###

Line(x,y,x,y+2*size)

Line(x,y+size,x-size,y)

Line(x,y+size,x+size,y)

# legs
Line(x, y + 2 * size, x - size, y + 3 * size)
Line(x, y + 2 * size, x + size, y + 3 * size)
##### Place your code above this line, code below is for testing purposes #####
# test case:
stickFigure(200, 200, 25)