<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>pixelfed</title>
    <link>https://pixelfed.writeas.com/</link>
    <description>Official blog of Pixelfed</description>
    <pubDate>Fri, 24 Apr 2026 14:07:25 +0000</pubDate>
    <item>
      <title>Pixelfed v0.10.9</title>
      <link>https://pixelfed.writeas.com/pixelfed-v0-10-9?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Fiona Apple - I Want You To Love Me&#xA;&#xA;Today we are shipping v0.10.9!&#xA;&#xA;In v0.10.9, we added Remote Posts + Profiles, Reply Modals, Improved Search, New Landing Page and much more!&#xA;&#xA;Today also happens to be our birthday, our project started 2 years ago! 🥳&#xA;&#xA;The full list of changes can be found on the changelog.&#xA;&#xA;&lt;3,&#xA;&#xA;@dansup &amp; team]]&gt;</description>
      <content:encoded><![CDATA[<p><a href="https://www.youtube.com/watch?v=N541HLPeG6Y" rel="nofollow"><img src="https://img.youtube.com/vi/N541HLPeG6Y/0.jpg" alt="Fiona Apple - I Want You To Love Me"/></a></p>

<h3 id="today-we-are-shipping-v0-10-9-https-github-com-pixelfed-pixelfed-releases-tag-v0-10-9" id="today-we-are-shipping-v0-10-9-https-github-com-pixelfed-pixelfed-releases-tag-v0-10-9">Today we are shipping <a href="https://github.com/pixelfed/pixelfed/releases/tag/v0.10.9" rel="nofollow">v0.10.9</a>!</h3>

<p>In <a href="https://github.com/pixelfed/pixelfed/releases/tag/v0.10.9" rel="nofollow">v0.10.9</a>, we added <strong>Remote Posts + Profiles</strong>, <strong>Reply Modals</strong>, <strong>Improved Search</strong>, <strong>New Landing Page</strong> and much more!</p>

<p>Today also happens to be our birthday, our project started 2 years ago! 🥳</p>

<p>The full list of changes can be found on the <a href="https://github.com/pixelfed/pixelfed/blob/dev/CHANGELOG.md#v0109-2020-04-17" rel="nofollow">changelog</a>.</p>

<p>&lt;3,</p>

<p><a href="https://pixelfed.social/dansup" rel="nofollow">@dansup</a> &amp; <a href="https://github.com/orgs/pixelfed/people" rel="nofollow">team</a></p>
]]></content:encoded>
      <guid>https://pixelfed.writeas.com/pixelfed-v0-10-9</guid>
      <pubDate>Sat, 18 Apr 2020 01:59:05 +0000</pubDate>
    </item>
    <item>
      <title>Urgent security issue in NGINX/php-fpm</title>
      <link>https://pixelfed.writeas.com/urgent-security-issue-in-nginx-php-fpm-mcywf7xu?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[  TL;DR Update PHP to 7.3.11+ ASAP, a recent CVE has demonstrated RCE in certain nginx/php-fpm configurations&#xA;&#xA;br&#xA;&#xA;We have become aware of a new security risk that has emerged within the past few days. This exploit is bad, allowing remote code execution on certain nginx/php-fpm configurations. If you don’t run NGINX, this does not affect you.&#xA;&#xA;We recommend updating to PHP v 7.3.11 or later as soon as possible. If you used our example nginx configuration, please update the following code from:&#xA;&#xA;    location ~ \.php$ {&#xA;        fastcgisplitpathinfo ^(.+\.php)(/.+)$;&#xA;        fastcgipass unix:/run/php-fpm/php-fpm.sock;&#xA;        fastcgiindex index.php;&#xA;        include fastcgiparams;&#xA;        fastcgiparam SCRIPTFILENAME $documentroot$fastcgiscriptname;&#xA;    }&#xA;&#xA;to:&#xA;&#xA;    location ~ \.php$ {&#xA;        fastcgisplitpathinfo ^(.+\.php)(/.+)$;&#xA;        tryfiles $fastcgiscriptname =404;&#xA;        fastcgipass unix:/run/php-fpm/php-fpm.sock;&#xA;        fastcgiindex index.php;&#xA;        include fastcgiparams;&#xA;        fastcgiparam SCRIPTFILENAME $documentroot$fastcgiscript_name;&#xA;    }&#xA;&#xA;If you have any questions, join our #pixelfed channel on Freenode!&#xA;&#xA;-- Pixelfed Team]]&gt;</description>
      <content:encoded><![CDATA[<blockquote><p><em>TL;DR Update PHP to 7.3.11+ ASAP, a recent CVE has demonstrated RCE in certain nginx/php-fpm configurations</em></p></blockquote>

<p><br></p>

<p>We have become aware of a new security risk that has emerged within the past few days. This exploit is bad, allowing remote code execution on certain nginx/php-fpm configurations. If you don’t run NGINX, this does not affect you.</p>

<p>We recommend updating to PHP v 7.3.11 or later as soon as possible. If you used our <a href="https://docs.pixelfed.org/installing-pixelfed/postinstall.html#nginx" rel="nofollow">example nginx configuration</a>, please update the following code from:</p>

<pre><code>    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
</code></pre>

<p>to:</p>

<pre><code>    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        try_files $fastcgi_script_name =404;
        fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
</code></pre>

<p>If you have any questions, join our <a href="https://pixelfed.writeas.com/tag:pixelfed" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">pixelfed</span></a> channel on Freenode!</p>

<p>— Pixelfed Team</p>
]]></content:encoded>
      <guid>https://pixelfed.writeas.com/urgent-security-issue-in-nginx-php-fpm-mcywf7xu</guid>
      <pubDate>Sat, 26 Oct 2019 01:00:12 +0000</pubDate>
    </item>
    <item>
      <title>Using snowflake ids for posts and profiles</title>
      <link>https://pixelfed.writeas.com/using-snowflake-ids-for-posts-and-profiles?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[  TL;DR: We are using snowflake ids as primary keys for posts and profiles as auto-incremented ids have many setbacks&#xA;&#xA;Earlier this year we rolled out a new type of identifier for posts and profiles. Snowflake ids are unique ID numbers that scale across multiple app and database servers without requiring a central or distributed source.&#xA;&#xA;We decided to make this change for the following reasons:&#xA;Scales better (supports region/datacenter and worker ids)&#xA;Better Privacy (more difficult to enumerate ids)&#xA;Ability to support over 10k ids per second across workers&#xA;Easier to order/sort compared to hashids/uuids/base62&#xA;Supported for 69 years based on our epoch of February 2019&#xA;&#xA;We look forward to adding snowflake id support to the rest of the code base in the coming months!&#xA;&#xA;-- Pixelfed Team&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<blockquote><p><em>TL;DR: We are using snowflake ids as primary keys for posts and profiles as auto-incremented ids have many setbacks</em></p></blockquote>

