<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Valerie&apos;s Blog</title><description>Tides will turn.</description><link>https://blog.valerie.lol/</link><language>en</language><item><title>Vencord on Spacebar</title><link>https://blog.valerie.lol/posts/vencord-on-spacebar/</link><guid isPermaLink="true">https://blog.valerie.lol/posts/vencord-on-spacebar/</guid><description>This guide will teach you how to use Vencord on Spacebar instances</description><pubDate>Tue, 10 Mar 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;Vencord on Spacebar&lt;/h1&gt;
&lt;p&gt;:::warning
This is only possible if you are using the &lt;em&gt;official Discord client&lt;/em&gt; to connect to &lt;a href=&quot;https://spacebar.chat/&quot;&gt;Spacebar&lt;/a&gt;, this will not work with &lt;a href=&quot;https://fermi.chat/channels/@me&quot;&gt;Fermi&lt;/a&gt; or other &lt;a href=&quot;https://spacebar.chat/&quot;&gt;Spacebar&lt;/a&gt; clients. &lt;em&gt;I will not go into how to use an official Discord client for legal reasons&lt;/em&gt;&lt;a href=&quot;https://discord.com/terms#6&quot;&gt;^1&lt;/a&gt;
:::
:::caution
Please make sure the instance you are using allows the use of modified clients such as &lt;a href=&quot;https://vencord.dev/&quot;&gt;Vencord&lt;/a&gt;, or &lt;a href=&quot;https://equicord.org/&quot;&gt;Equicord&lt;/a&gt; before using this on an instance, you may be banned from the instance if they do not allow them.
:::
After you&apos;ve read the above notices, we may now start at &lt;a href=&quot;#getting-started-part-1&quot;&gt;Part 1&lt;/a&gt;, thank you for reading.&lt;/p&gt;
&lt;hr /&gt;
&lt;h2&gt;Getting Started (Part 1)&lt;/h2&gt;
&lt;h3&gt;Part 1.1&lt;/h3&gt;
&lt;p&gt;Prerequisites&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://nodejs.org/en&quot;&gt;Node.js LTS&lt;/a&gt; | &lt;a href=&quot;https://nodejs.org/en/download&quot;&gt;Download&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://pnpm.io/&quot;&gt;pnpm&lt;/a&gt; | &lt;code&gt;npm install -g pnpm&lt;/code&gt; (Requires &lt;a href=&quot;https://nodejs.org/en/download&quot;&gt;Node.js&lt;/a&gt;, and &lt;a href=&quot;https://www.npmjs.com/&quot;&gt;npm&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://git-scm.com/&quot;&gt;Git&lt;/a&gt; | This is so we can clone the &lt;a href=&quot;https://vencord.dev/&quot;&gt;Vencord&lt;/a&gt; or &lt;a href=&quot;https://equicord.org/&quot;&gt;Equicord&lt;/a&gt; source code. | &lt;a href=&quot;https://git-scm.com/install/windows&quot;&gt;Windows Install&lt;/a&gt; - &lt;a href=&quot;https://git-scm.com/install/linux&quot;&gt;Linux Install&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Installing Node.js is simple, if you&apos;re running on Windows you can download the &lt;a href=&quot;https://nodejs.org/dist/v24.14.0/node-v24.14.0-x64.msi&quot;&gt;Node.js installer&lt;/a&gt; here, if you are using Linux you should know how to install Node.js yourself, but incase not, It is covered in &lt;a href=&quot;#part-12-linux&quot;&gt;Part 1.2&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Windows installation is simple, just run the &lt;code&gt;node-v24.14.0-x64.msi&lt;/code&gt; file linked above as &quot;&lt;a href=&quot;https://nodejs.org/dist/v24.14.0/node-v24.14.0-x64.msi&quot;&gt;Node.js installer&lt;/a&gt;&quot;, after installation you should now have Node.js and npm installed.&lt;/p&gt;
&lt;hr /&gt;
&lt;h3&gt;Part 1.2 (Linux)&lt;/h3&gt;
&lt;p&gt;You can ingore Part 1.2 if you&apos;re not using a &lt;a href=&quot;https://en.wikipedia.org/wiki/Linux&quot;&gt;Linux&lt;/a&gt; operating system.
&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;Linux Installation&amp;lt;/summary&amp;gt;
Linux installation is just as simple as installing on Windows, but with a few extra steps, it generally varies depending on which distribution you are using, in this specific guide I will show you how to install Node.js on Debian, and Arch Linux.&lt;/p&gt;
&lt;p&gt;Debian:
Run &lt;code&gt;sudo apt update&lt;/code&gt;, then run &lt;code&gt;sudo apt install nodejs npm&lt;/code&gt;&lt;br /&gt;
Verify you have Node.js and npm installed by running &lt;code&gt;node --version&lt;/code&gt; and &lt;code&gt;npm --version&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Arch Linux:
Run &lt;code&gt;sudo pacman -S nvm&lt;/code&gt;, then run &lt;code&gt;nvm install node&lt;/code&gt;.&lt;br /&gt;
Verify you have Node.js and npm installed by running &lt;code&gt;node --version&lt;/code&gt; and &lt;code&gt;npm --version&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;These commands will vary per user, there are different methods of installing certain packages per distribution, If I didn&apos;t cover your distribution isn&apos;t covered in this guide I suggest you search for a guide on how to install Node.js and npm on your system.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;After installing Node.js, and npm, you should now run &lt;code&gt;npm i -g pnpm&lt;/code&gt;.&lt;br /&gt;
Verify you have pnpm installed by running &lt;code&gt;pnpm --version&lt;/code&gt;, once pnpm is installed, we should now be ready to start following &lt;a href=&quot;#building-from-source-part-2&quot;&gt;Part 2&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Building from source (Part 2)&lt;/h2&gt;
&lt;hr /&gt;
&lt;h3&gt;Part 2.1&lt;/h3&gt;
&lt;p&gt;Before we start I suggest creating a folder named &apos;Git&apos; Inside of your &apos;Documents&apos; folder.&lt;br /&gt;
Run the following commands in the same order as listed.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;mkdir &quot;%USERPROFILE%\Documents\Git&quot;
cd &quot;%USERPROFILE%\Documents\Git&quot;
git clone https://github.com/Equicord/Equicord
cd %USERPROFILE%\Documents\Git\Equicord
pnpm install --frozen-lockfile
pnpm buildWeb
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Once you&apos;ve built Equicord or Vencord for Web, you can know move onto &lt;a href=&quot;#part-22&quot;&gt;Part 2.2&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;
&lt;h3&gt;Part 2.2&lt;/h3&gt;
&lt;p&gt;Before we fully start on &lt;a href=&quot;#part-22&quot;&gt;Part 2.2&lt;/a&gt;, I recommend you install an &lt;a href=&quot;https://en.wikipedia.org/wiki/Integrated_development_environment&quot;&gt;IDE&lt;/a&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Integrated_development_environment&quot;&gt;^2&lt;/a&gt;, such as &lt;a href=&quot;https://vscodium.com/#install&quot;&gt;VSCodium&lt;/a&gt;, or &lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;Visual Studio Code&lt;/a&gt; from Microsoft. You will need to be using Google Chrome for this specific guide, however this is still possible on &lt;a href=&quot;https://www.firefox.com/en-US/channel/desktop/developer/&quot;&gt;Firefox Developer Edition&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now its time for us to modify the Web extension we&apos;ve built, I will guide you to exactly which files you need to modify to use Vencord or Equicord on Spacebar.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Go to the built extension in the cloned folder, for chrome, the built extension will be at &lt;code&gt;dist/browser/chromium-unpacked&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Open &lt;code&gt;dist/browser/chromium-unpacked/manifest.json&lt;/code&gt;, press CTRL+F and search for &lt;code&gt;discord.com&lt;/code&gt;, replace &lt;code&gt;discord.com&lt;/code&gt; with your Spacebar client URL, for example if your client is at &lt;code&gt;spacebar.localhost&lt;/code&gt;, you would change it to &lt;code&gt;*://*.spacebar.localhost/*&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Open &lt;code&gt;dist/browser/chromium-unpacked/modifyResponseHeaders.json&lt;/code&gt;, and search for &lt;code&gt;discord.com&lt;/code&gt;, and replace it with your Spacebar client URL.&lt;br /&gt;
Note that Vencord, or Equicord may not work perfectly, but it should for the most part work.&lt;/li&gt;
&lt;li&gt;Open Google Chrome, and visit &lt;code&gt;chrome://extensions/&lt;/code&gt; in your search bar.&lt;/li&gt;
&lt;li&gt;Toggle &quot;Developer mode&quot; in the top right corner.&lt;/li&gt;
&lt;li&gt;Click &quot;Load unpacked&quot; and go to the extension location at &lt;code&gt;dist/browser/chromium-unpacked&lt;/code&gt;, which should be located at &lt;code&gt;%USERPROFILE%\Documents\Git\Equicord\dist\browser\chromium-unpacked&lt;/code&gt;, and select that folder.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;lt;details&amp;gt;
&amp;lt;summary&amp;gt;Firefox Guide&amp;lt;/summary&amp;gt;
For Firefox users, you will need to use &lt;a href=&quot;https://www.firefox.com/en-US/channel/desktop/developer/&quot;&gt;Firefox Developer Edition&lt;/a&gt;, as you cannot install unsigned extensions on Firefox.
&amp;lt;/details&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;h3&gt;GitHub Links / Extras&lt;/h3&gt;
&lt;p&gt;::github{repo=&quot;SpacebarChat/Server&quot;}
::github{repo=&quot;Equicord/Equicord&quot;}
::github{repo=&quot;Vendicated/Vencord&quot;}&lt;/p&gt;
&lt;hr /&gt;
</content:encoded></item><item><title>Rose Haven Network</title><link>https://blog.valerie.lol/posts/rose-haven-network/</link><guid isPermaLink="true">https://blog.valerie.lol/posts/rose-haven-network/</guid><description>Rose Haven Network is an Anti-P2W Server Network with a Cobblemon server.</description><pubDate>Thu, 05 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;Rose Haven Network&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Network IP:&lt;/strong&gt; &lt;code&gt;rhn.valerie.lol&lt;/code&gt;&lt;br /&gt;
&lt;strong&gt;Loader:&lt;/strong&gt; Fabric&lt;br /&gt;
&lt;strong&gt;Modpack:&lt;/strong&gt; &lt;em&gt;&lt;a href=&quot;https://modrinth.com/modpack/cobblemon-fabric&quot;&gt;Use the official Cobblemon Modpack&lt;/a&gt;&lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;Discord:&lt;/strong&gt; https://discord.gg/5CA8sewarU &lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;/p&gt;
&lt;h2&gt;What We Offer&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Anti-P2W Experience&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No Resets!&lt;/strong&gt;\&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Legendaries!&lt;/strong&gt;\&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Player Ran Gyms&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt; - Applications Open!&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Global Shiny Boosts&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt; - (Hosted at random)&lt;/code&gt;\&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pokémon Breeding&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt; - /daycare&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;VR Friendly~&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt; - Vivecraft is installed on the server!&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Simple Voice Chat&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt; - SVC is on the server-side, so you can talk to friends if you like!&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Free Starter Items!&lt;/strong&gt; You get &lt;code&gt;15x Roseate Pokéballs&lt;/code&gt;, &lt;code&gt;1x Pink Pokédex&lt;/code&gt;, &lt;code&gt;32x Cooked Steak&lt;/code&gt;, and &lt;code&gt;64x Carrots&lt;/code&gt;&lt;br /&gt;
Please note that you do &lt;strong&gt;NOT&lt;/strong&gt; need &lt;strong&gt;any other mod than Cobblemon&lt;/strong&gt; to play the server, meaning you do &lt;strong&gt;NOT&lt;/strong&gt; need &lt;strong&gt;Simple Voice Chat&lt;/strong&gt; or &lt;strong&gt;Vivecraft&lt;/strong&gt; on your client to join, but they are required to use their features!\&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;✩──────────────────✩──────────────────✩&lt;/p&gt;
&lt;h2&gt;A Little Bit About Us&lt;/h2&gt;
&lt;p&gt;We consider ourselves to one of the best community-based server networks that exist, we pride ourselves in our work, and openly take suggestions, and recommendations from the community.&lt;/p&gt;
&lt;p&gt;Rose Haven Network is an &lt;strong&gt;Anti-P2W&lt;/strong&gt; Server Network with a Cobblemon server, We also make projects such as Modpacks, Resource Packs and Data Packs on the side. We dedicate ourselves to making our servers better in any way possible, we even consider opinions and suggestions from our community! We would simply like to say, welcome to Rose Haven Network.&lt;/p&gt;
&lt;p&gt;Creating since &lt;em&gt;&lt;strong&gt;February 15, 2023&lt;/strong&gt;&lt;/em&gt;.&lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;/p&gt;
&lt;h2&gt;How to Join Us&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Download &lt;a href=&quot;https://prismlauncher.org/download/windows/&quot;&gt;Prism Launcher&lt;/a&gt;, or &lt;a href=&quot;https://modrinth.com/app&quot;&gt;Modrinth App&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Download the &lt;a href=&quot;https://modrinth.com/modpack/cobblemon-fabric&quot;&gt;official Cobblemon Modpack&lt;/a&gt; for Fabric.&lt;/li&gt;
&lt;li&gt;Launch the game, and click &quot;Add Server&quot;, enter the IP &lt;code&gt;rhn.valerie.lol&lt;/code&gt;, and join it.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Legal&lt;/h2&gt;
&lt;p&gt;All Rights Reserved unless explicitly stated.&lt;br /&gt;
Rose Haven Network is not affiliated with Cobblemon, Pokémon, or Minecraft.&lt;br /&gt;
Pokémon is a trademark of Nintendo, Creatures Inc. and GAME FREAK inc.&lt;br /&gt;
Minecraft is a trademark of Mojang AB.&lt;/p&gt;
&lt;p&gt;✩──────────────────✩──────────────────✩&lt;br /&gt;
&lt;em&gt;Read and remember, &lt;strong&gt;tides will turn.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
</content:encoded></item><item><title>Skyfall Survival</title><link>https://blog.valerie.lol/posts/skyfall-survival-mc/</link><guid isPermaLink="true">https://blog.valerie.lol/posts/skyfall-survival-mc/</guid><description>About my Skyfall Survival Minecraft server!</description><pubDate>Tue, 03 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;Skyfall Survival&lt;/h1&gt;
&lt;p&gt;I have a Minecraft SMP, called Skyfall Survival, below is the Discord Invite, and more information.
Discord: https://discord.gg/zJ86UT6kj7&lt;/p&gt;
&lt;p&gt;A small but friendly survival server with a laid-back community where everyone is welcome. We support both Java and Bedrock players, so you can connect no matter what platform you use. Whether you want to build, survive, or just meet people and chat, there is a place for you here. We would be glad to have you as part of our community. We try to stay on the latest versions of Minecraft.&lt;/p&gt;
&lt;p&gt;To join, hop into our Discord to get whitelisted. All you need to do is DM a bot, and it will automatically whitelist you.&lt;/p&gt;
&lt;p&gt;Discord: &lt;a href=&quot;https://discord.gg/zJ86UT6kj7&quot;&gt;https://discord.gg/zJ86UT6kj7&lt;/a&gt;&lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;/p&gt;
&lt;h2&gt;Server Information&lt;/h2&gt;
&lt;p&gt;Java IP: &lt;a href=&quot;http://vee.kinetic.host&quot;&gt;&lt;code&gt;vee.kinetic.host&lt;/code&gt;&lt;/a&gt;&lt;br /&gt;
Java Port: &lt;code&gt;25590&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Bedrock IP: &lt;a href=&quot;http://172.240.47.111&quot;&gt;&lt;code&gt;172.240.47.111&lt;/code&gt;&lt;/a&gt;&lt;br /&gt;
Bedrock Port: &lt;code&gt;27015&lt;/code&gt;&lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;/p&gt;
&lt;h2&gt;Optional Mods&lt;/h2&gt;
&lt;p&gt;Optional Mods not available for Bedrock players.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://modrinth.com/plugin/simple-voice-chat&quot;&gt;Simple Voice Chat&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://modrinth.com/mod/female-gender&quot;&gt;Female Gender Mod&lt;/a&gt;&lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;br /&gt;
BlueMap: &lt;a href=&quot;http://skyfall.valerie.lol:25596/&quot;&gt;http://skyfall.valerie.lol:25596/&lt;/a&gt;&lt;br /&gt;
Dynmap: &lt;a href=&quot;http://skyfall.valerie.lol:25592&quot;&gt;http://skyfall.valerie.lol:25592&lt;/a&gt;&lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;/p&gt;
&lt;p&gt;Server automatically restarts every day, it will broadcast in the chat when it does.&lt;br /&gt;
To join the server, link your Discord account to Minecraft in our Discord.&lt;br /&gt;
✩──────────────────✩──────────────────✩&lt;br /&gt;
&lt;em&gt;Read and remember, &lt;strong&gt;tides will turn.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
</content:encoded></item><item><title>Improved Blog Website</title><link>https://blog.valerie.lol/posts/new-blog-website/</link><guid isPermaLink="true">https://blog.valerie.lol/posts/new-blog-website/</guid><description>I now have a new blog website!</description><pubDate>Sun, 25 Jan 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I now have a new blog website. It is based on the Fuwari template. You can find the link at the bottom of this post.
I&apos;ve also migrated all my previous posts to this new site, view them on the Archive page. :)&lt;/p&gt;
&lt;h2&gt;What kind of posts?&lt;/h2&gt;
&lt;p&gt;I will be posting content related to myself and the things I work on, including games, projects, servers, and similar topics.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Read and remember, &lt;strong&gt;tides will turn.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;Fuwari Source&lt;/h2&gt;
&lt;p&gt;Licensing can be found at the bottom of the &lt;a href=&quot;https://github.com/saicaca/fuwari?tab=readme-ov-file#-license&quot;&gt;Fuwari README.md&lt;/a&gt;.
::github{repo=&quot;saicaca/fuwari&quot;}&lt;/p&gt;
</content:encoded></item><item><title>MCU Movie Chronological</title><link>https://blog.valerie.lol/posts/mcu-chronological/</link><guid isPermaLink="true">https://blog.valerie.lol/posts/mcu-chronological/</guid><description>Chronological order of the MCU Movies</description><pubDate>Tue, 30 Sep 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h3&gt;Marvel Cinematic Universe Chronological Watch Order&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Captain America: The First Avenger&lt;/li&gt;
&lt;li&gt;Captain Marvel&lt;/li&gt;
&lt;li&gt;Iron Man&lt;/li&gt;
&lt;li&gt;The Incredible Hulk&lt;/li&gt;
&lt;li&gt;Iron Man 2&lt;/li&gt;
&lt;li&gt;Thor&lt;/li&gt;
&lt;li&gt;Marvel’s The Avengers&lt;/li&gt;
&lt;li&gt;Iron Man 3&lt;/li&gt;
&lt;li&gt;Thor: The Dark World&lt;/li&gt;
&lt;li&gt;Captain America: The Winter Soldier&lt;/li&gt;
&lt;li&gt;Guardians of the Galaxy&lt;/li&gt;
&lt;li&gt;Guardians of the Galaxy Vol. 2&lt;/li&gt;
&lt;li&gt;Avengers: Age of Ultron&lt;/li&gt;
&lt;li&gt;Ant-Man&lt;/li&gt;
&lt;li&gt;Captain America: Civil War&lt;/li&gt;
&lt;li&gt;Black Widow&lt;/li&gt;
&lt;li&gt;Spider-Man &lt;em&gt;[Non-MCU]&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Spider-Man 2 &lt;em&gt;[Non-MCU]&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Spider-Man 3 &lt;em&gt;[Non-MCU]&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;The Amazing Spider-Man &lt;em&gt;[Non-MCU]&lt;/em&gt; [?]&lt;/li&gt;
&lt;li&gt;The Amazing Spider-Man 2 &lt;em&gt;[Non-MCU]&lt;/em&gt; [?]&lt;/li&gt;
&lt;li&gt;Venom &lt;em&gt;[Non-MCU]&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Spider-Man: Homecoming&lt;/li&gt;
&lt;li&gt;Black Panther&lt;/li&gt;
&lt;li&gt;Doctor Strange&lt;/li&gt;
&lt;li&gt;Thor: Ragnarok&lt;/li&gt;
&lt;li&gt;Ant Man and the Wasp&lt;/li&gt;
&lt;li&gt;Avengers: Infinity War
&lt;s&gt;27. Ant-Man and the Wasp&lt;/s&gt;&lt;/li&gt;
&lt;li&gt;Avengers: Endgame
&lt;s&gt;16. Black Widow&lt;/s&gt;&lt;/li&gt;
&lt;li&gt;Spider-Man: Far From Home&lt;/li&gt;
&lt;li&gt;Venom: Let There be Carnage &lt;em&gt;[Non-MCU]&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Eternals&lt;/li&gt;
&lt;li&gt;Shang-Chi and the Legend of the Ten Rings&lt;/li&gt;
&lt;li&gt;Spider-Man: No Way Home&lt;/li&gt;
&lt;li&gt;Doctor Strange in the Multiverse of Madness&lt;/li&gt;
&lt;li&gt;Thor: Love and Thunder&lt;/li&gt;
&lt;li&gt;Black Panther: Wakanda Forever&lt;/li&gt;
&lt;li&gt;Ant-Man and the Wasp: Quantumania&lt;/li&gt;
&lt;li&gt;Guardians of the Galaxy Vol. 3&lt;/li&gt;
&lt;li&gt;The Marvels&lt;/li&gt;
&lt;li&gt;Deadpool &amp;amp; Wolverine&lt;/li&gt;
&lt;li&gt;Captain America: Brave New World&lt;/li&gt;
&lt;li&gt;Thunderbolts*&lt;/li&gt;
&lt;li&gt;Ironheart&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Markdown Meanings For This List&lt;/h3&gt;
&lt;p&gt;Strikeout means you can watch the movie after the movie before it, You can technically watch &lt;code&gt;Ant-Man and the Wasp&lt;/code&gt; after &lt;code&gt;Avengers: Infinity War&lt;/code&gt; But its better to watch it before.&lt;/p&gt;
&lt;p&gt;Italics will only be put on the &lt;em&gt;[Non-MCU]&lt;/em&gt; tag, Movies marked with &quot;&lt;em&gt;[Non-MCU]&lt;/em&gt;&quot; do not fall into the MCU continuity.&lt;/p&gt;
</content:encoded></item><item><title>Arch Linux Experience</title><link>https://blog.valerie.lol/posts/arch-linux-experience/</link><guid isPermaLink="true">https://blog.valerie.lol/posts/arch-linux-experience/</guid><description>My experience with Arch Linux on Desktop so far</description><pubDate>Mon, 09 Jun 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;Hey There 💜&lt;/h1&gt;
&lt;p&gt;Incase you&apos;re unfamiliar, my name is Valerie, and this is my blog.&lt;/p&gt;
&lt;h2&gt;Feels too smooth&lt;/h2&gt;
&lt;p&gt;I&apos;ve started using Arch Linux with KDE Plasma on my Desktop system, and messed around with other session managers like hyprland, and weston, I like how customizable hyprland is, though I feel it&apos;s a bit of an oddity when it comes to just using something like KDE.&lt;/p&gt;
&lt;h2&gt;Gaming&lt;/h2&gt;
&lt;p&gt;I tried playing Fallout 4 on highest settings, and it wasn&apos;t all that great, I assume due to swap allocation or similar, but it was really laggy unlike my Windows installation playing the same game.&lt;/p&gt;
&lt;h3&gt;More simple blogs coming soon (hopefully)&lt;/h3&gt;
</content:encoded></item></channel></rss>