<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/rss/rss.xsl"?>
<rss version="2.0">
  <how_styling_rss_works style="display: none;" xml:lang="en-us" type="html">
# Styling RSS w XLS notes

XML files can include both xml-stylesheets (XSLT) and normal stylesheets (CSS).
XSLT files are transformations, and allow you to process an XML doc into an HTML doc (among other things).
In this case, it doesn't matter if we import the CSS here or via /rss/rss.xsl -- it gets applied either way.
The XSLT will output HTML for us, but the HTML content from the RSS feed (i.e., the bodies of posts) must be unescaped.
There's a special attribute (`disable-output-escaping`) which will do that.
However, we need to run some JS, too, because not every browser supports decoding html like that.

* firefox does not seem to support `disable-output-escaping="yes"`, so it requires the JS in rss.js
* chrome does support `disable-output-escaping="yes"`, so don't remove those attrs

The JS works by testing `#cometestme`, and then (if needed) looping over elements matching `[name=decodable]` and basically `el.innerHTML = el.textContent`.

Note, `disable-output-escaping="yes"` is a legacy feature from XSLT v1.0; the new way to do it is with character maps.
When I tried those, they didn't seem to work in firefox (which is when I tried the original JS).
IDK if chrome support character maps, but if it does, then that is a good update to implement. TODO I guess.

</how_styling_rss_works>
  <channel>
    <title>About Max / Bio</title>
    <description type="html" xml:lang="en-us">&lt;h3 id="bio"&gt;Bio&lt;/h3&gt;

&lt;p&gt;&lt;img src="https://www.gravatar.com/avatar/9e9fdbd02d59a6f9410d4a563393ed29?s=1600" class="left" style="width: 25%; padding: 0px 2rem 1rem 0;"&gt;&lt;/p&gt;

&lt;p&gt;I am an amateur philosopher practicing the school of &lt;a href="https://criticalfallibilism.com"&gt;Critical Fallibilsm&lt;/a&gt;. My favorite philosophy topics are: epistemology, learning, systems design, communication, morality, project planning and business, and general life skills and attitudes. I spent the last half of 2020 improving my thinking methods via (commercial) one-on-one philosophy tutoring from Elliot Temple. Those &lt;a href="https://www.youtube.com/playlist?list=PLKx6lO5RmaetREa9-jt2T-qX9XO2SD0l2"&gt;52 tutorials (~100 hrs) are available free on YouTube&lt;/a&gt; and you can read &lt;a href="https://xertrov.github.io/fi/"&gt;my &lt;q&gt;learning FI&lt;/q&gt; site&lt;/a&gt; and my &lt;a href="https://curi.us/2380"&gt;microblog&lt;/a&gt; to see the philosophy work I was doing at that time. The tutorials started with my goal of improving my writing quality, but they covered a very wide range of topics, like grammar, procrastination, social dynamics (e.g. analysing + understanding lies and dishonesty), &lt;a href="https://www.yesornophilosophy.com/"&gt;yes/no philosophy (epistemology)&lt;/a&gt;, learning methods, and having successful discussions.&lt;/p&gt;

