diff --git a/_layouts/gallery.html b/_layouts/gallery.html index 50512a4..f76a0b5 100644 --- a/_layouts/gallery.html +++ b/_layouts/gallery.html @@ -10,7 +10,7 @@

{{page.title}}

- {{ post.date | date_to_string }}

{{ post.title }}


{{post.location}}
{{post.medium}}

{{post.shortdesc}} + {{ post.date | date: "%Y" }}

{{ post.title }}


{{post.location}}
{{post.medium}}

{{post.shortdesc}}
diff --git a/_posts/2023-12-01-synth.md b/_posts/2024-01-01-synth.md similarity index 100% rename from _posts/2023-12-01-synth.md rename to _posts/2024-01-01-synth.md diff --git a/_sass/main.scss b/_sass/main.scss index 99f68da..3e05827 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -185,7 +185,7 @@ body { } .content { - width: calc(100% - 40px); + width: calc(100% -40px); margin: 0 20px; } } @@ -244,21 +244,18 @@ body { } .gallery { z-index: -1; - font-size:0; - display:flex; - flex-flow: column wrap; - + font-size:0; + column-gap: 12px; /* must match the bottom margin of imgbox */ + width:100%; + @media (min-width: 1000px) { - width: calc(25%); - height:62vw; + column-count: 4; } @media (min-width: 600px) and (max-width: 1000px){ - width: calc(33% + 2px); - height:100vw; + column-count: 3; } @media (max-width: 600px) { - width: calc(50% + 4px); - height:280vw; + column-count: 2; } .imgbox { img { @@ -274,8 +271,6 @@ body { border-color: $border; border-radius:$borderrad; margin-bottom: 12px; - margin-right: 12px; - flex:1 1 10px; } } .page { @@ -294,8 +289,6 @@ body { .project { display: grid; gap: 20px; - width:90%; - // Removed fixed height img { object-fit: contain; @@ -311,22 +304,24 @@ body { .main { grid-row-end: span 5; border-style: none; - height:500px; - // Use aspect-ratio aspect-ratio: 4 / 3; // Change this ratio as needed +// max-height:80vh; } - @media (min-width: 1200px) { - grid-template-columns: auto 150px; - } - @media (min-width: 800px) and (max-width: 1200px){ - grid-template-columns: auto 100px; + @media (min-width: 600px) { + grid-template-columns: auto 10vw; + width:90%; + .main{ + height:40vw; + } } - @media (max-width: 800px) { + @media (max-width: 600px) { grid-template-columns: auto auto auto auto; + width:100%; .main { grid-column-start: 1; grid-column-end: 5; + height:70vw; max-height: none; } img { diff --git a/_site/3D-display/index.html b/_site/3D-display/index.html index aa12e42..760f293 100644 --- a/_site/3D-display/index.html +++ b/_site/3D-display/index.html @@ -160,8 +160,6 @@

masonite, glass mirrors, projector

- - diff --git a/_site/assets/css/styles.css b/_site/assets/css/styles.css index 9f2c494..9599c03 100644 --- a/_site/assets/css/styles.css +++ b/_site/assets/css/styles.css @@ -29,7 +29,7 @@ p { font-size: 15px; text-transform: none; text-align: justify; } .content { position: absolute; left: 240px; margin-top: 10px; padding: 10px; width: calc(95% - 260px); } } @media (max-width: 600px) { .sidebar { position: fixed; width: 0%; height: 100%; z-index: 1; top: 0; right: -40px; margin-left: 60px; padding-left: 40px; transition: 0.2s; overflow: auto; background-color: black; } .sidebar a { color: white; } - .content { width: calc(100% - 40px); margin: 0 20px; } } + .content { width: calc(100% -40px); margin: 0 20px; } } .sidebar #closebtn { font-size: 30px; line-height: 2em; padding-bottom: 20px; text-decoration: none; color: white; font-weight: normal; } #openbtn { float: right; font-size: 18px; line-height: 1em; } @@ -42,22 +42,22 @@ p { font-size: 15px; text-transform: none; text-align: justify; } .gallery1 .imgbox img { width: 100%; height: auto; margin: 0; } .gallery1 .imgbox:hover { opacity: 80%; } -.gallery { z-index: -1; font-size: 0; display: flex; flex-flow: column wrap; } -@media (min-width: 1000px) { .gallery { width: calc(25%); height: 62vw; } } -@media (min-width: 600px) and (max-width: 1000px) { .gallery { width: calc(33% + 2px); height: 100vw; } } -@media (max-width: 600px) { .gallery { width: calc(50% + 4px); height: 280vw; } } -.gallery .imgbox { box-sizing: border-box; border-right-style: double; border-right-width: 3px; border-bottom-style: double; border-bottom-width: 3px; border-color: white; border-radius: 3px; margin-bottom: 12px; margin-right: 12px; flex: 1 1 10px; } +.gallery { z-index: -1; font-size: 0; column-gap: 12px; /* must match the bottom margin of imgbox */ width: 100%; } +@media (min-width: 1000px) { .gallery { column-count: 4; } } +@media (min-width: 600px) and (max-width: 1000px) { .gallery { column-count: 3; } } +@media (max-width: 600px) { .gallery { column-count: 2; } } +.gallery .imgbox { box-sizing: border-box; border-right-style: double; border-right-width: 3px; border-bottom-style: double; border-bottom-width: 3px; border-color: white; border-radius: 3px; margin-bottom: 12px; } .gallery .imgbox img { width: 100%; height: auto; margin: 0; } .page img { width: 70%; border-style: solid; border-width: 1px; border-color: white; box-sizing: border-box; border-radius: 3px; margin-bottom: 10px; } -.project { display: grid; gap: 20px; width: 90%; } +.project { display: grid; gap: 20px; } .project img { object-fit: contain; max-width: 100%; border-style: solid; border-width: 1px; border-color: white; box-sizing: border-box; cursor: pointer; border-radius: 3px; } -.project .main { grid-row-end: span 5; border-style: none; height: 500px; aspect-ratio: 4 / 3; } -@media (min-width: 1200px) { .project { grid-template-columns: auto 150px; } } -@media (min-width: 800px) and (max-width: 1200px) { .project { grid-template-columns: auto 100px; } } -@media (max-width: 800px) { .project { grid-template-columns: auto auto auto auto; } - .project .main { grid-column-start: 1; grid-column-end: 5; max-height: none; } +.project .main { grid-row-end: span 5; border-style: none; aspect-ratio: 4 / 3; } +@media (min-width: 600px) { .project { grid-template-columns: auto 10vw; width: 90%; } + .project .main { height: 40vw; } } +@media (max-width: 600px) { .project { grid-template-columns: auto auto auto auto; width: 100%; } + .project .main { grid-column-start: 1; grid-column-end: 5; height: 70vw; max-height: none; } .project img { max-height: 100px; } } .pagelist .card { width: 100%; min-height: 152px; height: auto; border-style: solid; border-width: 1px; border-color: white; box-sizing: border-box; border-radius: 3px; margin-top: 10px; display: block; background-color: black; } diff --git a/_site/assets/images/turbulence/diagram.png b/_site/assets/images/turbulence/diagram.png deleted file mode 100644 index 79c0b16..0000000 Binary files a/_site/assets/images/turbulence/diagram.png and /dev/null differ diff --git a/_site/caps/index.html b/_site/caps/index.html index b7cd9ae..e275e0c 100644 --- a/_site/caps/index.html +++ b/_site/caps/index.html @@ -156,8 +156,6 @@

ceramic capacitors, electrical solder, wire

- - diff --git a/_site/engineering/index.html b/_site/engineering/index.html index 81deafe..c283e34 100644 --- a/_site/engineering/index.html +++ b/_site/engineering/index.html @@ -53,7 +53,7 @@

Engineering

- 01 Dec 2023

DIY Mini Synthesizer Project


Providence, RI
teensy 4.2, teensy audio shield, C

Working with a friend to design and program a mini synthesizer + 2024

DIY Mini Synthesizer Project


Providence, RI
teensy 4.2, teensy audio shield, C

Working with a friend to design and program a mini synthesizer
@@ -61,7 +61,7 @@

Engineering

- 01 Nov 2023

Fractal turbulence grid for wind turbine performance


Breuer Lab, Brown University
baltic birch ply, 3D-printed PLA, vacuum cup mounts

Design and fabrication of a turbulence-generating grid for wind turbine performance testing in a wind tunnel + 2023

Fractal turbulence grid for wind turbine performance


Breuer Lab, Brown University
baltic birch ply, 3D-printed PLA, vacuum cup mounts

Design and fabrication of a turbulence-generating grid for wind turbine performance testing in a wind tunnel
@@ -69,7 +69,7 @@

Engineering

- 15 Sep 2022

Persistence-of-Vision 3D display


LEMS, Brown University
masonite, glass mirrors, projector

Design and fabrication of a small, low-cost persistence-of-vision 3D display as part of an independent study project. + 2022

Persistence-of-Vision 3D display


LEMS, Brown University
masonite, glass mirrors, projector

Design and fabrication of a small, low-cost persistence-of-vision 3D display as part of an independent study project.
@@ -77,7 +77,7 @@

Engineering

- 01 Jul 2022

Soft robotic worm for soil-sensing


Organic Robotics Lab, Cornell University
3D-printed resin parts, compressed air, arduino nano, sensors

Fabrication and testing of a earthworm-inspired, soil-swimming robot for agriculutural soil sensing. Developed gait patterns and steering for a worm composed of soft pneumatic actuators + 2022

Soft robotic worm for soil-sensing


Organic Robotics Lab, Cornell University
3D-printed resin parts, compressed air, arduino nano, sensors

Fabrication and testing of a earthworm-inspired, soil-swimming robot for agriculutural soil sensing. Developed gait patterns and steering for a worm composed of soft pneumatic actuators
@@ -85,7 +85,7 @@

Engineering

- 01 May 2022

Krill-inspired robotics


Wilhelmus Lab, Brown University
3D-printed PLA, laser-cut acrylic, arduino, CAD

Worked to design a passively-actuated krill appendage for the Wilhelmus lab as a part of a group project in ENGN1735: Vibrations of Mechanical Systems. + 2022

Krill-inspired robotics


Wilhelmus Lab, Brown University
3D-printed PLA, laser-cut acrylic, arduino, CAD

Worked to design a passively-actuated krill appendage for the Wilhelmus lab as a part of a group project in ENGN1735: Vibrations of Mechanical Systems.
@@ -93,7 +93,7 @@

Engineering

- 01 Jul 2021

Bat-inspired flapping-wing robot


Breuer Lab, Brown University
3D-printed resin parts, metal hardware, pink foam, stepper motors

Assistance in fabrication and assembly of a bat-inspired flapping-wing robot with PhD student, Xiaozhou Fan. Conducted wind tunnel testing, designed and sculpted a pink foam streamline body. + 2021

Bat-inspired flapping-wing robot


Breuer Lab, Brown University
3D-printed resin parts, metal hardware, pink foam, stepper motors

Assistance in fabrication and assembly of a bat-inspired flapping-wing robot with PhD student, Xiaozhou Fan. Conducted wind tunnel testing, designed and sculpted a pink foam streamline body.
diff --git a/_site/feed.xml b/_site/feed.xml index ec54cb2..b422e0c 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -1,4 +1,4 @@ -Jekyll2024-03-20T18:04:17-04:00http://localhost:4000/feed.xmlAmick Sollenberger"Amick's portfolio site"DIY Mini Synthesizer Project2023-12-01T00:00:00-05:002023-12-01T00:00:00-05:00http://localhost:4000/synth<p>In the past few months, I have been working with a friend to build a synthesizer using teensy 4.2 and the teensy audio shield. We have collaborated on all aspects of the design and programming. Currently, the device is able to (1) sample and play back recordings, (2) assign samples and beats to steps on an 8-step sequencer, (3) adjust playback frequency, (4) play sine waves at variable frequency.</p> +Jekyll2024-03-21T10:43:23-04:00http://localhost:4000/feed.xmlAmick Sollenberger"Amick's portfolio site"DIY Mini Synthesizer Project2024-01-01T00:00:00-05:002024-01-01T00:00:00-05:00http://localhost:4000/synth<p>In the past few months, I have been working with a friend to build a synthesizer using teensy 4.2 and the teensy audio shield. We have collaborated on all aspects of the design and programming. Currently, the device is able to (1) sample and play back recordings, (2) assign samples and beats to steps on an 8-step sequencer, (3) adjust playback frequency, (4) play sine waves at variable frequency.</p> <p>Moving forward, we are hoping to finalize the board layout and transition to battery power to allow the device to be operated untethered to the computer.</p>In the past few months, I have been working with a friend to build a synthesizer using teensy 4.2 and the teensy audio shield. We have collaborated on all aspects of the design and programming. Currently, the device is able to (1) sample and play back recordings, (2) assign samples and beats to steps on an 8-step sequencer, (3) adjust playback frequency, (4) play sine waves at variable frequency.Fractal turbulence grid for wind turbine performance2023-11-01T00:00:00-04:002023-11-01T00:00:00-04:00http://localhost:4000/turbulence<p>In the fall of 2023, I worked on an independent study project with Professor Kenny Breuer to design a fractal grid to generate turbulence in a wind tunnel. The design was completed in Fusion360, inspired by similar fractal grids in literature. After conducting FEA within the software to determine the stress on the grid under gravity and drag force, I selected baltic birch plywood as the material. The grid was fabricated on a ShopBot CNC. I chose 3” vacuum cups to securely mount the grid to the smooth interior of the wind tunnel. I designed 3D-printed quick-releasing hook attachments for each corner of the grid to streamline installation and removal.</p> diff --git a/_site/flapper/index.html b/_site/flapper/index.html index 553b177..c2e541a 100644 --- a/_site/flapper/index.html +++ b/_site/flapper/index.html @@ -158,8 +158,6 @@

3D-printed resin parts, metal hardware, pink foam, stepper motors

- - diff --git a/_site/hardwareSculpt/index.html b/_site/hardwareSculpt/index.html index 5bfab47..9e535f2 100644 --- a/_site/hardwareSculpt/index.html +++ b/_site/hardwareSculpt/index.html @@ -160,8 +160,6 @@

found objects

- - diff --git a/_site/krill/index.html b/_site/krill/index.html index 8d00d48..7733665 100644 --- a/_site/krill/index.html +++ b/_site/krill/index.html @@ -158,8 +158,6 @@

3D-printed PLA, laser-cut acrylic, arduino, CAD

- - diff --git a/_site/lamp/index.html b/_site/lamp/index.html index eb150f9..f1940e2 100644 --- a/_site/lamp/index.html +++ b/_site/lamp/index.html @@ -152,8 +152,6 @@

found indicator light panel, electrical wire, galvanized sheet metal

- - diff --git a/_site/project/index.html b/_site/project/index.html index 40b4807..fd99806 100644 --- a/_site/project/index.html +++ b/_site/project/index.html @@ -139,8 +139,6 @@

umbrella, 3d-printed joints

- - diff --git a/_site/rings/index.html b/_site/rings/index.html index a8cef96..37ce709 100644 --- a/_site/rings/index.html +++ b/_site/rings/index.html @@ -158,8 +158,6 @@

brass, silver solder, guitar string beads, bushings

- - diff --git a/_site/rings2/index.html b/_site/rings2/index.html index 60dc662..dea9b70 100644 --- a/_site/rings2/index.html +++ b/_site/rings2/index.html @@ -154,8 +154,6 @@

brass, silver solder, Herkimer diamond, quartz

- - diff --git a/_site/structure/index.html b/_site/structure/index.html index a5caca1..0fe3265 100644 --- a/_site/structure/index.html +++ b/_site/structure/index.html @@ -156,8 +156,6 @@

glass projector slides, copper tape, solder

- - diff --git a/_site/synth/index.html b/_site/synth/index.html index 7a8d764..b3f1981 100644 --- a/_site/synth/index.html +++ b/_site/synth/index.html @@ -55,7 +55,7 @@

DIY Mini Synthesizer Project

-

December 2023

+

January 2024

Providence, RI

@@ -154,8 +154,6 @@

teensy 4.2, teensy audio shield, C

- - diff --git a/_site/tree/index.html b/_site/tree/index.html index 9ca0387..4a77ff6 100644 --- a/_site/tree/index.html +++ b/_site/tree/index.html @@ -154,8 +154,6 @@

miscellaneous ceramic pieces

- - diff --git a/_site/turbulence/index.html b/_site/turbulence/index.html index ce76338..9ed53a4 100644 --- a/_site/turbulence/index.html +++ b/_site/turbulence/index.html @@ -140,10 +140,6 @@

baltic birch ply, 3D-printed PLA, vacuum cup mounts

- image - - - image diff --git a/_site/work/index.html b/_site/work/index.html index bd968bb..0c608d5 100644 --- a/_site/work/index.html +++ b/_site/work/index.html @@ -53,7 +53,7 @@

Misc.

- 01 Apr 2022

structure



glass projector slides, copper tape, solder

+ 2022

structure



glass projector slides, copper tape, solder

@@ -61,7 +61,7 @@

Misc.

- 14 Jan 2022

lamp



found indicator light panel, electrical wire, galvanized sheet metal

+ 2022

lamp



found indicator light panel, electrical wire, galvanized sheet metal

@@ -69,7 +69,7 @@

Misc.

- 01 Dec 2021

Experiments with stone-setting



brass, silver solder, Herkimer diamond, quartz

+ 2021

Experiments with stone-setting



brass, silver solder, Herkimer diamond, quartz

@@ -77,7 +77,7 @@

Misc.

- 20 Jul 2021

hardware sculptures



found objects

+ 2021

hardware sculptures



found objects

@@ -85,7 +85,7 @@

Misc.

- 09 Jun 2021

untitled bat sculpture



umbrella, 3d-printed joints

sculpture made from found umbrella and 3d printed parts to resemble and mimic the kinematics of a bat skeleton. currently a work in progress + 2021

untitled bat sculpture



umbrella, 3d-printed joints

sculpture made from found umbrella and 3d printed parts to resemble and mimic the kinematics of a bat skeleton. currently a work in progress
@@ -93,7 +93,7 @@

Misc.

- 01 Dec 2020

ceramic sculture



miscellaneous ceramic pieces

+ 2020

ceramic sculture



miscellaneous ceramic pieces

@@ -101,7 +101,7 @@

Misc.

- 01 Nov 2020

Kinetic rings



brass, silver solder, guitar string beads, bushings

A series of "kinetic" rings made from brass and found metal beads + 2020

Kinetic rings



brass, silver solder, guitar string beads, bushings

A series of "kinetic" rings made from brass and found metal beads
@@ -109,7 +109,7 @@

Misc.

- 01 Oct 2020

capacitor chain



ceramic capacitors, electrical solder, wire

+ 2020

capacitor chain



ceramic capacitors, electrical solder, wire

diff --git a/_site/worm/index.html b/_site/worm/index.html index 49aa356..ea664e2 100644 --- a/_site/worm/index.html +++ b/_site/worm/index.html @@ -143,8 +143,6 @@

3D-printed resin parts, compressed air, arduino nano, sensors

- - diff --git a/assets/images/.DS_Store b/assets/images/.DS_Store index 3102a8a..3340f26 100644 Binary files a/assets/images/.DS_Store and b/assets/images/.DS_Store differ diff --git a/assets/images/turbulence/diagram.png b/assets/images/turbulence/diagram.png deleted file mode 100644 index 79c0b16..0000000 Binary files a/assets/images/turbulence/diagram.png and /dev/null differ