<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>EVERYTHING! from mxeggsalads site</title>
    <description>All the slop, all the time</description>
    <link>https://mxeggsalad.pet/</link>
    <atom:link href="https://mxeggsalad.pet/allblogs.xml" rel="self" type="application/rss+xml"/>
    <language>en-AU</language>
    
    <pubDate>Fri, 13 Dec 2024 11:00:00 +0000</pubDate>
    <lastBuildDate>Sun, 07 Jun 2026 23:42:14 +0000</lastBuildDate>
    <generator>Eleventy v3.1.5</generator>
    <webMaster>mxeggsalad@proton.me (mxeggsalad)</webMaster>
      <item>
        <title>Tutorial: 11ty Nekoweb rss feed</title>
        <description>&lt;p&gt;This WILL be edited in post for clarity, because I&#39;m trying to balance comprehensivity with speed.&lt;br /&gt;
If you don&#39;t use 11ty, I can still give a decent explanation of how to make an rss feed manually, that is up to nekoweb&#39;s required spec, but I wouldn&#39;t in any case suggest doing that.&lt;/p&gt;
&lt;p&gt;Also, this is how I personally use the plugin, with &lt;a href=&quot;https://www.11ty.dev/docs/plugins/rss/#manual-template&quot;&gt;manual templates&lt;/a&gt;, so best of luck with virtual templates.&lt;br /&gt;
Also also, I&#39;m running Eleventy 2.0.1 and eleventy-plugin-rss 1.2.0.&lt;/p&gt;
&lt;p&gt;(heavy credit to &lt;a href=&quot;https://moosyu.github.io/&quot;&gt;moosyu&lt;/a&gt; ahaha. someone threw me their code and i basically just added some things and made all the variables to suit me)&lt;/p&gt;
&lt;h2&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Installation of the &lt;a href=&quot;https://www.11ty.dev/docs/plugins/rss/&quot;&gt;Eleventy RSS plugin&lt;/a&gt; (including putting necessary syntax in your .eleventy.js)&lt;/li&gt;
&lt;li&gt;Configuring &lt;a href=&quot;https://www.11ty.dev/docs/collections/&quot;&gt;post collections&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Adding a &amp;quot;title&amp;quot; &lt;a href=&quot;https://www.11ty.dev/docs/data-frontmatter/&quot;&gt;frontmatter&lt;/a&gt; to your post files (id also suggest adding manual dating to your frontmatter)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Template&lt;/h2&gt;
&lt;p&gt;Include this in your eleventy.js &amp;quot;module.exports = function (eleventyConfig)&amp;quot;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;eleventyConfig.addFilter(&amp;quot;excerpt&amp;quot;, (post) =&amp;gt; {
    const content = post.replace(/(&amp;lt;([^&amp;gt;]+)&amp;gt;)/gi, &amp;quot;&amp;quot;);
    return content.substr(0, content.lastIndexOf(&amp;quot; &amp;quot;, 200)) + &amp;quot;...&amp;quot;;
  });
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Place this in a file with the extension .njk located anywhere convenient (i have mine in a folder labled rss in my src directory)&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---json
{
  &amp;quot;permalink&amp;quot;: &amp;quot;allblogs.xml&amp;quot;, &amp;lt;!-- Name of the output file --&amp;gt;
  &amp;quot;eleventyExcludeFromCollections&amp;quot;: true,
  &amp;quot;metadata&amp;quot;: { &amp;lt;!-- Self explanatory metadata, set this to whatever you desire
  (note, this is for the FEED, not your site hehe) --&amp;gt;
    &amp;quot;title&amp;quot;: &amp;quot;FEEDTITLE&amp;quot;, 
    &amp;quot;description&amp;quot;: &amp;quot;FEEDDESCRIPTION&amp;quot;,
    &amp;quot;language&amp;quot;: &amp;quot;en-US&amp;quot;,
    &amp;quot;url&amp;quot;: &amp;quot;URL-TO-YOUR-SITE&amp;quot;,
  }
}
---

&amp;lt;rss version=&amp;quot;2.0&amp;quot;&amp;gt;
&amp;lt;channel&amp;gt;
  &amp;lt;title&amp;gt;{{ metadata.title }}&amp;lt;/title&amp;gt;
  &amp;lt;description&amp;gt;{{ metadata.description }}&amp;lt;/description&amp;gt;
  &amp;lt;link&amp;gt;{{ metadata.url }}&amp;lt;/link&amp;gt;
  {%- for post in collections.COLLECTIONNAME | reverse %}
    {%- set absolutePostUrl = post.url | absoluteUrl(metadata.url) %}
    &amp;lt;item&amp;gt;
    &amp;lt;title&amp;gt;{{ post.data.title }}&amp;lt;/title&amp;gt;
    &amp;lt;description&amp;gt;{{ post.content | excerpt }}&amp;lt;/description&amp;gt;
    &amp;lt;link&amp;gt;{{ absolutePostUrl }}&amp;lt;/link&amp;gt;
    &amp;lt;guid&amp;gt;{{ post.data.title | slugify }}&amp;lt;/guid&amp;gt;
    &amp;lt;pubDate&amp;gt;{{ post.date.toUTCString() }}&amp;lt;/pubDate&amp;gt;
    &amp;lt;author&amp;gt;{{ metadata.author.email }} ({{ metadata.author.name }})&amp;lt;/author&amp;gt;
    &amp;lt;source url=&amp;quot;{{ permalink | absoluteUrl(metadata.url) }}&amp;quot;&amp;gt;{{ metadata.title }}&amp;lt;/source&amp;gt;
    &amp;lt;/item&amp;gt;
  {%- endfor %}
&amp;lt;/channel&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This isnt just drop in, please edit the top metadata section, aswell as the variable &amp;quot;COLLECTIONNAME&amp;quot; in&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{%- set absolutePostUrl = post.url | absoluteUrl(metadata.url) %}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Guid&#39;s&lt;/h3&gt;
&lt;p&gt;For note, guid&#39;s must be fully unique. Here they are set as the slugified post title (e.g. &amp;quot;tutorial-11ty-nekoweb-rss-feed&amp;quot;). The literal only problem with this, is that you cant name a post the same thing twice. Just don&#39;t do that and you&#39;ll be fine.&lt;/p&gt;
&lt;p&gt;Alongside that topic, if you&#39;d prefer your guid&#39;s to be full urls to your blogpost, change it to&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;guid isPermaLink=&amp;quot;true&amp;quot;&amp;gt;{{ absolutePostUrl }}&amp;lt;/guid&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Manually entering posts&lt;/h2&gt;
&lt;p&gt;why :(&lt;br /&gt;
Anyways, you&#39;d just need to follow the same template, and copy and paste the &amp;lt;item&amp;gt; each time you want to make a new post.&lt;/p&gt;
&lt;p&gt;Aswell, to follow the rss spec, you would need to format dates in the RFC 822 date format (something like &amp;quot;Fri, 20 Sep 2024 00:00:00 GMT&amp;quot;)&lt;/p&gt;
&lt;p&gt;(removed &amp;lt;source&amp;gt; from this as its fiddly and not fully necessary)&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;rss version=&amp;quot;2.0&amp;quot;&amp;gt;
&amp;lt;channel&amp;gt;
  &amp;lt;title&amp;gt;XXXX&amp;lt;/title&amp;gt;
  &amp;lt;description&amp;gt;XXXX&amp;lt;/description&amp;gt;
  &amp;lt;link&amp;gt;LINKTOYOURWEBSITE&amp;lt;/link&amp;gt;
  
  &amp;lt;item&amp;gt;
    &amp;lt;title&amp;gt;POSTTITLE&amp;lt;/title&amp;gt;
    &amp;lt;description&amp;gt;POSTCONTENT/DESCRIPTION&amp;lt;/description&amp;gt;
    &amp;lt;link&amp;gt;POSTLINK (use the full url)&amp;lt;/link&amp;gt;
    &amp;lt;guid&amp;gt;UNIQUE ID&amp;lt;/guid&amp;gt;
    &amp;lt;pubDate&amp;gt;PUBLISHDATE&amp;lt;/pubDate&amp;gt;
  &amp;lt;/item&amp;gt;

&amp;lt;/channel&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;generally you want this to act as a small preface to your article, and have it link over to the full content on your website. be sure to actually link it to your website when all is said and done.&lt;/p&gt;
&lt;p&gt;After finishing either of these you just upload/save your feed to your site, and direct nekoweb to where its located&lt;/p&gt;
</description>
        <link>https://mxeggsalad.pet/blogs/main/2024/Tutorial-11ty-nekoweb-rss-feed/</link>
        <guid>https://mxeggsalad.pet/blogs/main/2024/Tutorial-11ty-nekoweb-rss-feed/</guid>
        <pubDate>Fri, 13 Dec 2024 00:00:00 GMT</pubDate>
        <author>mxeggsalad@proton.me (mxeggsalad)</author>
        <source url="https://mxeggsalad.pet/allblogs.xml">EVERYTHING! from mxeggsalads site</source>
      </item>
      <item>
        <title>Adventures in i3wm</title>
        <description>&lt;h2&gt;Firsthand, what is i3wm?&lt;/h2&gt;
&lt;p&gt;The i3 window manager, is a tiling window manager, which in simple terms, decides the positioning of windows on your desktop.&lt;/p&gt;
&lt;p&gt;Basically just a &amp;quot;huge fucking nerd&amp;quot; way of managing your windows, and usually (without configuration) looks like this:&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/main/2024/adventures-in-i3wm/assets/img1.jpg&quot; /&gt;
&lt;h2&gt;Why would you even use that&lt;/h2&gt;
&lt;p&gt;Because its funny???&lt;/p&gt;
&lt;p&gt;No but seriously this time.&lt;br /&gt;
I generally prefer it because it greatly reduces the amount of friction between me and my computer, I don&#39;t have to worry about a program starting as floating instead of full-screen for some reason, I don&#39;t need to worry about manually moving everything around, or having useless title bars laying around, I just do a summon keybind, &lt;code&gt;super + d&lt;/code&gt; or &lt;code&gt;super + enter&lt;/code&gt;, prefixed by &lt;code&gt;super + v/h&lt;/code&gt; depending if I want my existing windows vertically split or horizontally, and let it do it&#39;s thing and get to work.&lt;/p&gt;
&lt;p&gt;The theming support is, mwa chefs kiss, pictured above &lt;em&gt;is&lt;/em&gt; how it looks by default, but you can greatly change that by editing a few config files and installing some different applications, as seen bellow.&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/main/2024/adventures-in-i3wm/assets/img2.jpg&quot; alt=&quot;An image of i3 window manager with a web browser open, two terminals, one with btop and one with a neofetch, and that image of a crusty screaming baby i use&quot; /&gt;
&lt;p&gt;I have mine styled to the wonderful wonderful Catppuccin colour-scheme, and ive attempted to make everything as minimal and small in size as possible.&lt;/p&gt;
&lt;h2&gt;Transitioning&lt;/h2&gt;
&lt;p&gt;God my blogs have been about that a lot lately (you haven&#39;t written one in a month or so what are you on about)&lt;/p&gt;
&lt;p&gt;Transitioning was actually reasonably easy, I still use Fedora 40 as my base, but I started out by reinstalling on my desktop with the i3 spin and went from there.&lt;br /&gt;
After that, fixing small problems like screen tearing, Nvidia drivers, and FUCKING VIM KEYBINDS, everything else was a breeze (fixed screen issues with Picom, drivers with an install script I found, and i just chucked the vim keybinds out of my config)&lt;/p&gt;
&lt;p&gt;Regarding my laptop, I didn&#39;t even have to reinstall my OS (though i probably should), simply having to install the i3 package and swap which session I log into on my login manager (which is just whatever gnome uses)&lt;/p&gt;
&lt;p&gt;I still have to go through the bout of uninstalling gnomes DE (another reason to reinstall...), but that wont be on the top of my schedule for a while.&lt;/p&gt;
&lt;h2&gt;Configuration&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://codeberg.org/mxeggsalad/dotfiles&quot;&gt;Go look at them i guess&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Configuration is piss easy, pop into the files, open a wiki, commit and push changes. I adore.&lt;/p&gt;
&lt;p&gt;Thats another point of friction that gets alleviated by using this, I can simply change whatever I want and not have to deal with any repercussions.&lt;/p&gt;
&lt;p&gt;Want to boot a new deamon on startup? Great! just put &lt;code&gt;exec --no-startup-id XXXX&lt;/code&gt; in your config, save and reload and it&#39;s live and on your system.&lt;/p&gt;
&lt;p&gt;Same with other things like swapping out a system service for a different one. i3 either doesn&#39;t even have that service to begin with, or it&#39;s as simple as swapping them in the config file.&lt;/p&gt;
&lt;p&gt;It&#39;s just got everything I need and nothing else, couldn&#39;t recommend it more.&lt;br /&gt;
Oh speaking of which&lt;/p&gt;
&lt;h2&gt;Trying it out&lt;/h2&gt;
&lt;p&gt;If you&#39;d like to try i3wm on your system with absolutely no strings, just install it with your preferred package manager&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo dnf install i3
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;sudo apt install i3
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and run it from your login manager or grub or whatever when you next boot. Don&#39;t like it? uninstall it and move on.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://i3wm.org/&quot;&gt;Project link for more info.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It should also be noted that i3 is an X11 window manager, and there is a drop in replacement for it called &amp;quot;sway&amp;quot; which is exactly the same, just on Wayland.&lt;/p&gt;
</description>
        <link>https://mxeggsalad.pet/blogs/main/2024/adventures-in-i3wm/</link>
        <guid>https://mxeggsalad.pet/blogs/main/2024/adventures-in-i3wm/</guid>
        <pubDate>Fri, 20 Sep 2024 00:00:00 GMT</pubDate>
        <author>mxeggsalad@proton.me (mxeggsalad)</author>
        <source url="https://mxeggsalad.pet/allblogs.xml">EVERYTHING! from mxeggsalads site</source>
      </item>
      <item>
        <title>New Domain!</title>
        <description>&lt;p&gt;tl;dr, I&#39;ve bought up a custom domain for my website :D&lt;/p&gt;
&lt;p&gt;This is going to be a really short blogpost, buttt its relevant so who cares.&lt;br /&gt;
I bought it with the service &lt;a href=&quot;https://www.spaceship.com/&quot;&gt;spaceship.com&lt;/a&gt; and I&#39;m managing it through &lt;a href=&quot;https://www.cloudflare.com/&quot;&gt;cloudflare&lt;/a&gt; (sadly)&lt;/p&gt;
&lt;p&gt;All of that has gone swimmingly, and I&#39;m looking at paying only AUD$25 a year for it.&lt;br /&gt;
Nice!&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Now for the reason I chose pet, I&#39;m mentally ill and am a stupid dog. Woof Woof, treat me like your p3t&lt;a href=&quot;https://www.youtube.com/watch?v=Ja2J2WkmjNg&quot;&gt;/ref&lt;/a&gt;&lt;/p&gt;
</description>
        <link>https://mxeggsalad.pet/blogs/site-news/2024/custom-domain/</link>
        <guid>https://mxeggsalad.pet/blogs/site-news/2024/custom-domain/</guid>
        <pubDate>Wed, 10 Jul 2024 00:00:00 GMT</pubDate>
        <author>mxeggsalad@proton.me (mxeggsalad)</author>
        <source url="https://mxeggsalad.pet/allblogs.xml">EVERYTHING! from mxeggsalads site</source>
      </item>
      <item>
        <title>11ty-ing my hog</title>
        <description>&lt;p&gt;HOLYFUCK AHHHHH&lt;/p&gt;
&lt;p&gt;it&#39;s&lt;/p&gt;
&lt;p&gt;ITS DONE&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;Shite guys,&lt;br /&gt;
Its taken me a while but I&#39;ve finally finished learning this admitedly cool engine.&lt;/p&gt;
&lt;p&gt;Goddd did it take a while though&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Alright for the uninitiated, &lt;a href=&quot;https://11ty.dev/&quot;&gt;11ty&lt;/a&gt; is a pretty nice site generator which perked my ears a while ago because of how &lt;em&gt;annoyingggg&lt;/em&gt; working with large ass html files is.&lt;/p&gt;
&lt;p&gt;&lt;s&gt;(then i lost all motivation for my site for like 1-2 months...)&lt;/s&gt;&lt;/p&gt;
&lt;p&gt;But eventually I found that gosh it has a myriad of other features that can help me so so much.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Mainly, its features relating to automated layours help me the most I&#39;d say&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/site-news/2024/transitioning-to-11ty/assets/img1.png&quot; alt=&quot;screenshot of html code outlining basic boilerplate functions, with some of their contents replaced with double curly braced ( {} ) variables&quot; /&gt;
&lt;p&gt;I can just chuck all of my boilerplate or more complex layouts into completely separate files!!! Lifesaver seriously&lt;/p&gt;
&lt;p&gt;Even though this was the initiating factor for me, another big feature keeping me here is the automation&lt;br /&gt;
omg the automation&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Alright so this is a snippet from my &lt;a href=&quot;https://mxeggsalad.nekoweb.org/blogs&quot;&gt;blogs page&lt;/a&gt;&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/site-news/2024/transitioning-to-11ty/assets/img2.png&quot; alt=&quot;im so sorry, id add this to the alt text but 11ty keeps FUCKING interpreting it. and idk how to fix that sorry blind people. uhh, its just this cool little script function and does as described bellow&quot; /&gt;
&lt;p&gt;It&#39;s am awesomeeee piece of automation which I abridged from &lt;a href=&quot;https://www.youtube.com/watch?v=kzf9A9tkkl4&quot;&gt;a 11ty tutorial/showcase video&lt;/a&gt;.&lt;br /&gt;
It basically just takes each entry from the &amp;quot;mainblog&amp;quot; group and adds them to a list :D and it can go so much further (if id only use my brain for a second longer)&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Now. Why the hell did this take so long.&lt;br /&gt;
Firstly, I&#39;m a little stupid.&lt;/p&gt;
&lt;p&gt;Secondly, atom feeds are a bitch.&lt;br /&gt;
I could&#39;ve totally gotten the hang of it sooner, but goddd it kept me in the ring for a while.&lt;/p&gt;
&lt;p&gt;It isn&#39;t the most elegant thing in the world, but I&#39;ve gotten it so 11ty takes .njk files from a folder and parses them into atom feed files on my root.&lt;br /&gt;
GOOD ENOUGH.&lt;/p&gt;
&lt;p&gt;(sadly this means i need to nuke and ruin my older rss feeds, sorry if anyone was actually using them)&lt;/p&gt;
&lt;p&gt;(oh also, im way too lazy to actually add image support to the feeds, so give me a moment to work that out)&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Oh yeah I forgot to say, it does markdown!!&lt;br /&gt;
Matter of fact I&#39;m writing this in markdown right now!&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/site-news/2024/transitioning-to-11ty/assets/img3.png&quot; alt=&quot;Screenshot of code editer, showing me writing this document that you are currently reading, in markdown&quot; /&gt;
&lt;p&gt;God this is such a novel thing for me.&lt;/p&gt;
&lt;p&gt;11ty actually converts a lot of other files into html files, as I mentioned before njk -&amp;gt; xml, but you can find that on their own website.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;All of this to say, I&#39;M BACK!&lt;br /&gt;
And pretty much, as motivated as I&#39;ll ever be!&lt;/p&gt;
</description>
        <link>https://mxeggsalad.pet/blogs/site-news/2024/transitioning-to-11ty/</link>
        <guid>https://mxeggsalad.pet/blogs/site-news/2024/transitioning-to-11ty/</guid>
        <pubDate>Tue, 09 Jul 2024 00:00:00 GMT</pubDate>
        <author>mxeggsalad@proton.me (mxeggsalad)</author>
        <source url="https://mxeggsalad.pet/allblogs.xml">EVERYTHING! from mxeggsalads site</source>
      </item>
      <item>
        <title>Nope 2022</title>
        <description>&lt;p&gt;God, where to begin?&lt;/p&gt;
&lt;p&gt;This movie is most definitely a 10/10 for me, for so SO many reasons, a big one would totally be its ability to elicit emotion.&lt;br /&gt;
And that&#39;s a &lt;strong&gt;big&lt;/strong&gt; part of movies, the reaction the audience gets from it. Well really this idea exists for any form of art, they make you get the feels.&lt;/p&gt;
&lt;p&gt;Nope&#39;s goal as a thriller, is to either scare the shit out of you, or to well, thrill you!&lt;/p&gt;
&lt;p&gt;I think this is one of the biggest draws for me with the movie, every second is engineered to thrill, confuse, and sometimes scare you. Note, sometimes.&lt;br /&gt;
That&#39;s another part of Nope I like, how it often &lt;em&gt;doesn&#39;t&lt;/em&gt; harness fear all too much.&lt;br /&gt;
Yeah there&#39;s a few scenes with a jumpscare or two, but most of the time, you&#39;re met with a giant, unimaginably large, sense of&lt;/p&gt;
&lt;h2&gt;Dread&lt;/h2&gt;
&lt;p&gt;God, the movie reeks of it.&lt;/p&gt;
&lt;p&gt;Every scene just feels so uncomfortable, and I honestly hated watching this movie for the first time.&lt;br /&gt;
Even in &amp;quot;normal&amp;quot; scenes everything feels off, how the characters act, less and less people being in the area, even just how bliss things are sometimes. And the scenes where shit goes down are even worse, you hear screams howling in the distance, see a house washed in blood and broken wedding rings, it&#39;s plain in view what&#39;s going to happen to our protagonists at some points of the movie, but we just have to sit back and watch in horror.&lt;/p&gt;
&lt;p&gt;Definitely a point where the dread factor starts rolling down the hill is when you see the digestion scene (at a bit after 1 hour in), this fucking thing doesn&#39;t abide by anything we understand,&lt;br /&gt;
&lt;strong&gt;you can&#39;t train it, you can&#39;t catch it, you especially cant run away,&lt;/strong&gt;&lt;br /&gt;
it tortures you in its gullet until it washes you with a thick helping of its acid, it&#39;s some unstoppable force that a movie horse trainer, his sister, and some fucker from tesco, have to somehow kill.&lt;/p&gt;
&lt;p&gt;This thing fills me with so much emotion, its disgusting and I hate it and how much dread it fills me with.&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/main/2024/Nope-2022/assets/img1.jpg&quot; /&gt;
&lt;p&gt;(Side-note, LOVE the black bars removal of this scene, honestly I&#39;ve only noticed on rewatch, but it uses black bars a LOT and loves to toggle them)&lt;/p&gt;
&lt;p&gt;Gosh, if I&#39;d have to say, the other greatest emotion I find in this film, or motivation as I could also say, is&lt;br /&gt;
(sorry I have to do this twice ahah)&lt;/p&gt;
&lt;h2&gt;Resilience&lt;/h2&gt;
&lt;p&gt;I&#39;ll say it, the Indomitable human spirit goes CRAZY hard in this film.&lt;/p&gt;
&lt;p&gt;It manages it so well with the motivations of the characters too, their motivations to keep hitting the brick wall are so fucking stupid, the losses are outweighing their gains at this point, but they&#39;re so understandable to the audience. Who doesn&#39;t want to be the first?&lt;/p&gt;
&lt;p&gt;The first to create the perfect film
&lt;img src=&quot;https://mxeggsalad.pet/blogs/main/2024/Nope-2022/assets/img2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The first to get a UFO/UAP money shot and reap the rewards
&lt;img src=&quot;https://mxeggsalad.pet/blogs/main/2024/Nope-2022/assets/img3.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The ends that these characters go to to reap these neigh fruitless actions, either motivated with something past their life, their existence, their legacy, or with the act of finally finishing what others tried and failed to do, to finish the damn job, just for them. I TOTALLY didn&#39;t cry writing this shut the fuck up.&lt;/p&gt;
&lt;p&gt;Alright that&#39;s really all I can think of, for now.&lt;br /&gt;
This is the first time I&#39;ve actually like, written something for myself, not just for some english class.&lt;br /&gt;
I will learn to use better structure :) soon :) I may even update this who knows&lt;/p&gt;
</description>
        <link>https://mxeggsalad.pet/blogs/main/2024/Nope-2022/</link>
        <guid>https://mxeggsalad.pet/blogs/main/2024/Nope-2022/</guid>
        <pubDate>Wed, 29 May 2024 00:00:00 GMT</pubDate>
        <author>mxeggsalad@proton.me (mxeggsalad)</author>
        <source url="https://mxeggsalad.pet/allblogs.xml">EVERYTHING! from mxeggsalads site</source>
      </item>
      <item>
        <title>Info</title>
        <description>&lt;p&gt;These little &lt;a href=&quot;https://en.wikipedia.org/wiki/Infant&quot; title=&quot;disgusting little thing&quot;&gt;infants&lt;/a&gt; have been screaching, taking up our space, &lt;a href=&quot;https://en.wikipedia.org/wiki/Human_sexual_activity&quot; title=&quot;GAH. HORRIFYING&quot;&gt;infiltrating our mothers vaginas&lt;/a&gt; and their hearts, it must be stopped at ALL COSTS.&lt;br /&gt;
I propose that we &lt;a href=&quot;https://en.wikipedia.org/wiki/Abortion&quot; title=&quot;the only way.&quot;&gt;AXE all of those babies at a moments notice&lt;/a&gt;, or else they will take over the &lt;strong&gt;ENTIRE WORLD&lt;/strong&gt;.&lt;br /&gt;
All will be lost, we shall be locked out of society, to fend for ourselves like DOGS.&lt;/p&gt;
&lt;img src=&quot;https://mxeggsalad.pet/blogs/main/2023/screaming-babies/assets/img1.jpg&quot; title=&quot;screaming baby covered in ash. arms raised and mouth agape.&quot; /&gt;
&lt;p&gt;&lt;em&gt;(Disclaimer, I absoloutely love children, those little buggers are so cute.
Harm inflicted on them is a moral sin and I would never condone that.
This page was just made as a joke, and was a VERY early addition to the site.)&lt;/em&gt;&lt;/p&gt;
</description>
        <link>https://mxeggsalad.pet/blogs/main/2023/screaming-babies/</link>
        <guid>https://mxeggsalad.pet/blogs/main/2023/screaming-babies/</guid>
        <pubDate>Mon, 16 Oct 2023 00:00:00 GMT</pubDate>
        <author>mxeggsalad@proton.me (mxeggsalad)</author>
        <source url="https://mxeggsalad.pet/allblogs.xml">EVERYTHING! from mxeggsalads site</source>
      </item>
  </channel>
</rss>