{
    "version": "https://jsonfeed.org/version/1.1",
    "title": "Jonathan Stephens - Articles JSON",
    "home_page_url": "https://jonathanstephens.us",
    "feed_url": "https://jonathanstephens.us/articles/feed",
    "description": "Stuff I have written, by Jonathan Stephens",
    "authors": [
        {
            "name": "Jonathan Stephens",
            "url": "https://jonathanstephens.us"
        }
    ],
    "language": "en",
    "items": [
        {
            "id": "https://jonathanstephens.us/articles/design-token-boilerplate",
            "url": "https://jonathanstephens.us/articles/design-token-boilerplate",
            "title": "Design Token Boilerplate",
            "content_html": "<div class=\"callout callout--note\">\n    <header class=\"callout__header\" aria-label=\"NOTE\"><span class=\"callout__icon\" aria-hidden=\"true\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-info-icon lucide-info\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"M12 16v-4\"/><path d=\"M12 8h.01\"/></svg></span><span class=\"callout__label\">NOTE</span></header>\n    <p>This is a work in progress. I'm writing it in public and updating it as I continue writing.</p>\n</div>\n<p>I've been wanting to develop my boilerplate for a long while now. I'm at a point where I keep reinventing and trying to figure out the things and would rather work from a boilerplate to decrease the amount of decisions I make each project onset. </p>\n<h2>Foundations</h2>\n<p>Naming is one of the most important things of a design system. It needs to be consistent, but flexible; declarative, but not prescriptive. </p>\n<p>These days, <code>primitives</code> is a relatively standard nomenclature for this group of tokens. I, personally, don't like that word to define them. There are <a href=\"https://wordnik.com/words/primitive\">too many definitions</a> that can create ambiguity or mis-frame their import. </p>\n<p>Collectively, I like to call it the <em>foundation</em>. These tokens are what everything's built on—adding meaning as compositions emerge by adding style to semantic structure. These also need to be the smallest, simplest variable names for ease of re-use and development (when getting much farther along the system creation, token names tend to get lengthy). I'm one for typographpical poetry of length, so if the foundations are the smallest units <em>with</em> the shortest names, they're quickly identifiable, understandable, and rememberable.</p>\n<h2>Constants</h2>\n<p>These are ones that I'll always use, but are singular in words:</p>\n<ul>\n<li><code>--paper</code> for white, and developing tints;</li>\n<li><code>--ink</code> for black, and developing shades;</li>\n<li><code>--ash</code> for gray, and developing tones. </li>\n</ul>\n<h2>Prefixes</h2>\n<p>A prefix is something at the beginning. In grammar, these are remixable, contextual preambles like <em>re-</em>, <em>con-</em>, or <em>pre-</em>.</p>\n<p>These are the first words of my boilerplate's token set:</p>\n<ul>\n<li><code>--font-</code> for <code>font-family</code>;</li>\n<li><code>--scale-</code> for <code>font-size</code>;</li>\n<li><code>--stretch</code> for <code>font-width</code>;</li>\n<li><code>--style-</code> for <code>font-style</code>;</li>\n<li><code>--weight-</code> for <code>font-weight</code>;</li>\n<li><code>--tracking-</code> for <code>letter-spacing</code>;</li>\n<li><code>--stroke-</code> for <code>border-width</code>;</li>\n<li><code>--leading-</code> for <code>line-height</code>;</li>\n<li><code>--opacity-</code> for...well, opacity values;</li>\n<li><code>--palette-</code> for base colors;</li>\n<li><code>--duration-</code> for transition and animation timings;</li>\n<li><code>--radii-</code> for <code>border-radius</code> (and the fun of using two i's in a row);</li>\n<li><code>--space-</code> for <code>padding</code>, <code>margin</code>, and <code>gap</code>;</li>\n<li><code>--measure-</code> for <code>max-width</code> and typographic line-length;</li>\n<li><code>--layer-</code> for <code>z-index</code>; </li>\n<li><code>--ratio-</code> for <code>aspect-ratio</code>;</li>\n<li><code>--prominence-</code> for <code>box-shadow</code>;</li>\n</ul>\n<h2>Values &amp; Gradients</h2>\n<p>For some of these, I use explicit values. For others, semantic gradients.</p>\n<p>It depends on how the token's purpose and relationship with it's property counterpart. </p>\n<h3>Typography</h3>\n<h4>font</h4>\n<p>Each of these are the typical ones I come across in most settings. </p>\n<p>They're also grounded in <a href=\"https://codepen.io/poetandscribe/pen/RNGaMee\">generic font family naming</a>, just a limited set. In total, there're 12 potential generic font families to use, but these four tend to cover most of my use cases (and identity systems). </p>\n<pre><code class=\"language-css\">:root{\n  --font-sans: $stack, sans;\n  --font-serif: $stack, serif;\n  --font-mono: $stack, mono;\n  --font-hand: $stack, cursive;</code></pre>\n<h4>weight</h4>\n<p>Most of my design decisions boil down to typographic history and practical use. </p>\n<p>These are, generally, named for their typical weight naming scheme, respectively mapped to their default weights. Because variable fonts provide a plethora of potential values, having these as tokens <em>rather than</em> defaults enables depth of polish.</p>\n<pre><code class=\"language-css\">:root{\n  --weight-thin: 100;\n  --weight-extralight: 200;\n  --weight-light: 300;\n  --weight-regular: 400;\n  --weight-medium: 500;\n  --weight-semibold: 600;\n  --weight-bold: 700;\n  --weight-extrabold: 800;\n  --weight-black: 900;</code></pre>\n<h4>stretch</h4>\n<p>Like weight, this has default values but can be set differently in variable font situations.</p>\n<p>These map to another typical font design for typeface widths, developed over the centuries to give semantic name to width. </p>\n<pre><code class=\"language-css\">:root{\n  --stretch-ultra-con: ultra-condensed; /* 50% width */\n  --stretch-extra-con: extra-condensed;  /* 62.5% width */\n  --stretch-con: condensed;  /* 75% width */\n  --stretch-semi-con: semi-condensed;  /* 87.5% width */\n  --stretch-reg: normal;  /* 100% width */\n  --stretch-semi-exp: semi-expanded;  /* 112.5% width */\n  --stretch-exp: expanded;  /* 125% width */\n  --stretch-extra-exp: extra-expanded;  /* 150% width */\n  --stretch-ultra-exp: ultra-expanded;  /* 200% width */</code></pre>\n<h4>measure</h4>\n<p>Measure is the fancy typography word for length of a line of text, specifically from the left to right edges of a text block. In terms of reading length, it's good to aim for 45–85 characters per line, inclusive of spaces. </p>\n<p>The primary aspects that influence measure are: size of the type and size of its container (be it block, like a section, or a unit, like a paragraph). </p>\n<pre><code class=\"language-css\">:root{\n  --measure-xxs: 25ch;\n  --measure-xs: 35ch;\n  --measure-sm: 45ch ;\n  --measure-md:55ch ;\n  --measure-lg: 65ch;\n  --measure-xl: 75ch ;\n  --measure-xxl: 85ch;</code></pre>\n<h4>scale</h4>\n<ul>\n<li><code>--scale-</code> for <code>font-size</code>;</li>\n</ul>\n<h4>style</h4>\n<ul>\n<li><code>--style-</code> for <code>font-style</code>;</li>\n</ul>\n<h4>tracking</h4>\n<ul>\n<li><code>--tracking-</code> for <code>letter-spacing</code>;</li>\n</ul>\n<h4>leading</h4>\n<ul>\n<li><code>--leading-</code> for <code>line-height</code>;</li>\n</ul>\n<h3>Color</h3>\n<h4>opacity</h4>\n<ul>\n<li><code>--opacity-</code> for...well, opacity values;<h4>palette</h4>\n</li>\n<li><code>--palette-</code> for base colors;<h4>duration</h4>\n</li>\n<li><code>--duration-</code> for transition and animation timings;</li>\n</ul>\n<h3>Block</h3>\n<h4>radii</h4>\n<ul>\n<li><code>--radii-</code> for <code>border-radius</code> (and the fun of using two i's in a row);<h4>ratio</h4>\n</li>\n<li><code>--ratio-</code> for <code>aspect-ratio</code>;<h4>stroke</h4>\n</li>\n<li><code>--stroke-</code> for <code>border-width</code>;<h4>space</h4>\n</li>\n<li><code>--space-</code> for <code>padding</code>, <code>margin</code>, and <code>gap</code>;<h4>prominence</h4>\n</li>\n<li><code>--prominence-</code> for <code>box-shadow</code><h4>layer</h4>\n</li>\n<li><code>--layer-</code> for <code>z-index</code>; </li>\n</ul>\n<h2>Semantic Gradients</h2>\n<p>I've written about semantic gradients before, making lists, and compiling them. They're these cool relational word ladders that transition from one end of a spectrum to another. </p>\n<p>I prefer these over numbering systems—<code>100,200,300,400,...</code> or <code>10,20,30,40,...</code>—because words. I find the lack of explicit and definite number scale provides room for play, interpretation, but also ways of individualizing the scale to act as a <a href=\"https://en.wikipedia.org/wiki/Trap_street\">trap street</a>—a maker's mark to detect copyright violations (and, as is the case these days, detecting content was used as fodder for scrapers and large language model training).</p>\n<p>Each of the prefixes, above, come with default semantics—gradient or otherwise. I'm thematically grouping them for ease of reading.</p>",
            "date_published": "2026-03-04T00:00:00-05:00",
            "tags": [
                "Boilerplate",
                "Design Tokens",
                "CSS"
            ]
        },
        {
            "id": "https://jonathanstephens.us/articles/public-domain-resources",
            "url": "https://jonathanstephens.us/articles/public-domain-resources",
            "title": "Public Domain Resources",
            "content_html": "<h2>Museums</h2>\n<h3>National Gallery of Art</h3>\n<blockquote>\n<p>Our open data program is a natural extension of the National Gallery’s mission: to welcome all people to explore and experience art, creativity, and our shared humanity.</p>\n<p>We aim to make as much data as possible available to as many people as possible, in support of research, teaching, and personal enrichment. We believe that increased access to factual data about works of art fuels knowledge, scholarship, and innovation, inspiring uses that transform the way we discover and understand the world of art.</p>\n<p>You can download the dataset of factual art object information for the 130,000+ artworks and artists in our collection from Github. We release this data under a Creative Commons 0 (CC0) license. This means that you can download the full dataset free of charge, and without seeking our permission.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://www.nga.gov/artworks/free-images-and-open-access\">nga.gov/artworks/free-images-and-open-access</a></p>\n<h3>Smithsonian Open Access</h3>\n<blockquote>\n<p>Welcome to Smithsonian Open Access, where you can download, share, and reuse millions of the Smithsonian’s images—right now, without asking. With new platforms and tools, you have easier access to more than 5.1 million 2D and 3D digital items from our collections—with many more to come. This includes images and data from across the Smithsonian’s 21 museums, nine research centers, libraries, archives, and the National Zoo.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://www.si.edu/openaccess\">si.edu/openaccess</a></p>\n<h3>Art Institute of Chicago</h3>\n<blockquote>\n<p>The Art Institute of Chicago is pleased to offer free, unrestricted use of over 50,000 images of works in the collection believed to be in the public domain or to which the museum otherwise waives any copyright it might have. Such images are made available under Creative Commons Zero (CC0) designation and the Terms and Conditions of this website.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://www.artic.edu/open-access/open-access-images\">artic.edu/open-access/open-access-images</a></p>\n<h2>Aggregates</h2>\n<h3>ArtBee</h3>\n<blockquote>\n<p>ArtBee aggregates [public domain access collections from museums] into one searchable platform, making it easier to discover and download high-quality public domain artworks.</p>\n</blockquote>\n<p><strong>URL:</strong>  <a href=\"https://artbee.org/\">artbee.org</a></p>\n<h3>Public Domain Image Archive</h3>\n<blockquote>\n<p>Explore our hand-picked collection of 10,919 out-of-copyright works, free for all to browse, download, and reuse. This is a living database with new images added every week.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://pdimagearchive.org/\">pdimagearchive.org</a></p>\n<h2>Lists of Resources</h2>\n<h3>Pratt Institute Libraries</h3>\n<blockquote>\n<p>The links below provide access to images that are in the public domain or have been made available for reuse and can likely be used in for small run scholarly publications and theses free of charge.  Always check the rights statement associated with each image to make sure that you are abiding by the terms of use, which may include a specific format for the credit line.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://libguides.pratt.edu/c.php?g=763369&amp;p=8238035\">libguides.pratt.edu/c.php</a></p>\n<h3>Apollo Magazine</h3>\n<blockquote>\n<p>A round-up of museums and archives that have released high resolution images into the public domain</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://apollo-magazine.com/open-access-image-libraries-a-handy-list/\">apollo-magazine.com/open-access-image-libraries-a-handy-list</a></p>\n<h3>Digital Art History Directory</h3>\n<blockquote>\n<p>The Digital Art History Directory (DAHD) is an open-access publication containing a database of digital art history projects and information on data sources, best practices in Digital Art History project construction, preservation, and web archiving. Intended to be the largest, most comprehensive, and inclusive collection of information on Digital Art History and to function as a tool and living resource, rather than a static publication, the DAHD provides a platform for discovery, sharing, and research of Digital Art History.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://dahd.hcommons.org/open-image-collections/\">dahd.hcommons.org/open-image-collections</a></p>\n<h3>A Home is Announced</h3>\n<blockquote>\n<p>On this site you’ll find links to my Public Domain Print Shop, as well as posts for DIY tutorials, thrifting tips, my favorite books I’m reading, updates on our most recent home renovations and a little bit of real life sprinkled in along the way. Thanks for visiting my little corner of the internet and I hope you enjoy your stay!</p>\n</blockquote>\n<blockquote>\n<p>After spending thousands of hours sourcing free public domain art for The Public Domain Print Shop, I’ve learned a thing or two about where to find the best public domain art online.</p>\n</blockquote>\n<p><strong>URL:</strong> <a href=\"https://ahomeisannounced.com/2025/04/17/best-public-domain-art-online/\">ahomeisannounced.com/2025/04/17/best-public-domain-art-online</a></p>",
            "date_published": "2026-02-01T00:00:00-05:00",
            "tags": [
                "Resource",
                "Public Domain",
                "Inspiration",
                "Free",
                "Creative Commons"
            ]
        },
        {
            "id": "https://jonathanstephens.us/articles/logical-borders",
            "url": "https://jonathanstephens.us/articles/logical-borders",
            "title": "Logical Borders",
            "content_html": "<p>One of my favorite new things in CSS has been the logical properties rather than physical mappings. </p>\n<p>It helps so much to be writing CSS in a way that'll be more localization friendly, and more resilient to whatever sort of circumstances, with fewer workarounds because it's more inclusively designed. </p>\n<p>Throughout my site, I've been using <code>*-inline-*</code> and <code>*-block-*</code> for margins and paddings:</p>\n<table>\n<thead>\n<tr>\n<th>Function</th>\n<th>Physical Mapping</th>\n<th>Logical Property</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Margin start of inline</td>\n<td><code>margin-left</code></td>\n<td><code>margin-inline-start</code></td>\n</tr>\n<tr>\n<td>Margin start of block</td>\n<td><code>margin-top</code></td>\n<td><code>margin-block-start</code></td>\n</tr>\n<tr>\n<td>Padding end of inline</td>\n<td><code>padding-right</code></td>\n<td><code>padding-inline-end</code></td>\n</tr>\n<tr>\n<td>Padding end of block</td>\n<td><code>padding-bottom</code></td>\n<td><code>padding-block-end</code></td>\n</tr>\n</tbody>\n</table>\n<p>They're so much better!</p>\n<p>But, I came up with a challenge that I didn't know how to address: borders. </p>\n<p>I don't like using <code>border-top</code> or <code>border-left</code> if I'm using logical properties elsewhere. The inconsistency bugs me, but it's also part of learning and building a more resilient website. </p>\n<p>So, I took a look to figure out what to use instead.</p>\n<table>\n<thead>\n<tr>\n<th>Physical Mapping</th>\n<th>Logical Property</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>border-top-left-radius</code></td>\n<td><code>border-start-start-radius</code></td>\n</tr>\n<tr>\n<td><code>border-top-right-radius</code></td>\n<td><code>border-start-end-radius</code></td>\n</tr>\n<tr>\n<td><code>border-bottom-left-radius</code></td>\n<td><code>border-end-start-radius</code></td>\n</tr>\n<tr>\n<td><code>border-bottom-right-radius</code></td>\n<td><code>border-end-end-radius</code></td>\n</tr>\n</tbody>\n</table>\n<p>That's cool, that answers my question. </p>\n<p>But, borders have more to them than <code>margin</code> or <code>padding</code>. They have <em>edges</em>. Can I style specific lines too, using logical properties?</p>\n<p>Yep!</p>\n<table>\n<thead>\n<tr>\n<th>Physical Mapping</th>\n<th>Logical Property</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>border-top</code></td>\n<td><code>border-block-start</code></td>\n</tr>\n<tr>\n<td><code>border-bottom</code></td>\n<td><code>border-block-end</code></td>\n</tr>\n<tr>\n<td><code>border-left</code></td>\n<td><code>border-inline-start</code></td>\n</tr>\n<tr>\n<td><code>border-right</code></td>\n<td><code>border-inline-end</code></td>\n</tr>\n</tbody>\n</table>\n<p>Cool! So that means, that I can even do things a bit cleaner for styling <em>just</em> the top and bottom borders, or the left and right borders, using <code>border-block</code> and <code>border-inline</code> respectively. </p>\n<p>Then, we can go into the specifics of each:</p>\n<ul>\n<li><code>border-*-*-width</code></li>\n<li><code>border-*-*-style</code></li>\n<li><code>border-*-*-color</code></li>\n</ul>\n<p>Woohoo!</p>\n<p>For more on this, and lots of more logical properties, Sitepoint has <a href=\"https://www.sitepoint.com/css-logical-properties-guide/\">a logical properties guide</a>—<em>very</em> helpful referencing and figuring this out! They've also created &amp; shared <a href=\"https://uploads.sitepoint.com/wp-content/uploads/2024/04/1712127812cheatsheet.pdf\">a logical properties <code>.pdf</code> cheat sheet</a>, too!</p>",
            "date_published": "2025-08-02T00:00:00-04:00",
            "tags": [
                "CSS",
                "Logical Properties",
                "Localization",
                "Web Development"
            ]
        },
        {
            "id": "https://jonathanstephens.us/articles/so-you-want-a-website",
            "url": "https://jonathanstephens.us/articles/so-you-want-a-website",
            "title": "So, you want a website",
            "content_html": "<p>If you're wanting or needing to create a website, but are overwhelmed with all the things that come from making it a reality, this is for you. </p>\n<p>A website <em>can</em> be a very simple thing to make. Technically, all that's required is an <code>.html</code> file—you don't even have to host the file anywhere, it can be on your computer and you have a website! But, that requires some coding work that is likely out of scope, and most people tend to want more than that. </p>\n<p>To ground this more in reality, a website can be broken down into a few different parts. </p>\n<h2>The minimum</h2>\n<h3>A domain name</h3>\n<p>This is what people type into the browser to navigate to your website. It should align with whatever thing you're trying to build, or be near it. If you're building a personal website, loads of people use their names—myself included. If you're building personal brand, your name may not be the path you want to take. Rather, some sort of company name. Whatever you choose, try to make it: short, memorable, and to the point. </p>\n<h3>A host</h3>\n<p>This is where the code of your website lives. For most of us, that means we purchase shared disk space on a computer somewhere, because we don't need full dedicated servers. If we want full ownership of a server, there's also options of purchasing a dedicated server hosting package—meaning no one else is sharing the disk space with you. That tends to be more expensive but you get better service from the hosting provider. </p>\n<p>If you're working with an agency, or a comrade that's helping you build your website, sometimes they can offer hosting space as part of working with them. It makes things easier if you want longer-term support—sometimes with additional hour-budgets baked in for incremental improvements throughout the year. Some humans even have at-home servers—computers dedicated for web hosting—for more control. </p>\n<p>Whatever your situation, it comes down to how much you want to learn, budget, and desired scope of control.</p>\n<h3>The content</h3>\n<p>This is a biggie that'll be it's own section below—there's a lot of parts to this—but basically: you need to have stuff to put on the site. The content's built using layers of HTML, CSS, and Javascript—the web page's structure, style, and interaction; respectively. </p>\n<p>This is where lots of the website-builders come in. Services like Squarespace, Wordpress, Wix, GoDaddy, and others come in. Their goal is to make it as simple as possible for anyone to make a website. You don't have to worry about the code—just the content. There are other website builders that can help generate and build the code—Webflow, Nordcraft, Framer—for more specialized folks like web designers and web developers. These are all considered \"no-code\" and \"low-code\" tools to help throughout. </p>\n<p>Your choice of tooling can have significant impact on your site's maintenance and upkeep. But, in the end, it doesn't really matter how the content gets translated into a live website. What matters is that there's something on the website. </p>\n<h3>Recap</h3>\n<p>There are more things to consider for each of these minimum aspects of websites. Does some other website have a similar domain name, or URL, that you wouldn't want people accidentally navigating to? Is your hosting near where your site's visitors will be located (affecting the speed of download and viewing)? What even should you put on the website?! We won't review all those questions now.</p>\n<p>Remember: there are three things, <em>minimum</em>, you need for a website:</p>\n<ul>\n<li>a domain name (URL)</li>\n<li>a host (a computer)</li>\n<li>the content (what's on the site)</li>\n</ul>\n<h2>The site's purpose</h2>\n<p>Now we're going to start talking about The Content. We'll go through the basic questions first:</p>\n<ul>\n<li>Why do you need one? </li>\n<li>What do you need it to do? </li>\n<li>How will you use it? How will visitors use it? </li>\n<li>Where will you share it? Where will visitors find it? </li>\n<li>When will you update it? </li>\n<li>Who should be using it? </li>\n</ul>\n<p>These are basic questions that will help support figuring out the rest of the site.</p>\n<h3>Why do you need a website?</h3>\n<p>Apart from \"everybody says I need one\" there's one great reason for everyone:</p>\n<p>You own the space. </p>\n<p>Likely, you'll have a few or slew of social accounts. These are <em>channels</em> to drive people to your website. You don't control—or own—other company's spaces. They'll make decisions that can affect The Algorithm that can drastically impact the efficacy of that channel. To the detriment and benefit (not mutually exclusive). </p>\n<p>They're seeking to improve <em>their</em> business. Not yours. They do this through a variety of means:</p>\n<ul>\n<li>showing posts less often because you link to another site;</li>\n<li>hide your content because they decide it needs to be hidden;</li>\n<li>force others to log in and create accounts to access your content (limiting the reach of potential clients discovering you organically). </li>\n</ul>\n<p>By having a website, you own the space and can do with it what you want.</p>\n<p>That's a reason for most humans that have websites. </p>\n<p>Now, dig into the question: <em>why do <strong>you</strong> need a website?</em></p>\n<h3>What do you need it to do?</h3>\n<p>Websites can do all sorts of things that feel magical. But, as with all magick: it comes from purposeful intent. </p>\n<p>These are some categories of websites, defined with the need they fulfill:</p>\n<ul>\n<li><strong>E-commerce</strong>: customers can buy things from you via your website, a digital storefront. </li>\n<li><strong>Brochure</strong>: people learn about you, your business, and services—and can get in touch with you to inquire or procure.</li>\n<li><strong>Product</strong>: your business is selling a thing—ethereal, service, artifact.</li>\n<li><strong>Blog</strong>: you regularly publish articles, personal opinions, or professional perspectives. </li>\n<li><strong>Social Network</strong>: your users can connect, share content, and interact socially. </li>\n<li><strong>Portfolio</strong>: showcasing professional or creative work, to demonstrate acumen and skill.</li>\n<li><strong>So many more</strong>: there's many more types of websites, but these are some of the ones that most popular websites are or have some flavor of worked into them. </li>\n</ul>\n<p>When there's many more than one of these types of purposes on or for a website, it's more accurately named a <em>web platform</em>. </p>\n<p>By giving name to these needs, in such a way, it can help refine &amp; define the path you take on building your website—both for yourself and when working with others building it for you. </p>\n<h2>How will you &amp; visitors use it?</h2>\n<p>These are two important questions to put perspective into the path you'll take on getting the website up. </p>\n<p>For a brochure website, <em>you</em> may use it for:</p>\n<ul>\n<li>sharing references;</li>\n<li>detailing service list;</li>\n<li>setting prices;</li>\n<li>describing process;</li>\n<li>listing policies;</li>\n<li>content marketing;</li>\n<li>advertising campaigns;</li>\n<li>and the list goes on. </li>\n</ul>\n<p>Remember, it's <em>your</em> space where you can do whatever you want in the space. What will you use it for? </p>\n<p>Your visitors, though, there's other sorts of questions:</p>\n<ul>\n<li>will they need to log in to see content or communications? </li>\n<li>will they contact you on your website via a form? </li>\n<li>will they read advice, direction, or opinions you share (to determine if you're someone to work with)?</li>\n</ul>\n<p>What questions could you list, that potential visitors may be looking for answers to? </p>\n<p>Getting into the mindset of your potential customers helps give shape to your website's content. </p>\n<h3>Where will you share it &amp; visitors find it?</h3>\n<p>This one is important to consider. Not a SUPER big deal, but it does help in starting to think about marketing strategy and the intention of the website. </p>\n<p>Typically, this would be the URL you have on all your personal and professional social media profiles. </p>\n<p>It also influences how the places.</p>",
            "date_published": "2025-07-23T00:00:00-04:00",
            "tags": [
                "Guide"
            ]
        },
        {
            "id": "https://jonathanstephens.us/articles/audhd-and-motivation",
            "url": "https://jonathanstephens.us/articles/audhd-and-motivation",
            "title": "AuDHD and Motivation",
            "content_html": "<p>Realizing, exploring, and seeking understanding of my neurodivergence has been around neuronormative concepts of productivity—slowly dismantling life-long internalized ableism, compounded by lack of awareness &amp; self criticism.    </p>\n<p>The things I beat myself up for has changed. These are the things that I know <em>how</em> to do but <em>just can't</em> seem to. Or, things  I <em><em>have</em></em> to get done but get distracted by more interesting or lesser things. The self criticism still happens, but I <em>try</em> to do it less. Each morning is a new, different day. </p>\n<p>Most of this change has been wrought through diverse, intersectional research—passive via social streams, active via the internet, books, and reflection—into ADHD, Autism, Disability, neuroscience, gender, labor, and a slew of others. </p>\n<p>Today, I'm focusing on one of the biggies—</p>\n<p><strong>motivation.</strong></p>\n<h2>Introduction</h2>\n<h3>Context &amp; Perspective</h3>\n<p>I'm sharing these thoughts and advice coming from a complex neurotype of AuDHD. AuDHD is a name coined by its community for differentiating the gap between lived experiences of ADHD and Autism. They're closely related in many ways, with similar behavior patterns and diagnostic criteria, and a very high comorbidity rate with the two. </p>\n<p>When talking about ADHD or Autism, below, I'm coming from a place of unraveling the threads of both. Seeking understanding around the internal &amp; external Chaos of ADHD and a need for structural &amp; logical Order as they Conflict, Clash, and Conflue. </p>\n<h3>Neuroaffirmative</h3>\n<p>When sharing any resources, I try to make sure the ones I use are founded in science and lived experiences. </p>\n<p>The Pathology Paradigm—the framework that Autism or ADHD are things that need to \"be fixed\" or \"a disorder\" or something that \"needs a cure.\" I more closely align with the Neurodiversity Paradigm. </p>\n<p>This comes down to the fact that brains &amp; minds are diverse, there's no \"normal\" or \"right\" style of mind, and social dynamics that manifest from neurodivergence also manifest in other forms of diversity.[^ Walker, N. (2013). Throw Away the Master’s Tools: Liberating Ourselves from the Pathology Paradigm. Neuroqueer. Retrieved July 9, 2025, from <a href=\"https://neuroqueer.com/throw-away-the-masters-tools/\">https://neuroqueer.com/throw-away-the-masters-tools/</a>]</p>\n<p>There's a lot of resources out nowadays around ADHD, Autism, and AuDHD. There's also a <em>lot</em> of people that think it's a way to make easy money, or come up with things or concepts that don't have any grounding in the scientific method or thoroughly cited research.</p>\n<h2>Understanding Motivation</h2>\n<p>There are a few things that ground understanding Motivation—my relationship with it, experience of it, and difficulty in finding it. Most come down to the fact of <em>my</em> bodymind is Differently Wired; thus—I need Different Things to spark momentum, cultivating combustion.</p>\n<h3>Interest-based Nervous Systems</h3>\n<p>Neurotypicals—people who aren't neurodivergent; \"normal people\"—have an <em>importance-based nervous system</em>, versus AuDHDers—also inclusive of ADHDers and Austists. When taking a look at motivation, it's a critical framework of the neurotype to understand. </p>\n<ul>\n<li><strong>Importance-based systems</strong> prioritize tasks based on responsibility and external pressures.</li>\n<li><strong>Interest-based systems</strong> drive motivation through personal engagement and curiosity[^ Neff, M. A. (n.d.). Interest-Based Nervous System: Understanding ADHD and motivation - Neurodivergent Insights. Neurodivergent Insights. <a href=\"https://neurodivergentinsights.com/interest-based-nervous-system/\">https://neurodivergentinsights.com/interest-based-nervous-system/</a>]</li>\n</ul>\n<p>It's a <cite>framework for understanding how our brains respond to stimuli and regulate attention based on personal interest rather than importance or reward.</cite> [^ NeuroLaunch.com. (2024, August 4). The Interest-Based Nervous System: Understanding its impact on ADHD and beyond. <a href=\"https://neurolaunch.com/interest-based-nervous-system/\">https://neurolaunch.com/interest-based-nervous-system/</a>]</p>\n<p>The AuDHD brain needs <em>different</em> motivators than \"you gotta,\" \"this is important,\" \"if you don't, shit happens.\" There's an acronym, PINCH that's helpful for remembering more aligned, core motivators for AuDHDers:</p>\n<blockquote>\n<ul>\n<li><strong>Passion (And I like to add Play)</strong>: Engaging in activities that are enjoyable and intrinsically motivating.</li>\n<li><strong>Interest</strong>: Focusing on tasks that are inherently fascinating and captivating.</li>\n<li><strong>Novelty</strong>: Seeking out new, shiny, and exciting experiences to maintain engagement.</li>\n<li><strong>Competition (Cooperation or Challenge)</strong>: Adding an element of competition, working cooperatively, or turning tasks into challenges to make them more engaging.</li>\n<li><strong>Hurry (Urgency)</strong>: Completing tasks under time pressure to create a sense of urgency. [^ also comes from Dr. Megan Anna Neff's Neurodivergent Insights article, Interest-Based Nervous System. A direct quote.]</li>\n</ul>\n</blockquote>\n<p>It's why \"just do it\" is a shitty slogan, phrase, and aphorism that gets bandied about. </p>\n<p><em>\"Just do it\"</em> does not work for us. </p>\n<p>For ADHDers, there's the <a href=\"https://jonathanstephens.us/links/adhd-novelty-urgency-interest-triad\">Novelty-Urgency-Interest Triad</a>, where motivation is a construct within a complex coalescence of need. For Autists, there's the monotropic trait where minds have <cite>attention pulled more strongly towrds a smaller number of interests at any given time, leaving fewer resources for other processes.</cite>[^ Monotropism. (2022, May 19). Monotropism. <a href=\"https://monotropism.org/\">https://monotropism.org/</a>].</p>\n<h3>Time; Transitions; and Inertia</h3>\n<p>One of my biggest challenges, ADHD-wise, is the concept of time. I'm time-blind in many ways, and don't necessarily orient myself in a single stream or flow of time. When you're doing something new, say traveling to a new place, it can seem like time slows down. Your brain is sponging up and taking in all the <em>new</em> things that it usually blurs &amp; blends away from conscious awareness because its a lazy muscle that tries to take as many shortcuts it can. </p>\n<p>Time is a thing that can be a contributing factor to motivation—e.g. the Novelty-Urgency-Interest Triad—supplying the urgency to a situation to create that motivation. I wish artificial, self-imposed deadlines worked for me <em>(if they do for you, fantastic! Use that tool!)</em>. Alas.  </p>\n<p>So, when sitting down to do a thing I need to do, that I plan to do, I have to think what <em>transition</em> would be the most beneficial to get that done. If it's at the computer, is there something I can do to help me point my focus towards the thing to get done? Can I give myself 15 min of \"fun time\" before (as a motivator) and 15-min of \"fun time\" after as a reward? Understanding and planning for transitions—both in-to and out-of—is one of my biggest motivation hacks that helps move more fluidly through spacetime. </p>\n<p>Borrowing from the Autistic Community, there's also a concept they've named called <em>autistic inertia</em>. This borrow-word from physics stays true to its original meaning—the tendency that objects have to either continue moving or staying still. In autistic inertia, getting started is the difficult challenge. It's from the executive function challenges shared with ADHD (planning, prioritizing, and task switching), movement (starting, follow-through, stopping), and arousal (depersonalization, apathy, detachment)[^ Buckle, K. L. (2022, May 27). The initiative Triad – Autistic Inertia. Autistic Inertia. <a href=\"https://autisticinertia.com/2022/05/the-initiative-triad/\">https://autisticinertia.com/2022/05/the-initiative-triad/</a>]. Just doing the thing is hard—like a flywheel, it's hard to get started but once you do...it goes a lot easier. </p>\n<p>This is why I clump these three concepts together, around motivation. It's not \"motivation\" in a classic sense. It's about creating the time, space, and momentum for doing. </p>\n<ul>\n<li>Create bounds of time, and plan to do a thing in that time. </li>\n<li>Plan in transitions to get the thing done, so that it's easier to get into it and come out.</li>\n<li>Checking off smaller, tangential tasks can build inertia for getting the thing done easier (also could be part of the transition). </li>\n</ul>\n<h3>Rhythms &amp; Practices</h3>\n<p>For me, one of the best things around motivation is trying to create the structures and environment that help me get things done when I <em>don't</em> have motivation to do the things. The meds? They help...tremendously. They bring me clarity, focus, and help me find words I'd normally not have access to.</p>\n<p>But they're not all that I need, when intentionally curating my environment &amp; practices. </p>\n<p>I need the structure of doing things through a routine, and being very mindful of the area around me. Noise cancelling headphones are a godsend. As is a quiet place. Then, rather than working towards <em>goals</em> I orient myself towards maintaining <em>rhythms &amp; practices</em> that move me towards getting things done. Not always in one go. Progress is progress.</p>\n<p>Even within a rhythm—or routine—there's variability based on need. Sometimes, I'll come to a moment of the day and be like, \"I need to do something fun for a bit.\" That's fuel for my other times. </p>\n<p>This comes down to understanding what your own cycles, rhythms, and needs are. When do you feel the best with what you're working on? Are you a morning person and need to schedule the \"getting shit done\" time in the morning when executive function is strongest? When you don't sleep well, how does your interest &amp; ability to get things done change from there? Understanding what works best for you is important. This can be:</p>\n<blockquote>\n<ol>\n<li><em>Biological rhythms:</em> Circadian cycles and hormonal fluctuations can impact ADHD symptoms.</li>\n<li><em>Environmental stressors:</em> Work deadlines, social pressures, or changes in routine can trigger shifts in ADHD cycles.</li>\n<li><em>Medication effects:</em> For those on ADHD medication, the effectiveness can vary throughout the day, influencing symptom intensity.</li>\n<li><em>Sleep patterns:</em> Quality and quantity of sleep significantly affect ADHD symptoms and cycle intensity.</li>\n<li><em>Diet and exercise:</em> Nutritional intake and physical activity levels can modulate ADHD symptoms and cycle duration. [^ NeuroLaunch.com. (2024b, August 4). Understanding ADHD cycles: Navigating the ups and downs of attention deficit hyperactivity disorder. <a href=\"https://neurolaunch.com/adhd-cycles/\">https://neurolaunch.com/adhd-cycles/</a>]</li>\n</ol>\n</blockquote>\n<h3>Energy &amp; Spoons</h3>\n<p>Managing energy is a big thing. AuDHD wise, I need to do things that I enjoy and that get me moving. If I don't, I won't be able to get the <em>other</em> things done that I need to. Often times, I have to reflect and take a look at the balance of my <em>energy <strong>givers</strong></em> and <em>energy <strong>takers</strong></em>. If there's something in the day that will take a lot of energy to do—physical, mental, spiritual, social—I have to plan the rest of the day around that. If it's a big taker, I need to build energy towards the moment, then off-ramp and decompressing after. </p>\n<p>It's similar to the psychedelic tripping concept of Set and Setting. I need to make sure I come into the experience or task—set—with the \"right\" mindset or my mind will work against me. At the same time, even if coming into the thing with a good (mind)set...but the Setting is off—unfamiliar, distracting, socially unsafe—there's an additional barrier to doing the thing. </p>\n<p>There's a concept of <em>spoon theory</em> that's been around the Disability Community for a long while now. Originally written and introduced by <a href=\"https://www.butyoudontlooksick.com/articles/written-by-christine/the-spoon-theory/\">Christine Miserandino in 2011</a>, Spoon Theory is a way she described how she managed energies as someone with Lupus, to a friend. </p>\n<blockquote>\n<p>To simplify it, each spoon equals a unit of energy.</p>\n<p>People who are not living with health conditions often wake up with an unlimited amount of energy. They can get out of bed, shower, dress, make meals, exercise, go to work, visit friends – all without a great deal of thought or planning. </p>\n<p>However, people living with physical health conditions, disabilities or mental illnesses may only start out each day with a certain amount of energy – or spoons. It varies person to person, and only you know how many spoons you have. [^ Charity, B. (2023, April 20). What’s spoon theory? The metaphor helping people with chronic illnesses and disabilities plan their days. Support for Neurological Conditions | the Brain Charity. <a href=\"https://www.thebraincharity.org.uk/whats-spoon-theory/\">https://www.thebraincharity.org.uk/whats-spoon-theory/</a>]</p>\n</blockquote>\n<p>Being aware of your spoons, and how you use your spoons, <em>and</em> making sure you have enough for the next and coming days is important. If you don't have the energy or spoons for something, and you're trying to \"just do it\" and motivate yourself that way—for me, I know, I'd be doomed to fail. </p>\n<h2>Resources</h2>\n<h3>Articles</h3>\n<ul>\n<li><a href=\"https://neurolaunch.com/how-to-get-motivated-with-adhd/\">ADHD Motivation Strategies: How to Get Motivated When Your Brain Works Differently</a> from NeuroLaunch</li>\n<li><a href=\"https://speakingofautismcom.wordpress.com/2020/03/24/task-initiation-executive-functioning-and-autistic-inertia/\">Task Initiation, Executive Functioning, and Autistic Inertia</a> from Speaking of Autism</li>\n<li><a href=\"https://www.autscape.org/2019/programme/handouts/Kalen%20-%20Getting%20unstuck.pdf\">Getting Unstuck: Anti-Inertia Strategies</a> from Autscape</li>\n<li><a href=\"https://neurolaunch.com/autistic-inertia/\">Autistic Inertia: Causes, Impact, and Coping Strategies</a> from Neurolaunch</li>\n<li><a href=\"https://neurolaunch.com/adhd-cycles/\">Understanding ADHD Cycles: Navigating the Ups and Downs of Attention Deficit Hyperactivity Disorder</a> from NeuroLaunch</li>\n<li><a href=\"https://adhdneuro.com/blog/adhd-focus-boost-how-music-rhythms-can-aid-concentration\">ADHD Focus Boost: How Music Rhythms Can Aid Concentration</a> from ADHD Neuro</li>\n<li><a href=\"https://neurolaunch.com/interest-based-nervous-system/\">The Interest-Based Nervous System: Understanding Its Impact on ADHD and Beyond</a> from NeuroLaunch</li>\n<li><a href=\"https://www.additudemag.com/adhd-motivation-problems-getting-started-on-tough-projects/\">The Mystery of ADHD Motivation, Solved</a> from ADDitude Magazine</li>\n<li><a href=\"https://www.verywellmind.com/5-things-that-motivate-an-adhd-brain-7967417\">I&#039;m a Neurodivergent Psychologist &amp; These 5 Things Get My ADHD Brain Into Gear</a> from verywellmind. </li>\n<li><a href=\"https://www.reddit.com/r/ADHD/comments/ioi1my/i_went_through_700_reddit_comments_and_collected/\">I went through 700 reddit comments and collected 131 ADHD pro-tips!</a> on Reddit</li>\n<li><a href=\"https://blackgirllostkeys.com/adhd/how-depression-impacts-my-adhd-symptoms/\">How Depression Impacts my ADHD Symptoms</a> from Black Girl, Lost Keys</li>\n<li><a href=\"https://blackgirllostkeys.com/adhd/5-ways-to-get-work-done-when-you-have-adhd/\">5 Ways to Get Work Done When You Have ADHD</a> by Black Girl, Lost Keys</li>\n</ul>\n<h3>Youtube</h3>\n<ul>\n<li><a href=\"https://howtoadhd.com/\">How to ADHD</a><ul>\n<li><a href=\"https://www.youtube.com/watch?v=OM0Xv0eVGtY\">ADHD and Motivation</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=MeVSJbxfSo8\">ADHD and Productivity: What You Need to Know</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=4gdpvLQjdrE\">The Truth Behind Why Trying Harder Doesn&#039;t Work (When You Have ADHD)</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=-c1HY-vrmIQ\">How to Rebuild Your Routines When Everything Changes</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=JrdeuudWMLc\">Why MORE is Sometimes LESS Effective for ADHD Brains</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=w7eWb0nINPg\">How to Not NEED as Much Motiviation to do the Thing</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=-6WCkTwW6xg\">How to Give Your Brain the Stimulation It Needs</a></li>\n</ul>\n</li>\n<li>Caren Magill, ADHD Coach<ul>\n<li><a href=\"https://www.youtube.com/watch?v=SuENZbvkgmA\">Task Initiation + ADHD &mdash; Why we struggle to get started</a></li>\n<li><a href=\"https://www.youtube.com/watch?v=ZvEx02DFZQA\">Why Self-Motivation Feels Impossible with ADHD &amp; How to Fix It</a></li>\n</ul>\n</li>\n<li><a href=\"https://www.youtube.com/watch?v=PL1x1KailaQ&amp;list=PLEfAgj2uwxyiYKaygInONi5hdnfORrOGg\">Doing Less...While Doing More?</a> from Intentional Oversharing by Neely Kimey </li>\n<li><a href=\"https://www.youtube.com/watch?v=XU5LPcpF_tI\">Low Tech Solutions to ADHD Issues &mdash; 1: Task Organization &amp; Follow Through</a> by Russell Barkley</li>\n<li><a href=\"https://www.youtube.com/watch?v=0fMxuRPKYrE\">ADHD &amp; Energy Management The Spoon Theory Explained from Authentically ADHD</a> by Carmen Irace</li>\n<li><a href=\"https://www.youtube.com/watch?v=4C7kdjXGoZw\">Episode 161: ADHD and Motivation</a><br />\nfrom the ADHD Adults Podcast</li>\n<li><a href=\"https://www.youtube.com/watch?v=tKqvh3-Ic1Q\">ADHD VS ADULTING: Why so many of us feel like bad adults and what to do about it</a> by ADHD Love</li>\n</ul>\n<h3>Podcasts</h3>\n<ul>\n<li>ADHD Manual<ul>\n<li><a href=\"https://theadhdmanual.com/2019/01/15/the-first-pillar-of-adhd-an-interest-based-nervous-system/\">The First Pillar of ADHD: An Interest-Based Nervous System</a></li>\n<li><a href=\"https://theadhdmanual.com/2021/09/30/episode-34-executive-function-chronicles-task-initiation/\">Executive Function Chronicles: Task Initiation</a></li>\n<li><a href=\"https://theadhdmanual.com/2022/02/10/episode-41-executive-function-chronicles-prioritization/\">Executive Function Chronicles: Prioritization</a></li>\n</ul>\n</li>\n<li>Translating ADHD<ul>\n<li><a href=\"https://translatingadhd.com/2025/03/31/the-cost-of-perfection-understanding-internalized-ableism-in-adhd/\">The Cost of Perfection: Understanding Internalized Ableism in ADHD</a></li>\n</ul>\n</li>\n<li>The Vibe With Ky Podcast<ul>\n<li><a href=\"https://thevibewithky.com/2025/05/21/why-routines-are-hard-for-adults-with-adhd/\">Why Routines Are Hard for Adults with ADHD</a></li>\n</ul>\n</li>\n</ul>\n<h3>Instagram</h3>\n<ul>\n<li><a href=\"https://www.instagram.com/p/DG_AjLuMMZa/\">adhd_couple</a></li>\n<li><a href=\"https://www.instagram.com/the_mini_adhd_coach/\">the_mini_adhd_coach</a></li>\n<li><a href=\"https://www.instagram.com/danidonovan/\">danidonovan</a></li>\n<li><a href=\"https://www.instagram.com/thevibewithky\">thevibewithky</a></li>\n<li><a href=\"https://www.instagram.com/adhd_alien\">adhd_alien</a></li>\n</ul>",
            "date_published": "2025-07-06T00:00:00-04:00",
            "tags": [
                "AuDHD",
                "ADHD",
                "Autism",
                "Motivation"
            ]
        },
        {
            "id": "https://jonathanstephens.us/articles/london",
            "url": "https://jonathanstephens.us/articles/london",
            "title": "London",
            "content_html": "<p>In my travels, I've visited London a few times now. Here is a list of recommendations on where to travel, what to see, and what you can do in London. </p>\n<p>In terms of how to travel, I've found it best to find an area of the city, plan a few explicit places you want to go to, then explore inside that area.</p>\n<p>In addition to what I'm writing below, here are a couple sites I usually do my research for interesting places and things to do while traveling:</p>\n<ul>\n<li><a href=\"https://www.lonelyplanet.com/england/london\">Lonely Planet</a></li>\n<li><a href=\"https://www.atlasobscura.com/things-to-do/london-england\">Atlas Obscura</a></li>\n</ul>\n<p>Also, <em>always</em> look around for Free Walking Tours around the cities! There's loads that occur, and the tour-guides are paid through the tips at the end. Here are some for London:</p>\n<ul>\n<li><a href=\"https://www.guruwalk.com/london\">Guru Walk</a></li>\n<li><a href=\"https://freetoursbyfoot.com/london-tours/\">Free Tours by Food</a></li>\n<li><a href=\"https://www.londonwithalocal.com/\">London with a Local</a></li>\n<li><a href=\"https://www.freetour.com/london\">FreeTour.com</a></li>\n</ul>\n<h2>Markets</h2>\n<h3>Camden Market</h3>\n<p>This is a fun place, and one of London's first crafts and antiques markets in an old builders yard. You can explore a massive maze of food, shops, and flea market in general. Many different types of stalls—from steampunk to dapper clothes. The surrounding area has loads of street art, music venues, and places to visit too. </p>\n<ul>\n<li><strong>Opening hours: </strong><ul>\n<li>Market: 10:00 to late. </li>\n<li>Food: 11:30–21:00</li>\n<li>Shops: 12:00–18:00. </li>\n</ul>\n</li>\n<li><strong>Website:</strong> <a href=\"https://camdenmarket.com/\">camdenmarket.com</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/joemFBtxe1NcCg2w7\">Camden Lock Place, London, GB NW1 8AF</a></li>\n</ul>\n<h3>Brixton Village &amp; Market</h3>\n<p>Brixton is one of the Bohemian places around London. The market itself is one of the most diverse markets with multiple arcades and places around. There's a big food and bar scene, daily markets with international traders, local crafts &amp; events.  </p>\n<ul>\n<li><strong>Opening hours:</strong> 08:00–00:00</li>\n<li><strong>Website:</strong> <a href=\"https://brixtonvillage.com/\">brixtonvillage.com</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/nRppbbzoBxCZFjsc9\">Coldharbour Lane, Brixton, London, SW9 8PS</a></li>\n</ul>\n<h3>Leadenhall Market</h3>\n<p>If you want to visit a market that began life as a forum in Roman London, then a market since the 1300's this place is for you. It's also the place where they entered the Leaky Cauldron in the first Harry Potter movie. Small shops, nice old bar to visit called The Lamb Tavern—opened since 1780. </p>\n<ul>\n<li><strong>Website:</strong> <a href=\"https://leadenhallmarket.co.uk/\">leadenhallmarket.co.uk</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/MXSGwH6vUtsyjSaJ6\">Gracechurch Street, London, EC3V 1LT</a></li>\n</ul>\n<h3>Greenwich Market</h3>\n<p>Another market in a different part of town, the Greenwich Market is another multiply-hundred year old market (established 1737). It offers a diverse array of things to do—antiques, art, books, crafts, fashion, jewelry shops, etc—with loads of food and drink places. There are also <a href=\"https://www.visitgreenwich.org.uk/greenwich-mean-time/\">loads of interesting museums around</a>, and it's just off the walk along the River Thames.</p>\n<ul>\n<li><strong>Opening hours:</strong> 10:00–17:30</li>\n<li><strong>Website:</strong> <a href=\"https://greenwichmarket.london/\">https://greenwichmarket.london/</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/TDuCS1Y95uspTCki6\">5B Greenwich Market, London SE10 9HZ, United Kingdom</a></li>\n</ul>\n<h3>Old Spitalfields &amp; Bricklane Markets</h3>\n<p>These two markets are similar to Camden Market but different in vibes, wares, and surroundings. There are loads of art galleries, street foods, fashion, crafts, etc. Just in Old Spitalfields: 43 places to eat and drink; 56 shops and stalls; 184 events through the year; and open seven days a week.</p>\n<ul>\n<li><strong>Opening hours:</strong> 10:000–18:00 most days</li>\n<li><strong>Website:</strong> <a href=\"https://oldspitalfieldsmarket.com/\">oldspitalfieldsmarket.com</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/tqNBNmiqaM1UZkDx5\">16 Horner Square, London E1 6EW, United Kingdom</a></li>\n</ul>\n<h2>Food</h2>\n<h3>Lanzhou Lamian Noodle Bar</h3>\n<p>This is one of the places I've been to many times, each trip to London. It's a delicious little dive of a noodle shop that has hand-pulled noodles. The broth is great, the noodles are great. It's a small shop but it's good for the price, filling, and good'n'warm for those cold days.</p>\n<ul>\n<li><strong>Website:</strong> <a href=\"https://lanzhounoodlebar.site/\">lanzhounoodlebar.site</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/VaXiYUKhxvHTQ6dE6\">33 Cranbourn St, London WC2H 7AD, United Kingdom</a></li>\n</ul>\n<h3>The Hawksmoor</h3>\n<p>If you're looking for a good Sunday Roast, a traditional English Sunday sorta meal, The Hawksmoor was one of the best I've ever had. They have loads of locations across London. Make sure to get a reservation, as a just in case. It's absolutely delicious. Kitchen hours can be slightly different than your individual dining hours, so make sure to check all's well.</p>\n<ul>\n<li><strong>Opening hours:</strong> ~11:45–21:00</li>\n<li><strong>Website:</strong> <a href=\"https://thehawksmoor.com/\">https://thehawksmoor.com/</a></li>\n<li><strong>Locations:</strong> <a href=\"https://thehawksmoor.com/menus/\">thehawksmoor.com/menus</a></li>\n</ul>\n<h3>The Chesterfield Mayfair</h3>\n<p>This was recommended for one of the best afternoon tea's. A British Afternoon Tea is kind of an important cultural moment of the area. The place looks beautiful, with loads of nice treats and teas. You need a reservation. </p>\n<ul>\n<li><strong>Opening hours:</strong> 12:30–17:00</li>\n<li><strong>Website:</strong> <a href=\"https://chesterfieldmayfair.com/dining-and-drinks/afternoon-tea\">chesterfieldmayfair.com</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/DuhqGR1bnmrxX4KH7\">35 Charles St, London W1J 5EB, United Kingdom</a></li>\n</ul>\n<h3>Goddards at Greenwich</h3>\n<p>For a very good British pie, Goddards was recommended to me by a friend. I haven't been, but a pie is one of those British foods that are very good and worth the a try. This one's been open since 1890, so should have a good atmosphere and all. </p>\n<ul>\n<li><strong>Opening hours:</strong> 10:00–19:30</li>\n<li><strong>Website:</strong> <a href=\"https://www.goddardsatgreenwich.co.uk/\">goddardsatgreenwich.co.uk</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/3HzgRsaoEug932Qj6\">22 King William Walk, Greenwich, SE10 9HU</a></li>\n</ul>\n<h2>Attractions</h2>\n<h3>Tower of London &amp; London Wall</h3>\n<p>If you want to see a Medieval castle or Roman walls—while taking a step \"back into Old London\"—this could be a fun place to explore. The Tower of London has a rich history of political prisoners and such. It's also across the the river and a walk from the London Bridge and The Shard (if you want to have a high level view of London but don't want to go to the Eye, the Shard can be a potential alternative). </p>\n<ul>\n<li><strong>Opening hours:</strong> 09:00–16:30</li>\n<li><strong>Website:</strong> <a href=\"https://www.hrp.org.uk/tower-of-london/\">hrp.org.uk/tower-of-london</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/mvsbYBijZWLAM8F97\">London EC3N 4AB, United Kingdom</a></li>\n</ul>\n<h3>King's Cross</h3>\n<p>This is the central hub to a lot of travel by metro and in the center of London. It's also where you can find Platform 9 3/4 (and a shop). Don't be disappointed that it's not actually on the platforms. Line's are long. </p>\n<h3>London Zoo</h3>\n<p>It's fun. A good day out and walking around the area. Tons of interesting things. I traveled into the zoo by boat, and would highly recommend. You can pick up a ticket, see quite a bit of London from the view of the water, then walk right into the zoo without waiting in line. </p>\n<ul>\n<li><strong>Opening hours:</strong> 10:00–16:00</li>\n<li><strong>Website:</strong> <a href=\"https://www.londonzoo.org/\">londonzoo.org</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/MpK9GQj6ASZVQ3347\">Outer Circle, Regent&#039;s Park, London NW1 4RY</a></li>\n</ul>\n<h3>The London Eye</h3>\n<p>This is a nice visit. See London from high in the sky on a ferris wheel. Buy tickets in advance that can help you skip the line. Before and after, walk around the area and explore. The area has life throughout the day, but at night fun things pop up. It is <strong>very much</strong> a tourist attraction, and priced so. </p>\n<ul>\n<li><strong>Opening hours:</strong> 11:00–18:00</li>\n<li><strong>Website:</strong> <a href=\"https://www.londoneye.com/\">londoneye.com</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/k2MyeZJsoUFdFEKi6\">Westminster Bridge Road, Riverside Building, County Hall, London, GB SE1 7PB</a></li>\n</ul>\n<h3>Kew Gardens, Richmond</h3>\n<p>The Kew Gardens are a Royal Botanical Gardens with loads to walk around and see. Tons of nice flora, outdoor artwork, and nature to see. Nearby is the Richmond Park, a royal park that also has fields and you can find deer. Really pretty to see. About thirty minutes to an hour's transit away from Central London. I really enjoyed the science and learning of it all. Beautiful greenhouses too.</p>\n<ul>\n<li><strong>Hours:</strong> 10:00–17:00</li>\n<li><strong>Website:</strong> <a href=\"https://www.kew.org/\">kew.org/kew-gardens</a></li>\n<li><strong>Address:</strong> <a href=\"https://www.kew.org/kew-gardens/visit-kew-gardens/getting-here\">Kew, Richmond, London, TW9 3AE</a></li>\n</ul>\n<h2>Parks</h2>\n<p>If you want to chill a bit, or to get a good run in, there are many great parks around the city. You'll stumble across them, but you can also go more purposefully. I'm listing a few I've visited.</p>\n<h4>Hyde Park</h4>\n<ul>\n<li><strong>Opening hours:</strong> 05:00–00:00 </li>\n<li><strong>Website:</strong> <a href=\"https://www.royalparks.org.uk/visit/parks/hyde-park\">royalparks.org.uk/visit/parks/hyde-park</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/Wjiv6rk92evNFDyx7\">Between Westminster, Chelsea, and Notting Hill</a></li>\n</ul>\n<h4>Regent's Park</h4>\n<p><strong>Opening hours:</strong><br />\n<strong>Website:</strong> <a href=\"https://www.royalparks.org.uk/visit/parks/regents-park-primrose-hill\">royalparks.org.uk/visit/parks/regents-park-primrose-hill</a><br />\n<strong>Address:</strong> <a href=\"https://maps.app.goo.gl/uvmniqwJpATD9QyTA\">Near Camden</a></p>\n<h2>Interesting Unique Places</h2>\n<h3>God's Own Junkyard</h3>\n<p>This was recommended to me by a friend and a bit sad I've never visited. It's a 37-year grown collection of neon signs. It's only open on weekends, but it looks like a brilliant place to visit.</p>\n<ul>\n<li><strong>Opening hours:</strong> 11:00–22:00 on Fridays and Saturdays; 11:00–18:00 on Sundays.</li>\n<li><strong>Website:</strong> <a href=\"https://www.godsownjunkyard.co.uk/\">godsownjunkyard.co.uk</a></li>\n<li><strong>Address:</strong>  <a href=\"https://maps.app.goo.gl/X6hGfYpvg4g9Jt2C8\">12, Ravenswood Industrial Estate, Shernhall Street, London, E17 9HQ</a></li>\n</ul>\n<h3>Catacombs and Crypts of London</h3>\n<p>London is a multi-thousand year-old city. It's continually been built on top of the previous city. As a part of that, there are quite a few interesting places to visit where you can explore. They're all over, and not all are generally accessible to the public, but here are some places to get you started:</p>\n<ul>\n<li><a href=\"https://chislehurst-caves.co.uk/\">Chislehurst Caves</a></li>\n<li><a href=\"https://thelondonbridgeexperience.com/\">London Bridge Experience&#039; Tombs</a></li>\n</ul>\n<h3>Leake Street Arches</h3>\n<p>If you're looking for some fantastic street art, you can check out Leake Street. It's London's longest graffiti wall, made from connecting eight former railways beneath the Waterloo station. There're independent restaurants and bars to make an event of it. </p>\n<ul>\n<li><strong>Website:</strong> <a href=\"https://www.leakestreetarches.london/\">leakestreetarches.london</a></li>\n<li><strong>Address:</strong> It's a connecting route, so there are multiple ways to get there with no defined address. But they have great <a href=\"https://www.leakestreetarches.london/gettinghere\">directions for getting there on their site</a>.</li>\n</ul>\n<h3>Forbidden Planet</h3>\n<p>An absolute massive graphic novel and book store in Covent Garden. Since I found it, I plan ahead and pack fewer books to take with me whenever going to London...I tend to leave with four to ten books in hand. It's wonderful. </p>\n<ul>\n<li><strong>Opening hours:</strong> 10:00–19:00, Monday through Saturday </li>\n<li><strong>Website:</strong> <a href=\"https://forbiddenplanet.com/\">forbiddenplanet.com</a></li>\n<li><strong>Address:</strong> <a href=\"https://maps.app.goo.gl/82cL8uhZoxrQu7SV7\">179 Shaftesbury Ave, London WC2H 8JR, United Kingdom</a></li>\n</ul>\n<h2>Free Museums</h2>\n<p>There are many, <em>many</em> museums around London. Luckily, quite a few of them are free to visit! They're concentrated in the area around the British Museum and Hyde Park. Just because they're free doesn't mean you don't need to book. Take a look at what they have around, then need to make a booking. </p>\n<ul>\n<li><a href=\"https://www.britishmuseum.org/\">The British Museum</a>- <a href=\"https://www.ucl.ac.uk/culture/grant-museum-zoology\">Grand Museum of Zoology</a></li>\n<li><a href=\"https://www.londonmuseum.org.uk/\">Museum of London</a></li>\n<li><a href=\"https://www.nhm.ac.uk/\">Natural History Museum</a></li>\n<li><a href=\"https://www.sciencemuseum.org.uk/\">Science Museum</a></li>\n<li><a href=\"https://www.vam.ac.uk/\">Victoria and Albert Museum</a></li>\n<li><a href=\"https://www.londonmuseum.org.uk/docklands/\">London Museum Docklands</a><br />\nThere are hundreds more museums in the city, like the <a href=\"https://www.sherlock-holmes.co.uk/\">Sherlock Holmes Museum</a></li>\n</ul>",
            "date_published": "2025-03-07T00:00:00-05:00",
            "tags": [
                "Travel",
                "Travel Guide",
                "London"
            ]
        }
    ]
}