User:Sevgi/Special Issue 26: Difference between revisions
No edit summary |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
<span style="float:center; text-align:center;">Today is {{CURRENTDAY}}-{{CURRENTMONTH}}-{{CURRENTYEAR}}.</span> | <span style="float:center; text-align:center;">Today is {{CURRENTDAY}}-{{CURRENTMONTH}}-{{CURRENTYEAR}}.</span> | ||
Quick link to the issue: [[SI26]] | Quick link to the issue: [[SI26]][[File:Birthday.jpg|thumb|coming outta my shell]] | ||
== <span style="font-size:.9em;font-family:'Helvetica';"> S02 Week 1 <span style="color: magenta; font-size:.7em;">06-13 Jan </span>== | == <span style="font-size:.9em;font-family:'Helvetica';"> S02 Week 1 <span style="color: magenta; font-size:.7em;">06-13 Jan </span>== | ||
Line 15: | Line 15: | ||
W3C writes the standard of css declarations and every browser interprets it in their own way.crazy stuff | W3C writes the standard of css declarations and every browser interprets it in their own way.crazy stuff | ||
https://everest-pipkin.com/#games/worldending.html < awesome games | https://everest-pipkin.com/#games/worldending.html < awesome games | ||
Line 25: | Line 23: | ||
https://raphaelbastide.com/greetings/ | https://raphaelbastide.com/greetings/ | ||
https://en.wikipedia.org/wiki/GazoPa | |||
=== Joseph's Plotting Class === | |||
Claudio and I tried ColorPro but we didn't have the cartridge so couldn't make it work. | |||
We are using the Taxan printer. Joseph connected a piezo to it. We played a bit. | |||
It was very fun, we wrote a python script together which created random squares hatched randomly across an A3:<syntaxhighlight lang="python3"> | |||
import random as r | |||
pos = r.randint(1000,10000) | |||
print("IN;") | |||
print("SP1;") | |||
for x in range(pos, 10000, 1000): | |||
randythesecond = r.randint(1000, 10000) | |||
randythethird = r.randint(800, 8000) | |||
linetype = r.randint(0,4) | |||
linelength = r.randint(1,5) | |||
print("LT"+str(linetype)+","+str(linelength)+";") | |||
filltype = r.randint(3,4) | |||
fillspacing = r.randint(50,200) | |||
fillangle = r.randint(0,2)*45 | |||
print("FT"+str(filltype)+","+str(fillspacing)+","+str(fillangle)+";") | |||
print("PU"+str(randythesecond)+"," + str(randythethird) + ";") | |||
print("RR1000,1000;") | |||
print("start is = " + str(pos)) | |||
</syntaxhighlight> | |||
This is the script we wrote with Joseph:<syntaxhighlight lang="python3"> | |||
import random as r | |||
print("IN;") | |||
print("SP1;") | |||
for i in range(7000,10000,1000): | |||
linetype = r.randint(0,4) | |||
linelength = r.randint(1,5) | |||
print("LT"+str(linetype)+","+str(linelength)+";") | |||
filltype = r.randint(3,4) | |||
fillspacing = r.randint(50,200) | |||
fillangle = r.randint(0,2)*45 | |||
print("FT"+str(filltype)+","+str(fillspacing)+","+str(fillangle)+";") | |||
print("PU6000,"+str(i)+";") | |||
print("RR1000,1000;") | |||
#import is a keyword to be able to use random() | |||
#for is a cycle, you specify the start and end | |||
# | |||
#for name* in a defined range (minValue, maxValue, step in between the values) | |||
# for n in range(0,10) will result in | |||
#0 1 2 3 4 5 6 7 8 9 | |||
# for n in range(0,10, 2) = | |||
# 2 4 6 8 | |||
# | |||
# for name in n | |||
</div> | |||
</syntaxhighlight>You can see the notes Claudio took for me to understand what we were writing. <33333 | |||
[[File:Plotted1.jpg|left|frameless|300x300px]][[File:Plotted3.jpg|right|frameless|300x300px]][[File:Plotted2.jpg|center|frameless|300x300px]]</div> |
Latest revision as of 21:02, 7 January 2025
Sevgi's SI26!!! Let's go!
Today is 10-01-2025.
Quick link to the issue: SI26S02 Week 1 06-13 Jan
Doriane's Class
D E C L A R A T I O N S !!!!!!!
W3C writes the standard of css declarations and every browser interprets it in their own way.crazy stuff https://everest-pipkin.com/#games/worldending.html < awesome games
degrades gracefully
https://raphaelbastide.com/greetings/
https://en.wikipedia.org/wiki/GazoPa
Joseph's Plotting Class
Claudio and I tried ColorPro but we didn't have the cartridge so couldn't make it work.
We are using the Taxan printer. Joseph connected a piezo to it. We played a bit.
It was very fun, we wrote a python script together which created random squares hatched randomly across an A3:import random as r
pos = r.randint(1000,10000)
print("IN;")
print("SP1;")
for x in range(pos, 10000, 1000):
randythesecond = r.randint(1000, 10000)
randythethird = r.randint(800, 8000)
linetype = r.randint(0,4)
linelength = r.randint(1,5)
print("LT"+str(linetype)+","+str(linelength)+";")
filltype = r.randint(3,4)
fillspacing = r.randint(50,200)
fillangle = r.randint(0,2)*45
print("FT"+str(filltype)+","+str(fillspacing)+","+str(fillangle)+";")
print("PU"+str(randythesecond)+"," + str(randythethird) + ";")
print("RR1000,1000;")
print("start is = " + str(pos))
import random as r
print("IN;")
print("SP1;")
for i in range(7000,10000,1000):
linetype = r.randint(0,4)
linelength = r.randint(1,5)
print("LT"+str(linetype)+","+str(linelength)+";")
filltype = r.randint(3,4)
fillspacing = r.randint(50,200)
fillangle = r.randint(0,2)*45
print("FT"+str(filltype)+","+str(fillspacing)+","+str(fillangle)+";")
print("PU6000,"+str(i)+";")
print("RR1000,1000;")
#import is a keyword to be able to use random()
#for is a cycle, you specify the start and end
#
#for name* in a defined range (minValue, maxValue, step in between the values)
# for n in range(0,10) will result in
#0 1 2 3 4 5 6 7 8 9
# for n in range(0,10, 2) =
# 2 4 6 8
#
# for name in n