diff --git a/src/blog/2024/the-art-of-doing-science-and-engineering/README.md b/src/blog/2024/the-art-of-doing-science-and-engineering/README.md index fb398f8..c6418a9 100644 --- a/src/blog/2024/the-art-of-doing-science-and-engineering/README.md +++ b/src/blog/2024/the-art-of-doing-science-and-engineering/README.md @@ -33,7 +33,7 @@ review: Richard Hamming's "The Art of Doing Science and Engineering" is a book capturing the lessons he taught in a course he gave at the U.S. Navy Postgraduate School in Monterey, CA. He characterizes what he was trying to teach was "style" of thinking in science and engineering. -Having a DOA physics degree myself, and also finding myself periodically ruminating on the agony of professional software development and hoping to find some overlap between my professional field and Hamming's life experience, I gave the book a read. +Having a physics degree myself, and also finding myself periodically ruminating on the agony of professional software development and hoping to find some overlap between my professional field and Hamming's life experience, I gave the book a read. The book is filled with nuggets of wisdom and illustrates a career of move-the-needle science and engineering at Bell Labs. I didn't personally find much value in many of the algebraic walk-through's of various topics like information theory, but learning about how Hamming discovered error correcting codes definitely was interesting and worth a read. diff --git a/src/components/breadcrumb/index.css b/src/components/breadcrumb/index.css index a09ed78..1ce2eac 100644 --- a/src/components/breadcrumb/index.css +++ b/src/components/breadcrumb/index.css @@ -9,7 +9,13 @@ flex-wrap: nowrap; /* Prevents wrapping items to next line */ } - & .item {} + & .item { + white-space: nowrap; + max-width: 100%; + overflow: hidden; + flex-shrink: 0; + text-overflow: ellipsis; + } & .item + .item::before { content: "/"; /* Adds a slash before each item except the first */ @@ -19,5 +25,6 @@ & .item.active { font-weight: bold; /* Highlights the active/current page */ + flex-shrink: 1; } }