This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Rotary positioner drive gear with knob | |
| // Ed Nisley - KE4ZNU | |
| include <BOSL2/std.scad> | |
| include <BOSL2/gears.scad> | |
| NumSides = 4*3*4; | |
| $fn=NumSides; | |
| Protrusion = 0.1; // make holes end cleanly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Photo backdrop fitting | |
| // Ed Nisley - KE4ZNU | |
| // 2026-07-01 | |
| include <BOSL2/std.scad> | |
| Layout = "Show"; // [Build,Show] | |
| /* [Hidden] */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // BOB Yak Trailer - fender front mount | |
| // Ed Nisley - KE4ZNU | |
| // 2026-06-15 | |
| include <BOSL2/std.scad> | |
| Layout = "Show"; // [Build,Show,Frame,Fender,OuterMount,InnerMount,Mounts] | |
| /* [Hidden] */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Shower soap dish | |
| // Ed Nisley - KE4ZNU | |
| // 2026-06-04 | |
| include <BOSL2/std.scad> | |
| Layout = "Show"; // [Show,Build] | |
| /* [Hidden] */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Patio Table Foot - rectangular legs | |
| // Ed Nisley - KE4ZNU | |
| // 2026-05-26 | |
| include <BOSL2/std.scad> | |
| Layout = "Show"; // [Show,Build] | |
| /* [Hidden] */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // TPU Tiedown Straps for bike rack tray holder | |
| // Ed Nisley - KE4ZNU | |
| // 2026-05-14 | |
| include <BOSL2/std.scad> | |
| Layout = "Build"; // [Show,Build,Chain,Blocks,Front,Rear] | |
| /* [Hidden] */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Bee Tunnel Nest Mount | |
| // Ed Nisley - KE4ZNU | |
| // 2026-04-26 | |
| include <BOSL2/std.scad> | |
| Layout = "Show"; // [Build,Show,Window,Bundle,Tabs] | |
| BundleOD = 35.0; | |
| BundleOffset = 0.0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Steel Shelf Foot Pads | |
| // Ed Nisley - KE4ZNU | |
| // 2026-04-18 | |
| include <BOSL2/std.scad> | |
| /* [Hidden] */ | |
| Protrusion = 0.01; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Generator for punched cards | |
| # Ed Nisley - KE4ZNU | |
| # 2026-01-20 cargo-culted from various sources | |
| import svg | |
| import math | |
| from argparse import ArgumentParser | |
| from pathlib import Path | |
| import curses.ascii | |
| import itertools |
NewerOlder