Skip to content

Instantly share code, notes, and snippets.

View LinusSkucas's full-sized avatar

Linus Skucas LinusSkucas

View GitHub Profile
@LinusSkucas
LinusSkucas / main.py
Last active September 22, 2020 03:35
TurtleStars Hack Club Workshop
import turtle
import random
t = turtle.Turtle()
t.speed(10)
t.pencolor("red")
def draw_square(side_length):
for i in range(0,4):
t.forward(side_length)
@LinusSkucas
LinusSkucas / gist:85ac92bb9bdd77be5ee6906973e2a1bc
Created February 4, 2020 03:35
JAVA WITH LAMBDA WITH ARG
shooterIntakeJoystick.addButton(5, () -> shooter.setShooterVic(-0.9), shooter::stopShooting);