&lt;p&gt;As a result of the improvements to my thinking methods, in January 2021 I &lt;a href="https://www.youtube.com/watch?v=_Hd1AmLPEyA&amp;t=418s"&gt;unendorsed all my previous ideas&lt;/a&gt;. That means that I revoked my implicit endorsement of projects, ideas, opinions, etc that I had previously worked on, advocated, promoted, etc. There&amp;#39;s more details in the above-linked video. This &lt;em&gt;about&lt;/em&gt; page was sorely out-of-date prior to the update on 11th July 2021. You can &lt;a href="https://github.com/xk-io/xk-io.github.io/commits/master/about.md"&gt;see previous versions on github&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;For work, I do mostly software stuff. I&amp;#39;m pretty good at that, generally; you can &lt;a href="https://github.com/xertrov"&gt;check out my github profile if you like&lt;/a&gt;. I&amp;#39;ve built &lt;a href="https://github.com/secure-vote/sv-light-smart-contracts"&gt;sophisticated systems of smart contracts&lt;/a&gt; (&lt;a href="https://coveralls.io/github/secure-vote/sv-light-smart-contracts?branch=master"&gt;&lt;strong&gt;with 99.7% test coverage&lt;/strong&gt;&lt;/a&gt;) as the backend for a secure online-voting SaaS product. I&amp;#39;ve built &lt;a href="https://github.com/voteflux/voting-alpha"&gt;sophisticated IaC cloud systems&lt;/a&gt; with bespoke &lt;a href="https://github.com/voteflux/voting-alpha/blob/master/stack/nested/sv-chaincode-loader.yaml"&gt;advanced&lt;/a&gt; &lt;a href="https://github.com/voteflux/voting-alpha/blob/master/stack/cr/chaincode/chaincode.py"&gt;automation&lt;/a&gt; and &lt;a href="https://github.com/voteflux/voting-alpha/blob/master/manage"&gt;devops tools&lt;/a&gt;. &lt;a href="https://github.com/voteflux/THE-APP"&gt;SPAs&lt;/a&gt; and &lt;a href="https://github.com/secure-vote/sv-voting-mvp/tree/master/web/src/SecureVote/SPAs/SwarmMVP"&gt;webapps&lt;/a&gt; in Elm, Purescript, and Typescript (VueJS) with features like &lt;a href="https://github.com/voteflux/THE-APP/blob/1699bee91d0e0b62309ea98ab7f6ff89ee9ceb56/packages/ui/src/components/Volunteers/NDA/NdaStatusAndSign.vue"&gt;signature input&lt;/a&gt; and &lt;a href="https://github.com/voteflux/THE-APP/blob/1699bee91d0e0b62309ea98ab7f6ff89ee9ceb56/packages/lib/pdfs/nda/generatePdf.ts"&gt;PDF generation&lt;/a&gt;, &lt;a href="https://github.com/voteflux/THE-APP/blob/1699bee91d0e0b62309ea98ab7f6ff89ee9ceb56/packages/ui/static/anon_validation.html#L85"&gt;headless browser automation&lt;/a&gt;, and &lt;a href="https://github.com/secure-vote/sv-auditor/blob/master/src/SV/AuditWeb.purs"&gt;crypto stuff like auditing an on-chain election&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I am very comfortable learning new languages, frameworks, toolkits, etc. I have a strong preference towards safe programming techniques. Some examples: rich static types (e.g. Haskell, Purescript); well integrated functional techniques (e.g. Rust); unique compiler-level safety (e.g. Rust, Elm); and declarative frameworks (e.g. Cloudformation/IaC, Tailwind CSS). I really like type-level programming and am disappointed at the lack of support for it in languages like Rust. I think things like higher-kinded types, functional dependencies, and type-level rows are &lt;em&gt;incredibly&lt;/em&gt; powerful, but the current implementations and tooling are ultimately lacking, making the act of doing type-level programming harder than it needs to be. There are some exceptions to my preference for safe languages, too. I quite like Ruby and Rails (though have some criticisms, too), and I have a new-found appreciation for SQL. I don&amp;#39;t like javascript much, but it&amp;#39;s not so bad anymore with modern ecmascript and typescript. I don&amp;#39;t hate it.&lt;/p&gt;

&lt;p&gt;I contributed an in-depth chapter to &lt;a href="https://link.springer.com/chapter/10.1007/978-3-030-03035-3_13"&gt;Data61&amp;#39;s &lt;em&gt;Architecture for Blockchain Applications&lt;/em&gt; textbook&lt;/a&gt; about the smart contract architecture that I used for SecureVote&amp;#39;s backend.&lt;/p&gt;

&lt;p&gt;My two most well-known past projects are likely &lt;a href="https://voteflux.org"&gt;Flux&lt;/a&gt; and &lt;a href="https://secure.vote"&gt;SecureVote&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Flux is a political party I founded in 2015 to introduce better methods of doing democracy. Particularly, I invented a new way to do democracy -- &lt;em&gt;Issue Based Digital Democracy&lt;/em&gt; (IBDD) -- built around foundational concepts from epistemology and free market economics such as error correction, cycles of conjecture and criticism, specialization and trade, division of labor, comparative advantage, and arbitrage. Flux ran in state and federal elections (in Australia) in 2016, 2017, 2019, and 2020.&lt;/p&gt;

