summaryrefslogtreecommitdiff
path: root/README.md
blob: a3904a923ac21902c964672b27c813af19bd7b6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# 3D Printable Parametric Cubbies #

::: { .parts }

Bottom Part:
: [![Bottom Part](pictures/bottom.png "Bottom part")](pictures/side.png)

Side Part:
: [![Side](pictures/side.png "Side part"){#fig:side}](pictures/side.png)

:::

3D printable parametric cubbies to store your 3D things. There are two distinct
parts -- a `bottom` and a `side` -- that are generated to the dimensions of your
things, then 3D printed and assembled into modular storage units.

## Pictures ##

::: { .figs }

![[Bottom part (printed)](pictures/bottom-printed-full.jpg "Bottom part, printed (full resolution)")](pictures/bottom-printed-thumbnail.jpg)

![[Side part (printed)](pictures/side-printed-full.jpg "Side part, printed (full resolution)")](pictures/side-printed-thumbnail.jpg "Side part, printed")

![[The Smurftruder with a fresh print](pictures/smurfstrusion-full.jpg "Smurfstrusion (full resolution)")](pictures/smurfstrusion-thumbnail.jpg)

![[Mounted Cubbies (empty)](pictures/cubbies-mounted-empty-full.jpg "Mounted Cubbies (full resolution)")](pictures/cubbies-mounted-empty-thumbnail.jpg)

![[Mounted Cubbies (empty, viewed from an angle)](pictures/cubbies-mounted-empty-angle-view-full.jpg "Empty cubbies, mounted (full resolution)")](pictures/cubbies-mounted-empty-angle-view-thumbnail.jpg)

![[Mounted Cubbies (filled)](pictures/cubbies-full-full.jpg "Mounted cubbies, filled (full resolution)")](pictures/cubbies-full-thumbnail.jpg)

![[Cubby Development](pictures/cubby-development-full.jpg "Cubby Development (full resolution)")](pictures/cubby-development-thumbnail.jpg)

::: 

## Instructions ##

### 🚫 Do NOT Scale in a Slicer 🚫 ###

Your distribution of this project may have included STL files; these are either
samples or test prints to verify the fit of the dovetail joints. Cubbies are
meant to be generated in one of the following ways:

  * Using the Thingiverse Customizer

  * Using `Openscad` -- either by using its builtin customizer (choose
    `Window -> Customizer` from the menu bar if it is not visible), or by
    modifying the variables at the top of the `cubbies.scad` file.

  * There are two scripts for generating cubbies from the commandline:
    `shopenscad.sh` (run `./shopenscad.sh -h` for details) generates a single
    model, and `cubbies.sh` (run `./cubbies.sh -h` for details) can generate
    entire sets of cubbies.

For a single cubby, you will need to print the side piece twice, and the bottom
piece once. To add additional cubbies, print one bottom and one side. The bottom
and side pieces can be flipped upside down so that the bottom piece's tabs fit
into the extra unused holes of the side piece. You can also use this to control
whether the screw tabs end up on the inside or outside of the cubby.

You can print tolerance test fit pieces (which are the minimum material
necessary to confirm that the pieces will fit with your printer and slicer
settings). These test pieces were generated using `dovetail_test_fits.sh`, which
you can use to generate your own at different tolerances (run
`dovetail_test_fits.sh -h` for details). You can also generate them in `OpenSCAD`
by specifying either `male_tabs` or `female_tabs` for the `part` paramaters (the
`cubby_depth` paramater is respected as the length of those dovetail test
pieces).

![[Dovetail Test Fit](pictures/dovetail_test_fit.jpg-full "Dovetail Test Fit (full resolution)")](pictures/dovetail_test_fit-thumbnail.jpg)

## Source Repository ##

  The source repository is a Git repository that is hosted both on a read-only
  HTTPS URL and on a read-write SSH url. 
  
  You can push to the read-write URL simply without creating any user account.
  You only need to generate a SSH public key on your own system.

### Read-Only Clone ###

  The read-only clone command is:

    git clone --recurse-submodules https://git.cryptonomic.net/cubbies.git
  
### Read-Write Clone ###

  To clone from the read-write URL, you first need to have your own ssh identity.
  Then you can run `git clone`.
  
    # Generate an SSH key if needed
    command -v ssh-keygen || { echo Please Install OpenSSH; exit; }
    [ -d ~/.ssh ] || mkdir ~/.ssh
    [ -e ~/.ssh/id_ed25519.pub ] || ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N 
    
    # Add the public key for cryptonomic.net
    echo cryptonomic.net ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPK7K8KsygvXtjw0yH4h43bwBGKq9oWBdCa1eY5rzT5D >> ~/.ssh/known_hosts 

    # Perform the clone
    git clone --recurse-submodules ssh://d@cryptonomic.net:public_git/cubbies.git
    
  You can push your changes back simply:
  
    git add .
    git commit -a -m 'commit message'
    git push

## Cubbies on the Web ##

  * thingiverse
  * thangs
  * cults3d
  
## Dependencies/Credits ##

  * [OpenSCAD](https://openscad.org "OpenSCAD")
  * [Belfry OpenSCAD Library](https://github.com/revarbat/BOSL "Belfry OpenSCAD Library")

## Contributions ##

![](pictures/kenneth-copeland.jpg) ![](pictures/basket.jpg)


- PayPal: <https://paypal.me/svasilogianis>
- Venmo: <https://venmo.com/u/Steven-Vasilogianis>
- CashApp: <https://cash.app/$svasi>

## GPLv3 License ##

Copyright (C) Steven Vasilogianis

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.