Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Feb 14, 2024
1 parent 2ecc872 commit 8b392ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 8 additions & 1 deletion src/components/breadcrumb/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -19,5 +25,6 @@

& .item.active {
font-weight: bold; /* Highlights the active/current page */
flex-shrink: 1;
}
}

0 comments on commit 8b392ff

Please sign in to comment.