Changes to breckyunits.com

Breck Yunits
Breck Yunits
4 minutes ago
updated .scroll.css
.scroll.css
Changed around line 1
+ :root {
+ /* Derived Colors */
+ --scrollColorPrimary: rgba(var(--scrollPrimaryRgb), 0.8);
+ --scrollColorPrimaryHover: rgba(var(--scrollPrimaryRgb), 0.9);
+ --scrollColorPrimaryActive: rgb(var(--scrollPrimaryRgb));
+
+ --scrollColorSurface: rgba(var(--scrollSurfaceRgb), 0.4);
+ --scrollColorSurfaceAlt: rgba(var(--scrollSurfaceRgb), 0.6);
+ --scrollColorBorder: rgba(var(--scrollSurfaceRgb), 0.8);
+ }
+
+ html,
+ body,
+ div,
+ span,
+ p,
+ ol,
+ ul,
+ li,
+ table,
+ figure {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ vertical-align: baseline;
+ border-spacing: 0;
+ }
+
+ html {
+ background-color: var(--scrollColorBackground);
+ font-family: var(--scrollFontPrimary);
+ color: var(--scrollColorText);
+ font-size: var(--scrollBaseFontSize);
+ hyphens: auto;
+ height: 100%;
+ }
+
+ .dropcap:first-letter {
+ font-size: 3rem;
+ line-height: 0.9em;
+ margin-right: 0.125rem;
+ display: block;
+ float: left;
+ }
+
+ .abstractDinkusParser {
+ text-align: center;
+ padding: 1rem;
+ }
+
+ .abstractDinkusParser span {
+ vertical-align: sub;
+ }
+
+ details {
+ margin-top: 10px;
+ }
+
+ summary {
+ font-family: var(--scrollFontUi);
+ cursor: pointer;
+ }
+
+ .scrollCaptionedFigure {
+ display: block;
+ break-inside: avoid;
+ max-width: 100%;
+ text-align: center;
+ }
+
+ .scrollCaptionedFigure img {
+ max-width: 100%;
+ height: auto;
+ margin-top: 0.1875rem;
+ }
+
+ .scrollCaptionedFigure figcaption {
+ font-family: var(--scrollFontUi);
+ font-size: 0.8rem;
+ }
+
+ .scrollCaptionedFigure figcaption .scrollParagraph {
+ margin-top: 0;
+ }
+
+ .scrollCodeBlock {
+ overflow: auto;
+ font-size: 0.8rem;
+ hyphens: none;
+ white-space: pre;
+ break-inside: avoid;
+ display: block;
+ margin: 0.5rem 0;
+ padding: 0.5rem;
+ border-radius: 0;
+ position: relative;
+ border-left: 0.5rem solid var(--scrollColorBorder);
+ }
+
+ .codeWithHeader {
+ break-inside: avoid-column;
+ margin: 10px 0;
+ }
+
+ .codeHeader {
+ font-size: 80%;
+ text-align: center;
+ background: var(--scrollColorSurfaceAlt);
+ border: 1px solid var(--scrollColorBorder);
+ border-bottom: 0;
+ margin-bottom: -7px;
+ padding: 4px 2px;
+ border-top-left-radius: 3px;
+ border-top-right-radius: 3px;
+ }
+
+ .scrollCodeBlock:hover .scrollCopyButton {
+ opacity: 0.5;
+ }
+
+ .scrollCodeBlock:hover .scrollCopyButton:hover {
+ opacity: 0.8;
+ }
+
+ .scrollCodeBlock:hover .scrollCopyButton:active {
+ opacity: 1;
+ }
+
+ .scrollCopyButton {
+ position: absolute;
+ top: 0.125rem;
+ right: 0.125rem;
+ font-size: 0.875rem;
+ cursor: pointer;
+ opacity: 0;
+ }
+
+ .scrollCopyButton::after {
+ content: "[ ]";
+ }
+
+ .scrollCopiedButton::after {
+ content: "[✓]";
+ }
+
+ ol,
+ ul {
+ padding-left: 1rem;
+ }
+
+ li {
+ margin-top: 0.4rem;
+ line-height: 1.4;
+ }
+
+ a {
+ text-decoration-color: transparent;
+ color: var(--scrollColorLink);
+ }
+
+ a:hover {
+ text-decoration-color: initial;
+ }
+
+ .scrollButton {
+ background: linear-gradient(
+ 180deg,
+ var(--scrollColorPrimary) 0%,
+ color-mix(in srgb, var(--scrollColorPrimary), black 15%) 100%
+ );
+ border-radius: 6px;
+ color: white;
+ padding: 10px 20px;
+ display: inline-block;
+ border: 0;
+ cursor: pointer;
+ transition: all 0.2s ease;
+ transform: translateY(0);
+ /* Halved shadow distances */
+ box-shadow:
+ 0 1px 2px rgba(0, 0, 0, 0.1),
+ /* Ambient shadow (halved) */ 0 1px 0 rgba(255, 255, 255, 0.2) inset,
+ /* Top highlight */ 0 -1px 0 rgba(0, 0, 0, 0.2) inset,
+ /* Bottom shadow (halved) */ 0 1.5px 0
+ color-mix(in srgb, var(--scrollColorPrimary), black 30%); /* 3D base (halved) */
+ }
+
+ .scrollButton a {
+ color: white;
+ text-decoration: none;
+ text-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.2); /* Text depth (halved) */
+ }
+
+ .scrollButton:hover {
+ background: linear-gradient(
+ 180deg,
+ color-mix(in srgb, var(--scrollColorPrimary), white 10%) 0%,
+ var(--scrollColorPrimary) 100%
+ );
+ transform: translateY(-1px); /* Halved */
+ box-shadow:
+ 0 2px 4px rgba(0, 0, 0, 0.15),
+ /* Halved */ 0 1px 0 rgba(255, 255, 255, 0.2) inset,
+ 0 -1px 0 rgba(0, 0, 0, 0.2) inset,
+ 0 2.5px 0 color-mix(in srgb, var(--scrollColorPrimary), black 30%); /* Halved */
+ }
+
+ .scrollButton:active {
+ background: linear-gradient(
+ 180deg,
+ color-mix(in srgb, var(--scrollColorPrimary), black 10%) 0%,
+ var(--scrollColorPrimary) 100%
+ );
+ transform: translateY(1px); /* Halved */
+ box-shadow:
+ 0 0.5px 1px rgba(0, 0, 0, 0.1),
+ /* Halved */ 0 1px 0 rgba(255, 255, 255, 0.15) inset,
+ 0 -0.5px 0 rgba(0, 0, 0, 0.2) inset,
+ 0 0.5px 0 color-mix(in srgb, var(--scrollColorPrimary), black 30%); /* Halved */
+ }
+ sup,
+ sub {
+ vertical-align: baseline;
+ position: relative;
+ top: -0.375rem;
+ }
+
+ sub {
+ top: 0.375rem;
+ }
+
+ p {
+ margin-top: 0.4rem;
+ line-height: 1.4rem;
+ }
+
+ .scrollQuote {
+ break-inside: avoid;
+ display: block;
+ margin: 0.5rem 0;
+ padding: 0.5rem;
+ background: var(--scrollColorSurface);
+ white-space: pre-line;
+ border-left: 0.5rem solid var(--scrollColorBorder);
+ }
+
+ .scrollInlineCode {
+ font-family: var(--scrollFontMono);
+ font-size: 0.9rem;
+ background-color: var(--scrollColorSurface);
+ padding: 0.125rem 0.25rem;
+ border-radius: 0.25rem;
+ }
+
+ .scrollParagraph {
+ text-align: justify;
+ }
+
+ center .scrollParagraph {
+ text-align: center;
+ }
+
+ .subdued {
+ color: var(--scrollColorSubdued);
+ }
+
+ .scrollColumns {
+ column-count: auto;
+ column-fill: balance;
+ column-width: 35ch;
+ column-gap: 1.5rem;
+ padding-left: 1.25rem;
+ padding-right: 1.25rem;
+ margin: auto;
+ }
+
+ .scrollSnippetContainer {
+ padding: 1ch 0;
+ break-inside: avoid;
+ text-align: justify;
+ }
+
+ h1,
+ h2,
+ h3,
+ h4 {
+ margin: 0.625rem 0;
+ }
+
+ h1 {
+ font-size: 1.25rem;
+ }
+
+ h2 {
+ font-size: 1.125rem;
+ }
+
+ h3,
+ h4 {
+ font-size: 1rem;
+ }
+
+ h1.printTitleParser {
+ text-align: center;
+ margin: auto;
+ margin-bottom: 0.15625rem;
+ margin-top: 0;
+ font-size: 1.75rem;
+ max-width: calc(100vw - 2 * (1.5625rem + 1.875rem));
+ }
+
+ h1.printTitleParser a {
+ color: var(--scrollColorText);
+ }
+
+ .printDateParser {
+ text-align: center;
+ }
+ .scrollDateline,
+ .printDateParser {
+ font-style: italic;
+ line-height: 1.4rem;
+ font-size: 0.75rem;
+ }
+
+ .scrollSection {
+ break-inside: avoid;
+ max-width: 90%; /* Matches text width */
+ text-align: center;
+ margin: 0 auto; /* Centers images */
+ }
+
+ .scrollSection h1,
+ .scrollSection h2,
+ .scrollSection h3,
+ .scrollSection h4 {
+ text-align: center;
+ }
+
+ h4.scrollQuestion {
+ text-align: left;
+ margin: 1.4rem 0 0 0;
+ }
+
+ .scrollSection:first-child h1,
+ .scrollSection:first-child h2,
+ .scrollSection:first-child h3,
+ .scrollSection:first-child h4 {
+ margin-top: 0;
+ }
+
+ .scrollSection:first-child h4.scrollQuestion {
+ margin-top: 0;
+ }
+
+ .scrollNoteLink {
+ opacity: 0.4;
+ text-decoration: none;
+ }
+
+ .scrollNoteLink:hover {
+ opacity: 1;
+ }
+
+ .scrollFootNoteUsageLink {
+ opacity: 0.7;
+ text-decoration: none;
+ }
+
+ .scrollFootNoteUsageLink:hover {
+ opacity: 1;
+ }
+
+ .scrollHoverNote {
+ text-decoration: underline dashed 1px rgba(0, 0, 0, 0.1);
+ cursor: default;
+ }
+
+ .scrollTable {
+ table-layout: fixed;
+ font-family: var(--scrollFontUi);
+ margin: 0.5rem 0;
+ overflow: hidden;
+ font-size: 0.8rem;
+ width: 100%;
+ hyphens: none;
+ border: 1px solid var(--scrollColorBorder);
+ }
+
+ .scrollTable td,
+ .scrollTable th {
+ padding: 0.1875rem;
+ overflow: hidden;
+ white-space: nowrap;
+ }
+
+ .scrollTable th {
+ text-transform: capitalize;
+ border-bottom: 2px solid rgba(0, 0, 0, 0.6);
+ text-align: left;
+ }
+
+ .scrollTable tr:nth-child(even) {
+ background: var(--scrollColorSurface);
+ }
+
+ .scrollTable pre {
+ white-space: nowrap;
+ overflow: hidden;
+ margin: 0;
+ }
+
+ .scrollTable.expandedTable {
+ table-layout: unset;
+ background: white;
+ position: relative;
+ z-index: 10;
+ overflow: unset;
+ }
+
+ .scrollTable.expandedTable pre {
+ white-space: unset;
+ overflow: unset;
+ }
+
+ .scrollTable.expandedTable td,
+ .scrollTable.expandedTable th {
+ overflow: unset;
+ white-space: unset;
+ }
+
+ .printAuthorsParser {
+ font-size: 0.875rem;
+ font-style: italic;
+ margin: 0.25rem 0;
+ text-align: center;
+ }
+
+ .abstractTextLinkParser {
+ text-align: center;
+ margin: 0.5em auto;
+ font-family: Verdana;
+ font-weight: 100;
+ }
+
+ .abstractTextLinkParser a {
+ color: var(--scrollColorBorder);
+ }
+
+ .abstractTextLinkParser a:hover {
+ color: #333;
+ }
+
+ .scrollContinueReadingLink {
+ display: block;
+ text-align: center;
+ }
+
+ .scrollDashboard {
+ width: 100%;
+ font-size: 1.875rem;
+ text-align: center;
+ font-weight: bold;
+ break-inside: avoid;
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .scrollDashboard td {
+ width: 33.3%;
+ border: 1px solid #e8e8e8;
+ }
+
+ .scrollDashboard span {
+ font-size: 1.25rem;
+ display: block;
+ }
+
+ .scrollChat span {
+ font-family: Verdana;
+ margin-top: 0.3125rem;
+ padding: 0.3125rem 1.25rem;
+ border-radius: 0.9375rem;
+ display: inline-block;
+ }
+
+ .scrollChatLeft span {
+ background: var(--scrollColorSurface);
+ }
+
+ .scrollChatRight span {
+ color: white;
+ background: rgb(0, 132, 255);
+ }
+
+ .scrollYouTubeHolder {
+ position: relative;
+ width: 100%;
+ height: 0;
+ padding-bottom: 56.25%;
+ }
+
+ .scrollYouTubeEmbed {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+ nav ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ }
+ nav li {
+ padding: 0 10px;
+ }
Breck Yunits
Breck Yunits
6 hours ago
updated advice.scroll
advice.scroll
Changed around line 31: StrongAdvice:
+ > 💎📊🧪 Every single person I’ve interviewed thus far, even those working with billions of dollars, have all sent cold emails.
+ Sonith Sunku
+ https://x.com/_sonith/status/1900001512421761171
+ right
+
Breck Yunits
Breck Yunits
6 hours ago
Use aftertext quote parser
aftertext.scroll
Changed around line 39: Here is a silly another example, with a lot of aftertext.
- https://try.scroll.pub/#scroll%0A%20aftertext%0A%20%20Here%20is%20another%20a%20richer%20example%2C%20showing%20more%20features.%0A%20%20strike%20another%0A%20%20link%20oldhomepage.html%20Here%0A%20%20italics%20more%0A%20%20bold%20showing%0A%20%20underline%20features Here
+ https://try.scroll.pub/#scroll%0A%20Here%20is%20a%20silly%20another%20example%2C%20with%20a%20lot%20of%20aftertext.%0A%20%20strike%20a%20silly%0A%20%20italics%20a%20lot%0A%20%20bold%20with%0A%20%20underline%20aftertext Here
Changed around line 145: Thank you to Kartik, Shalabh, Mariano, Joe and rau for pointing me to related wo
- quote
- The text and the markup are treated as separate parallel members, presumably (but not necessarily) in different files.
- @ Ted Nelson
+ > The text and the markup are treated as separate parallel members, presumably (but not necessarily) in different files.
+ Ted Nelson
+ right
+ https://www.xml.com/pub/a/w3j/s3.nelson.html
black-swans-and-technology.scroll
Changed around line 7: singleHeader.scroll
- quote
- In five years, which language is likely to be most prominent, Node.js, Python, or Ruby, and why?
- - Quora
+ > In five years, which language is likely to be most prominent, Node.js, Python, or Ruby, and why?
+ Quora
+ right
+ http://www.quora.com/In-five-years-which-language-is-likely-to-be-most-prominent-Node-js-Python-or-Ruby-and-why
brain-pilots.scroll
Changed around line 18: Which is more accurate: "I think, therefore I am", or "We think, therefore we ar
- quote
- The Brain Pilots theory predicts multiple locations capable of supporting root level consciousness and that the seat of consciousness moves. The brain is a system of agents and some agents are capable of being Pilots—of driving root level consciousness.
+ > The Brain Pilots theory predicts multiple locations capable of supporting root level consciousness and that the seat of consciousness _moves_. The brain is a system of agents and some agents are capable of being Pilots—of driving root level consciousness.
Changed around line 150: Do geniuses have more pilots? Or fewer? Are they able to build/destroy pilots fa
- quote
- The real population of Earth could be 8 trillion
+ > The _real_ population of Earth could be 8 trillion
countingComplexity.scroll
Changed around line 16: container 600px
- quote
- ...make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience.
- - On the Method of Theoretical Physics, Albert Einstein
+ > ...make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience.
+ _On the Method of Theoretical Physics_ by Albert Einstein
+ right
english-cannot-encode-real-news.scroll
Changed around line 26: But most people aren't aware of the problem.
- quote
- If your ideas are any good, you'll have to ram them down people's throats.
- @ Howard H. Aiken
+ > If your ideas are any good, you'll have to ram them down people's throats.
+ Howard H. Aiken
+ right
- quote
- ..in science the credit goes to the man who convinces the world, not to the man to whom the idea first occurs.
- @ Francis Darwin
+ > ..in science the credit goes to the man who convinces the world, not to the man to whom the idea first occurs.
+ Francis Darwin
+ right
Changed around line 63: I don't know exactly what a language for truth will look like but I imagine it w
- quote
- A language that doesn’t affect the way you think about programming, is not worth knowing.
- – Alan Perlis
+ > A language that doesn’t affect the way you think about programming, is not worth knowing.
+ Alan Perlis
+ right
experience-is-what-you-get.scroll
Changed around line 4: title Experience is What You Get
- quote
- Experience is what you get when you don't get what you want.
+ > Experience is what you get when you don't get what you want.
how-to-fix-the-cdc.scroll
Changed around line 49: I'm adding two very clear and specific examples to illustrate the problem. But m
- quote
- For young children, especially children younger than 5 years old, the risk of serious complications is higher for flu compared with COVID-19.
- @ CDC
+ > For young children, especially children younger than 5 years old, the risk of serious complications is higher for flu compared with COVID-19.
+ CDC
+ right
money-is-meant-to-circulate.scroll
Changed around line 4: title Money is Meant to Circulate
- quote
- The crux of the matter, is that people don't understand the true nature of money. It is meant to circulate, not be wrapped up in a stocking
- @ Guglielmo Marconi
+ > The crux of the matter, is that people don't understand the true nature of money. It is meant to circulate, not be wrapped up in a stocking
+ Guglielmo Marconi
+ right
package.json
Changed around line 18
- "scroll-cli": "172.0.0"
+ "scroll-cli": "^174.1.0"
setplicity.scroll
Changed around line 21: Anyway, we've been trying to make a simple product. And we've been trying to bal
- quote
- Make things as simple as possible, but not simpler.
+ > Make things as simple as possible, but not simpler.
thoughts-on-setting-goals.scroll
Changed around line 9: It is better to set small, meaningful goals than to set wild, audacious goals.
- quote
- Make them good. Make them small.
+ > Make them good. Make them small.
useTheSpine.scroll
Changed around line 29: There are many other terms for _using the spine_. The off-side rule. Semantic in
- quote
- To use the spine is to recognize that all programs in your language will be read and written on surfaces with not only a horizontal but also a vertical axis—the spine—and thus you should design your language to exploit this free and guaranteed resource.
+ > To use the spine is to recognize that all programs in your language will be read and written on surfaces with not only a horizontal but also a vertical axis—the spine—and thus you should design your language to exploit this free and guaranteed resource.
user-methods.scroll
Changed around line 7: singleHeader.scroll
- quote
- When building applications, distinguish methods that will be called by the user.
+ > When building applications, distinguish methods that will be called by the user.
Changed around line 15: endSnippet
- quote
- A UserMethod is a class method called by the user through a non-programmatic interface
+ > A UserMethod is a class method called by the user through a non-programmatic interface
Changed around line 35: That's it. In my pseudo code I used a "user" keyword to flag the UserMethod, but
- quote
- I have never seen a single application with a user facing component, whether it be a Graphical Interface, Command Line Interface, Voice Interface, et cetera, that doesn't benefit significantly from following the UserMethod Pattern.
+ > I have never seen a single application with a user facing component, whether it be a Graphical Interface, Command Line Interface, Voice Interface, et cetera, that doesn't benefit significantly from following the UserMethod Pattern.
why-is-it-best-to-do-one-thing-really-really-well.scroll
Changed around line 8: Google has a list of 10 principles that guide its actions. Number 2 on this list
- quote
- It's best to do one thing really, really well.
+ > It's best to do one thing really, really well.
why-you-shouldnt-save-blogging-for-old-age.scroll
Changed around line 11: But you don't have to wait until you're rich and famous to write a book about yo
- quote
- A few months ago I was talking to another MBA student, a very talented man, about 30 years old from a great school with a great resume. I asked him what he wanted to do for his career, and he replied that he wanted to go into a particular field, but thought he should work for McKinsey for a few years first to add to his resume. To me that's like saving sex for your old age. It makes no sense.
-
- @ Warren Buffet
+ > A few months ago I was talking to another MBA student, a very talented man, about 30 years old from a great school with a great resume. I asked him what he wanted to do for his career, and he replied that he wanted to go into a particular field, but thought he should work for McKinsey for a few years first to add to his resume. *To me that's like saving sex for your old age*. It makes no sense.
+ Warren Buffet
+ right
write-thin-to-write-fast.scroll
Changed around line 26: This takes practice and there aren't a lot of shortcuts.
- quote
- Set a thin column width in your editor
+ > Set a thin column width in your editor
Breck Yunits
Breck Yunits
6 hours ago
updated advice.scroll
advice.scroll
Changed around line 21: WeakAdvice:
- quote
- 💎📊🧪 In my whole life, I have known no wise people (over a broad subject matter area) who didn't read all the time – none, zero.
+ > 💎📊🧪 In my whole life, I have known no wise people (over a broad subject matter area) who didn't read all the time – none, zero.
+ Charlie Munger
+ https://fs.blog/2014/06/charlie-munger-recommended-books/
+ right
- quote
- 💎📊🧪 I don't know of a single case of a startup that felt they spent too much time talking to users.
+ > 💎📊🧪 I don't know of a single case of a startup that felt they spent too much time talking to users.
+ Jessica Livingston
+ https://www.ycombinator.com/library/5l-how-not-to-fail
+ right
Changed around line 85: Versus the WeakAdvice version, which would also be true if it was just a slight
- quote
- 💎📊 If you look at a broad cross-section of startups -- say, 30 or 40 or more; which of team, product, or market is most important?...market is the most important factor in a startup's success or failure.
+ > 💎📊 If you look at a broad cross-section of startups -- say, 30 or 40 or more; which of team, product, or market is most important?...market is the most important factor in a startup's success or failure.
+ Marc Andreessen
+ right
+ https://pmarchive.com/guide_to_startups_part4.html
Changed around line 142: StrongAdvice you can bet on.
- css .rightQuote{text-align: right; display: block; margin-top: 5px;}
-
Breck Yunits
Breck Yunits
6 hours ago
updated aaron.scroll
aaron.scroll
Changed around line 1
- date 2025-02-07
+ date 2021-05-12
Breck Yunits
Breck Yunits
21 hours ago
microverses.scroll
Changed around line 16: How many concepts to describe each world? 1,000? 10,000? More?
+ ***
+
Breck Yunits
Breck Yunits
21 hours ago
Microverses
microverses.scroll
Changed around line 1
+ date 2025-3-12
+ tags All
+ title Microverses
+ container 500px
+ standardPost.scroll
+
+ We live above 7 microverses that we cannot see no matter how hard we squint.
+
+ Each microverse is ten times larger than the one above.
+
+ Each is its own land with unique creatures, phenomena and rules.
+
+ We rely on scopes, and experiments, and symbols to map the territory.
+
+ How many concepts to describe each world? 1,000? 10,000? More?
+
+ And that just gets us to the atomic level. But there are more lands we still cannot see.
+
+ // buildParsers
+ nameDef string Object name
+ microverseDef string Name of the microverse
+ diameterDef float Diameter in angstroms
+ // https://en.wikipedia.org/wiki/Angstrom
+ sourceDef url URL to source.
+ visibleSinceDef int What year did technology first allow this microverse to be seen?
+
+ // todo: allow building of Parsers inline. Perhaps via new kind of macro.
+
+ nameDefParser
+ cue name
+ extends abstractStringMeasureParser
+ description Object name
+ float sortIndex 1
+ boolean isMeasure true
+ boolean isMeasureRequired true
+ boolean isConceptDelimiter true
+ microverseDefParser
+ cue microverse
+ extends abstractStringMeasureParser
+ description Name of the microverse
+ float sortIndex 1.1
+ diameterDefParser
+ cue diameter
+ extends abstractFloatMeasureParser
+ description Diameter in angstroms
+ float sortIndex 1.2
+ sourceDefParser
+ cue source
+ extends abstractUrlMeasureParser
+ description URL to source.
+ float sortIndex 1.3
+ visibleSinceDefParser
+ cue visibleSince
+ extends abstractIntMeasureParser
+ description What year did technology first allow this microverse to be seen?
+ float sortIndex 1.4
+
+ name Hydrogen Atom
+ microverse Atomboro
+ diameter 1
+ source https://en.wikipedia.org/wiki/Bohr_radius
+ visibleSince 1970
+ // https://doi.org/10.2307/1295589
+
+ //
+ name Oxygen Atom
+ diameter 1.3
+ source https://dept.harpercollege.edu/chemistry/chm/100/dgodambe/thedisk/periodic/periodic.htm
+
+ name Water Molecule
+ diameter 2.8
+ source https://bionumbers.hms.harvard.edu/bionumber.aspx?s=n&v=6&id=103723
+
+ name ATP
+ diameter 14
+ source https://bionumbers.hms.harvard.edu/bionumber.aspx?s=n&v=5&id=106978
+
+ name Glucose
+ microverse Moleculeville
+ diameter 15
+ source https://bionumbers.hms.harvard.edu/bionumber.aspx?&id=106979
+ // https://bionumbers.hms.harvard.edu/bionumber.aspx?&id=110368
+ visibleSince 1961
+ // https://news.berkeley.edu/2013/05/30/scientists-capture-first-images-of-molecules-before-and-after-reaction/
+
+ name Hemoglobin
+ microverse Proteinplace
+ diameter 85
+ source https://bionumbers.hms.harvard.edu/bionumber.aspx?id=105116&ver=4&trm=hemoglobin&org=
+ visibleSince 1840
+
+ name SARS-CoV-2
+ microverse Viralworld
+ diameter 1000
+ source https://pmc.ncbi.nlm.nih.gov/articles/PMC7224694/
+ visibleSince 1931
+ // https://en.wikipedia.org/wiki/History_of_virology
+
+ name Mitochondria
+ microverse Mitotown
+ diameter 10000
+ source https://www.ncbi.nlm.nih.gov/books/NBK26894/
+ // Mitochondria are usually depicted as stiff, elongated cylinders with a diameter of 0.5–1 μm, resembling bacteria.
+ visibleSince 1857
+
+ name Red Blood Cell
+ microverse Bloodland
+ diameter 80000
+ source https://pmc.ncbi.nlm.nih.gov/articles/PMC2998922/
+ visibleSince 1678
+ https://pubmed.ncbi.nlm.nih.gov/11505724/
+
+ name Human ovum
+ microverse Hairfield
+ diameter 1200000
+ source https://en.wikipedia.org/wiki/Egg_cell
+ visibleSince 1677
+ https://onlinelibrary.wiley.com/doi/10.1111/j.1439-0531.2012.02105.x
+
+ concepts
+ printTable
+
+ ****
+
+ sizeOfEverything.jpg
+ caption The Size of Everything by Olaf Frohn
+ https://armchairastronautics.blogspot.com/p/size-of-everything.html
sizeOfEverything.jpg
Breck Yunits
Breck Yunits
23 hours ago
tsort.scroll
Changed around line 31: I am unaware of an encyclopedia sorted topologically.
+ A topologically sorted encyclopedia would also be _hard to vary_. Computational logic tests would trigger if someone tried to add non-sense to a low level piece.
+
+ And when revolutionary new low-level scientific insights are discovered that refine our models, you can actually numerically see and measure the downstream impact of those breakthroughs.
+
Breck Yunits
Breck Yunits
1 day ago
intelligence.scroll
Changed around line 41: If they have the same coverage, the smaller program is more intelligent.
+
+ # Notes
+ ICS is a way to measure what Wikipedians call Explanatory Power.
+ https://en.wikipedia.org/wiki/Explanatory_power Explanatory Power
Breck Yunits
Breck Yunits
2 days ago
market.scroll
Changed around line 50: The offering I'm working on is novel, so the market hasn't quite understood what
- The scary part about muting the market is the branch you are pioneering may be a dead end. It is a lot of work to see so many branches ahead to figure out if it's a path the market should go down. You don't want to blaze a trail to a dead-end, but even worse would be to mislead passengers down a dead-end trail. But perhaps sometimes it must be done.
+ The scary part about muting the market is the branch you are pioneering may be a dead end. It is a lot of work to see so many branches ahead to figure out if it's a path the market should go down. You don't want to blaze a trail to a dead-end, but even worse would be to mislead passengers down a dead-end trail.
+
+ The other scary part about muting the market is the old aphorism from finance: "markets can remain irrational longer than you can remain solvent".
+
+ But perhaps sometimes it must be done.