Skip to content

Instantly share code, notes, and snippets.

View mattvenn's full-sized avatar

matt venn mattvenn

View GitHub Profile
With a passion for Brown forged in the rolling valleys of West Yorkshire,
the synthesist aims, through a traditional practice formed over generations,
passed down like corrugations in the material that forms the product of the practice.
Recent site specific inter-dependant works include public performance based
chemistry, and through research-led desire highlights technologies for the post-processed
pulp-upcycling within compact markets.
Engagements related with and entwined, duly perform a significant leaning of character.
Based not only in a non-self-referential framework of time, importantly a pseudo-inauthentic
#include <ESP8267WiFi.h>
#include <WiFiClient.h>
#include "secrets.h"
//this will be changed to match oshcamp network
const char *ssid = "WutheringBytes";
WiFiServer server(1337);
#define STROBE 15
void setup()
@mattvenn
mattvenn / turtleprize.com competition entry
Created December 3, 2014 09:42
Author: Owen M. McMann, School: Woodard
from turtle import*
loops = 0
while loops < 10:
circle(100)
circle(40,180)
speed(100)
forward(90)
left(70)
penup()
@mattvenn
mattvenn / turtleprize.com competition entry
Created December 3, 2014 09:38
Author: Lewis S. Russell, School: Woodard
from turtle import *
shape ("turtle")
speed(25)
color("blue")
pensize(6)
forward(150)
right(90)
forward(25)
@mattvenn
mattvenn / turtleprize.com competition entry
Created December 3, 2014 09:36
Author: Bradley J. Mills, School: Woodard
from turtle import *
shape ("triangle")
speed (90)
for count in range(100):
color("red")
pensize(9)
forward(100)
left(90)
@mattvenn
mattvenn / turtleprize.com competition entry
Created December 3, 2014 09:31
Author: Haziq Hussain, School: Woodard
from turtle import *
pencolor(0.8,0.3,0.3)
forward(100)
forward(100)
left(100)
forward(100)
forward(100)
left(100)
@mattvenn
mattvenn / turtleprize.com competition entry
Created January 31, 2014 19:20
Author: Julie Bartle, School: International College, Sherborne
from turtle import *
cat=100
loops = 0
while loops < 100:
loops +=1
forward (cat)
backward (50)
right (90)
pencolor("red")
forward (50)
@mattvenn
mattvenn / turtleprize.com competition entry
Created January 31, 2014 19:15
Author: Jon Hansford, School: SHHS
from turtle import *
import random
penup()
a=float(raw_input("starting x"))
b=float(raw_input("starting y"))
i=0
while i<=1000:
n=random.randint(1,3)
if n==1:
a=(a-200)/2
@mattvenn
mattvenn / turtleprize.com competition entry
Created January 31, 2014 19:10
Author: Grant and Neree, School: unknown
from turtle import *
fillcolor("blue")
shape("square")
#start the fill
begin_fill()
loops = 0
@mattvenn
mattvenn / turtleprize.com competition entry
Created January 31, 2014 19:06
Author: Ben Jones, School: Lord Grey
from turtle import*
loops = 0
while loops < 100:
loops = loops + 1
forward(100)
left(90)
penup()
forward (30)
left (90)