New post: Your only sin was caring too much
This commit is contained in:
parent
cb50304dcf
commit
d260aec226
14 changed files with 204 additions and 29 deletions
44
blog/2022/08/beres.html
Executable file
44
blog/2022/08/beres.html
Executable file
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>I uninstalled my RSS feed reader - Archive - MayVaneDay Studios</title>
|
||||
<link href="../../../style.css" rel="stylesheet" type="text/css" media="all">
|
||||
<meta name="author" content="Vane Vander">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body class="mayvaneday">
|
||||
<article>
|
||||
<div class="box">
|
||||
<h1>I uninstalled my RSS feed reader</h1>
|
||||
<p>published: 2022-08-17</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p>I almost bricked my Kobo a few days ago trying to upgrade <code>libc</code> to get some dependencies written in C to function. When trying to get <a href="https://web.archive.org/web/20220627012432/https://www.w3.org/Tools/HTML-XML-utils/man1/hxselect.html"><code>hxselect</code></a> and its sibling commands to function, I repeatedly got the same error on execution: <code>libc.so.6: version 'GLIBC_2.34' not found</code>. Being that the Kobo is an "embedded Linux" device, it has no package manager, so asking the system to <em>pretty please update</em> this <em>one</em> package wasn't an option. Remembering how I had previously gotten <code>tree</code> to run with limited functionality by copying some <code>arm32</code>-architecture libraries stolen from my Raspberry Pi (now running a 64-bit OS), I stole a copy of <code>libc.so.6</code> from a Debian chroot I had lying around, moved <code>libc.so.6</code> on the Kobo to <code>libc.so.6.bak</code>, and...</p>
|
||||
<p>...broke every single program running on the device.</p>
|
||||
<p><code>mv</code> and <code>cp</code> wouldn't work to put the file back. <code>cat</code> wouldn't let me view a few critical files to retrieve them in case the device was toast. While <a href="https://archive.ph/https://github.com/koreader/koreader/wiki/SSH">Dropbear</a> was running in the background, I couldn't SFTP into it from my desktop computer because Dropbear couldn't contact the <code>libc</code> library to open a new process. Even though I knew the file existed on the device and <em>where</em> it was, I had no way of moving it back to where the system expected it to be. <a href="https://web.archive.org/web/20220817011337/https://goodereader.com/blog/kobo-ereader-news/the-kobo-libra-h2o-sd-card-is-soldered-onto-the-motherboard">The damn internal storage is soldered onto the motherboard</a>, so taking it apart to mount the storage on a different device and manually move the file (or just giving up and re-flashing it) wasn't (and will never be) an option.</p>
|
||||
<p>A panic attack and a furious untimely shit in the bathroom later, the original Dropbear process I was using to debug over SSH still running, my wife reminded me I had previously installed <a href="https://archive.ph/https://github.com/henderjon/kurly">Kurly</a> to make (and fail to make) a line-based browser since the Busybox <code>curl</code> on the device apparently doesn't support TLS, and maybe <em>that</em> would still work to push data around in the filesystem. Binaries written in Golang apparently don't give a shit about <code>libc</code> unless they need to do some wacky low-level stuff in the operating system. So imagine my surprise, and sudden stroke of hope, when Kurly was the only damn program still functional. I quickly spun up a simple web server <a href="https://web.archive.org/web/20220817002902/https://gist.githubusercontent.com/mildred/67d22d7289ae8f16cae7/raw/214c213c9415da18a471d1ed04660022cce059ef/server.py">(the one from Python, but patched to support HTTP PUT)</a>, pushed <code>libc.so.6.bak</code> to my desktop, renamed it to the proper <code>libc.so.6</code>, then retrieved it again from the Kobo.</p>
|
||||
<p>And then everything <em>magically</em> started working again. (Well, except for KOReader, whose UI had crashed... but that could just be fixed with a power cycle.) And I let myself cry for a few minutes in relief. And I did <em>not</em> go on eBay and spend another $200 or so on a replacement, and I spent the next half-hour scouring the bottom of the barrel of GitHub to find <a href="https://web.archive.org/web/20220817172827/https://github.com/tomwright/dasel">an equivalent XML parser but written in Golang</a> so I wouldn't be tempted to break any more critical system libraries.</p>
|
||||
<p>I wasn't canoodling in the intestines of my device for fun. I was working on my latest project, <a href="https://codeberg.org/lethe/beres">Beres</a>: a Bash script that takes a list of URLs and dumps to plaintext (formatted Markdown) files all articles that happened yesterday. (Well, maybe "Bash" is a lie: Beres seems to run just fine when called as <code>sh /bin/beres</code>, but changing the shebang to <code>#!/bin/sh</code> fills the screen with errors.) Even though it may seem like it from my more creative work, I don't hate myself <em>quite</em> enough to attempt to implement an XML parser in <code>sed</code>/<code>awk</code>/whatever, thus the necessary external dependencies. By only pulling articles that happened yesterday, Beres doesn't have to keep "state" of when it was last run, thus reducing code complexity at the cost of the user potentially missing articles if they don't run Beres for a few days.</p>
|
||||
<p>It's a lovely little script. No database, barely any config, no requirement for a VPS. I'm quite proud of it, really. After reading an article, if I don't care about it anymore, I can just delete it instead of merely marking it read and hoping the RSS feed reader will eventually run garbage collection to prevent the database from growing obese and unusable from latency. However, since reading articles means manually opening every one with <code>less</code> and Beres doesn't fetch external resources like images, I've found that using it is incredibly frustrating for use with feeds that publish more than, say, two articles a day. Like social media feeds, for example. It soft-limits me to only subscribing to news and maybe a handful of personal sites I care about and can trust to put out high-quality articles... or, at least, ones I would want to expend the effort of typing in KOReader's terminal emulator to read.</p>
|
||||
<p>Said social media feeds were the reason I originally went with Tiny Tiny RSS because of the "scroll to mark as read" feature to consume as many articles as quickly as possible. It probably also helped that I could just <a href="https://web.archive.org/web/20220817173016/https://git.tt-rss.org/fox/ttrss-docker-compose.git/tree/README.md?h=static-dockerhub">throw it inside Docker</a> instead of having to deal with the monstrosity that is manually creating a database in Redis or PostgreSQL or installing seven kajillion PHP dependencies and hoping they'll run nicely with Caddy. (I hate you specifically, Miniflux. "MUH MINIMALISM!!1!" Okay then, where's SQLite support? What's more simple to handle than a single file? You're already a single file, being written in Golang. Can't you go one step further?) And technically I only deleted Newsboat and Tiny Tiny RSS; I kept <a href="https://f-droid.org/en/packages/org.decsync.flym/">Flym</a> on my phone(s) to track a handful (an admittedly large handful, but still one) of artists on Twitter whose artwork I would rather not go without. I would have gone one step further and imported these onto desktop to fully cut off the ability to constantly swipe for updates on my phone like a dopamine slot machine, but none of the options for Linux that I know of really mesh well with my sneakernet setup and I often move among two or three devices for writing as I go about the day.</p>
|
||||
<p>But nobody cares about these minor implementation details. What's more important is, <em>why am I doing this to myself?</em></p>
|
||||
<p>And the answer, paradoxically, is that I'm exhausted. I'm tired of dealing with Docker, so I wrote a program that would completely negate the need for it. I'm tired of eye strain from reading on my phone, so I wrote a program that would work on my e-reader. I'm tired of being exposed to the opinions of thousands of strangers on a daily basis, so I wrote a program that would keep me up-to-date on the current state of the apocalypse while being so unwieldy that it de facto excludes all those other strangers with ultimately nothing worthwhile to say.</p>
|
||||
<p>I'm tired of being online, so I gave myself one less reason to boot up my computer.</p>
|
||||
<p>I wanted to retire from public life, I thought the night before I almost accidentally killed my Kobo. Leave only my books publically accessible and remove access to all the rest and delete all my other social accounts elsewhere. A woman I had never seen before had come up to me in a dream a few nights prior and demanded I stop being so neurotic about my website, to decide once and for all whether I was staying on the Internet or leaving.</p>
|
||||
<p>I don't think I've made my choice yet. Some part of me thinks I may never. That's my response to everything that ever goes wrong in my life, isn't it, Jett? Do nothing and wait for the problem to get worse?</p>
|
||||
<p>I wonder what creative wrench the Eschaton will try to throw into my gears next.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p>A few days after I write this, and I awake to find that yet another asshole has scraped the entirety of my website and then gutted all but the front page for the sole purpose of stealing my CSS. This I only know because apparently they forgot to remove the <a href="https://letsdecentralize.org/about.html">GoatCounter tracking pixel</a> I have on the bottom of the homepage, so I keep seeing them in my referers. I don't know whether to be incensed that users from Lainchan (I'm 99.9% sure that's where the scraping keeps coming from) don't have a single creative bone in their bodies and so apparently need to pretend to be me, or full of schadenfreude that apparently I'm the only one worth trying to ape. Something something "imitation is flattery" with a dash of "males yet again trying to skinwalk as women they hate".</p>
|
||||
<p>My wife says to <a href="https://deadendshrine.online/p3.html">keep going</a>. So I think I will. I can trust no one else with this most sacred of missions.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p align=right>CC BY-NC-SA 4.0 © Vane Vander</p>
|
||||
</div>
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
35
blog/2022/08/kiwi.html
Executable file
35
blog/2022/08/kiwi.html
Executable file
|
@ -0,0 +1,35 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>The death of Kiwi Farms doesn't mean the end of free speech - Archive - MayVaneDay Studios</title>
|
||||
<link href="../../../style.css" rel="stylesheet" type="text/css" media="all">
|
||||
<meta name="author" content="Vane Vander">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body class="mayvaneday">
|
||||
<article>
|
||||
<div class="box">
|
||||
<h1>The death of Kiwi Farms doesn't mean the end of free speech</h1>
|
||||
<p>published: 2022-08-28</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p>My female readers, have you ever menstruated so hard that you butterfly-effect caused the downfall of one of the Internet's most notorious forums? One trash bin begets another, it seems.</p>
|
||||
<p>A few days ago, Kiwi Farms went down because of another DDoS. I won't recount all of the details of what went down here because it's a tangled mess of disinformation on the mainstream news, trans-identified males making hormones to illegally disseminate to minors, and a long-running game of hot potato with Internet service providers. The important part is that, on the <a href="https://archive.ph/TvUnw#selection-107.1-107.362">downtime update page</a> that currently makes up the entire website, "Jersh" wrote the following:</p>
|
||||
<blockquote>The mob has already planned subsequent targets. Should we stay down, they will then attack 'gender critical' communities - especially those ran by and for women. No place can exist online which allows criticism of their fetishistic lifestyle, and nothing would excite them more than this power and domination struggle being inflicted on a female space instead.</blockquote>
|
||||
<p>This has naturally whipped <a href="https://web.archive.org/web/20220828155002/https://ovarit.com/o/GenderCritical/146668/owner-of-kiwifarms-releases-a-statement-on-the-downtime">the users of Ovarit into a frenzy</a> of wondering if they are next should Kiwi Farms be taken down, given that their site falls into the aforementioned category of "gender critical" and there have been (pitiful, but existent) <a href="https://web.archive.org/web/20220828155724/https://ovarit.com/o/GenderCritical/126029/tra-redditor-plans-to-infiltrate-ovarit">attempts to "infiltrate" it in the past</a>. Most of Ovarit's praise of Kiwi Farms centers around the collection of "receipts" (screenshots and other proof) of trans-identified individuals preying on minors and sexually harassing other members of society, with the occasional remembering of the racism, sexism, and other "-isms" rampant elsewhere on the site. I mean, hell, one only needs to listen to <em>literally any</em> <a href="https://web.archive.org/web/20220826125050/https://madattheinternet.com/">episode of the admin's podcast</a> to hear <em>plenty</em> of examples of why no self-respecting user of Ovarit (or anywhere, really) should touch Kiwi Farms with a ten-foot pole.</p>
|
||||
<p>Personally, I am not concerned about a potential death of Kiwi Farms or that it would impact "free speech" on the internet for two reasons:</p>
|
||||
<ol><li>Joshua Moon, the admin of Kiwi Farms, has promised ad nauseam that, if Kiwi Farms were ever to go down permanently, he would zip the whole site up into a torrent and distribute it.</li></ol>
|
||||
<p>This would involve somehow flattening the database of XenForo (the current forum software Kiwi Farms runs, although they were in the process of moving to a different one developed by the admin) into static HTML pages. This solves the whole concern about, if Kiwi Farms disappears from the Internet, all the "receipts" and archives gathered on the site would disappear as well. Of course, this depends on Mr. Moon both keeping his promise and having the time and resources to be able to do this... which may not happen in the case of legal action happening against the site.</p>
|
||||
<ol start="2"><li><strong>You all remember Tor exists, right?</strong></li></ol>
|
||||
<p>I wrote <a href="../may/divide.html">a post earlier this year</a> where I analyzed <em>all</em> the sites indexed by the <a href="http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion">Tor search engine Ahmia</a> and found that a great deal of them were illegal pornography sites. One would think that this would be a major cause of concern for law enforcement, and yet police <a href="https://archive.ph/vl72O">don't seem able to mobilize fast enough</a>. (Not that I'm advocating for an increase in law enforcement power...) While <a href="https://web.archive.org/web/20220828162805/https://www.zdnet.com/article/tor-project-to-fix-bug-used-for-ddos-attacks-on-onion-sites-for-years/">DDoS attacks against Tor</a> hidden services are still possible, so long as the admin takes pains to make themselves anonymous, the fact that hidden services cannot be easily, if at all, traced back to their hosting point of origin would negate many of the ways that Kiwi Farms has gone down over the years, mainly by bad actors contacting their hosting/domain providers and demanding that they drop the forum as a customer. Because <code>.onion</code> domains are not bought but instead generated by cryptography, there is no domain to be revoked and no financial penalty for switching to a new one should the Tor Project ever develop the ability to wholesale blacklist hidden services from being resolved on the network.</p>
|
||||
<p>If one forum on the Internet dies, it does not logically follow that all free speech everywhere is suddenly revoked. I've seen mountains of evidence otherwise with my own eyes in the course of putting together <a href="https://letsdecentralize.org/rollcall/tor.html">Let's Decentralize</a>. <em>Plenty</em> of sites that would immediately get nuked on the clearnet reside happily (well, as happy as hate-filled sites can be) and without issues on the darknet. So if you're truly worried about not being able to share receipts of predators without facing legal or physical threats from said predators, <a href="https://letsdecentralize.org/setup.html">learn how to host a site on the darknet</a>. Use Tor. Use I2P. Use Freenet if you can't afford keeping a computer online 24/7. Hell, even use ZeroNet in a VM if you have to. <strong>You have options</strong>, and lying down and crying about "muh freeze peach" and giving up is <em>not</em> a productive one.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p align=right>CC BY-NC-SA 4.0 © Vane Vander</p>
|
||||
</div>
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
39
blog/2022/08/separatism-redux.html
Executable file
39
blog/2022/08/separatism-redux.html
Executable file
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Separatism: Redux - Archive - MayVaneDay Studios</title>
|
||||
<link href="../../../style.css" rel="stylesheet" type="text/css" media="all">
|
||||
<meta name="author" content="Vane Vander">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body class="mayvaneday">
|
||||
<article>
|
||||
<div class="box">
|
||||
<h1>Separatism: Redux</h1>
|
||||
<p>published: 2022-08-01</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p>More than three years ago, I wrote <a href="../../2019/june/separatism.html">a post about female separatism</a>, or the concept that only by women divesting themselves of the need, or even the presence, of men in their lives and by working to build female-only institutions and otherwise centering women in their lives can they truly achieve liberation from the male-built structures, most of which fall under the term <em>patriarchy</em>. Because many of the structures in today's society require interacting with males- to name a few, college professors, plumbers and other home maintenance professionals, businesses- with no viable alternative, it is considered the work of every female separatist to contribute in some way to providing female-owned equivalents. At the time, after considering the concept, I ultimately rejected it because I was still struggling to reconcile my individualist belief that no person should be held responsible for crimes they did not commit with the radical feminist truth that men as a class are responsible for almost all problems faced by women. I only wanted to see the world as a collection of unrelated and coincidental events that <em>maybe sometimes</em> had deleterious effects in my life instead of burdened by an unconscious machination working to keep every woman oppressed at all costs. I stated that, if I were to flee to a separatist land, a Second Realm, I would choose one ran by libertarians (despite their <a href="https://web.archive.org/web/20220727005549/https://www.agoristnexus.com/seasteading-case-studies-learning-from-the-failed-attempts-of-the-past-practical-liberated-lifestyles-on-the-high-seas/">continued failures</a>) rather than by women, radfem or not, because I believed that lip service to the concepts of freedom and bodily autonomy would be enough to keep me safe from said misogynist machinations that employ every man alive.</p>
|
||||
<p>But after having spent time in online women-only spaces and of pouring effort into the friendships with the women in my life, I think I have changed my mind.</p>
|
||||
<p>The Internet as it currently stands is no place for a woman, no matter her mental fortitude. I have gone through many a social media site throughout my time in this hellscape, from mainstream places like Twitter to the Fediverse to "Reddit runoff" link aggregators like Ramble to <a href="../june/purity.html">indie forums</a>. Inevitably what happens is some male comes in, convinced that he knows better than me despite, from his words and the way he conducts himself, having <em>clearly</em> misinterpreted my argument, and starts "dick-swinging" until I get tired of attempting to put out the flames of his tantrum or arguing with a brick wall and decide to go do something more productive with my time, at which point he declares himself the "winner" of the "debate". As I have gotten older and less desperate for validation on the Internet, I have found myself opting for this "walk away" approach more and more. <em>Every</em> social media site that is not explicitly for females is rife with misogyny: Reddit's <a href="https://web.archive.org/web/20220726231916/https://www.reddit.com/r/BanFemaleHateSubs/wiki/index/">legion porn subreddits</a> and <a href="https://web.archive.org/web/20220726232429/https://ovarit.com/o/TransLogic/121648/first-thing-i-saw-on-r-actuallesbians">male infestation of formerly female-centered places</a>, "tradcaths" and "coomers" on Twitter and Tumblr, blatant calls to violence against women on literally <em>every</em> imageboard I've ever seen...</p>
|
||||
<blockquote>All space becomes male space unless females maintain a concerted effort to mark a space for themselves.<br>- Sheila Jeffreys</blockquote>
|
||||
<p>For a long <em>long</em> time I have wished for a female-only lowercase-I internet. Even just a darknet, an overlay network a la Yggdrasil, a place no man could ever traverse. (Of course, it would be difficult without some kind of centralization to verify that only females are accessing the network, but this post is not concerned with implementation details.) A place without the cruft and scum and constant fighting for recognition of my worth as a person that defines the male-dominated Internet. From what I have seen of the few spaces like this on the clearnet I have found, I can extrapolate what this new network would look like: far less (maybe even no) pornography being spammed everywhere, less needless software complexity in the name of "dick-swinging" to pad out one's programming portfolio or resume, less soulless corporatist minimalism, fewer threats of violence, less harassment (sexual or otherwise), less SEO spam and blog chum... kinder interactions, more vibrant personality on personal websites...</p>
|
||||
<p>Less energy spent "proving" my worth as a (physically) human being.</p>
|
||||
<p>As far as socializing with strangers online goes, I have within the past few months taken up refuge in Ovarit (and ThePinkPill when the former doesn't have an appropriate "circle" for what I want to post or when said thing has already been posted but the discussion is dead and archived). In the process, I have discovered that <strong>I don't hate social media, I'm just tired of interacting with men.</strong> <del>I have literally never had an argument on Ovarit in my time there.</del> Plenty of disagreements and differences in opinion, sure, but no actual <em>fights</em> in the same way I did on an obscure forum in June when some "moid" was insultingly dismissive of my anxiety over the fall of <em>Roe v. Wade</em>. (Almost) all my interactions on Ovarit have been respectful, if not warm and friendly and supportive. (<b>EDIT 2022-08-27: I've had <em>one</em> person call me "condescending" when I asked them to explain why I should have empathy for men. Fortunately the site has a block button.</b>) The archetypal social media user who only logs on to stir up shit and be a contrarian has a hard time taking root, quickly banned as a troll uninterested in arguing in good faith or contributing to a productive conversation. The women there (and maybe outside, if I were brave enough to share some of my writing away from the keyboard) just seem to understand my writing in a way that men appear to be fundamentally incapable of: the latter maybe a few key concepts here and there, but rarely, if ever, in its complex totality.</p>
|
||||
<p>It's funny the respect among users that naturally forms when you're surrounded by people who have already implicitly agreed on the value of your life and your words and your <em>personhood</em>.</p>
|
||||
<p>Despite it being a public website, I feel safe there in a way I haven't felt online in a long time. It is the same overwhelming feeling of sudden safety oft documented by women entering womyn's festivals for the first time (I think specifically of <a href="ipfs://QmUT6pjdhn6tC3GD1am64TAzpoqPD7hmjbG8hBGncyTkaY"><em>The Disappearing L</em> by Bonnie J. Morris</a>) and every time thereafter. Being in an environment of all women when one has been living in the world of men all their lives, suddenly cognizant of the male voyeur implanted in their brains since birth demanding they stay "pretty" and "consumable" all the time and how utterly useless it is there. It fills me with sorrow and yet hope at the same time: hopeful because the safety and camaraderie and solidarity expressed in the journals and snippets within prove that female separatist micro-societies <em>can</em> in fact function without men, sorrowful because many of them were shuttered before I came out and ever knew of them, but hopeful again because what once was can be yet again - and <em>is</em>, now, today, in many places throughout the world.</p>
|
||||
<p>What levels of freedom can I not even conceive of because of the weight of misogyny I've carried all my life? What does a truly liberated female who has never known male-caused violence, male-caused sexualization, male-caused <em>dehumanization</em> look like?</p>
|
||||
<p>I may never know in my lifetime.</p>
|
||||
<p>And it <em>infuriates</em> me.</p>
|
||||
<p>I'm tired of this world of men. Of being caught in the tangle of their lives. And even if I am never able to leave the Golden Cage of the house of my parents, what with the climate crisis and the housing bubble and an unlivable wage and the simple fact of me being incompatible with this world, I wish to build this female Second Realm (which exists <a href="https://web.archive.org/web/20220727005918/https://www.vice.com/en/article/jpmdky/whos-killing-the-womens-land-movement">now</a>, despite everything) in the ways that I can with the knowledge that I have. To build this world that does not question my basic worth, that does not ask me to live in servitude to any person, that wholeheartedly seeks my development and fruition as a whole and complete person in and of myself free from the bonsai-esque trimming male society imposes on every woman.</p>
|
||||
<p>After all, in the end, I can only save myself. And this world of men offers no true salvation.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p align=right>CC BY-NC-SA 4.0 © Vane Vander</p>
|
||||
</div>
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
72
blog/2022/08/urbit.html
Executable file
72
blog/2022/08/urbit.html
Executable file
|
@ -0,0 +1,72 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Urbit is still basically just a glorified chatroom - Archive - MayVaneDay Studios</title>
|
||||
<link href="../../../style.css" rel="stylesheet" type="text/css" media="all">
|
||||
<meta name="author" content="Vane Vander">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body class="mayvaneday">
|
||||
<article>
|
||||
<div class="box">
|
||||
<h1>Urbit is still basically just a glorified chatroom</h1>
|
||||
<p>published: 2022-08-06</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<h2>preparing for launch</h2>
|
||||
<p><a href="https://web.archive.org/web/20220805155749/https://en.wikipedia.org/wiki/Urbit">According to Wikipedia</a>, Urbit is a "decentralized personal server platform." It seeks to "deconstruct the client-server model in favour of a federated network of personal servers in a peer-to-peer network with a consistent digital identity." In other words, it's a piece of software you run on your computer that <em>supposedly</em> lets you communicate and share data without the need for a server that's online 24/7 or a static IP. Going on the <a href="https://web.archive.org/web/20220706083257/https://urbit.org/">project homepage</a> immediately hits any visitor over the head with a ton of cruft about DAOs, however, so it is clear from the get-go that this isn't a replacement for something like ZeroNet but instead a web3 project with a paywall.</p>
|
||||
<p>As I stated <a href="../july/web3.html">a few posts ago</a>, the apparently inherent paywall requirement of web3 projects excludes low-income and other disenfranchised people who don't have additional money to spend on getting into these citadels. Unlike other web3 projects, however, an identity on Urbit seems to be a one-time purchase (as I will detail later) instead of requiring tokens to fund every action taken on the network, and being a part of the network doesn't require hosting a local copy of a gigantic and computation-heavy blockchain. In addition, owners of <a href="https://web.archive.org/web/20220805160909/https://urbit.org/overview/urbit-id">"stars"</a> can issue 216 "planets" each and either sell them or give them away to, ahem, <a href="../july/web3.html"><em>broke dumbasses</em></a> like yours truly.</p>
|
||||
<p>I got an Urbit planet out of the blue from a man I used to be internet friends with back in 2019. I was kind of an ass to him, but there was an understanding at the time that most of it was just joking and banter. I eventually ended up cutting off contact with him because he had given me admin permissions over his XMPP group chat and I had taken it upon myself to ban a "coomer" who was constantly putting simulated CSAM in the chat and sexually harassing me in DMs. Said "friend" kept adding the coomer back despite my protestations, so, disgusted, I decided that my mental health was more important than maintaining what little of the friendship remained at that point.</p>
|
||||
<p>Apparently nowadays he LARPs as a gross stereotype of a woman and spends his entire online presence fetishizing lesbians, so whatever guilt I felt for calling him cringe for being an Urbit fanatic instantly dissipated.</p>
|
||||
<p>For whatever reason, although I had no intentions of ever using it again, I kept my Urbit passport, two JPEGs containing my "master ticket" and "management phrase". When cleaning out the downloads folder on my phone a few months ago, I discovered that it was still there, sitting at the top of the file listing. And hey, it's been three years... so surely Urbit is now more than just a nonsensical terminal, right?</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<h2>blasting off</h2>
|
||||
<blockquote><a href="https://web.archive.org/web/20220730135412/https://urbit.org/getting-started">Getting on Urbit isn't always easy, either. The onboarding process hasn't been optimized by product managers in search of maximal profit. There's no checkbox for your interests—you have to discover them yourself.</a></blockquote>
|
||||
<p>You mean... onboarding hasn't been made easy for non-technical people? The same people all these grand overtures of "escaping from MEGACORP" are supposed to save? Or is this one of those "citadel" projects where all the benefit is for the early adopters safe inside and the masses are supposed to be locked outside to suffer whatever computing apocalypse will come?</p>
|
||||
<p>Urbit has a free version of an identity called a "comet", but apparently <a href="https://archive.ph/pOszH#selection-293.184-293.206">it can't download any apps or interact with much of the network</a>,<!-- https://urbit.org/getting-started/desktop -->
|
||||
which is confusingly later <a href="https://web.archive.org/web/20220805172516/https://urbit.org/getting-started/cli#boot-your-planet">contradicted in the CLI install instructions: "There are currently few differences between using a comet-level identity and a planet-level one."</a> To do anything of substance, you'll "need a to get a planet". Because I already had my Urbit passport from three years ago, the post doesn't end here, and I was able to continue my research without spending any money. Otherwise, judging from the <a href="https://web.archive.org/web/20220730150142/https://urbit.org/getting-started/get-planet">recommended planet resellers</a> that were functional, prices for a Layer 2 planet range from about $15 to $50, which isn't an "I am now destitute and living on the streets" amount of money... but still, that's a lot of groceries.</p>
|
||||
<p>The desktop GUI, according to the documentation, requires <code>snap</code> to be installed, but some digging reveals <a href="https://github.com/urbit/port/releases">there are also <code>.dpkg</code> packages and raw binaries</a>... which, par for the course of web3 bullshit, are written in Node.js. However, these seem to only be available for x86_64, unless you're using a Mac, in which case you also get <code>arm64</code>, or a Raspberry Pi, in which case you get shunted to <a href="https://web.archive.org/web/20220730152509/https://github.com/OdysLam/home-urbit">a third-party solution</a>. You could also attempt to compile it yourself, but given the aforementioned Node.js dependency, you're more likely to see the sun explode tomorrow than <a href="../../2020/february/32bit.html">get the damn thing to compile properly</a>.</p>
|
||||
<p>Because I wasn't sure how much bandwidth Urbit would use, even though I have a Wi-Fi repeater in my bedroom now and thus an actually decent connection, I instead opted for the server install, which entails <a href="https://urbit.org/getting-started/server#install-urbit-via-the-command-line">downloading a shady-looking CLI binary</a> and feeding it a keyfile... which supposedly comes with the passport, but mine didn't have one, and the setup instructions make it too easy to accidentally skip over the part where you can redownload said keyfile at <a href="https://bridge.urbit.org">bridge.urbit.org</a> in the "OS" menu at the bottom of the page.</p>
|
||||
<p>It took what felt like forever (at least ten minutes; I timed it) to get to a prompt after running <code>~/urbit/urbit -p 57323 -w socleb-fosrut -k ./socleb-fosrut.key</code>. The web interface, the port to run on specified with the <code>-p</code> option, completely ignored this argument and instead decided to run on port 8081, which thankfully wasn't claimed by any other process at the time. You still need the CLI running in a separate window, though, because you'll need to run <code>+code</code> in the "dojo" (Urbit speak for the CLI) to generate a code to log in to the web interface.</p>
|
||||
<p>On first run, there are only three options in the web UI: "Terminal", "Groups", and "Bitcoin". I tried Terminal first. It appeared that whatever I typed into it was immediately mirrored in the CLI window. I typed <code>help</code> thinking it would give me a list of commands like it does in Bash, but instead I got the nonsensical string <code><1.lqz [* <232.hhi 51.qbt 123.ppa 46.hgz 1.pnw %140>]></code>. (At least it has an angel number...?)</p>
|
||||
<p>Unintuitively, "installing" more apps means opening the search bar instead of a dedicated "install" button (even a little plus sign would have been more helpful) and pasting in a long unmemorable string from an external <a href="https://web.archive.org/web/20220730142727/https://urbit.org/ecosystem?type=applications">app directory</a> that has right-clicking disabled, just like the Urbit project blog I sifted through to try to get more information on how the project had grown over the past three years. (There are only so many times I can right-click a tab and duplicate it before I give up out of frustration.) The web UI provides neither app discovery nor progress on app installation: all logs instead get output to the CLI window, and the web UI just gives the web3 equivalent of a middle finger with an endlessly-spinning wheel icon. Once I got some apps installed, I attempted to interact with them:</p>
|
||||
<ul>
|
||||
<li><code>~dister-norsyr-torryn/canvas</code>: Like r/place, but stupider. I definitely had A Time vandalizing a few doodles on the preinstalled public canvas. I wouldn't call it a "fun" time... just A Time.</li>
|
||||
<li>There's a <a href="https://web.archive.org/web/20220805170810/https://urbit.org/applications/~ribben-donnyl/funes-notes">notes app</a>, which I showed some initial interest in, but the only frontend is for... iOS.</li>
|
||||
<li><code>~magped-magped-rabsef-bicrym/wrdu</code>: I don't play Wordle, but I got the general gist of the game pretty quickly. I got three green letters and then lost, but the app didn't tell me what the winning word was.</li>
|
||||
<li><code>~tirrel/studio</code>: Took forever to install. It requires you make a "notebook" first, but it doesn't show where to do that. It also requires a clearnet domain to mirror to.</li>
|
||||
<li><code>~dister-nocsyx-lassul/sphinx</code>: It required me to install another app in order to have "friends". I added the star ID of the person I got the Urbit planet from and returned to Sphinx, but still nothing showed up. I left it alone and then returned to it about a week later, but still nothing had appeared in the feed.</li>
|
||||
<li><code>~dister-fabnev-hinmur/escape</code>: This is the titular chat app. A small handful of popups directed me to some rooms that, from the chat history, appeared to have a small handful of active users. Emphasis on <em>small</em>. I sent a few test messages, but nobody responded to me. Presumably most of the users had hidden themselves away in non-default groups, none of which I bothered joining because... I mean, if I wanted to talk to random techbros, I'd just boot up any old IRC client, no blockchain required.</li>
|
||||
</ul>
|
||||
<p>There is a <a href="https://web.archive.org/web/20220730152301/https://github.com/matildepark/urbit-static-page/">static site app</a>, but the files inside of it don't seem accessible from inside Urbit itself, instead using the user's "pier" (the Urbit storage) to serve on the clearnet. (That is what I could glean from the sparse documentation.) At least, that <em>seems</em> to be the intention, as the clearnet gateway timed out when I tried it. At that point, one could just install any web server instead and get better results.</p>
|
||||
<pre>
|
||||
> exit
|
||||
-find.exit
|
||||
dojo: hoon expression failed
|
||||
> quit
|
||||
-find.quit
|
||||
dojo: hoon expression failed
|
||||
> bye
|
||||
-find.bye
|
||||
dojo: hoon expression failed
|
||||
</pre>
|
||||
<p>Turns out "|exit" or Ctrl-D is the "get me the hell out of here" key combo.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<h2>coming back down to earth</h2>
|
||||
<p>I'm not interested in a convoluted chat app to talk with complete strangers, much less the kind of "techbros" that are attracted to web3 like moths to a lamp or flies to candy. I already have DecSync for decentralized calendars and an increasingly convoluted web of devices running Syncthing for my notebook. And I can just open the Firefox Klar shortcut on my phone's homescreen for the weather... or, you know, look outside my bedroom window. (I need to go outside more often. Stupid humidity, making me wilt at even the slightest bit of sweat... Ah, the joys of having sensory issues.)</p>
|
||||
<p>I don't see the point of any "alternative Internet" project that doesn't allow me to share my writing in some form. Hell, even Secure Scuttlebutt allows for <a href="https://web.archive.org/web/20220730153520/https://github.com/hackergrrl/ssb-webify">in-network website hosting</a>, albeit broken last time I tried. The closest thing to Urbit's promise of a "personal server platform" with a "consistent digital identity" that actually functions without the paywall is ZeroNet, but just as Urbit is hamstrung by the utter insanity of the "Hoon" and "Nock" programming languages, ZeroNet is held back by its lack of documentation and spaghetti-tier Python code, both of which make it diffcult for programmers to contribute new applications to their respective platforms. Which is a shame. The idea of being able to host one's entire Internet presence, with private keys and being able to run on (nearly) any computer anywhere, is quite attractive to me.</p>
|
||||
<p>While I admit Urbit holds a lot of promise, and a lot of effort has been made to smooth out the technological rough edges that often prevent non-technical users from using "alternative Internet" projects, the apps required to replace many of the functions of Urbit's self-proclaimed enemy "MEGACORP" in the eyes of "normies" simply aren't there yet. I see no shared file storage or long-form mailing system or website hosting or even just a Facebook/Twitter/Instagram/whatever-social-media clone. Unlike ZeroNet, Urbit doesn't seem resilient in the face of intermittent connections to the outside world or situations where one has access to other peers inside the LAN but not outside. In the face of the looming climate crisis and the computing challenges that will no doubt accompany it, Urbit seems needlessly fragile, too little too late.</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="box">
|
||||
<p align=right>CC BY-NC-SA 4.0 © Vane Vander</p>
|
||||
</div>
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue