Project Scope and ToDos
- Create a versatile blog site
- Create a framework that makes it easy to add external data to the site
- Give the site the capacity to replicate the logging and rating I do on Serialized and Letterboxd.
- Be able to pull down RSS feeds from other sites and create forward links to my other sites
- Create forward links to sites I want to post about.
- Create a way to pull in my Goodreads data and display it on the site
- Create a way to automate pulls from other data sources
- Combine easy inputs like text lists and JSON data files with markdown files that I can build on top of.
- Add a TMDB credit to footer in base.njk
- Make sure tags do not repeat in the displayed tag list.
- Get my Kindle Quotes into the site
- YouTube Channel Recommendations
- Minify HTML via Netlify plugin.
- Log played games
Day 21
Ok, I was able to publish the three most necessary Lexicons.
Now I want to get the others in!
Let's start with BaseBlocks. The version generated by my site comes out to:
{
"lexicon": 1,
"id": "at.markpub.facets.baseBlocks",
"defs": {
"main": {
"type": "object",
"properties": {
"byteSlice": {
"description": "Specifies the sub-string range a facet feature applies to. Start index is inclusive, end index is exclusive. Indices are zero-indexed, counting bytes of the UTF-8 encoded text. NOTE: some languages, like Javascript, use UTF-16 or Unicode codepoints for string slice indexing; in these languages, convert to byte arrays before working with facets. Byte slices can overlap.",
"type": "object",
"properties": {
"byteStart": {
"type": "integer"
},
"byteEnd": {
"type": "integer"
},
"required": [
"byteStart",
"byteEnd"
]
}
},
"horizontalRule": {
"description": "Place an `<hr>` element at the provided byte index.",
"type": "object",
"properties": {
"required": []
}
},
"yaml-front-matter": {
"description": "Identify a block of front matter at the top of the Markdown block. It is expected that this has a byteStart and byteEnd.",
"type": "object",
"properties": {
"required": []
}
},
"raw": {
"description": "Place raw text at the provided byte index. This is a powerful escape hatch for anything that can't be achieved with the other facet features, but use it with caution as it can easily break things if used incorrectly. Do not expect systems to render it.",
"type": "object",
"properties": {
"required": []
}
}
},
"required": [
"byteSlice",
"horizontalRule",
"yaml-front-matter",
"raw"
]
}
}
}
That doesn't work. I get instead:
[schema-json-parse]: json: cannot unmarshal array into Go struct field SchemaFile.defs.properties.properties of type lexicon.genericSchemaDef
error: linting issues detected
Hmmm, let's check the bluesky reference in their lexicons and compare. Also, look at an example of them in action.
Ok, I manually fiddled with it and it looks like there's a core problem with my byteSlice declaration. I had the required property in the wrong place. This does validate:
{
"lexicon": 1,
"id": "at.markpub.facets.baseBlocks",
"defs": {
"main": {
"type": "object",
"description": "Annotation of a sub-string within rich text.",
"required": [
"index",
"features"
],
"properties": {
"index": {
"type": "ref",
"ref": "#byteSlice"
},
"features": {
"type": "array",
"items": {
"type": "union",
"refs": [
"#horizontalRule",
"#yaml-front-matter",
"#raw"
]
}
}
}
},
"byteSlice": {
"type": "object",
"description": "Specifies the sub-string range a facet feature applies to. Start index is inclusive, end index is exclusive. Indices are zero-indexed, counting bytes of the UTF-8 encoded text. NOTE: some languages, like Javascript, use UTF-16 or Unicode codepoints for string slice indexing; in these languages, convert to byte arrays before working with facets.",
"required": [
"byteStart",
"byteEnd"
],
"properties": {
"byteStart": {
"type": "integer",
"minimum": 0
},
"byteEnd": {
"type": "integer",
"minimum": 0
}
}
},
"horizontalRule": {
"description": "Place an `<hr>` element at the provided byte index.",
"type": "object",
"properties": {
"suggestedSymbols": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64,
"knownValues": [
"~~~",
"----",
"<hr>"
]
}
}
},
"yamlFrontMatter": {
"description": "Identify a block of front matter at the top of the Markdown block. It is expected that this has a byteStart and byteEnd. Mark as placeInHead when you want the metadata translated to the HTML document's HEAD when it is rendered as its own page.",
"type": "object",
"properties": {
"placeInHead": {
"type": "boolean"
}
}
},
"raw": {
"description": "Place raw text at the provided byte index. This is a powerful escape hatch for anything that can't be achieved with the other facet features, but use it with caution as it can easily break things if used incorrectly. Do not expect systems to render it. Set that the block is HTML when it is intended to be raw HTML",
"type": "object",
"properties": {
"isHTML": {
"type": "boolean"
}
}
}
}
}
Gotta make changes to my rendering flow in order to make it render the old stuff the same and the facets code correctly. I'm going to commit the rendered lexicons so I can make sure my changes don't cause drift.
Ok, merge it all in, let's release and then I should be able to publish, right? Let's try it!
git commit -am "Merge pull request #4 from AramZS/support-rendering-facets"
Now log in goat account login -u markpub.at -p password-here and publish it! goat lex publish lexicons/at/markpub/facets/baseFormatting.json and goat lex publish lexicons/at/markpub/facets/baseBlocks.json
Ok, let's go to complete my example post:
I need to build my site's publication.
First upload an icon blob:
goat blob upload public/favicon/zs-favicon-1200-600.png
{
"$type": "blob",
"ref": {
"$link": "bafkreigulrn63fpqggwuifb6yh4zjbaq6vfc24ie3aiywyaxrlehjprj2m"
},
"mimeType": "image/png",
"size": 35086
}
{
"$type": "site.standard.publication",
"description": "Microblog and feed from Aram Zucker-Scharff. Essays, code samples, reviews, linkblog, and digital collections.",
"name": "Aram ZS | Digital Garden",
"url": "https://aramzs.xyz/",
"icon": {
"$type": "blob",
"ref": {
"$link": "bafkreigulrn63fpqggwuifb6yh4zjbaq6vfc24ie3aiywyaxrlehjprj2m"
},
"mimeType": "image/png",
"size": 35086
},
"preferences": {
"showInDiscover": true
}
}
Ok, let's check it:
goat lex validate ./public/standard.site.json
valid site.standard.publication record
Works!
goat record create ./public/standard.site.json --no-validate
at://did:plc:t5xmf33p5kqgkbznx22p7d7g/site.standard.publication/3mp64luhldr2l bafyreick4arfaeehbreuquwv7yzwhpkbdsys7nlycmj7hzfwow223oieou
Now let's edit the record for the post:
{
"$type": "site.standard.document",
"bskyPostRef": {
"$type": "com.atproto.repo.strongRef",
"cid": "bafyreigh7yods3ndrmqeq55cjisda6wi34swt7s6kkduwcotkgq5g5y2oe",
"uri": "at://did:plc:t5xmf33p5kqgkbznx22p7d7g/app.bsky.feed.post/3kulbtuuixs27"
},
"content": {
"$type": "at.markpub.markdown",
"text": {
"$type": "at.markpub.text",
"flavor": "commonmark",
"markdown": "\u003e When I envision the web, I picture an infinite expanse of empty space that stretches as far as the eye can see. It's full of fertile soil, but no seeds have taken root. That is, except for about an acre of it.\n - Molly White, [We can have a different web](/noteworthy/we-can-have-a-different-web/)\n\nThe future of the internet seems up in the air. Consumed by rotting behemoths. What we have now is failing, but it is also part of our every-day life, our politics, our society, our communities and our friendships. All of those are at risk, in part because the ways we communicate are under attack. The fate of the open web is inextricable from the other ways our world is in crisis. \n\nWe face down a seemingly endless series of political, social, economic, and medical disasters on a melting planet. There is no doubt that the internet is deeply integrated into everything that is going both right and wrong.\n\nAt this moment, [we are actively discussing how to build a future for our shared global telecommunications network](https://aramzs.xyz/lists/a-future-for-the-web/). This is good. We need this discussion. We also need to acknowledge that the wide open platform for infinite data, innovation and communication isn't a shelter from the disaster, but it *is* at the heart of everything we do. The day we could go back from that, even if we wanted to, is long gone. That means [rewilding the web](https://www.noemamag.com/we-need-to-rewild-the-internet/) isn't **just** a matter of a better internet. Our way to a better web can't be purely technical. It's the matter of being part of the making of a better world. \n\nWith the problem so large, how do we approach a solution? If we want to plant a forest how do we grow the ground cover? \n\nDe-abstract. What is the internet really? It's wires, and waves (and occasionally, joking aside, [pipes](https://www.windsystemsmag.com/the-latest-advancements-in-submarine-cables-protection/)) all put to the purpose of connecting people to each other. \n\nThe internet then is the series of connections between [people](https://adactio.com/journal/18337), at a huge scale. Not everyone is connected to everyone, but if you're on the internet, you're connecting to *someone*. So it isn't so much a world wide web as it is world wide **webs**. \n\nThe future core of a [humane](https://humanewebmanifesto.com/) internet, if we are going to be able to use it to do the essential work of surviving this century, is a series of linked routes that stick us all together and supports our communities.\n\nI don't think there is only one solution, I couldn't possibly know them all, but I have one approach that has led me to launch this particular website (and [some others](/projects/)). \n\nThe thing about webs is [they are failure resistent, one strand falling won't take the whole thing down](https://news.mit.edu/2012/spider-web-strength-0202). You can punch a hole through them, but webs are also rebuilt regularly, they can fail and come back quickly. \n\nWe need to think of our connections and how we transmit information to each other in the same way. An important message should be able to travel edge to edge without interference and make it from web to web successfully. We need to think about *links*. Not just in the literal sense. We weave our communities together by establishing bedrocks of shared knowledge. \n\nI think what really put this into sharp focus for me is [the long death of Twitter](https://www.schizochronotopia.com/p/on-twitter-we-look-down). Twitter is still a platform where, for professional reasons, I'm quite active, but its biggest utility--directing me to information that I'm interested in or that is important to me--that's gone. \n\nWe need to rethink how amplification works without requiring big tech or even a steady internet connection. Here are three big assumptions sitting inside this larger question of how best to build our webs. \n\n1. Amplification through cross-linking between individual entities and feeds is essentially rejuvenating for the web. \n2. We [can't](https://ahrefs.com/blog/link-rot-study/) [take the life of those links for granted](https://www.pewresearch.org/data-labs/2024/05/17/when-online-content-disappears/) and an essential part of this rejuvenation process is archiving links that are important enough to amplify.\n3. In the current world [it is nearly impossible](https://www.nytimes.com/2020/07/31/technology/blocking-the-tech-giants.html) to build without touching or using the technology of a mega-corporation in some way so we should expect to build on things that will fail, enshittify, or rot, and need to be moved off from quickly.\n\n## To that end I've considered some principles for my own projects.\n\nThese (and the project of crafting them) are heavily inspired by [the IndieWeb principles](https://indieweb.org/principles). \n\n### Principles of Amplification for better webs\n\n- Aggregation is amplification.\n- In a post-Twitter world, reach requires coordination. \n- If it has to query a backend to load it will one day die. \n- Amplification is power, use it responsibly. \n- Massive replication of your own work is good. Massive aggregation between members of a community is even better. \n- [Amplification](/thoughts/using-amplify-as-a-type/) is a method to build community\n- You can always [check out](https://dataprivacymanager.net/what-is-data-subject-access-request-dsar/), copy, or scrape your work from other platforms and take ownership.\n\n### Principles of Archiving for better webs\n\n- Using the web downloads it to your computer, you should get to keep it for your personal use.\n- [Kill the app](https://tweets.aramzs.com/1390071898202120192/). They are black boxes filled with content and knowledge that will one day be lost forever.\n- Everyone should support the Internet Archive, but we [shouldn't](https://www.forbes.com/sites/mattnovak/2023/05/28/internet-archive-suffers-major-global-outage/) assume it is invulnerable. \n- Own your own archive. \n- Single points of failure are dangerous and, as an expected operating tool, destroy innovation.\n- Anything that can't fit on its own offline drive will die.\n\n### Principles of Web Weaving\n\n- Connecting to each other connects our audiences.\n- Curated connections form bridges out of the walled gardens that hurt us and our society. \n- Accept the rotting giant corporations that harvest human connections for profit, realize you must exist in their context to help others, and use their platforms and technology as a vaulting poll to bring yourself and others outside the walls.\n- The [baseline has shifted](/glossary/shifting-baselines/) away from an open web, but if we act like we are already in the future we want to build we can shift them again.\n\n## The Long Next\n\nWith these concepts in mind, I think of a lot of acronyms I've been considering as part of the future of the web: \n\n- [ESC](https://esc.fyi/) - End Surveillance Capitalism\n- [POSSE](https://indieweb.org/POSSE) - Publish (on your) Own Site, Syndicate Elsewhere\n- [PESOS](https://indieweb.org/PESOS) - Publish Elsewhere, Syndicate (to your) Own Site\n\nI want to add one more to the list. \n\nWe need to think about how to [ENTER](/glossary/enter/) the wild web.\n\n### Extract\n\nFor now it's [impossible to interact with others and move through this world without touching big tech](https://www.nytimes.com/2020/07/31/technology/blocking-the-tech-giants.html). With this in mind, we are all going to end up using some of those platforms. So what we need are methods to extract the data off those platforms. There are blunt ways like scraping, and potentially captured ways like platform APIs. However, thanks to the explosion of privacy and interoperability-related legislation around the world, [most sites have an option to check out all your data](https://dataprivacymanager.net/what-is-data-subject-access-request-dsar/). \n\nOnce you have reclaimed your own works, you can do all sorts of things with it. Eventually you can even leave the platform, delete everything, and take canonical status for that work with your own sites. [I'm just getting started](https://aramzs.xyz/tutorials/how-to-export-your-links-from-pocket/), but I plan on writing more about how to do this.\n\n### Nullify \n\nRedirect or cross link your own sites and platform over the big tech ones whenever possible. Once you've linked off a enshittified platform and brought someone out of the walled garden and into your web, it's important to give them ways to interact with the internet that don't just push them right back into the hands of big tech. Whenever possible, push readers to open and wild web alternatives. \n\nCreate sites and networks that aren't just informative, but also fun to explore. \n\n### Transform \n\nTake the posts you've checked out or otherwise extracted and turn them into something new and cool. Everything we post on social media platforms owned by big tech companies is limited by the business models and requirement to render ad targeting data. It shapes our participation in ways we aren't aware of. Once we free our *own* works from those platforms, take the time and effort to turn them into something cool and new, no longer limited by the constraints from inside the wall. \n\nOne of my main projects for this site is building tools for transforming data extractions from [Letterboxd](/lists/film-and-tv/), [Pocket](/amplify/), and [Kindle](/resources/quotes/).\n\n### Exchange \n\nBuild community though connecting. Link to other people, this is hardly a new idea, but it does seem to have fallen by the wayside at various periods of the social web. \n\nTruly fair exchanges between members of the (or a) web means more than that though, it means actively getting permission from others to remix their work and doing it. It means using and building on top of the work of others in all formats, not just code.\n\nIt also means: [copyleft](https://en.wikipedia.org/wiki/Copyleft) your work. The future of the web is not copyrighted. The future of the web is post-capitalism. Trying to play copyright games with big tech is a losing game, all we get is siloed culture that big tech steals anyway, either directly or in forms of aggregation or by bundling it into AI which spits it back out as plagiarism and bullshit. The future of the web isn't just open source code, it's [open creativity](https://adactio.com/articles/1522/). It's is [share and share alike](https://creativecommons.org/share-your-work/cclicenses/) to build, remix and replicate the best things on the internet. \n\n### Replicate \n\nWe should understand that there is no \"Long Now\". VCs, big clocks and big money are a fleeting phenomenon that is more likely to self-destruct or destroy us than it is to save us. The foundation of projects like The Long Now is built on the resources of people who think we need to maintain the present, scrolled out into an eternally status quo-maintaining future. \n\nLet me be blunt: The present isn't worth preserving. \n\nLet's think instead about **The Long Next**, a future where we build sustainably; live with the knowledge that [we can't be always-online](/resources/bookmarks/low-tech-magazine/); and consider a world that **we** sustain in our projects, groups and communities. The Long Next isn't about preserving wealth and capital long enough to catapult the rich to Mars, it is about holistic rewilding of the web, the Earth, the future. A world we can live in, not one we are going to sacrifice on the alter of wealthy egos. \n\nCentral archives are incredibly important, but they're also central points of failure, vulnerable not just to physical attacks, but to legal ones as well. Worse, it is at the mercy of big donors who have proved time and again that they'd rather burn the present to build their personal vision of the future than sustain it. It's hard to believe such people will forever consider supporting projects like The Internet Archive in their best interest, especially as they sit above companies whose works are focused on essentially in-housing that work *as a competitive advantage*. \n\nWe should continue to support big important archival projects. I think their work is amazing and deserves all our support to keep them going as long as we can. \n\nA long next, a sustainable future, means that we need to do more than that, we need to think about how to keep the archives of what is important to us close to home, replicate them across our local networks and retain their information in case of the worst. \n\nThe parts of the web that are most important to you should be available to you, even if the internet isn't.\n\nSo use your newly wild websites to preserve the parts of the web that matter to you. Host site-local archives with indicators that point back to and [300s](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_redirection) back to the originals. Keep the option to take them with you, or to drop redirects if they die so you'll have them *just in case*. Make sure to set up those local archives so they can be accessed by you, by others, and using your own search tools. [Submit](https://web.archive.org/save) [those](https://chromewebstore.google.com/detail/wayback-machine/fpnmgdkabkmnadcjpehmlllkndpkmiak) [links](https://archive.org/details/introduction-to-the-warc) [to](https://help.archive.org/help/uploading-a-basic-guide/) [The Internet Archive](https://help.archive.org/help/save-pages-in-the-wayback-machine/) at the same time. \n\n[Make sure what you build is easy for others to archive](https://jeffhuang.com/designed_to_last/).\n\n## The Future Soon \n\nThis is a summary. I think I could explore any one of these points more deeply and maybe I will. This is a good start at trying to describe what I want to do with this site and the other sites I'm working on.\n\nI think that working in public and thinking in public keeps me honest, so that's what I've got here. If it's interesting to you, maybe it is something you can explore as well, try to follow through with on your own websites. Increasingly I wish for a **zine-web** filled with tiny one-off websites and fun projects, a million well-tended webs intersecting with each other, and archived by their peers. \n\n\nWe can join our own little webs together. One thing is certain, making the web a better place isn't a project to undertake alone or in private. \n\n[Reach out on Mastodon to talk](https://indieweb.social/@Chronotope). \n\n~~\n\nSelected Responses: \n\n- [Don Marti](https://federate.social/@dmarti/112587045311696156)\n- I really like [the idea of bringing back Diskmags](https://elk.zone/indieweb.social/@teajaygrey@rap.social/112606872290801809). I was not familiar with the concept at all, but ended up [finding out about it when I researched the response](https://diskmags.de/index.php?title=Introduction) and I like the idea of removable media used as a potential model for a sometimes-on web. \n- There is [a really cool list of articles that talk about this topic of the future of a better web which you can check out](https://projects.kwon.nyc/internet-is-fun/). \n\n~~\n\nCover Image by \u003ca href=\"https://commons.wikimedia.org/wiki/User:Chen-Pan_Liao\" title=\"User:Chen-Pan Liao\"\u003eChen-Pan Liao\u003c/a\u003e - \u003cspan class=\"int-own-work\" lang=\"en\"\u003eOwn work\u003c/span\u003e, \u003ca href=\"https://creativecommons.org/licenses/by-sa/3.0\" title=\"Creative Commons Attribution-Share Alike 3.0\"\u003eCC BY-SA 3.0\u003c/a\u003e, \u003ca href=\"https://commons.wikimedia.org/w/index.php?curid=15926393\"\u003eLink\u003c/a\u003e",
"renderingRules": "markdown-it"
}
},
"coverImage": {
"$type": "blob",
"ref": {
"$link": "bafkreig2247wcpqjkqy2ukjh4gjyqhpl32kg3pva4x55npjmuh4joeware"
},
"mimeType": "image/jpeg",
"size": 347901
},
"description": "The fate of the open web is inextricable from the other ways our world is in crisis. What can we do about it?",
"path": "/essays/the-internet-is-a-series-of-webs/",
"publishedAt": "2024-06-08T10:00:00.000Z",
"site": "at://did:plc:t5xmf33p5kqgkbznx22p7d7g/site.standard.publication/3mp64luhldr2l",
"tags": [
"IndieWeb",
"Tech",
"The Long Next",
"series:The Wild Web"
],
"textContent": "When I envision the web, I picture an infinite expanse of empty space that stretches as far as the eye can see. It's full of fertile soil, but no seeds have taken root. That is, except for about an acre of it.\n\n - Molly White, We can have a different web\nThe future of the internet seems up in the air. Consumed by rotting behemoths. What we have now is failing, but it is also part of our every-day life, our politics, our society, our communities and our friendships. All of those are at risk, in part because the ways we communicate are under attack. The fate of the open web is inextricable from the other ways our world is in crisis.\n\nWe face down a seemingly endless series of political, social, economic, and medical disasters on a melting planet. There is no doubt that the internet is deeply integrated into everything that is going both right and wrong.\n\nAt this moment, we are actively discussing how to build a future for our shared global telecommunications network. This is good. We need this discussion. We also need to acknowledge that the wide open platform for infinite data, innovation and communication isn't a shelter from the disaster, but it is at the heart of everything we do. The day we could go back from that, even if we wanted to, is long gone. That means rewilding the web isn't just a matter of a better internet. Our way to a better web can't be purely technical. It's the matter of being part of the making of a better world.\n\nWith the problem so large, how do we approach a solution? If we want to plant a forest how do we grow the ground cover?\n\nDe-abstract. What is the internet really? It's wires, and waves (and occasionally, joking aside, pipes) all put to the purpose of connecting people to each other.\n\nThe internet then is the series of connections between people, at a huge scale. Not everyone is connected to everyone, but if you're on the internet, you're connecting to someone. So it isn't so much a world wide web as it is world wide webs.\n\nThe future core of a humane internet, if we are going to be able to use it to do the essential work of surviving this century, is a series of linked routes that stick us all together and supports our communities.\n\nI don't think there is only one solution, I couldn't possibly know them all, but I have one approach that has led me to launch this particular website (and some others).\n\nThe thing about webs is they are failure resistent, one strand falling won't take the whole thing down. You can punch a hole through them, but webs are also rebuilt regularly, they can fail and come back quickly.\n\nWe need to think of our connections and how we transmit information to each other in the same way. An important message should be able to travel edge to edge without interference and make it from web to web successfully. We need to think about links. Not just in the literal sense. We weave our communities together by establishing bedrocks of shared knowledge.\n\nI think what really put this into sharp focus for me is the long death of Twitter. Twitter is still a platform where, for professional reasons, I'm quite active, but its biggest utility--directing me to information that I'm interested in or that is important to me--that's gone.\n\nWe need to rethink how amplification works without requiring big tech or even a steady internet connection. Here are three big assumptions sitting inside this larger question of how best to build our webs.\n\nAmplification through cross-linking between individual entities and feeds is essentially rejuvenating for the web.\nWe can't take the life of those links for granted and an essential part of this rejuvenation process is archiving links that are important enough to amplify.\nIn the current world it is nearly impossible to build without touching or using the technology of a mega-corporation in some way so we should expect to build on things that will fail, enshittify, or rot, and need to be moved off from quickly.\nTo that end I've considered some principles for my own projects.\nThese (and the project of crafting them) are heavily inspired by the IndieWeb principles.\n\nPrinciples of Amplification for better webs\nAggregation is amplification.\nIn a post-Twitter world, reach requires coordination.\nIf it has to query a backend to load it will one day die.\nAmplification is power, use it responsibly.\nMassive replication of your own work is good. Massive aggregation between members of a community is even better.\nAmplification is a method to build community\nYou can always check out, copy, or scrape your work from other platforms and take ownership.\nPrinciples of Archiving for better webs\nUsing the web downloads it to your computer, you should get to keep it for your personal use.\nKill the app. They are black boxes filled with content and knowledge that will one day be lost forever.\nEveryone should support the Internet Archive, but we shouldn't assume it is invulnerable.\nOwn your own archive.\nSingle points of failure are dangerous and, as an expected operating tool, destroy innovation.\nAnything that can't fit on its own offline drive will die.\nPrinciples of Web Weaving\nConnecting to each other connects our audiences.\nCurated connections form bridges out of the walled gardens that hurt us and our society.\nAccept the rotting giant corporations that harvest human connections for profit, realize you must exist in their context to help others, and use their platforms and technology as a vaulting poll to bring yourself and others outside the walls.\nThe baseline has shifted away from an open web, but if we act like we are already in the future we want to build we can shift them again.\nThe Long Next\nWith these concepts in mind, I think of a lot of acronyms I've been considering as part of the future of the web:\n\nESC - End Surveillance Capitalism\nPOSSE - Publish (on your) Own Site, Syndicate Elsewhere\nPESOS - Publish Elsewhere, Syndicate (to your) Own Site\nI want to add one more to the list.\n\nWe need to think about how to ENTER the wild web.\n\nExtract\nFor now it's impossible to interact with others and move through this world without touching big tech. With this in mind, we are all going to end up using some of those platforms. So what we need are methods to extract the data off those platforms. There are blunt ways like scraping, and potentially captured ways like platform APIs. However, thanks to the explosion of privacy and interoperability-related legislation around the world, most sites have an option to check out all your data.\n\nOnce you have reclaimed your own works, you can do all sorts of things with it. Eventually you can even leave the platform, delete everything, and take canonical status for that work with your own sites. I'm just getting started, but I plan on writing more about how to do this.\n\nNullify\nRedirect or cross link your own sites and platform over the big tech ones whenever possible. Once you've linked off a enshittified platform and brought someone out of the walled garden and into your web, it's important to give them ways to interact with the internet that don't just push them right back into the hands of big tech. Whenever possible, push readers to open and wild web alternatives.\n\nCreate sites and networks that aren't just informative, but also fun to explore.\n\nTransform\nTake the posts you've checked out or otherwise extracted and turn them into something new and cool. Everything we post on social media platforms owned by big tech companies is limited by the business models and requirement to render ad targeting data. It shapes our participation in ways we aren't aware of. Once we free our own works from those platforms, take the time and effort to turn them into something cool and new, no longer limited by the constraints from inside the wall.\n\nOne of my main projects for this site is building tools for transforming data extractions from Letterboxd, Pocket, and Kindle.\n\nExchange\nBuild community though connecting. Link to other people, this is hardly a new idea, but it does seem to have fallen by the wayside at various periods of the social web.\n\nTruly fair exchanges between members of the (or a) web means more than that though, it means actively getting permission from others to remix their work and doing it. It means using and building on top of the work of others in all formats, not just code.\n\nIt also means: copyleft your work. The future of the web is not copyrighted. The future of the web is post-capitalism. Trying to play copyright games with big tech is a losing game, all we get is siloed culture that big tech steals anyway, either directly or in forms of aggregation or by bundling it into AI which spits it back out as plagiarism and bullshit. The future of the web isn't just open source code, it's open creativity. It's is share and share alike to build, remix and replicate the best things on the internet.\n\nReplicate\nWe should understand that there is no \"Long Now\". VCs, big clocks and big money are a fleeting phenomenon that is more likely to self-destruct or destroy us than it is to save us. The foundation of projects like The Long Now is built on the resources of people who think we need to maintain the present, scrolled out into an eternally status quo-maintaining future.\n\nLet me be blunt: The present isn't worth preserving.\n\nLet's think instead about The Long Next, a future where we build sustainably; live with the knowledge that we can't be always-online; and consider a world that we sustain in our projects, groups and communities. The Long Next isn't about preserving wealth and capital long enough to catapult the rich to Mars, it is about holistic rewilding of the web, the Earth, the future. A world we can live in, not one we are going to sacrifice on the alter of wealthy egos.\n\nCentral archives are incredibly important, but they're also central points of failure, vulnerable not just to physical attacks, but to legal ones as well. Worse, it is at the mercy of big donors who have proved time and again that they'd rather burn the present to build their personal vision of the future than sustain it. It's hard to believe such people will forever consider supporting projects like The Internet Archive in their best interest, especially as they sit above companies whose works are focused on essentially in-housing that work as a competitive advantage.\n\nWe should continue to support big important archival projects. I think their work is amazing and deserves all our support to keep them going as long as we can.\n\nA long next, a sustainable future, means that we need to do more than that, we need to think about how to keep the archives of what is important to us close to home, replicate them across our local networks and retain their information in case of the worst.\n\nThe parts of the web that are most important to you should be available to you, even if the internet isn't.\n\nSo use your newly wild websites to preserve the parts of the web that matter to you. Host site-local archives with indicators that point back to and 300s back to the originals. Keep the option to take them with you, or to drop redirects if they die so you'll have them just in case. Make sure to set up those local archives so they can be accessed by you, by others, and using your own search tools. Submit those links to The Internet Archive at the same time.\n\nMake sure what you build is easy for others to archive.\n\nThe Future Soon\nThis is a summary. I think I could explore any one of these points more deeply and maybe I will. This is a good start at trying to describe what I want to do with this site and the other sites I'm working on.\n\nI think that working in public and thinking in public keeps me honest, so that's what I've got here. If it's interesting to you, maybe it is something you can explore as well, try to follow through with on your own websites. Increasingly I wish for a zine-web filled with tiny one-off websites and fun projects, a million well-tended webs intersecting with each other, and archived by their peers.\n\nWe can join our own little webs together. One thing is certain, making the web a better place isn't a project to undertake alone or in private.\n\nReach out on Mastodon to talk.\n\n~~\n\nSelected Responses:\n\nDon Marti\nI really like the idea of bringing back Diskmags. I was not familiar with the concept at all, but ended up finding out about it when I researched the response and I like the idea of removable media used as a potential model for a sometimes-on web.\nThere is a really cool list of articles that talk about this topic of the future of a better web which you can check out.",
"title": "The Internet is a Series of Webs",
"updatedAt": "2026-06-26T10:30:00.000Z"
}
It has all the right values now! And my social shares are using the standard.site cards, which is really cool!