Changes to fun.sellnothing.com

ffff:63.82.152.250
ffff:63.82.152.250
2 months ago
updated index.scroll
index.scroll
Changed around line 3: openGraphImage bitcoin.png
- editButton /edit.html?folderName=sellnothing.com
+ editButton /edit.html
Breck Yunits
Breck Yunits
2 months ago
gazette.css
Changed around line 1
+ :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;
+ }
index.html
Changed around line 1
+
-
+
-
-
+
+
-
+
+
+
-
-
-
-
-
-
+
+
-

My Dumbest Financial Decisions

+

BELIEVE

-

#1. Acquiring Bitcoin when it was $6 and selling at $1,000

-

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

-

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.

-
-
*
-

#3. Buying NVDA in 2014 and selling in 2017

-
+
+

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

+
+
-

-

+

+
index.scroll
Changed around line 11: theme gazette
- # My Dumbest Financial Decisions
+ # BELIEVE
- # 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
ffff:63.82.152.250
ffff:63.82.152.250
2 months ago
updated index.scroll
index.scroll
Changed around line 18: mediumColumns 1
+
+ fun.avif
+ fun2.avif
+ width 20
root
root
2 months ago
Added fun.avif
fun.avif
root
root
2 months ago
Added fun2.avif
fun2.avif
ffff:63.82.152.250
ffff:63.82.152.250
2 months ago
updated index.scroll
index.scroll
Changed around line 1
-
Changed around line 17: 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
ffff:98.97.141.22
ffff:98.97.141.22
3 months ago
Updated index.scroll
index.scroll
Changed around line 1
- buildHtml
- viewSourceButton /edit.html?folderName=sellnothing.com
+ buildHtml
+
+ editButton /edit.html?folderName=sellnothing.com
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 36: nvda.jpeg
- pageFooter
+ center
+ scrollVersionLink
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 3: buildHtml
- viewSourceButton /edit.html
+ viewSourceButton /edit.html?folderName=sellnothing.com
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 3: buildHtml
- viewSourceButton edit.html
+ viewSourceButton /edit.html
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 7: viewSourceButton edit.html
- template gazette
+ theme gazette
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 13: printTitle
- container 800px
+ mediumColumns 1
- width 200px
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 6: title #SellNothing
+
Changed around line 19: container 800px
+ width 200px
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 7: viewSourceButton edit.html
- pageHeader
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 1
+ buildHtml
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 1
- baseUrl https://sellnothing.com
- openGraphImage bitcoin.png
- title #SellNothing
-
- viewSourceButton edit.html
-
- metaTags
- template gazette
- pageHeader
-
- printTitle
-
- # My Dumbest Financial Decisions
-
- container 800px
-
- ***
-
- # #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
-
- ****
-
- pageFooter
+ baseUrl https://sellnothing.com
+ openGraphImage bitcoin.png
+ title #SellNothing
+
+ viewSourceButton edit.html
+
+ metaTags
+ template gazette
+ pageHeader
+
+ printTitle
+
+ # My Dumbest Financial Decisions
+
+ container 800px
+
+ ***
+
+ # #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
+
+ ****
+
+ pageFooter
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 1
- baseUrl https://sellnothing.com
- email unlesstheofferstartswithab@sellnothing.com
- openGraphImage https://sellnothing.com/bitcoin.png
- title #SellNothing
- viewSourceBaseUrl https://github.com/breck7/sellnothing.com/blob/main
-
- git https://github.com/breck7/sellnothing.com
-
- metaTags
- template gazette
- pageHeader
-
- printTitle
-
- # My Dumbest Financial Decisions
-
- container 800px
-
- ***
-
- # #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
-
- ****
-
- pageFooter
+ baseUrl https://sellnothing.com
+ openGraphImage bitcoin.png
+ title #SellNothing
+
+ viewSourceButton edit.html
+
+ metaTags
+ template gazette
+ pageHeader
+
+ printTitle
+
+ # My Dumbest Financial Decisions
+
+ container 800px
+
+ ***
+
+ # #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
+
+ ****
+
+ pageFooter
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 7: viewSourceBaseUrl https://github.com/breck7/sellnothing.com/blob/main
- gazetteCss
+ template gazette
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 14: printTitle
- container
+ container 800px
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 14: printTitle
- mediumColumns 1
+ container
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 19: mediumColumns 1
- image bitcoin.png
+ bitcoin.png
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 25: image bitcoin.png
- image ether.png
+ ether.png
ffff:24.23.157.43
ffff:24.23.157.43
3 months ago
Updated index.scroll
index.scroll
Changed around line 1
- git https://github.com/breck7/sellnothing.com
+ git https://github.com/breck7/sellnothing.com
+
Changed around line 33: image ether.png
- image nvda.jpeg
+ nvda.jpeg
Breck Yunits
Breck Yunits
7 months ago
checkpoint
index.html
Changed around line 1
-
- #SellNothing
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

you will doubt your younger self.

-

you will sell too early.

-

you will miss out.

-

you will learn.

-

you will get another chance.

-

you will have patience this time.

-
-

It's true what they say about me—I'm mentally ill—I thought Bitcoin would only go up to $12.00 or $18.00. I'm a true crazy!

-
-

