first commit

This commit is contained in:
giomba 2021-11-06 13:03:58 +01:00
commit 92420f2f65
6 changed files with 45 additions and 0 deletions

5
LICENSE Normal file
View File

@ -0,0 +1,5 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# ramsortware
A RAM sorting hardware, useful to keep track of your memories while doing [trashware](https://wiki.golem.linux.it/Trashware).
![picture of a ramsortware](picture.png)
## License
This work is released under the terms of the WTFPL license.

BIN
picture.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

32
ramsortware.scad Normal file
View File

@ -0,0 +1,32 @@
width = 12;
height = 19;
depth = 3;
wall = 0.05;
cube([width, height, wall]);
cube([wall, height, depth]);
cube([width, wall, depth]);
translate([0, height, 0]) {
cube([width, wall, depth]);
}
translate([width, 0, 0]) {
cube([wall, height, depth]);
}
translate([4, 3, 0]) {
cube([wall, 16, 3]);
}
translate([8, 3, 0]) {
cube([wall, 16, 3]);
}
translate([0, 3, 0]) {
cube([width, wall, depth]);
}
translate([0, 11, 0]) {
cube([width, wall, depth]);
}

BIN
stl/ramsortware-long.stl Normal file

Binary file not shown.

BIN
stl/ramsortware-short.stl Normal file

Binary file not shown.