<?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>Is AI code a liability?</title>
    <description type="html" xml:lang="en-us">&lt;p&gt;Some thoughts on AI works, copyright, and licenses.&lt;/p&gt;

&lt;p&gt;To start with, my rough understanding of AI works and copyright are that AI works are not copyrightable unless one specifically has like unique creative input as part of the process. I don&amp;#39;t know what the threshold would be since generally I&amp;#39;d guess that the unique composition of a prompt is not enough (otherwise AI art would mostly be copyrightable). I also don&amp;#39;t know how well this precedent has been set or in which jurisdictions. &lt;/p&gt;

&lt;p&gt;With software licenses, my understanding is that the right to license software is built upon copyright law. Owning the copyright for some work is prerequisite for legally publishing it under some license. &lt;/p&gt;

&lt;p&gt;If we take AI art as a precedent, then simply embedding an idea in a prompt is not sufficient to own copyright. This lines up with my understanding of IP law more generally, in that you cannot own ideas, but you own an embodiment: either a creative work, via copyright, or a design, via a patent. &lt;/p&gt;

&lt;p&gt;Therefore, most AI written code is not copyrightable, distributing it under a license is potentially some kind of like copyright fraud (I&amp;#39;m not sure exactly what this would be legally), and integrating it into projects might break the terms of some licenses or is at least a liability for the maintainer (since you typically need to own the copyright of code to contribute it).&lt;/p&gt;

&lt;p&gt;This can be dealt with by having some kind of dual licensing, but that is a massive PITA and people probably won&amp;#39;t do it. &lt;/p&gt;

&lt;p&gt;If this ever comes up in some court battle, a private entity might be able to argue that a license doesn&amp;#39;t apply because the project was tainted, or that the plaintiff doesn&amp;#39;t have the right to actually bring the case in the first place. &lt;/p&gt;

&lt;p&gt;It also means that AI agents are regularly committing some kind of unlawful action by licensing code they produce. I&amp;#39;ve had this happen plenty if using a coding agent to initialize a new project, it&amp;#39;ll just decide that it should be MIT licensed.&lt;/p&gt;

&lt;p&gt;CF forum x-post link: &lt;a href="https://discuss.criticalfallibilism.com/t/ai-predictions/2157/18"&gt;https://discuss.criticalfallibilism.com/t/ai-predictions/2157/18&lt;/a&gt;&lt;/p&gt;
</description>
    <categoryTags>
      <item>
        <text>AI</text>
      </item>
      <item>
        <text>AI coding agents</text>
      </item>
      <item>
        <text>law</text>
      </item>
      <item>
        <text>software licenses</text>
      </item>
      <item>
        <text>copyright</text>
      </item>
    </categoryTags>
    <link>https://xk.io/n/10030</link>
  </channel>
</rss>
