<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet href='/index.xsl' type='text/xsl'?>
<rss version='2.0' xmlns:atom='http://www.w3.org/2005/Atom'>
	<channel>
		<title>tommi.space main stream</title>
		<description>Stream of all the latest content published on tommi.space</description>
		<atom:link href='https://tommi.space/index.xml' rel='self' type='application/rss+xml' />
		<link>https://tommi.space/</link>
		

	<item>
		<title>Linux firewall</title>
		<link>https://tommi.space/firewall/</link>
		<description><![CDATA[<p>I am starting to learn about Linux firewalls because directly exposing <a href="Bocia.md">Bocia</a> to the Internet, without a VPN, makes it crucial to secure the machine as much as possible.</p>
<p>The first concepts I got familiar with are the ones explored in the following podcast episode.</p>
<p><a href="https://youtube.com/live/YJZV79C-rNU">https://youtube.com/live/YJZV79C-rNU</a></p>
<h2 id="Blocklist%20automation" tabindex="-1"><a class="header-anchor" href="#Blocklist%20automation">Blocklist automation</a></h2>
<p>#TODO I have stumbled upon <a href="https://github.com/trick77/nftables-blacklist" title="GitHub - trick77/nftables-blacklist: A bash script to ban large numbers of IP addresses published in blacklists. · GitHub">nftables-blacklist</a>, a nifty tool to block malicious IP addresses via <a href="https://wiki.archlinux.org/title/Nftables" title="nftables - ArchWik">nftables</a>. Once I’ll have understood enough of how firewalling and nftables work, I want to use it to <a href="Caddy.md#Blocking/Poisoning%20AI%20bots">Block AI bots</a> too.</p>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/firewall/</guid>
		<pubDate>Tue, 23 Jun 2026 23:11:00 +0200</pubDate>
	</item>

	<item>
		<title>Fediverse Challenge Coin</title>
		<link>https://tommi.space/fediverse-challenge-coin/</link>
		<description><![CDATA[<h2 id="To%20XPUB" tabindex="-1"><a class="header-anchor" href="#To%20XPUB">To XPUB</a></h2>
<p>Dear Daring Adventurer,</p>
<p>by receiving this Fediverse challenge coin, you hereby join the Fediverse Rebel Alliance.</p>
<p>As you may notice, this coin has identical sides, unlike military-inspired challenge coins. That is because the powerful object now in your possession is not made to pursue petty personal competitions, where an individual is the winner and another one is the loser.</p>
<p>This coin is a collective challenge to the rich, the machos, the arrogants, the ableists, the manspreaders, the warlords (actually all lords, not only the war ones), and to all the obedient soldiers who bow to unjust power without complaining.</p>
<p>Holding this token in your hand must be a reminder that you belong to the Resistance. We disguise as pirates to the boring, yet we are pioneers for the dreamers. We don’t avoid conflict, we embrace it through care for our peers and rage against fascists. We believe in the transformative power of our diverse and astonishing practices, no matter how specific. Wittingly or not, we are all adding one piece to the puzzle of the conspiracy that will save us from collapse.</p>
<p>It’s not about technology, nor about protocols. It is about knowing that we may be alone at times, but we shall never feel lonely</p>
<p>for we are the Fediverse Fighters.</p>
<hr>
<h2 id="Open%20Social%20Web%20Track%20at%20DWeb%20Camp%202026" tabindex="-1"><a class="header-anchor" href="#Open%20Social%20Web%20Track%20at%20DWeb%20Camp%202026">Open Social Web Track at DWeb Camp 2026</a></h2>
<p>Dear Open Social Web Weaver,</p>
<p>thank you for partaking in the memorable Open Social Web track at DWeb Camp 2026. Because of your contribution, you hereby receive this Open Social Web Challenge Coin as a little keepsake filled with gratitude.</p>
<p>As you may notice, this coin has identical sides, unlike military-inspired challenge coins. That is because the magical and rare artefact now in your possession is not made to pursue petty personal competitions, where an individual is the winner and another one is the loser.</p>
<p>This coin represents our <em>collective</em> challenge to those who build egoistically, pursuing personal profit. As <q>Team Open</q>, we stand against fascism, closed platforms and mindsets, gatekeeping, and anything that is not designed together, for togetherness.</p>
<p>Holding this token in your hand must be a reminder that you belong to the Resistance. We disguise as pirates to the boring, yet we are pioneers for the dreamers. We don’t avoid conflict, we embrace it through care for our peers, even when we see things differently. We believe in the transformative power of our diverse and astonishing practices, no matter how specific. Wittingly or not, each one of us is adding a piece to the puzzle of the conspiracy that will save us from collapse.</p>
<p>It’s not about technology, nor about protocols. It is about knowing that we may be alone at times, but we shall never feel lonely.</p>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/fediverse-challenge-coin/</guid>
		<pubDate>Tue, 23 Jun 2026 09:49:00 +0200</pubDate>
	</item>

	<item>
		<title>Wake-on-LAN</title>
		<link>https://tommi.space/wake-on-lan/</link>
		<description><![CDATA[<p><a href="https://wiki.debian.org/WakeOnLan" title="Wake On LAN – Debian Wiki">Wake-on-LAN</a> is used to power up devices via LAN.</p>
<ol>
<li><code>ip -br link</code> to find the name of the network interface in use.</li>
<li><code>sudo apt install ethtool</code> to install the tool required to inspect the Ethernet configuration.</li>
<li><code>sudo ethtool enp2s0</code> to check whether Wake-on-LAN is available and/or enabled. <code>Wake-on: g</code> means it is enabled. I found it to be enabled, so I will skip the steps required to enable it.</li>
<li><code>ip a</code> to find the MAC address of the interface. Look at what follows <code>link/ether</code></li>
</ol>
<h2 id="In%20the%20remote%20client" tabindex="-1"><a class="header-anchor" href="#In%20the%20remote%20client">In the remote client</a></h2>
<p>My laptop is running Fedora, so I have to install <a href="https://packages.fedoraproject.org/pkgs/wol/wol/" title="wol in Fedora packages">wol</a>.</p>
<ol>
<li><code>sudo dnf install wol</code> to install the tool that actually wakes the remote device via LAN.</li>
<li><code>wol MACADRESS</code> to actually wake up the device!
<ul>
<li><code>wol --ipaddr IPADDRESS MACADRESS</code> for remote networks</li>
</ul>
</li>
</ol>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/wake-on-lan/</guid>
		<pubDate>Sun, 21 Jun 2026 13:07:04 +0200</pubDate>
	</item>

	<item>
		<title>Homelab VPN</title>
		<link>https://tommi.space/vpn/</link>
		<description><![CDATA[<p>There are several problems with self-hosting at home by exposing the local network to the Internet.</p>
<p>Among them, the public IPv4 address of the home network might change unexpectedly, requiring a Dynamic DNS configuration. Furthermore, exposing a home’s public IP address may be a privacy concern.</p>
<p>This is why it is useful to configure a <abbr title='Virtual Private Network'>VPN</abbr> between the local device and a cloud server with a static IPv4 address.</p>
<p><a href="https://youtu.be/sIH1RRdTjys">https://youtu.be/sIH1RRdTjys</a></p>
<h2 id="WireGuard" tabindex="-1"><a class="header-anchor" href="#WireGuard">WireGuard</a></h2>
<p>This is the most essential and simple VPN solution, and the following tutorial explains quite well how to set it up.</p>
<p><a href="https://youtu.be/bVKNSf1p1d0">https://youtu.be/bVKNSf1p1d0</a></p>
<h2 id="Tailscale%2FHeadscale" tabindex="-1"><a class="header-anchor" href="#Tailscale%2FHeadscale">Tailscale/Headscale</a></h2>
<p><a href="https://tailscale.com/">Tailscale</a> is a tool based on WireGuard that simplifies some aspects and takes care of more things for you, but it is not fully open source.</p>
<p><a href="https://headscale.net/">Headscale</a> is its self-hostable and fully opensource implementation.</p>
<h2 id="Open%20questions" tabindex="-1"><a class="header-anchor" href="#Open%20questions">Open questions</a></h2>
<ol>
<li>How do I expose services to the Web by hosting them on <a href="Bocia.md">Bocia</a> and routing them through a public server?</li>
<li>When I connect through my laptop client, how do I avoid tunnelling all my traffic through the VPN, but only SSH connection and what is needed to communicate to the server?</li>
<li>How do I avoid the proxy server to see all the information and grant it access to my homelab? (See below)</li>
</ol>
<h2 id="Why%20am%20I%20not%20using%20a%20VPN%3F" tabindex="-1"><a class="header-anchor" href="#Why%20am%20I%20not%20using%20a%20VPN%3F">Why am I not using a VPN?</a></h2>
<p>I know that it is not the best practice to directly expose services from the local network, but my threat model does not necessarily require a VPN connection. I don’t want any server somewhere to have a direct connection to my homelab, where I host my personal pictures.</p>
<p>So far, I am staying without a VPN.</p>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/vpn/</guid>
		<pubDate>Sat, 20 Jun 2026 15:41:07 +0200</pubDate>
	</item>

	<item>
		<title>What is mine</title>
		<link>https://tommi.space/mine/</link>
		<description><![CDATA[<p>What is mine makes me<br>
What makes me is mine<br>
What is mean is a mine<br>
I don’t want a mine to be mine<br>
yet what’s mine ain’t just a shrine<br>
to tolerate is not fine<br>
yet comfort comes at a dime…<br>
To feel freedom get in line!</p>
<p>Not what’s mine makes me shine<br>
togetherness framed as divine<br>
yet ownership we shan’t decline.<br>
Where shall I draw the line,<br>
sharing lolly as I was nine?<br>
community might not always rhyme<br>
the friction and the sublime<br>
communication through mere sign<br>
shy and mute as a mime,<br>
just comply, just sign.</p>
<style>
.poetry main.yellow {
	background: url('https://tommi.space/1000-flies.jpg'), #000;
	color: #FFF;
	h1 {
		color: #FFF;
	}
}
</style>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/mine/</guid>
		<pubDate>Mon, 01 Jun 2026 14:38:00 +0200</pubDate>
	</item>

	<item>
		<title>A Eulogy for Mii</title>
		<link>https://tommi.space/mii-eulogy/</link>
		<description><![CDATA[<p>A eulogy for (Nintendo’s) <a href="https://en.wikipedia.org/wiki/Mii" title="Mii on Wikipedia">Mii</a>, written for <a href="https://gromits.space/">Sevgi</a>’s <cite><a href="https://luma.com/8znlim45" title="Resurrecting Networks on Luma.com">Resurrecting Networks</a></cite> workshop at the <a href="https://internetarchive.eu">Internet Archive Europe</a>.</p>
<p>Mii were born on <time datetime=2026-11-19>19 November 2006</time>. Even though they still theoretically exist, we declared them dead as Nintendo discontinued StreetPass, on <time datetime=2024-04-08>8<sup>th</sup> April 2024</time>.</p>
<p>This eulogy is made of two parts, one written by me, and one written by <a href="https://holly.garden/" title="Holly’s personal website">Holly</a>. We recided it alternately as the other hummed the Mii Channel – Plaza Theme.</p>
<p><a href="https://youtu.be/eqtZPO7XSKk">https://youtu.be/eqtZPO7XSKk</a></p>
<blockquote>
<p>You were so round and shiny, so goofy yet very put together. Since the first moment I met you, I knew I would have spent many hours in your company. When you met my friends, your presence mad our time together even better.</p>
<p>At times, I just found myself staring at you, walking around, glowing with the light, cheerful, ephemeral attitude that made you the most wonderful and relatable digital artefact I have ever known.</p>
<p>We shared adventures, and, when times where boring, I just made more of you, moulded after my mum, my grandpa, my great-great aunt, my unborn cousins: my whole family and the one I wish I had turned around you. Thank you Mii.</p>
</blockquote>
<p>Holly’s part:</p>
<blockquote>
<p>we will always remember<br>
small collections in the plaza<br>
jumping around</p>
<p>scrolling through, friends<br>
who don’t come over often<br>
friends who live next door</p>
<p>afternoons hiding from the rain<br>
tv eyes, i was never<br>
alone, homunculi on the screen</p>
</blockquote>
<blockquote>
<p>mii, mii, not even eighteen,<br>
what nose do I have?<br>
are my eyes cute enough?</p>
</blockquote>
<blockquote>
<p>mii, mii, not even eighteen,<br>
what’s my favourite colour?<br>
what will we do now?</p>
</blockquote>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/mii-eulogy/</guid>
		<pubDate>Fri, 22 May 2026 14:47:55 +0200</pubDate>
	</item>

	<item>
		<title>Dwelling in the Margins</title>
		<link>https://tommi.space/margins/</link>
		<description><![CDATA[<h2 id="Epigraph" tabindex="-1"><a class="header-anchor" href="#Epigraph">Epigraph</a></h2>
<p>This ephemeral collection of epiphanies was directly inspired by the week I spent in Loro Piceno for <cite lang=it><a href="https://lascuolaopensource.xyz/it/attivita/xyz-sapere-fare-diventare">Sapere, Fare, Diventare</a></cite>, in the context of <cite lang=it><a href="https://lascuolaopensource.xyz">La Scuola Open Source</a></cite>’s <q>XYZ</q>. The pictures that follow come from there.</p>
<p>Indirectly, these ideas are sparked by my broader ongoing reflections for <q><a href="https://pzwiki.wdka.nl/mediadesign/SI30:_Unbordering" title="SI30: Unbordering">Unbordering</a></q>, <a href="https://xpub.nl">XPUB</a>’s 30<sup>th</sup> <a href="https://issue.xpub.nl">Special Issue</a>.</p>
<p>It is because of this blend that I expressed concepts both in Italian and in English.</p>
<p>I have no answers. What I am writing is a contextualisation of many questions that crowd my mind on a daily basis. I need to get them out so that we can <a href="https://pzwiki.wdka.nl/mediadesign/SI29:_Gossiping_at_the_Intersection_of_Crafts_and_Resistances" title="SI29: Gossiping at the Intersection of Crafts and Resistances">gossip</a> and figure out how to survive in this burning world, ideally making it a bit better.</p>
<p lang=it>Questo testo è stato abbozzato nel corso di una settimana con pochissime ore di sonno e poi revisionato solo in minima parte, sia per pigrizia che per preservare la natura erratica e delirante di questi pensieri.</p>
<hr>
<figure>
	<img src=/assets/dwelling-in-the-margins.jpg alt='Photo of a panorama over Val di Fiastra, bi-colorised in green, and with an overlaying text that says: “Dwelling in the Margins'>
</figure>
<h2 id="Livin%E2%80%99%20On%20The%20Edge" tabindex="-1"><a class="header-anchor" href="#Livin%E2%80%99%20On%20The%20Edge">Livin’ On The Edge</a></h2>
<p>When I was a delusional yet euphoric teenager, I was a total <abbr title='European Space Agency'>ESA</abbr> fanboy. I followed all the missions on the International Space Station as if they were episodes of TV series.</p>
<p>Naturally, I felt particularly drawn by the adventures of Italian astronauts, chiefly because admittedly I wanted to be them—and I felt like I could, if I worked hard enough.</p>
<p>One of the most effective marketing moves of the ESA’s Communication team was to have astronauts make playlists with their music. I played <a href="https://open.spotify.com/playlist/7qU9r2BlfLbvO6zbKs4XmJ" title="“Luca Parmitano (Beyond Mission)” on Spotify">Luca Parmitano’s one</a> over and over again.</p>
<p>Prophetically, Aerosmith’s <cite><a href="https://listenbrainz.org/track/99a63604-5bdd-4355-8079-642638beee3f/">Livin’ On The Edge</a></cite> was the song that stuck with me the most. Unsurprisingly, I did not really care about the lyrics, I merely focused on the title, which I interpreted with a typical adventurous, brave perspective, conditioned by a strong male gaze: push the limits, dare, pursue your dreams, etc.</p>
<p>It is troubling to recognise how much of the Western narrative has imbued a normalisation of a risky lifestyle as something to look up to, and I was completely subsumed by it. I wanted to become famous, I wanted to do big things, I wanted to live on the edge. I wanted to do what I could not.</p>
<p><a href="https://youtu.be/jG7dSXcfVqE">https://youtu.be/jG7dSXcfVqE</a></p>
<p>As I grew older, possibly more mature, my view shifted to a wholesome, critical, and aware interpretation: the margin is the place, both abstract and material, where the most uncomfortable truths are shoved. The margins of the poor, the queer, the radicals, the neurodivergent, the BIPoC, the immigrants, the disabled, and all possible intersections of those. Even though this perspective implies a more mindful understanding of the world, it still pervaded me with a blind urgency to act, powered by rage and fuelled by white-saviourism. I wanted to change things, I wanted to make the world a better place. Even if shared with a community, the weight of this mission bore on my shoulders, and got me suffocating.</p>
<figure>
	<img src=/assets/designers-osservano-cacca.jpg alt='A group of people looking at the icon of a pile of poo in Q-Sci, the typeface designed during XYZ, projected on a wall.'>
</figure>
<h2 id="The%20Carrier%20Bag%20Theory%20of%20Margins" tabindex="-1"><a class="header-anchor" href="#The%20Carrier%20Bag%20Theory%20of%20Margins">The Carrier Bag Theory of Margins</a></h2>
<p>Once more, Ursula Le Guin’s <cite><a href="https://monoskop.org/File:Le_Guin_Ursula_K_1986_1989_The_Carrier_Bag_Theory_of_Fiction.pdf" title="PDF of the book on Monoskop">Carrier Bag Theory of Fiction</a></cite> is able to enlighten any reflection by opening a complex, sincere, deeper, humbler perspective. Inspired by Elizabeth Fisher’s <q>Carrier Bag Theory of Evolution</q>, Le Guin observes that the thrill injected in fictional stories comes from a biased, unrealistic, aggressive interpretation of the <q>hero</q>. Male or not, the hero is characterised by extraordinary agency and willpower, he follows all missions as his vocations.</p>
<p>The Carrier Bag Theory of Fiction posits an environment that is tied more realistically to societal and evolutionary roles played by non-males, thus resizing the role of a character that fights for their life.</p>
<blockquote>
<p>I am an aging, angry woman laying mightily about me with my handbag, fighting hoodlums off. However I don’t, nor does anybody else, consider myself heroic for doing so. It’s just one of those damned things you have to do in order to be able to go on gathering wild oats and telling stories.</p>
</blockquote>
<p>Drawing inspiration from this approach to fiction, I want to open a debate on The Carrier Bag Theory of Margins.</p>
<p>Are the margins exclusively extreme and troubling conditions where human rights are warped, violated, or blatantly ignored? Could the margins also be forgotten, quiet, simple corners of the planet where people are better off enough that they wouldn’t need to fear for their life, still lingering in a precarious parenthesis of partial happiness?</p>
<p>To be living on the edge, right now, to me, it means to <strong>inhabit the margins</strong>, to <strong>dwell in the intrinsic boredom</strong> and simplicity of what is left behind in the rush towards something. It means to slow down and reject imposed behaviours, identities, definitions. It means <strong>to sit at the periphery</strong> of a black hole and activate the full thrust to escape its gravity. It means to accept that we are an awful lot in this Universe, and its corners that matter the most are not necessarily where the most of us are concentrated.</p>
<p>What lurks in between all the cables that connect and power our computers? I am impatient to read the outcomes of my friend <a href="https://pan.rent/@holly" title="@holly on Pan.rent">Holly</a>’s <a href="https://edgesmag.net/">Edges Magazine</a></p>
<div lang=it>
<h2 id="Parliamo%20come%20mangiamo%2C%20ovvero%20bene" tabindex="-1"><a class="header-anchor" href="#Parliamo%20come%20mangiamo%2C%20ovvero%20bene">Parliamo come mangiamo, ovvero bene</a></h2>
<p>Quant’è bello sollazzarsi con esperimenti tecno-artistici di nicchia, viaggiando in una dimensione parallela con un gruppetto di elettз che trascorre una settimana a rifinire le coordinate di un punto in un file SVG, che si perde fra codice e pennelli, fra microcontroller e carta vetrata!</p>
<p>Quanta ammirazione per il legittimo ascetismo a cui una persona creativa tende in fasi di massima ispirazione, la potenza di ciò che sta nascosto e rischia costantemente di essere schiacciato o spazzato via dal vento del mainstream!</p>
<p>Poi ci si trova, fra persone così, e si trascorrono ore a sperimentare e a giocare insieme. Si concepiscono opere minuscole o mastodontiche che potrebbero rivoluzionare il modo in cui vediamo le cose.</p>
<p>Fu così che orbitavamo, fluttuavamo, ci crucciavamo per come stavano andando le cose, ma non ci azzardavamo a mettere i piedi per terra.</p>
<p>Improvvisamente, la nostra astronave di sogni, ambizione, <em>priscio</em> e intellettualizzazione si schiantò sulla Terra.</p>
<p>D’un tratto, fummo confinati alla periferia. Il nostro veicolo alla deriva, esclusa ogni possibilità di fuga da questa realtà che ci stava così a cuore ma che ci guardavamo bene dall’abitare.</p>
<p>Fino a quel momento, avevamo toccato terra solo per fare benzina, ovvero per verificare se ci fosse qualche altra crisi o sfida da dover risolvere dall’alto con i nostri strumenti speciali geniali e rigorosamente open source.</p>
<p>Invece, ci trovammo a dover parlare con queste persone, che ti guardan storto se proferisci parole come <em lang=en>queer</em>, <em>governance</em>, <em>intersezionalità</em>. E ora?</p>
<p>Ci toccò usare la loro lingua, rivolgerci a loro come tutti e non tuttu, cercare di non degenerare in un litigio sull’anticapitalismo se ci mettevamo a parlare di <q>imprenditorialità</q>. Saremmo sopravvissutз?</p>
<p>Ciò che lз nostrз simili in orbita considererebbero stupido, banale, insignificante, diventò invece una questione fondamentale di conversazione. Le nostre sperimentazioni si spostarono dalla più estrema e complessa macchina alla costruzione di una sedia.</p>
<p><a href="https://youtu.be/0hqdcVrcVz8">https://youtu.be/0hqdcVrcVz8</a></p>
<p>È proprio avendo a che fare con quella sedia che ci accorgemmo di quanto stavamo dando per scontato. Di quanto l’umiltà e la banalità non andassero a braccetto. Anche la questione più semplice aveva un valore immenso, quando contestualizzato.</p>
<p>Forse, sorprendentemente, stavamo imparando ad abitare i margini, senza colonizzarli.</p>
<figure style='margin-bottom: 1em;'>
	<img src=/assets/gioxxi-fede-videocall.jpg alt='Foto di Giovanna e Fede in videocall, sedutз su una panchina e baciatз dal Sole.'>
	<figcaption>Ecco due designer alle prese con i margini di <a href=https://twmfactory.it/project/non-solo-design-ma/ title='Non solo design ma… | TWM Factory'>ciò che non è solo design</a>.</figcaption>
</figure>
<h2 id="Fosche%20epifanie%2C%20equilibri%20precari" tabindex="-1"><a class="header-anchor" href="#Fosche%20epifanie%2C%20equilibri%20precari">Fosche epifanie, equilibri precari</a></h2>
<p>Dove si trova, e quanto arbitrario è, l’equilibrio fra la ricerca della propria realizzazione e contribuire a lasciare il mondo un po’ meglio di come l’abbiamo trovato? (<em>Non me ne vogliate per <a href="https://it.wikiquote.org/wiki/Robert_Baden-Powell" title="Robert Baden-Powell su Wikiquote">la citazione scout</a>, è più forte di me</em>)</p>
<p>Come possiamo tessere, rafforzare, coltivare una rete sconfinata e sconfinante di realtà affini o allineate, pur radicandoci abitando radicalmente la periferia?</p>
<figure>
	<img src=/assets/gianvito-videocall-orto-pensieri.jpg alt='Gianvito in videochiamata in mezzo all’Orto dei Pensieri'>
</figure>
<p>Dobbiamo mappare, connettere, documentare, archiviare, curare. Informazioni, illuminazioni, risorse che affluiscono dall’ardore dell’irrequietezza di un anelito verso la decrescita felice e gioiosa, non meramente da numeri e dati. Poi? Cosa ne facciamo?</p>
<p>Fino a che punto l’identificarsi con una missione non diventa un annichilimento di chi individualmente, profondamente, si è o si desidera essere?</p>
<p>Forse non si tratta solo di partire, fuggire, poi tornare. Tornare dove? Il ritorno è valido solo se è solo nella propria terra natale, oppure il solo tornare in Italia ha valore?</p>
<p>Quanto di ciò che abbiamo fatto, a Loro Piceno così come nelle nostre eroiche imprese di salvataggio del pianeta Terra, è <em>performativo</em>, quanto è invece desiderio genuino di realizzare qualcosa? Realizzare qualcosa, però, non è intrinsecamente, per antonomasia, una <em>performance</em>? Fino a che punto, dunque, una performance va demonizzata? Quando smette di avere valore, manifestando, ostentando, molto più di quanto significhi realmente?</p>
</div>
<p>How to survive the constant thought that somewhere you haven’t been to, something you haven’t read, someone you haven’t met, would potentially revolutionise your life?</p>
<p>How to achieve Low-Tech, without being too radical and avoiding genuinely useful tools, while not over-engineering everything?</p>
<figure>
	<img src=/assets/mohamed-arduino-circuito.jpg alt='Mohamed connette un lettore NFC ad una scheda madre Arduino.'>
</figure>
<figure>
	<img src=/assets/nico-salda-letto.jpg alt='Nicolai mentre salda una parte di un letto in ferro.'>
</figure>
<div lang=it>
<h2 id="Sull%E2%80%99intelligenza" tabindex="-1"><a class="header-anchor" href="#Sull%E2%80%99intelligenza">Sull’intelligenza</a></h2>
<p>Di tutti i diritti, il più sottovalutato è quello alla stupidità.</p>
<p>Il quoziente intellettivo, secondo standard occidentali, è una terribile discriminazione di chi ha facoltà intellettive minori. Ci abituiamo ad avere a che fare con persone che sono intelligenti più o meno quanto noi. Chi come me è sapiosessuale è attrattə da chi è <em>ugualmente</em> o <em>più</em> intelligente, perciò è facile perseguire una visione di mondo felice, equo, anticapitalista, antifascista. Tuttavia, penso sottovalutiamo la pesantezza del processo intellettuale necessario per costruirlo e perseguirlo. Come possiamo comunicare e attuare una lotta complessa, sottile, intricata, senza escludere chi <em>non ci arriva</em>? Le persone poco occintelligenti (ovvero intelligenti secondo standard occidentali) hanno il medesimo diritto a godere dei benefici di una società migliore. Eppure, quando i piani falliscono, molte colpe sono inavvertitamente addossate su di loro: <a href="https://networkcultures.org/longform/2026/02/02/romanian-political-economy-fascism-georgescu/" title="Alive and Wounded: It’s Not Stupidity That Builds a Fascist">votare con la pancia</a>, lasciarsi “fregare”, oppure fregarsene attivamente. Forse, abitare i margini significa anche costruire una società esente da discriminazione sulla base del <strong>capitale intellettivo</strong>. Se sono più intelligente, non sono migliore, non valgo di più, ma soprattutto non dovrei approfittarmene per avere più successo. Quindi, cosa posso fare?</p>
<p>A chiunque legga: vi prego di inviarmi qualunque risorsa che conosciate su questo argomento, merita molta più attenzione di quanta mi sembra riceverne.</p>
</div>
<h2 id="Togetherness" tabindex="-1"><a class="header-anchor" href="#Togetherness">Togetherness</a></h2>
<p>Despite not having any answers, I believe one week in the middle of the Appennine Mountains confirmed my pseudo-method.</p>
<p><strong>Togetherness</strong>.</p>
<figure>
	<img src=/assets/loro-selfie.jpg alt='Selfie all together in front of Ènosteria, Loro Piceno'>
	<figcaption>The last night of XYZ we took a selfie in front of <a href=/enosteria/ hreflang=it>ÈnOsteria</a>, whimsical, unique corner of Loro Piceno where the most unbelievable things become true.</figcaption>
</figure>
<p>Nevertheless, mere <q>togetherness</q> seems trivial, cheesy. Yet again, the challenge lies in carefully balancing the factors that lead to it.</p>
<ul>
<li>To be together with the right people: not too similar to end up being in a bubble (see <q>Parliamo come mangiamo, ovvero bene</q>), but not so different to jeopardise everything with friction.</li>
<li>To be together at the right time: it may be super clear who we want to be together with, but maybe the stars are not aligned, and they are in a different place (both literally and metaphorically) when you are ready, or vice-versa.</li>
<li>To be together in the right place: togetherness only works when bodies you are together with breathe the same molecules you do.</li>
<li>To be together without annihilating oneself: balancing personal desires and identity with a choral, communal, mission and struggle.</li>
<li>To be together cosily: being together with many people is a mob, which is beyond the point; being together with a couple of people is too easy. What is the right amount of folks to be with so that you know them well enough, there is a feeling of intimacy and cosiness, while still being many enough to be a stronghold to join the fight?</li>
</ul>
<p>Possibly, there are more.</p>
<div lang=it>
<h2 id="La%20missione" tabindex="-1"><a class="header-anchor" href="#La%20missione">La missione</a></h2>
<p>Per i prossimi 13 mesi, ovvero fino alla mia laurea, la mia missione è progettare il mio ritorno, la mia potenziale vita nel Ponente Ligure. Sono terrorizzato da questo piano, che tuttavia continua a insinuarsi nella mia mente in ogni momento, complici vari segni e segnali che la vita mi manda, ma soprattutto <a href="https://pan.rent/@ceci">Ceci</a>, che condivide alcune delle mie riflessioni in questo senso.</p>
<p>Scrivo questa missione qui, a imperitura memoria, così che, in un modo o nell’altro, rimanga incastrato e costretto a far fronte a questa gigantesca questione di vita.</p>
<p><a href="https://pan.rent/@tommi/116508715762388402">https://pan.rent/@tommi/116508715762388402</a></p>
<p>Vorrei conoscere persone che si sono trasferite o che sono tornate.<br>
Vorrei comprendere se la valle Argentina, precisamente <a href="https://tommi.space/solo/">San Faustin</a>, sia il luogo dove voglio veramente andare, o se posso guardare oltre.<br>
Vorrei approfondire i limiti, le criticità e le problematicità di questa scelta.<br>
Vorrei preventivamente esplorare le potenziali sfide che mi scoraggeranno, che mi potrebbero portare a desistere.<br>
Vorrei trovare una connessione fra queste riflessioni e il mio percorso pseudo-accademico (perché seriamente accademico io non sono) in <a href="https://xpub.nl">XPUB</a>.</p>
<figure>
	<img src=/assets/casa-azzurra.jpg alt='Silhouette di persone che parlano di fronte al salotto di Casa Azzurra, a Loro Piceno.'>
	<figcaption>Di massima ispirazione e grande esempio sono le squisite persone di <a href=https://inabitalab.com>Inabita</a>, che mi hanno ospitato una sera a cena.</figcaption>
</figure>
</div>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/margins/</guid>
		<pubDate>Sun, 17 May 2026 13:31:00 +0200</pubDate>
	</item>

	<item>
		<title>ÈnOsteria</title>
		<link>https://tommi.space/enosteria/</link>
		<description><![CDATA[<p>La più magica, speciale, indimenticabile, brillante osteria della Val di Fiastra.</p>
<p>Luogo speciale di <em lang=en><a href=/margins/#Togetherness>togetherness</a></em>, ÈnOsteria è fieramente, impavidamente, gioiosamente governata da Anna nell’impervio Appennino Marchigiano.</p>
<figure>
	<img src=/assets/selfie-anna-enosteria.jpg alt='Selfie con Anna'>
</figure>
<p>Apre alle ore 18:00, ma non chiude mai, in quando entrarvi significa tuffarsi in un’ebbra dimensione parallela.</p>
<figure>
	<img src=/assets/loro-selfie.jpg alt='Selfie all together in front of Ènosteria, Loro Piceno'>
</figure>
<figure>
	<img src=/assets/loro-party.jpg alt='Foto dalla festa finale di XYZ a Loro Piceno.'>
</figure>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/enosteria/</guid>
		<pubDate>Sun, 10 May 2026 03:45:12 +0200</pubDate>
	</item>

	<item>
		<title>IPv6</title>
		<link>https://tommi.space/ipv6/</link>
		<description><![CDATA[<p>I was always curious but very confused by IPv6. As a successful attempt to procrastinate a mountain of other “more important” things, I watched a few videos to understand it better, both in terms of its usage and its functioning, but also the politics of it.</p>
<p>Wow, it is a much bigger deal than it seems to be from the outside!</p>
<h2 id="Resources" tabindex="-1"><a class="header-anchor" href="#Resources">Resources</a></h2>
<p>Here are the videos I watched to learn more about it:</p>
<p><a href="https://youtu.be/aor29pGhlFE">https://youtu.be/aor29pGhlFE</a></p>
<p><a href="https://youtu.be/oItwDXraK1M">https://youtu.be/oItwDXraK1M</a></p>
<div class=embed>
	<iframe src=https://media.ccc.de/v/why2025-246-the-state-of-ipv6/oembed title='The state of IPv6' allowfullscreen></iframe>
</div>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/ipv6/</guid>
		<pubDate>Sun, 19 Apr 2026 13:50:00 +0200</pubDate>
	</item>

	<item>
		<title>I want to make a website</title>
		<link>https://tommi.space/website-work/</link>
		<description><![CDATA[<p>It is quite fun and anecdotal that in different occasions and in the most unexpected ways people reach out to me and ask for my help to make a website, at times offering to hire me to do it.</p>
<p>Here is a #wip reference of fundamental information required to make a general evaluation of the amount of work needed and, possibly, an idea of the budget.</p>
<ul>
<li>What is the purpose of the website? (<em>A small set of information pages</em>, <em>a blog/a newsletter, an interactive database, something more complex…</em>)</li>
<li>Do you want to edit the website yourself/yourselves?
<ul>
<li>How often? (<em>Once a year, once a month, once a week…</em>)</li>
<li>How much? (<em>Just one page, blog posts, any page…</em>)</li>
<li>How many people would need editing rights?</li>
</ul>
</li>
<li>Do you need an authentication or login system for the public? (<em>Would they need to submit information, subscribe to a newsletter…</em>)</li>
<li>If you ask me to do something that requires a technology I can also learn about while building the website, that may lower my hourly rate.</li>
<li>Consider that website development does not end after the website is <em>made</em>. There are <em>maintenance</em> and <em>hosting</em> costs. Understanding all the points above can give a quite clear idea of how much they would be. Hosting <em>may</em> be free and generally it can be limited to 3-7€ per month. Maintenance mostly depends on the website editing frequency.</li>
</ul>
]]></description>
		<author>surfing@tommi.space (Tommi)</author>
		
		<guid>https://tommi.space/website-work/</guid>
		<pubDate>Sun, 19 Apr 2026 10:58:17 +0200</pubDate>
	</item>



	</channel>
</rss>