Note: I still don't know what The DAO was and obviously I was joking and did not participate, but I was clearly 100% wrong about it because DAOs obviously became a huge thing.

-
-

Speak softly and carry a little usb stick - Teddy Roosevelt

-
-
-
-
-
-
+
+
+
+
+
-

+
+

My Dumbest Financial Decisions

+
+
+
*
+

#1. Acquiring Bitcoin when it was $6 and selling at $1,000

+

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

+

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.

+
+
*
+

#3. Buying NVDA in 2014 and selling in 2017

+
+
+
+

+
+
index.scroll
Changed around line 1
- metaTags
- scrollCssTag
- scrollHeader
-
-
+ baseUrl https://sellnothing.com
+ email unlesstheofferstartswithab@sellnothing.com
+ git https://github.com/breck7/sellnothing.com
+ openGraphImage https://sellnothing.com/bitcoin.png
+ viewSourceBaseUrl https://github.com/breck7/sellnothing.com/blob/main
- startColumns 1
+ metaTags
+ gazetteCss
+ pageHeader
- date 10-09-2022
+ printTitle
- openGraphImage https://sellnothing.com/bitcoin.png
+ # My Dumbest Financial Decisions
- html
+ mediumColumns 1
- * you will doubt your younger self.
- * you will sell too early.
- * you will miss out.
- * you will learn.
- * you will get another chance.
- * you will have patience this time.
+ ***
+ # #1. Acquiring Bitcoin when it was $6 and selling at $1,000
- caption It's true what they say about me—I'm mentally ill—I thought Bitcoin would only go up to $12.00 or $18.00. I'm a true crazy!
+ 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
- caption Note: I still don't know what The DAO was and obviously I was joking and did not participate, but I was clearly 100% wrong about it because DAOs obviously became a huge thing.
+ 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.
- * _Speak softly and carry a little usb stick_ - Teddy Roosevelt
- https://www.ledger.com a big [USB] stick
- https://twitter.com/breckyunits/status/1578528876652699648 Teddy Roosevelt
- hoverNote carry
- And by carry I mean keep securely on an island fortress thousands of miles away from you.
+ ***
- html
+ # #3. Buying NVDA in 2014 and selling in 2017
+ image nvda.jpeg
- description SellNothing.com
- git https://github.com/breck7/sellnothing.com
- viewSourceBaseUrl https://github.com/breck7/sellnothing.com/blob/main
- email unlesstheofferstartswithab@sellnothing.com
- baseUrl https://sellnothing.com
+ ****
- scrollFooter
+ pageFooter
nvda.jpeg
Breck Yunits
Breck Yunits
2 years ago
Upgrade Scroll
index.html
Changed around line 1
-
-
+
+
+
+ #SellNothing -
+
+
+
+
+
+
+
+
+
+
+

+
+
- you will get another chance.
- you will have patience this time.
-
+
+
+
+
+

you will doubt your younger self.

+

you will sell too early.

+

you will miss out.

+

you will learn.

+

you will get another chance.

+

you will have patience this time.

+
+
"2x3x". I'm a real idiot sometimes.
+
+
Note: I still don't know what The DAO was and obviously I was joking and did not participate, but I was clearly 100% wrong about it because DAOs obviously became a huge thing.
+
+

Speak softly and carry a little usb stick

- Teddy Roosevelt

+
+
+
+
+
+
+
+
+
+
+
+
+
index.scroll
Changed around line 1
+ title #SellNothing
+ date 10-09-2022
+
+ openGraphImage bitcoin.png
+
+ html
+
+
+ * you will doubt your younger self.
+ * you will sell too early.
+ * you will miss out.
+ * you will learn.
+ * you will get another chance.
+ * you will have patience this time.
+
+ image bitcoin.png
+ caption "2x3x". I'm a real idiot sometimes.
+
+ image ether.png
+ caption Note: I still don't know what The DAO was and obviously I was joking and did not participate, but I was clearly 100% wrong about it because DAOs obviously became a huge thing.
+
+ *
Speak softly and carry a little usb stick

- Teddy Roosevelt
+ https://www.ledger.com a big [USB] stick
+ https://twitter.com/breckyunits/status/1578528876652699648 Teddy Roosevelt
+ footnote carry
+ And by carry I mean keep securely on an island fortress thousands of miles away from you.
+
+ html
+
+
+ siteTitle
+ siteDescription SellNothing.com. Powered by Scroll
+ scrollHeader
+ github https://github.com/breck7/sellnothing.com
+ viewSourceBaseUrl https://github.com/breck7/sellnothing.com/blob/main
+ twitter https://twitter.com/breckyunits
+ email unlesstheofferstartswithab@sellnothing.com
+ baseUrl https://sellnothing.com
+ columnWidth 100
sellnothing
sellnothing
3 years ago
Update index.html
index.html
Changed around line 1
-
+
sellnothing
sellnothing
3 years ago
Create CNAME
CNAME
Changed around line 1
+ sellnothing.com
sellnothing
sellnothing
3 years ago
Create index.html
index.html
Changed around line 1
+
+ you will doubt your younger self.
+
+ you will sell too early.
+
+ you will miss out.
+
+ you will learn.
+
+ you will get another chance.
+
+ you will have patience this time.
+