<p>Earlier this year we rolled out a new type of identifier for posts and profiles. Snowflake ids are unique ID numbers that scale across multiple app and database servers without requiring a central or distributed source.</p>

<p>We decided to make this change for the following reasons:
– Scales better (supports region/datacenter and worker ids)
– Better Privacy (more difficult to enumerate ids)
– Ability to support over 10k ids per second across workers
– Easier to order/sort compared to hashids/uuids/base62
– Supported for 69 years based on our epoch of February 2019</p>

<p>We look forward to adding snowflake id support to the rest of the code base in the coming months!</p>

<p>— Pixelfed Team</p>
]]></content:encoded>
      <guid>https://pixelfed.writeas.com/using-snowflake-ids-for-posts-and-profiles</guid>
      <pubDate>Sun, 20 Oct 2019 07:36:39 +0000</pubDate>
    </item>
    <item>
      <title>Hello World!</title>
      <link>https://pixelfed.writeas.com/hello-world?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[Welcome to the official Pixelfed blog, hosted by our friends Write.as.&#xA;&#xA;We look forward to sharing more in-depth blog posts this summer!]]&gt;</description>
      <content:encoded><![CDATA[<p>Welcome to the official Pixelfed blog, hosted by our friends Write.as.</p>

<p>We look forward to sharing more in-depth blog posts this summer!</p>
]]></content:encoded>
      <guid>https://pixelfed.writeas.com/hello-world</guid>
      <pubDate>Sat, 27 Apr 2019 22:18:11 +0000</pubDate>
    </item>
  </channel>
</rss>