&lt;p&gt;SecureVote is a startup (in indefinite hiatus), founded in 2016, that produces secure online voting software and infrastructure. We own &lt;a href="https://patents.google.com/patent/US20190371106A1/en"&gt;a patent on the most space-efficient method&lt;/a&gt; of secure, online, p2p secret ballot. In 2017 I publicly ran &lt;a href="https://www.reddit.com/r/Bitcoin/comments/5xkvc1/psa_were_running_a_stress_test_of_our_blockchain/"&gt;a 24 hr stress test&lt;/a&gt; of our prototype high-capacity voting architecture -- this achieved 1.6 billion votes anchored to the Bitcoin blockchain and was able to be audited by the public. Based on those results, a 2016 15&amp;quot; MacBook Pro would have capable of processing up to 16 billion votes in 24 hours, i.e., the 1.6 billion-vote stress test used approximately 10% of that macbook&amp;#39;s computational capacity on the bottleneck task: signature validation (I guess mb it would thermal throttle, tho 🤨).&lt;/p&gt;

&lt;p&gt;Some other past projects of mine:&lt;/p&gt;

&lt;h5 id="bitchomp-mining-pool-2011"&gt;BitChomp Mining Pool (2011)&lt;/h5&gt;

&lt;p&gt;I ran a NMC/BTC mining pool (BitChomp) for a short while in 2011. That died after the pool became insolvent due to a repeating-payments bug in my BTC payout code. For whatever reason the same code worked fine for NMC payouts, but BTC payouts encountered an exception between the &lt;em&gt;send BTC tx&lt;/em&gt; and &lt;em&gt;record the payout in the DB&lt;/em&gt; steps. The regular cronjob to trigger payouts meant that (by the time I woke up) BitChomp&amp;#39;s first Bitcoin mining payouts (about ~7-8 BTC out of 50 BTC reward) had been sent to miners 6 times over until the wallet was drained. The reward distribution model (PPLNS, or SMPPS, mb) meant that the pool was able to build up a buffer of excess reward, but that needed to be maintained to pay miners later during unlucky periods (or something like that). The takeaway is that distributing the excess like this meant that the internal accounting of the pool was out of wack, and meant it was insolvent. I learned a valuable lesson about handling atomic, irreversible events and DB synchronization; and I&amp;#39;m glad it happened early in my career and not in a high-stakes situation.&lt;/p&gt;

&lt;h5 id="marketcoin-ethereum-eudemonia-the-grachten-quanta-may-2013-to-august-2014"&gt;Marketcoin, Ethereum, Eudemonia, The Grachten, Quanta (May 2013 to August 2014)&lt;/h5&gt;

&lt;p&gt;I tried to launch a &lt;a href="https://github.com/XertroV/MarketcoinWhitepaper"&gt;distributed-exchange blockchain -- &lt;em&gt;Marketcoin&lt;/em&gt; -- in May 2013&lt;/a&gt;. The architecture is still workable and better (higher capacity, lower fee) than the &lt;q&gt;DEX&lt;/q&gt;s around today (like Uniswap/Balancer). In Dec 2013 -&amp;gt; Feb/March 2014 I worked with the Ethereum team doing self-direct work around smart contracts and wrote &lt;a href="https://github.com/xertrov/coppr"&gt;(to my knowledge) the first smart contract testing framework&lt;/a&gt; alongside a test implementation of Marketcoin&amp;#39;s &lt;a href="https://github.com/XertroV/coppr/blob/master/marketcoin.py"&gt;price matching and escrow engine&lt;/a&gt; and a precursor to BTC Relay comprised of 3 contracts: &lt;a href="https://github.com/XertroV/coppr/blob/master/chainheaders.py"&gt;CHAINHEADERS&lt;/a&gt; (for Bitcoin&amp;#39;s headers-only consensus), &lt;a href="https://github.com/XertroV/coppr/blob/master/merkletracker.py"&gt;MERKLETRACKER&lt;/a&gt;, and &lt;a href="https://github.com/XertroV/coppr/blob/master/spv.py"&gt;SPV&lt;/a&gt;. To be clear: if the design of Ethereum smart contracts (and tooling around their authorship) had not changed significantly before launch, this is probably the earliest near-functional decentralized, cross-chain exchange.&lt;/p&gt;

