
Costco item #997050. Mareno 3-in-1 TV. Bayside Furniture. TV stand. Manufactured in 2016.

The drawers come pre attached with gliders. To remove them fully open the drawers, lift the left side clip up and push the right side clip down. Example: https://www.youtube.com/watch?v=ouxjpxkyaTI
* https://www.lexaloffle.com/pico-8.php (paid, $15)
* https://tic80.com/ (Lua, JS, Ruby, Wren, …., open source, free)
* https://pixelvision8.github.io/Website/ (Lua, C#, open source, free)
5 panel page example. No connections between the panels.
1) everything that’s already in the world when you’re born is just normal;
2) anything that gets invented between then and before you turn thirty is incredibly exciting and creative and with any luck you can make a career out of it;
3) anything that gets invented after you’re thirty is against the natural order of things and the beginning of the end of civilisation as we know it until it’s been around for about ten years when it gradually turns out to be alright really.
Apply this list to movies, rock music, word processors and mobile phones to work out how old you are.
by Douglas Adams in “How to Stop Worrying and Learn to Love the Internet”, August 29th 1999.

Embroider your own image of Winter Pattern after Federico de Vinciolo, 1589. Very much like pixelart.
Version 1. Stores fibonacci(n) and fibonacci(n+1) in the variables a and b up to n=10. Waits 1 second between each iteration for visibility.

Pseudocode:
a = 0
b = 1
for (10) {
wait(1)
b = a + b
a = b - a
}
Version 2. Blinks a powered up hub (88009 or any other). The led blinks the number of times of fibonacci(n) sequence.

Pseudocode:
a = 0
b = 1
light(RED)
for (10) {
wait(1)
b = a + b
a = b - a
c = b
while (c!=0) {
light(GREEN)
wait(0.5)
light(RED)
c = c - 1
}
}
It may look like a wait is needed at the second red light but in practice each block takes a little delay to execute.