------------------------------------------------------------
commit a05bd3fdc6aace9078388f64d1e4168ed1e872c6
Author: ffff:63.82.152.250 <ffff:63.82.152.250@fun.sellnothing.com> Date: Thu Nov 21 05:11:23 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 1700359..19fddd8 100644 --- a/index.scroll +++ b/index.scroll @@ -3,7 +3,7 @@ openGraphImage bitcoin.png title #SellNothing buildHtml -editButton /edit.html?folderName=sellnothing.com +editButton /edit.html metaTags ------------------------------------------------------------
commit 3b30d9d6e44e2d2b7c695850b764dff486e2f5e5
Author: Breck Yunits <breck7@gmail.com> Date: Wed Nov 20 19:10:20 2024 -1000 diff --git a/gazette.css b/gazette.css new file mode 100644 index 0000000..cb34e2b --- /dev/null +++ b/gazette.css @@ -0,0 +1,525 @@ +:root { + /* Base Colors */ + --scrollPrimaryRgb: 10, 92, 202; /* Base primary button */ + --scrollSurfaceRgb: 204, 204, 204; /* Base surface */ + --scrollTextBase: 0, 0, 0; + --scrollLinkBase: 51, 102, 204; + + /* Semantic Colors */ + --scrollColorBackground: rgb(244, 244, 244); + --scrollColorText: rgba(var(--scrollTextBase), 1); + --scrollColorLink: rgb(var(--scrollLinkBase), 1); + --scrollColorSubdued: rgb(150, 150, 150); + + /* Typography */ + --scrollFontPrimary: Exchange, Georgia, serif; + --scrollFontUi: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial"; + --scrollFontMono: monospace; + --scrollBaseFontSize: 16px; + + /* 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; +} + +html { + height: 100%; +} + +figure { + margin: 0; + padding: 0; +} + +.dropcap:first-letter { + font-size: 3rem; + line-height: 0.9em; + margin-right: 0.125rem; + display: block; + float: left; +} + +.dinkus { + text-align: center; + padding: 1rem; +} + +.dinkus 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); +} + +code { + 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.scrollTitle { + 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.scrollTitle a { + color: var(--scrollColorText); +} + +.scrollDateline { + font-style: italic; + line-height: 1.4rem; + font-size: 0.75rem; +} + +.scrollSection { + break-inside: avoid; +} + +.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; +} + +.scrollByLine { + 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; +} diff --git a/index.html b/index.html index 69dae4f..3424b0a 100644 --- a/index.html +++ b/index.html @@ -1,416 +1,39 @@ <!DOCTYPE html> <html lang="en"> +<style>.abstractIconButtonParser {position:absolute;top:0.25rem; }.abstractIconButtonParser svg {fill: rgba(204,204,204,.8);width:1.875rem;height:1.875rem; padding: 0 7px;} .abstractIconButtonParser:hover svg{fill: #333;}</style><a href="/edit.html?folderName=sellnothing.com" class="doNotPrint abstractIconButtonParser" style="right:2rem;"><svg width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.1213 2.70705C19.9497 1.53548 18.0503 1.53547 16.8787 2.70705L15.1989 4.38685L7.29289 12.2928C7.16473 12.421 7.07382 12.5816 7.02986 12.7574L6.02986 16.7574C5.94466 17.0982 6.04451 17.4587 6.29289 17.707C6.54127 17.9554 6.90176 18.0553 7.24254 17.9701L11.2425 16.9701C11.4184 16.9261 11.5789 16.8352 11.7071 16.707L19.5556 8.85857L21.2929 7.12126C22.4645 5.94969 22.4645 4.05019 21.2929 2.87862L21.1213 2.70705ZM18.2929 4.12126C18.6834 3.73074 19.3166 3.73074 19.7071 4.12126L19.8787 4.29283C20.2692 4.68336 20.2692 5.31653 19.8787 5.70705L18.8622 6.72357L17.3068 5.10738L18.2929 4.12126ZM15.8923 6.52185L17.4477 8.13804L10.4888 15.097L8.37437 15.6256L8.90296 13.5112L15.8923 6.52185ZM4 7.99994C4 7.44766 4.44772 6.99994 5 6.99994H10C10.5523 6.99994 11 6.55223 11 5.99994C11 5.44766 10.5523 4.99994 10 4.99994H5C3.34315 4.99994 2 6.34309 2 7.99994V18.9999C2 20.6568 3.34315 21.9999 5 21.9999H16C17.6569 21.9999 19 20.6568 19 18.9999V13.9999C19 13.4477 18.5523 12.9999 18 12.9999C17.4477 12.9999 17 13.4477 17 13.9999V18.9999C17 19.5522 16.5523 19.9999 16 19.9999H5C4.44772 19.9999 4 19.5522 4 18.9999V7.99994Z"/></svg></a> <head> <meta charset="utf-8"> <title>#SellNothing</title> - <script>/* This HTML was generated by 📜 Scroll v97.1.1. https://scroll.pub */</script> + <script>/* This HTML was generated by 📜 Scroll v155.0.2. https://scroll.pub */</script> <style>@media print {.doNotPrint {display: none !important;}}</style> <link rel="canonical" href="https://sellnothing.com/index.html"> <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta name="description" content="My Dumbest Financial Decisions"> - <meta name="generator" content="Scroll v97.1.1"> + <meta name="description" content="BELIEVE"> + <meta name="generator" content="Scroll v155.0.2"> <meta property="og:title" content="#SellNothing"> - <meta property="og:description" content="My Dumbest Financial Decisions"> + <meta property="og:description" content="BELIEVE"> <meta property="og:image" content="https://sellnothing.com/bitcoin.png"> + <link rel="source" type="application/git" title="Source Code Repository" href="index.scroll"> + <meta name="twitter:card" content="summary_large_image"> </head> <body> -<style> -figure { - margin: 0; - padding: 0; -} -.dropcap:first-letter { - font-size: 3rem; - line-height: .9em; - margin-right: .125rem; - display: block; - float: left; -} -.dinkus { - text-align: center; - padding: 1rem; -} -.dinkus span { - vertical-align: sub; -} -details { - margin-top: 10px; -} -summary { - font-family: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial"; - cursor: pointer; -} -.scrollCaptionedFigure { - display: block; - break-inside: avoid; - text-align: center; -} -.scrollCaptionedFigure img { - max-width: 100%; - height: auto; - margin-top: .1875rem; -} -.scrollCaptionedFigure figcaption { - font-family: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial"; - font-size: .8rem; -} -.scrollCaptionedFigure figcaption .scrollParagraph { - margin-top: 0; -} -.scrollCodeBlock { - overflow: auto; - font-size: .8rem; - hyphens: none; - white-space: pre; - break-inside: avoid; - display: block; - margin: .5rem 0; - padding: .5rem; - border-radius: 0; - position: relative; -} -.scrollCodeBlock:hover .scrollCopyButton { - opacity: .5; -} -.scrollCodeBlock:hover .scrollCopyButton:hover { - opacity: .8; -} -.scrollCodeBlock:hover .scrollCopyButton:active { - opacity: 1; -} -.scrollCopyButton { - position: absolute; - top: .125rem; - right: .125rem; - font-size: .875rem; - cursor: pointer; - opacity: 0; -} -.scrollCopyButton::after { - content: "[ ]"; -} -.scrollCopiedButton::after { - content: "[✓]"; -} -html,body,div,span,p,ol,ul,li,table,figure { - margin: 0; - padding: 0; - border: 0; - vertical-align: baseline; - border-spacing: 0; -} -ol,ul { - padding-left: 1rem; -} -li { - margin-top: .4rem; - line-height: 1.4; -} -a { - text-decoration-color: transparent; -} -a:hover { - text-decoration-color: initial; -} -sup,sub { - vertical-align: baseline; - position: relative; - top: -.375rem; -} -sub { - top: .375rem; -} -html { - padding: .25rem; - background-color: rgb(244,244,244); - font-family: Exchange,Georgia,serif; - color: #000; - font-size: var(--base-font-size, 16px); - hyphens: auto; -} -p { - margin-top: .4rem; - line-height: 1.4rem; -} -.scrollQuote { - break-inside: avoid; - display: block; - margin: .5rem 0; - padding: .5rem; - background: rgba(204,204,204,.5); - white-space: pre-line; - border-left: .5rem solid rgba(204,204,204,.8); -} -code { - font-size: .9rem; - background-color: rgba(204,204,204,.5); - padding: .125rem .25rem; - border-radius: .25rem; -} -.scrollParagraph { - text-align: justify; -} -.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: .625rem 0; -} -h1 { - font-size: 1.25rem; -} -h2 { - font-size: 1.125rem; -} -h3,h4 { - font-size: 1rem; -} -h1.scrollTitle { - text-align: center; - margin: auto; - margin-bottom: .15625rem; - margin-top: 0; - font-size: 1.75rem; - max-width: calc(100vw - 2 * (1.5625rem + 1.875rem)); -} -h1.scrollTitle a { - color: #000; -} -.scrollDateline { - font-style: italic; - line-height: 1.4rem; - font-size: .75rem; -} -.scrollSection { - break-inside: avoid; -} -.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: .4; - text-decoration: none; -} -.scrollNoteLink:hover { - opacity: 1; -} -.scrollFootNoteUsageLink { - opacity: .7; - text-decoration: none; -} -.scrollFootNoteUsageLink:hover { - opacity: 1; -} -.scrollHoverNote { - text-decoration: underline dashed 1px rgba(0,0,0,.1); - cursor: default; -} -.scrollCodeBlock { - border-left: .5rem solid rgba(204,204,204,.8); -} -.scrollTable { - table-layout: fixed; - font-family: "SF Pro", "Helvetica Neue", "Segoe UI", "Arial"; - margin: .5rem 0; - overflow: hidden; - font-size: .8rem; - width: 100%; - hyphens: none; - border: 1px solid rgba(224,224,224,.8); -} -.scrollTable td,.scrollTable th { - padding: .1875rem; - overflow: hidden; - white-space: nowrap; -} -.scrollTable td:hover { - text-overflow: unset; - overflow: unset; - white-space: unset; -} -.scrollTable th { - text-transform: capitalize; -} -.scrollTable th { - border-bottom: 2px solid rgba(0,0,0,.6); - text-align: left; -} -.scrollTable tr:nth-child(even) { - background: rgba(224,224,224,.6); -} -.scrollByLine { - font-size: .875rem; - font-style: italic; - margin: .25rem 0; - text-align: center; -} -.scrollViewSource { - text-align: center; - font-family: Verdana; - font-weight: 100; -} -.scrollViewSource a { - color: rgba(204,204,204,.5); -} -.scrollViewSource 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: .5rem; - margin-bottom: .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: .3125rem; - padding: .3125rem 1.25rem; - border-radius: .9375rem; - display: inline-block; -} -.scrollChatLeft span { - background: rgba(204,204,204, .5); -} -.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%; -} - -</style> -<style> -.pageHeader { - position: absolute; - top: .25rem; - right: 0; - left: 0; -} -.pageHeader svg { - width: 1.875rem; - height: 1.875rem; - fill: rgba(204,204,204,.8); -} -.pageHeader svg:hover { - fill: #333; -} -.pageHeader a { - color: rgba(204,204,204,.8); - position: absolute; - font-size: 1.875rem; - line-height: 1.7rem; - text-decoration: none; -} -.pageHeader a:hover { - color: #333; -} - -</style><div class="pageHeader doNotPrint"> - <a style="text-align:left;left:1.5625rem;" href="index.html"><svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.7166 3.79541C12.2835 3.49716 11.7165 3.49716 11.2834 3.79541L4.14336 8.7121C3.81027 8.94146 3.60747 9.31108 3.59247 9.70797C3.54064 11.0799 3.4857 13.4824 3.63658 15.1877C3.7504 16.4742 4.05336 18.1747 4.29944 19.4256C4.41371 20.0066 4.91937 20.4284 5.52037 20.4284H8.84433C8.98594 20.4284 9.10074 20.3111 9.10074 20.1665V15.9754C9.10074 14.9627 9.90433 14.1417 10.8956 14.1417H13.4091C14.4004 14.1417 15.204 14.9627 15.204 15.9754V20.1665C15.204 20.3111 15.3188 20.4284 15.4604 20.4284H18.4796C19.0806 20.4284 19.5863 20.0066 19.7006 19.4256C19.9466 18.1747 20.2496 16.4742 20.3634 15.1877C20.5143 13.4824 20.4594 11.0799 20.4075 9.70797C20.3925 9.31108 20.1897 8.94146 19.8566 8.7121L12.7166 3.79541ZM10.4235 2.49217C11.3764 1.83602 12.6236 1.83602 13.5765 2.49217L20.7165 7.40886C21.4457 7.91098 21.9104 8.73651 21.9448 9.64736C21.9966 11.0178 22.0564 13.5119 21.8956 15.3292C21.7738 16.7067 21.4561 18.4786 21.2089 19.7353C20.9461 21.0711 19.7924 22.0001 18.4796 22.0001H15.4604C14.4691 22.0001 13.6655 21.1791 13.6655 20.1665V15.9754C13.6655 15.8307 13.5507 15.7134 13.4091 15.7134H10.8956C10.754 15.7134 10.6392 15.8307 10.6392 15.9754V20.1665C10.6392 21.1791 9.83561 22.0001 8.84433 22.0001H5.52037C4.20761 22.0001 3.05389 21.0711 2.79113 19.7353C2.54392 18.4786 2.22624 16.7067 2.10437 15.3292C1.94358 13.5119 2.00338 11.0178 2.05515 9.64736C2.08957 8.73652 2.55427 7.91098 3.28346 7.40886L10.4235 2.49217Z"/></svg></a> - <a style="text-align:right;right: 1.5625rem;" href="https://github.com/breck7/sellnothing.com"><svg xmlns="http://www.w3.org/2000/svg" width="92pt" height="92pt" viewBox="0 0 92 92"><path d="M90.156 41.965 50.036 1.848a5.913 5.913 0 0 0-8.368 0l-8.332 8.332 10.566 10.566a7.03 7.03 0 0 1 7.23 1.684 7.043 7.043 0 0 1 1.673 7.277l10.183 10.184a7.026 7.026 0 0 1 7.278 1.672 7.04 7.04 0 0 1 0 9.957 7.045 7.045 0 0 1-9.961 0 7.038 7.038 0 0 1-1.532-7.66l-9.5-9.497V59.36a7.04 7.04 0 0 1 1.86 11.29 7.04 7.04 0 0 1-9.957 0 7.04 7.04 0 0 1 0-9.958 7.034 7.034 0 0 1 2.308-1.539V33.926a7.001 7.001 0 0 1-2.308-1.535 7.049 7.049 0 0 1-1.516-7.7L29.242 14.273 1.734 41.777a5.918 5.918 0 0 0 0 8.371L41.855 90.27a5.92 5.92 0 0 0 8.368 0l39.933-39.934a5.925 5.925 0 0 0 0-8.371"/></svg></a> -</div> - +<link rel="stylesheet" type="text/css" href="gazette.css"> +<div class="scrollSection"><h1 id="particle11" class="scrollTitle"><a href="index.html">#SellNothing</a></h1> </div> -<div class="scrollSection"><h1 class="scrollTitle"><a href="index.html">#SellNothing</a></h1> -</div> -<div class="scrollSection"><h1 class="scrollParagraph">My Dumbest Financial Decisions</h1> +<div class="scrollSection"><h1 id="particle13" class="scrollParagraph">BELIEVE</h1> </div> <div class="scrollColumns" style="column-width:65ch;column-count:1;max-width:65ch;"> <div class="dinkus"><span>*</span></div> -<div class="scrollSection"><h1 class="scrollParagraph">#1. Acquiring Bitcoin when it was $6 and selling at $1,000</h1> -<figure class="scrollCaptionedFigure"><a href="bitcoin.png" target="_blank" ><img src="bitcoin.png" width="956" height="592" loading="lazy"></a><figcaption><p class="scrollParagraph">Early me did not deeply believe in exponentials. Early me sold for a 100x gain instead of a 6,000x gain, missing out on ~98% of the upside.</p></figcaption></figure> -</div> -<div class="dinkus"><span>*</span></div> -<div class="scrollSection"><h1 class="scrollParagraph">#2. Acquiring Ether when it was $10 and selling at $20</h1> -<figure class="scrollCaptionedFigure"><a href="ether.png" target="_blank" ><img src="ether.png" width="1574" height="186" loading="lazy"></a><figcaption><p class="scrollParagraph">Note: I still don't know what <a href="https://en.wikipedia.org/wiki/The_DAO_(organization)">The DAO</a> was and that part of the email was a joke, but it does look like <a href="https://en.wikipedia.org/wiki/Decentralized_autonomous_organization">DAOs</a> became a thing so I was wrong about that.</p></figcaption></figure> -</div> -<div class="dinkus"><span>*</span></div> -<div class="scrollSection"><h1 class="scrollParagraph">#3. Buying NVDA in 2014 and selling in 2017</h1> -<figure class="scrollCaptionedFigure"><a href="nvda.jpeg" target="_blank" ><img src="nvda.jpeg" width="1200" height="490" loading="lazy"></a></figure> +<div class="scrollSection"><h1 id="particle19" class="scrollParagraph"><a href="https://warpcast.com/fun/0x56e85cf9">$ANON</a></h1> </div> +<p id="particle21" class="scrollParagraph">my $95 $ANON buy from 7 days ago is now worth $16k (but it's not that because i sold everything 24 hours after) AMA</p> +<figure class="scrollCaptionedFigure" style="width:600px; margin: auto;"><a href="fun.avif" target="_blank" ><img src="fun.avif" width="600" height="undefined" loading="lazy"></a></figure> +<figure class="scrollCaptionedFigure" style="width:600px; margin: auto;"><a href="fun2.avif" target="_blank" ><img src="fun2.avif" width="600" height="undefined" loading="lazy"></a></figure> <div class="dinkus"><span>⁂</span></div> -</div><style>.pageFooter { - margin-top: 8px; - padding-top: 8px; - text-align: center; -} -.pageFooter svg { - width: 30px; - height: 30px; - fill: rgba(204,204,204, .5); - padding: 0 7px; -} -.pageFooter svg:hover { - fill: #333; -} -.pageFooterScrollLink { - display: block; - font-family: Verdana; - font-weight: 100; - margin: .5em; - color: rgba(204,204,204,.5); -} -.pageFooterScrollLink:hover { - color: #333; - text-decoration: none; -} -</style><p class="scrollViewSource doNotPrint"> - <a href="https://github.com/breck7/sellnothing.com/blob/main/index.scroll">View source</a> -</p> -<div class="pageFooter doNotPrint"> - <a href="mailto:unlesstheofferstartswithab@sellnothing.com"><svg viewBox="3 5 24 20" width="24" height="20" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(1, 0, 0, 1, 0, -289.0625)"><path style="opacity:1;stroke:none;stroke-width:0.49999997;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 5 5 C 4.2955948 5 3.6803238 5.3628126 3.3242188 5.9101562 L 14.292969 16.878906 C 14.696939 17.282876 15.303061 17.282876 15.707031 16.878906 L 26.675781 5.9101562 C 26.319676 5.3628126 25.704405 5 25 5 L 5 5 z M 3 8.4140625 L 3 23 C 3 24.108 3.892 25 5 25 L 25 25 C 26.108 25 27 24.108 27 23 L 27 8.4140625 L 17.121094 18.292969 C 15.958108 19.455959 14.041892 19.455959 12.878906 18.292969 L 3 8.4140625 z " transform="translate(0,289.0625)" id="rect4592"/></g></svg></a> - <a href="undefined"><svg fill="#000000" xmlns="http://www.w3.org/2000/svg" width="800px" height="800px" viewBox="0 0 52 52" enable-background="new 0 0 52 52" xml:space="preserve"><path d="M38.6,20.4c-1-6.5-6.7-11.5-13.5-11.5c-7.6,0-13.7,6.1-13.7,13.7c0,0.3,0,0.7,0.1,1c-5,0.4-8.9,4.6-8.9,9.6 c0,5.4,4.3,9.7,9.7,9.7h11.5c-0.8-0.8-8.1-8.1-8.1-8.1c-0.4-0.4-0.4-0.9,0-1.3l1.3-1.3c0.4-0.4,0.9-0.4,1.3,0l3.5,3.5 c0.4,0.4,1.1,0.1,1.1-0.4V21.8c0-0.4,0.5-0.9,1-0.9h1.9c0.5,0,0.9,0.4,0.9,0.9v13.4c0,0.6,0.8,0.8,1.1,0.4l3.5-3.5 c0.4-0.4,0.9-0.4,1.3,0l1.3,1.3c0.4,0.4,0.4,0.9,0,1.3L26,42.9h12.3v0c6.1-0.1,11-5.1,11-11.3C49.4,25.5,44.6,20.6,38.6,20.4z"/></svg></a> - <a href="https://github.com/breck7/sellnothing.com"><svg xmlns="http://www.w3.org/2000/svg" width="92pt" height="92pt" viewBox="0 0 92 92"><path d="M90.156 41.965 50.036 1.848a5.913 5.913 0 0 0-8.368 0l-8.332 8.332 10.566 10.566a7.03 7.03 0 0 1 7.23 1.684 7.043 7.043 0 0 1 1.673 7.277l10.183 10.184a7.026 7.026 0 0 1 7.278 1.672 7.04 7.04 0 0 1 0 9.957 7.045 7.045 0 0 1-9.961 0 7.038 7.038 0 0 1-1.532-7.66l-9.5-9.497V59.36a7.04 7.04 0 0 1 1.86 11.29 7.04 7.04 0 0 1-9.957 0 7.04 7.04 0 0 1 0-9.958 7.034 7.034 0 0 1 2.308-1.539V33.926a7.001 7.001 0 0 1-2.308-1.535 7.049 7.049 0 0 1-1.516-7.7L29.242 14.273 1.734 41.777a5.918 5.918 0 0 0 0 8.371L41.855 90.27a5.92 5.92 0 0 0 8.368 0l39.933-39.934a5.925 5.925 0 0 0 0-8.371"/></svg></a> - <a href="https://scroll.pub" class="pageFooterScrollLink" style="display:block; margin: .5em;">Built with Scroll v97.1.1</a> -</div> +<center><p id="particle27" class="scrollParagraph"></p> +<div class="abstractTextLinkParser"><a href="https://scroll.pub">Built with Scroll v155.0.2</a></div> +</center> </body> </html> \ No newline at end of file diff --git a/index.scroll b/index.scroll index 66d2e17..1700359 100644 --- a/index.scroll +++ b/index.scroll @@ -11,17 +11,21 @@ theme gazette printTitle -# My Dumbest Financial Decisions +# BELIEVE mediumColumns 1 *** -# my $95 $ANON buy from 7 days ago is now worth $16k (but it's not that because i sold everything 24 hours after) AMA +# $ANON + https://warpcast.com/fun/0x56e85cf9 -fun.avif -fun2.avif - width 20 +my $95 $ANON buy from 7 days ago is now worth $16k (but it's not that because i sold everything 24 hours after) AMA + +image fun.avif + width 600 +image fun2.avif + width 600 **** center ------------------------------------------------------------
commit 3d079800d01449cca7666839a0eff2e7993a9528
Author: ffff:63.82.152.250 <ffff:63.82.152.250@sellnothing.com> Date: Thu Nov 21 04:57:24 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 11b32cc..66d2e17 100644 --- a/index.scroll +++ b/index.scroll @@ -18,6 +18,10 @@ mediumColumns 1 *** # my $95 $ANON buy from 7 days ago is now worth $16k (but it's not that because i sold everything 24 hours after) AMA + +fun.avif +fun2.avif + width 20 **** center ------------------------------------------------------------
commit f28b753355f79cc3ac458153392910886de7f631
Author: root <root@hub.scroll.pub> Date: Thu Nov 21 04:57:10 2024 +0000 Added fun.avif diff --git a/fun.avif b/fun.avif new file mode 100644 index 0000000..8ed3a06 Binary files /dev/null and b/fun.avif differ ------------------------------------------------------------
commit e14c276bbdcb458dba0b0c23679c711074f75911
Author: root <root@hub.scroll.pub> Date: Thu Nov 21 04:57:09 2024 +0000 Added fun2.avif diff --git a/fun2.avif b/fun2.avif new file mode 100644 index 0000000..b842b7f Binary files /dev/null and b/fun2.avif differ ------------------------------------------------------------
commit f1eb9f1c62e997ef9dcef07397ef28987a2c6fd0
Author: ffff:63.82.152.250 <ffff:63.82.152.250@sellnothing.com> Date: Thu Nov 21 04:56:44 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 3fb91ef..11b32cc 100644 --- a/index.scroll +++ b/index.scroll @@ -1,7 +1,6 @@ baseUrl https://sellnothing.com openGraphImage bitcoin.png title #SellNothing - buildHtml editButton /edit.html?folderName=sellnothing.com @@ -18,23 +17,7 @@ mediumColumns 1 *** -# #1. Acquiring Bitcoin when it was $6 and selling at $1,000 -bitcoin.png - caption Early me did not deeply believe in exponentials. Early me sold for a 100x gain instead of a 6,000x gain, missing out on ~98% of the upside. - -*** - -# #2. Acquiring Ether when it was $10 and selling at $20 -ether.png - caption Note: I still don't know what The DAO was and that part of the email was a joke, but it does look like DAOs became a thing so I was wrong about that. - https://en.wikipedia.org/wiki/The_DAO_(organization) The DAO - https://en.wikipedia.org/wiki/Decentralized_autonomous_organization DAOs - -*** - -# #3. Buying NVDA in 2014 and selling in 2017 -nvda.jpeg - +# my $95 $ANON buy from 7 days ago is now worth $16k (but it's not that because i sold everything 24 hours after) AMA **** center ------------------------------------------------------------
commit 3f2995db9f78f2a010d7b249ab1b4dff22cb565e
Author: ffff:98.97.141.22 <ffff:98.97.141.22@sellnothing.com> Date: Thu Oct 24 01:39:29 2024 +0000 Updated index.scroll diff --git a/index.scroll b/index.scroll index 2687102..3fb91ef 100644 --- a/index.scroll +++ b/index.scroll @@ -1,9 +1,10 @@ baseUrl https://sellnothing.com -buildHtml openGraphImage bitcoin.png title #SellNothing -viewSourceButton /edit.html?folderName=sellnothing.com +buildHtml + +editButton /edit.html?folderName=sellnothing.com metaTags ------------------------------------------------------------
commit c6fc863cbc94ae0dd112dc292a275e8fd11bf7cf
Author: ffff:24.23.157.43 <ffff:24.23.157.43@hub.scroll.pub> Date: Wed Oct 16 01:33:01 2024 +0000 Updated index.scroll diff --git a/index.scroll b/index.scroll index c15a8f9..2687102 100644 --- a/index.scroll +++ b/index.scroll @@ -36,4 +36,5 @@ nvda.jpeg **** -pageFooter +center +scrollVersionLink ------------------------------------------------------------
commit a03a7fded0a67b0cd81d449759a0d98d9855ecce
Author: ffff:24.23.157.43 <ffff:24.23.157.43@hub.scroll.pub> Date: Wed Oct 16 01:32:11 2024 +0000 Updated index.scroll diff --git a/index.scroll b/index.scroll index d8ddd5d..c15a8f9 100644 --- a/index.scroll +++ b/index.scroll @@ -3,7 +3,7 @@ buildHtml openGraphImage bitcoin.png title #SellNothing -viewSourceButton /edit.html +viewSourceButton /edit.html?folderName=sellnothing.com metaTags ------------------------------------------------------------
commit 429d98d4bb2b085c8bff93e39079f47d4cfd6b66
Author: ffff:24.23.157.43 <ffff:24.23.157.43@hub.scroll.pub> Date: Wed Oct 16 01:32:01 2024 +0000 Updated index.scroll diff --git a/index.scroll b/index.scroll index 1c4ce4a..d8ddd5d 100644 --- a/index.scroll +++ b/index.scroll @@ -3,7 +3,7 @@ buildHtml openGraphImage bitcoin.png title #SellNothing -viewSourceButton edit.html +viewSourceButton /edit.html metaTags