&lt;p&gt;In April-July 2014, a friend and I started a short-lived project, &lt;a href="https://github.com/eudemonia-research/"&gt;Eudemonia Research&lt;/a&gt;, where I &lt;a href="https://bitcointalk.org/index.php?topic=598784.msg6588004;topicseen#msg6588004"&gt;returned to Marketcoin&lt;/a&gt; and wrote, from scratch, a blockchain framework for fast development of custom blockchains: &lt;a href="https://github.com/eudemonia-research/cryptonet/blob/master/cryptonet/chain.py"&gt;Cryptonet&lt;/a&gt;. It&amp;#39;s like &lt;a href="https://github.com/paritytech/substrate/commit/0d26ee79a820647ef6abcc999c9f65763e3d1ef7"&gt;Parity&amp;#39;s Substrate&lt;/a&gt;, except &lt;a href="https://www.google.com/search?client=firefox-b-d&amp;q=days+between+april+1+2014+and+Nov+7+2017"&gt;1,316&lt;/a&gt; days older, written in Python, and dead. I used cryptonet for some other important prototypes, too.&lt;/p&gt;

&lt;p&gt;One was &lt;a href="https://github.com/eudemonia-research/cryptonet/blob/master/examples/grachten.py"&gt;The Grachten&lt;/a&gt; (originally &lt;a href="https://github.com/XertroV/gpdht"&gt;GPDHT&lt;/a&gt;), an early implementation of a blockchain scalability soln based on merged-mining and something like pseudo-sharding. It later went on to be refined and coined [a microchain by &lt;a href="https://www.youtube.com/watch?v=o6D8Up411dI&amp;t=1756s"&gt;Gav Wood&lt;/a&gt;. When &lt;a href="https://github.com/polkadot-io/polkadot-white-paper/blob/5a3f902bda34fe309251edeb9b6382154fc26680/PolkaDotPaper.tex#L155"&gt;Gav Wood said&lt;/a&gt; the following, he was talking about our conversation about this idea. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Decoupling the underlying consensus from the state-transition has been informally proposed in private for at least two years---Max Kaye was a proponent of such a strategy during the very early days of Ethereum.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Another important prototype I built using cryptonet was &lt;a href="https://github.com/XertroV/quanta-test/blob/master/quanta.py"&gt;Quanta&lt;/a&gt; -- which is the world&amp;#39;s first implementation of the generalization of Nakamoto consensus to a DAG that is capable of merging histories from multiple parents. The method I created for Quanta was independently discovered a year later by &lt;a href="https://www.avivz.net/pubs/15/inclusive_btc_full.pdf"&gt;Yoad Lewenberg, Yonatan Sompolinsky, and Aviv Zohar in &lt;em&gt;Inclusive Block Chain Protocols&lt;/em&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;hr&gt;

&lt;p&gt;All content is on GitHub: &lt;a href="https://github.com/xk-io/xk-io.github.io"&gt;https://github.com/xk-io/xk-io.github.io&lt;/a&gt;.&lt;/p&gt;
</description>
    <categoryTags>
    </categoryTags>
    <link>https://forum.xk.io/n/200</link>
    <item>
      <title/>
      <description type="html" xml:lang="en-us">
&lt;div class="bg-white even:bg-white w-full max-w-full"&gt;
    &lt;div&gt;
      &lt;div class="py-2 "&gt;
          &lt;div class="content markdown p-4 bg-c-content-body-bg rounded"&gt;
            &lt;p&gt;Is it possible to get into contact with you Max? &lt;/p&gt;

          &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;

</description>
      <categoryTags>
      </categoryTags>
      <pubDate>Wed, 08 Jul 2026 12:13:16 +0000</pubDate>
      <link>https://forum.xk.io/n/10034</link>
      <guid>https://forum.xk.io/n/10034</guid>
      <author>u/varied_shrub</author>
      <authorLink>/a/344</authorLink>
      <nodeId>10034</nodeId>
    </item>
    <item>
      <title/>
      <description type="html" xml:lang="en-us">
&lt;div class="bg-white even:bg-white w-full max-w-full"&gt;
    &lt;div&gt;
      &lt;div class="py-2 "&gt;
          &lt;div class="content markdown p-4 bg-c-content-body-bg rounded"&gt;
            &lt;p&gt;Hi, FYI, Flux is dead: &lt;a href="https://voteflux.org/2022/04/20/wrongful-deregistration/"&gt;https://voteflux.org/2022/04/20/wrongful-deregistration/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I&amp;#39;m no longer interested in pursuing anything around digital democracy. &lt;/p&gt;

&lt;p&gt;I now think that what Flux was trying to do (and widespread digital democracy more broadly) is a fool&amp;#39;s errand. There are much bigger problems with govt/democracy, and those problems will prevent digital democracy making any substantial impact. The AEC&amp;#39;s flagrant disrespect for the Electoral Act and consistent head-in-the-sand style denial of any fault is an example of this. Moreover, voluntarily participating in broken systems (e.g., starting a political party) is, in-essence, consenting to it and publicly supporting it as legitimate. I don&amp;#39;t think that&amp;#39;s a good thing to do, and the right thing is to opt-out of those systems to whatever extent is possible. &lt;/p&gt;

&lt;p&gt;There are two philosophy books I recommend you read that discuss these sorts of issues. Karl Popper&amp;#39;s &lt;em&gt;Enemies of the Open Society&lt;/em&gt;, and Ayn Rand&amp;#39;s &lt;em&gt;Atlas Shrugged&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;IMO, digital democracy actually presents a risk in some ways, in that it might make government interference a lot easier. IMO, the further the government is from your life, the better.&lt;/p&gt;

          &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;

</description>
      <categoryTags>
        <item>
          <text>flux</text>
        </item>
      </categoryTags>
      <pubDate>Thu, 08 Dec 2022 21:53:12 +0000</pubDate>
      <link>https://forum.xk.io/n/10029</link>
      <guid>https://forum.xk.io/n/10029</guid>
      <author>u/max</author>
      <authorLink>/a/1</authorLink>
      <nodeId>10029</nodeId>
    </item>
    <item>
      <title>Hi Max, Am trying to get in contact with you. Would love to chat about Digital Democracy and how we can make it happen. Hope to hear soon. Cheers</title>
      <description type="html" xml:lang="en-us">
&lt;div class="bg-white even:bg-white w-full max-w-full"&gt;
    &lt;div&gt;
      &lt;div class="py-2 "&gt;
          &lt;div class="content markdown p-4 bg-c-content-body-bg rounded"&gt;
            &lt;p&gt;My emails jmfarthing88@gmail.com.&lt;/p&gt;

&lt;p&gt;By the way, amazing work with Flux.&lt;/p&gt;

          &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;

</description>
      <categoryTags>
      </categoryTags>
      <pubDate>Tue, 08 Nov 2022 20:00:34 +0000</pubDate>
      <link>https://forum.xk.io/n/10028</link>
      <guid>https://forum.xk.io/n/10028</guid>
      <author>u/upwinger</author>
      <authorLink>/a/296</authorLink>
      <nodeId>10028</nodeId>
    </item>
    <item>
      <title>Track Record</title>
      <description type="html" xml:lang="en-us">
&lt;div class="bg-white even:bg-white w-full max-w-full"&gt;
    &lt;div&gt;
      &lt;div class="py-2 "&gt;
          &lt;div class="content markdown p-4 bg-c-content-body-bg rounded"&gt;
            &lt;p&gt;This post and addendums are to track other bodies of work that aren&amp;#39;t included directly on this site (or at least not when I post them).&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;My microblog on curi.us: &lt;a href="https://curi.us/2380"&gt;https://curi.us/2380&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;My &lt;em&gt;Max Learning FI&lt;/em&gt; site: &lt;a href="https://xertrov.github.io/fi"&gt;https://xertrov.github.io/fi&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Software: &lt;a href="https://github.com/xertrov"&gt;https://github.com/xertrov&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

          &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div&gt;
      &lt;div class="py-2 "&gt;
          &lt;div class="p-2 pl-4 bg-c-title-bg rounded-t"&gt;
              Addendum by
              &lt;a href="/a/1"&gt;u/max&lt;/a&gt;
              after
              &lt;span class="has-tooltip rounded-t-none"&gt;
                &lt;span class="tooltip"&gt;2021-10-23 09:05:35 UTC&lt;/span&gt;
                24 days
              &lt;/span&gt;

          &lt;/div&gt;
          &lt;div class="content markdown p-4 bg-c-content-body-bg rounded-b"&gt;
            &lt;ul&gt;
&lt;li&gt;CF forum: &lt;a href="https://discuss.criticalfallibilism.com/u/max/summary"&gt;https://discuss.criticalfallibilism.com/u/max/summary&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;YT: &lt;a href="https://www.youtube.com/channel/UCzbr9m9G05Y5uy3HQuJWAlw"&gt;https://www.youtube.com/channel/UCzbr9m9G05Y5uy3HQuJWAlw&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Twitter: &lt;a href="https://twitter.com/xertrov"&gt;https://twitter.com/xertrov&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Reddit: &lt;a href="https://www.reddit.com/user/646463"&gt;https://www.reddit.com/user/646463&lt;/a&gt;, &lt;a href="https://www.reddit.com/user/xertrov"&gt;https://www.reddit.com/user/xertrov&lt;/a&gt;, &lt;a href="https://www.reddit.com/user/maxkaye"&gt;https://www.reddit.com/user/maxkaye&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Instagram (just for climbing stuff): &lt;a href="https://www.instagram.com/maxsbeta/"&gt;https://www.instagram.com/maxsbeta/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

          &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div&gt;
      &lt;div class="py-2 "&gt;
          &lt;div class="p-2 pl-4 bg-c-title-bg rounded-t"&gt;
              Addendum by
              &lt;a href="/a/1"&gt;u/max&lt;/a&gt;
              after
              &lt;span class="has-tooltip rounded-t-none"&gt;
                &lt;span class="tooltip"&gt;2026-03-28 07:00:10 UTC&lt;/span&gt;
                over 4 years
              &lt;/span&gt;

          &lt;/div&gt;
          &lt;div class="content markdown p-4 bg-c-content-body-bg rounded-b"&gt;
            &lt;p&gt;I&amp;#39;ve written and published over 100 Openplanet plugins for Trackmania 2020. Some (like Editor++ and Ghosts++) involved considerable reverse engineering. &lt;a href="https://openplanet.dev/u/XertroV"&gt;My Openplanet author page&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;I won the &lt;a href="https://trackmania.exchange/usershow/53302"&gt;TMX Lifetime Achievement Award&lt;/a&gt; in 2024, and from TM Awards I&amp;#39;ve won &lt;a href="https://youtu.be/MggntO609_0?t=8419"&gt;Community Person of the Year 2024&lt;/a&gt; and Plugin of the Year for &lt;a href="https://youtu.be/MggntO609_0?t=5346"&gt;2024 (for Map Together)&lt;/a&gt; and &lt;a href="https://youtu.be/ZTgQJLz704Y?t=2905"&gt;2025 (for Proximity Chat)&lt;/a&gt;&lt;/p&gt;

          &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;

</description>
      <categoryTags>
        <item>
          <text>tm2020</text>
        </item>
        <item>
          <text>programming</text>
        </item>
      </categoryTags>
      <pubDate>Wed, 29 Sep 2021 11:53:55 +0000</pubDate>
      <link>https://forum.xk.io/n/10014</link>
      <guid>https://forum.xk.io/n/10014</guid>
      <author>u/max</author>
      <authorLink>/a/1</authorLink>
      <nodeId>10014</nodeId>
    </item>
  </channel>
</rss>
