<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: FONZACUS</title>
    <description>The latest articles on DEV Community by FONZACUS (@fonzacus).</description>
    <link>https://dev.to/fonzacus</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1504461%2F5bea650e-23ad-45a2-b2d2-1a81973d583a.jpg</url>
      <title>DEV Community: FONZACUS</title>
      <link>https://dev.to/fonzacus</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fonzacus"/>
    <language>en</language>
    <item>
      <title>A Bit Saved is a Bit Earned</title>
      <dc:creator>FONZACUS</dc:creator>
      <pubDate>Fri, 14 Jun 2024 16:06:01 +0000</pubDate>
      <link>https://dev.to/fonzacus/a-bit-saved-is-a-bit-earned-1k6m</link>
      <guid>https://dev.to/fonzacus/a-bit-saved-is-a-bit-earned-1k6m</guid>
      <description>&lt;h6&gt;
  
  
  &lt;em&gt;Unorthodox&lt;/em&gt; - the act of not orthodoxing
&lt;/h6&gt;

&lt;h1&gt;
  
  
  A Wise Man Once Said
&lt;/h1&gt;

&lt;p&gt;A penny saved is a penny earned, a great idiom to live by as we can minimize greed. My siblings and I grew up with the rich parents cheat code, but we are not too swayed by money. We are also trying to raise our kids the same way. Why I would bring this up is a focus on minimalism with coding. On more minimal budgets, a few bytes saved can be the difference between a running project, and a crawling one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pass the Source
&lt;/h2&gt;

&lt;p&gt;While not having a formal CV in coding, I do like playing around, coding is no exception. I am fine with any type of &lt;a href="https://wikipedia.org/wiki/Coding_conventions"&gt;coding convention&lt;/a&gt;, but I prefer the GNU style as it is easiest to read even without syntax highlight. Modern styles like the ever-changing &lt;a href="https://developers.google.com/style/code-samples"&gt;Google style guide&lt;/a&gt; (go one up for the other tech giants) do better with minimizing extra space. There are also exceptions to the rules that require careful indenting like Python, they are only a few, most are fine anyway. Back in the old days (pre-smartphone) I would suggest those wanting to code to try their hands with HTML while practicing CSS and JS as they can easily be tested on even phones. Nowadays there are even some complete compilers and debuggers available, especially those that want to give &lt;a href="https://github.com/termux/termux-app"&gt;Termux&lt;/a&gt;, their Debian &lt;code&gt;build-essential&lt;/code&gt;, and root repositories a try.&lt;/p&gt;

&lt;p&gt;Code editors are also guilty here, as they try and force certain styles, and it is hard to tweak it to our liking. There are very nice tools like language servers and code snippets around, even some backed &lt;a href="https://github.com/SilasMarvin/lsp-ai"&gt;by AI&lt;/a&gt;. Web code editors have taken major steps forward within a short time span, and with better AI around the corner, could outpace traditional editors easily. Nowadays choosing one without a source directory project manager is a challenge. Even &lt;a href="https://docs.github.com/en/codespaces/the-githubdev-web-based-editor"&gt;web based gits&lt;/a&gt; think so too. I have been using Vim for almost 15 years, and my usual setup was akin to &lt;a href="https://github.com/SpaceVim/SpaceVim"&gt;SpaceVim&lt;/a&gt; until I wanted to become more minimal. At the end of the day, beauty is in the eye of the beholder.&lt;/p&gt;

&lt;h2&gt;
  
  
  Production Unready
&lt;/h2&gt;

&lt;p&gt;In a released state, I feel it should be a good time to minimize. Few people are going to look into the code, and many compilers strip away the excess weight, but many do not. I agree modern systems can easily tread through without a care in the world, but the penny idiom still hits me. Many projects are going to have different branches to hold different states, so why not have a minimum build for release like most CDNs (content delivery network) do.&lt;/p&gt;

&lt;p&gt;There are many plugins for various text editors that do the job well. Google has a very useful JS minimizer called &lt;a href="https://developers.google.com/closure/compiler"&gt;Clojure Compiler&lt;/a&gt;, It is also available &lt;a href="https://closure-compiler.appspot.com/home"&gt;online&lt;/a&gt;. While simple options are easier overall, you can also select the overkill option to also rename everything, obfuscate, and minimize it to the extreme. A great tool to push the release state to. Other languages do not really have a minimizer as capable as Clojure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Parental Discretion is Advised
&lt;/h2&gt;

&lt;p&gt;I will be using basic HTML as an example since it is the easiest (probably) to understand even for complete beginners. I have also played with owning, hosting, leasing, and admining sites.&lt;/p&gt;

&lt;p&gt;As an example; where &lt;code&gt;_&lt;/code&gt; is a tab, 164 - bits - 122:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;section&amp;gt;                 |&amp;lt;section&amp;gt;
_&amp;lt;div&amp;gt;THIS                |_&amp;lt;div&amp;gt;THIS
__&amp;lt;div&amp;gt;THAT               |__&amp;lt;div&amp;gt;THAT
___&amp;lt;div&amp;gt;HERE&amp;lt;/div&amp;gt;        |___&amp;lt;div&amp;gt;HERE&amp;lt;/div&amp;gt;
___&amp;lt;div&amp;gt;THERE             |___&amp;lt;div&amp;gt;THERE
____&amp;lt;div&amp;gt;EVERYWHERE&amp;lt;/div&amp;gt; |____&amp;lt;div&amp;gt;EVERYWHERE&amp;lt;/div&amp;gt;
____&amp;lt;div&amp;gt;                 |____&amp;lt;div&amp;gt;
_____ANYWHERE             |_____ANYWHERE
____&amp;lt;/div&amp;gt;                |&amp;lt;/section&amp;gt; &amp;lt;- HEAD SHOT
___&amp;lt;/div&amp;gt;
__&amp;lt;/div&amp;gt;
_&amp;lt;/div&amp;gt;
&amp;lt;/section&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We saved 38 bits, where 1 tab is 1 bit, and a new line is 2. In the short term, this may not mean much, but in the long term, &lt;a href="https://blog.cloudflare.com/2-petabytes-of-bandwidth-and-real-money-saved"&gt;the savings can be huge&lt;/a&gt;. If we also minimize all tabs to a still human-readable format, we get 100 bits. Remove the lines, and we get a of 92 bits! Imagine if top sites did this, wouldn't the savings reach unspeakable levels? Many site generators tend to be pretty restrictive, and trying to minimize space can be a challenge.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;section&amp;gt; | &amp;lt;section&amp;gt;&amp;lt;div&amp;gt;THIS&amp;lt;div&amp;gt;THAT&amp;lt;div&amp;gt;HERE&amp;lt;/div&amp;gt;&amp;lt;div&amp;gt;THERE&amp;lt;div&amp;gt;EVERYWHERE&amp;lt;/div&amp;gt;&amp;lt;div&amp;gt;ANYWHERE&amp;lt;/section&amp;gt;
&amp;lt;div&amp;gt;THIS | a bit too chaotic
&amp;lt;div&amp;gt;THAT
&amp;lt;div&amp;gt;HERE&amp;lt;/div&amp;gt;
&amp;lt;div&amp;gt;THERE
&amp;lt;div&amp;gt;EVERYWHERE&amp;lt;/div&amp;gt;
&amp;lt;div&amp;gt;
ANYWHERE
&amp;lt;/section&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Modern browsers will work perfectly fine, those from the Y2K era might choke. Those in the 90s might crash and break the PC when given a popup BTW. Text editors and their syntax engines will properly recognize messy codes. Your favorite browser's devtool will also perfectly line them up nicely as source pages, and also automatically close elements. Many sites have also started excluding &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt; elements for a while, well, I felt like pushing beyond that. This may not even be trendy as most programmers find this unorthodox. IMHO, it is easier to work with as most of the time, machines are smarter than us.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Whole Nine Yards
&lt;/h2&gt;

&lt;p&gt;Some may be disgusted at what I am trying to say, but give it some thought. Site hosting costs have gone down over the years, but everything continues to get bigger. There are many cost-cutting alternatives, like using CDNs, or even offloading media elsewhere. Phones are also becoming more PC-like, with specs rivaling mid-tier consumer laptops. 5 years ago, who would had thought of seeing &amp;gt;10GB of RAM and VGA as low-tier?&lt;/p&gt;

&lt;p&gt;If a penny could be saved, would you do it? Would you pass that penny to somewhere else? Would the penny be happy?&lt;/p&gt;

&lt;h6&gt;
  
  
  Save Mother Earth
&lt;/h6&gt;

</description>
      <category>beginners</category>
      <category>learning</category>
    </item>
    <item>
      <title>Warm Welcome to Linux P2</title>
      <dc:creator>FONZACUS</dc:creator>
      <pubDate>Thu, 06 Jun 2024 08:45:23 +0000</pubDate>
      <link>https://dev.to/fonzacus/warm-welcome-to-linux-p2-3j5k</link>
      <guid>https://dev.to/fonzacus/warm-welcome-to-linux-p2-3j5k</guid>
      <description>&lt;h6&gt;
  
  
  &lt;a href="https://dev.to/fonzacus/warm-welcome-to-linux-3okj"&gt;Part 1&lt;/a&gt;
&lt;/h6&gt;

&lt;h1&gt;
  
  
  Which Island to Hop to Next
&lt;/h1&gt;

&lt;p&gt;Because a first impression is a lasting one, many people request recommendations on which Linux distribution (distro) to try. Many discussions go back and forth about trying to find a shoe that fits you, and everyone else in the house. I will say this: do not get too hung up on it. Distros are like toys; some you keep, and others you throw away for better or for worse. Keeping your system and data partitions separate is a good idea because it is often done even with beginner. Out of the barrel, only some are monumental.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Cake is not a Lie
&lt;/h2&gt;

&lt;p&gt;Many times, distros tend to be very similar to the untrained user. Like making a cake, the base ingredient is the Linux kernel and hardware support. On top of that, are the &lt;a href="https://zdnet.com/article/40-years-of-gnu-and-the-free-software-foundation/"&gt;GNU utilities&lt;/a&gt; that speak between system and users. Then we add the &lt;em&gt;censored word&lt;/em&gt; like ready-made mixings, or we make our own fixings. Scramble it up with user interfacing like audio, video, and other inputs and outputs.&lt;/p&gt;

&lt;p&gt;The graphical user interface (GUI) is like the toppings; some like it sweet, while others do not. Beauty is in the eye of the beholder. My favorite course is usually sticking to something lite but complete, like LXQT, then building on top of that with desktop environment independent apps. I particularly prefer multiplatform apps if possible to keep transitioning over smooth. I try to keep the sugar down, but when I need something stronger, it is ready to launch.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Try Hard
&lt;/h2&gt;

&lt;p&gt;As a non-computer (hardware, software etc) specialist like myself who has hobbies in computers, I wanted a challenge. Trying their luck with &lt;a href="https://linuxfromscratch.org/"&gt;Linux From Scratch&lt;/a&gt; (LFS) and beyond as just random. As someone who completed the journey on a whim, it was worthwhile as I got to see a system built. The course takes about a week with trial, error, and sheer willpower. It is like a coming-of-age tale; complete it once and never speak of it again.&lt;/p&gt;

&lt;h2&gt;
  
  
  Which of the Two
&lt;/h2&gt;

&lt;p&gt;What thinly separates distros (apart from the GUI) is the package manager (PM). There are two main distinctions: source and binary based. Source-based distros are managers that download the source files, and then build them while following their recipes. We must build everything ourselves, including the core system components. The most notable examples come from the &lt;a href="https://wikipedia.org/wiki/List_of_BSD_operating_systems"&gt;Berkeley Software Distribution&lt;/a&gt; (BSD) family and &lt;a href="https://gentoo.org"&gt;Gentoo&lt;/a&gt; from Linux. Some BSD forks try to be more user friendly, and there are also forks of Gentoo available. These are geared toward easier maintenance for their dev team.&lt;/p&gt;

&lt;p&gt;These distros are mainly for those who do not really trust anyone. Distros like these are often skipped as they take tons of effort to maintain ourselves. Reading sources may be fun as we get to see unique options not included by default, or even add custom patches to the fixings. A common example of this is the &lt;a href="https://suckless.org"&gt;Suckless&lt;/a&gt; utilities. After trying out a few, I swore to never try these again. It was way over my pay grade.&lt;/p&gt;

&lt;p&gt;Then we have binary-based distros which are the ones usually used because they are built for us. Packages are built either by our distro maintainers, various external first and third-party maintainers, or by ourselves. Windows and Mac fit into this category, and with many toolkits available may see a different option soon enough. They run as ready to rumble with little bloodshed for us users.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Third Wheel
&lt;/h2&gt;

&lt;p&gt;Some break out of the mold &lt;a href="https://dev.to/bearlike/flatpak-vs-snaps-vs-appimage-vs-packages-linux-packaging-formats-compared-3nhl"&gt;like portable&lt;/a&gt; applications, &lt;a href="https://dev.to/t/nixos"&gt;NixOS&lt;/a&gt; packages, and &lt;a href="https://bedrocklinux.org"&gt;Bedrock Linux&lt;/a&gt;. These can further be added on top of the base OSs, and theoretically, on top of source-based distros as well. Having choices like these open up routes to more degrees of freedom. It can also be a double-edged sword for non-experienced users. Experience is the best teacher.&lt;/p&gt;

&lt;p&gt;While not as trustworthy as an official repository, they can greatly benefit both users and maintainers. Who is to say their distro of choice can be completely trusted? Why not ask Windows users, this can and has happened in Linux, too. Relying on off site packages can also be a blessing, many applications are starting to consider portable applications distributions. This allows for maintainers more time to allocate elsewhere, and some are already doing so.&lt;/p&gt;

&lt;p&gt;This is why keeping system and data partitions separate is good practice. After hopping from one distro to the next, many of our preferred settings can be picked up on another system. There may be issues with incompatible apps like an accidental downgrade, but most of the time the app can panic a bit and fix itself up, if not wipe the settings clean again. People also love having their user configs backed up elsewhere like on GitHub or other cloud storage providers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Town of Beginnings
&lt;/h2&gt;

&lt;p&gt;Picking a starting distro is like playing a game, it does not take long for us to stay in our starting town. With various informative sites like &lt;a href="https://distrowatch.com"&gt;DistroWatch&lt;/a&gt;, and even a testing site like &lt;a href="https://google.com/search?q=distrotest"&gt;distro test&lt;/a&gt;, our options are endless. Beginners should not get too hung up on deciding which game they want to play as there are tons available. Sooner or later in life, some even leave their starting towns, and even their countries.&lt;/p&gt;

&lt;h6&gt;
  
  
  Keep the ball rolling
&lt;/h6&gt;

</description>
      <category>beginners</category>
      <category>linux</category>
    </item>
    <item>
      <title>Warm Welcome to Linux</title>
      <dc:creator>FONZACUS</dc:creator>
      <pubDate>Tue, 28 May 2024 06:16:44 +0000</pubDate>
      <link>https://dev.to/fonzacus/warm-welcome-to-linux-3okj</link>
      <guid>https://dev.to/fonzacus/warm-welcome-to-linux-3okj</guid>
      <description>&lt;h6&gt;
  
  
  For easiness, let me call it "Linux" and not GNU/Linux/whatever
&lt;/h6&gt;

&lt;h1&gt;
  
  
  Ignorance is a Blessing
&lt;/h1&gt;

&lt;p&gt;Trying to live a more minimal life has its ups and downs. Having been out of the loop for such a long time, the world and the years ahead, look different from under a rock. With many breakthroughs in many fields at once, it seems impossible to catch up. To me, none of that matters much, as I prefer just playing with my kids. My off the entire grid life taught me to enjoy the simple things.&lt;/p&gt;

&lt;h2&gt;
  
  
  Now With More Broken Glass
&lt;/h2&gt;

&lt;p&gt;PC users are having a tantrum spiral as many Windows rumors turn out to be true. Who knew all these wonderful features could be ever more wonderful (/s). Some have even sworn to move elsewhere. As one who has tried to move since Windows 8 (I dub it H8 BTW), I have tried hopping many times over the decade and have stayed with the basic friendly guidelines (common sense really). The year of the Linux (TM) (R) (C) may finally come, maybe.&lt;/p&gt;

&lt;h2&gt;
  
  
  DistroWatch, I Choose You
&lt;/h2&gt;

&lt;p&gt;The common sense I advocate mainly revolves around &lt;a href="https://distrowatch.com"&gt;DistroWatch&lt;/a&gt;. High ranking distributions (indicated by the hits per day chart) are generally more favorable for many reasons; stability, support, user-friendliness, friendliness of other users and so on. Over the past few years, I have usually recommended the three major M named distros; Mint, Manjaro, and MX. They have had high favorability over the past decade. A first impression is a lasting one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Short Backstory
&lt;/h2&gt;

&lt;p&gt;My first distro into the Linux distros that I fondly remember started off with Ubuntu as it was the first of its kind back in the day. Many distros were &lt;em&gt;too&lt;/em&gt; freedom oriented, and preferred not to include much needed drivers, media codecs, filesystem support and so on. This all changed when Ubuntu broke out of the mold. Nowadays, there are only a few that try to stay true to these old teachings. It was revolutionary at the time when even complete beginners could be happy with a completed, ready to rumble install without bloodshed.&lt;/p&gt;

&lt;p&gt;My friends also wanted a stab at Linux and asked me for help. They wanted a simpler experience than Ubuntu. After browsing around for a bit, we decided on Mint. The experience was even more laid back, and something that can be better for beginners. After using it for over a year, I wanted to try Ubuntu again, until I heard some funny rumors. Browsing the Mint site, they started to offer a Debian option, and I decided to finally try Debian after hearing they started to ease on their too freedom ways.&lt;/p&gt;

&lt;p&gt;As with many distros, having a large repository may not be enough for some, adding custom PPAs (Personal Package Archives, or 3rd party repositories) was the norm. Whilst staying truly Debian, this can add to a &lt;a href="https://wiki.debian.org/DontBreakDebian"&gt;FrankenDebian&lt;/a&gt;, and might mess up the upgrade procedure. That is when I decided to try a rolling release distro again, but this time it was Debian Sid (I prefer calling it Unstable, and calling the next stable as Testing). My kitchen PC, which I built back in college 2009, with a top of the line DDR2, is still happily running with the initial Unstable I had installed. It really says something, as long as we RTFM.&lt;/p&gt;

&lt;h2&gt;
  
  
  There Are Plenty of Fish in the Sea
&lt;/h2&gt;

&lt;p&gt;Trying something new is scary, but there are tools out there to ease the pain. &lt;a href="https://pendrivelinux.com/yumi-multiboot-usb-creator"&gt;YUMI&lt;/a&gt; and &lt;a href="https://www.ventoy.net/en/index.html"&gt;Ventoy&lt;/a&gt; can help with the discovery phase of distro hopping. They are tools we can use to download ISOs onto our USB flash drives. The kicker is, they can support many bootable disks on one installation. The icing on the cake, they support persistency. We can try their default installers, save our persistent data, try something else, and return to where we left off.&lt;/p&gt;

&lt;p&gt;Most Linux apps try to be portable (in a different sense of the word, for another topic) by nature and try to be self-contained. Now there are &lt;a href="https://dev.to/bearlike/flatpak-vs-snaps-vs-appimage-vs-packages-linux-packaging-formats-compared-3nhl"&gt;portable app frameworks&lt;/a&gt; that try to do more. I am more AppImage oriented as they are truly portable, without the need for additional software.&lt;/p&gt;

&lt;p&gt;After some Frankensteining of my own, I have a &lt;a href="https://forum.mxlinux.org/viewtopic.php?p=581942"&gt;USB installed&lt;/a&gt; MX as a pocket OS that can be used on literally any hardware. Most common factory default boot options tend to favor booting from USB drives as the first boot option. A few years ago, a new storm called &lt;a href="https://distrowatch.com/table.php?distribution=bedrock"&gt;Bedrock Linux&lt;/a&gt; caught Frankensteiners by surprise, and this is where I am with my daily driver everyday laptop.&lt;/p&gt;

&lt;h2&gt;
  
  
  Choose Your Destiny
&lt;/h2&gt;

&lt;p&gt;There are plenty of choices in the Linux distro world, too many as said before. Too much of a good thing can be bad at times, and that can split focus on trivial things instead of pushing to what matters more. At the end of the day, don't worry too much about what you choose as most of the time, most distros tend to be the same, it is the nitty gritty details that only slightly set them apart. Of course this was just an oversimplification, as the iceberg is always larger underneath.&lt;/p&gt;

&lt;h6&gt;
  
  
  So many choices, so little time, &lt;a href="https://dev.to/fonzacus/warm-welcome-to-linux-p2-3j5k"&gt;so part 2&lt;/a&gt;
&lt;/h6&gt;

</description>
      <category>beginners</category>
      <category>linux</category>
      <category>opensource</category>
    </item>
    <item>
      <title>My Little Protopage - A Cloud Homepage</title>
      <dc:creator>FONZACUS</dc:creator>
      <pubDate>Tue, 21 May 2024 04:25:20 +0000</pubDate>
      <link>https://dev.to/fonzacus/my-little-protopage-a-cloud-homepage-1fen</link>
      <guid>https://dev.to/fonzacus/my-little-protopage-a-cloud-homepage-1fen</guid>
      <description>&lt;h6&gt;
  
  
  NOTE: I am not sponsored, nor affiliated etc
&lt;/h6&gt;

&lt;h1&gt;
  
  
  A Relic of the Past
&lt;/h1&gt;

&lt;p&gt;Please forgive my ignorance master(s), while not strictly related to coding, I would like to offer a glimpse to an awesome hidden gem called &lt;a href="https://protopage.com"&gt;Protopage&lt;/a&gt;. It is a customizable &lt;a href="https://alternativeto.net/category/online-services/personal-homepage"&gt;personal homepage&lt;/a&gt;, but here is why I love it, it does not require an active log in to use. You could make an account, set up a homepage, and easily set any browser's home or new tab page to that site. A simple search could get you a brief example of what other pages &lt;a href="https://google.com/search?q=site%3Aprotopage.com"&gt;look like&lt;/a&gt;. Here is what my mini account uses as another &lt;a href="https://protopage.com/mini.fonzacus"&gt;boring example&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Unearthing the Fossils
&lt;/h2&gt;

&lt;p&gt;From their &lt;a href="https://wikipedia.org/wiki/Protopage"&gt;Wikipedia&lt;/a&gt; and &lt;a href="https://blog.protopage.com"&gt;blog&lt;/a&gt; entries, they have been around since mid 05, and honestly, I have only discovered it early this year (24) and have wondered why I have not heard about it sooner. Ironically, I have tried many of their alternatives, and have created my own basic homepage with boring HTML, CSS and slight JS, kept it both offline and online. It looks and smells like &lt;em&gt;Protopage&lt;/em&gt;. Modern browsers are very finicky about local pages having too much control, and is especially hard to do in mobile phones nowadays. Maintaining that custom homepage for different browsers and OSs became a chore.&lt;/p&gt;

&lt;h2&gt;
  
  
  What a Twist
&lt;/h2&gt;

&lt;p&gt;The reason I am trying to get others to try it out is because they have recently decided to show an ad and a subscription banner. I am not too alarmed, and have wondered why they have not done so sooner. I am also guilty of using an ad blocker (uBlock Origin), but using it the &lt;em&gt;wrong&lt;/em&gt; way. I am fine with ads, so long as they are not the evil kind, such as media, popups, background activities (what people call annoyance and badware listed nowadays). Therefore, I am trying to get more people onboard with them in hopes of keeping their project alive.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Walled Garden
&lt;/h2&gt;

&lt;p&gt;The main feature of Protopage is that it does not require a login to use unlike many of their competitors. Sure, one could argue there are many extensions for browsers that offer a similar or better experience, but they are all walled gardens. Your device is only able to see your personal homepage, on that browser, on that PC, on that chair. Many similar sites also require an active login to access your site, without being able to see what others look like for inspiration. Protopage goes beyond that wall. If you really wanted to, you could even use someone's homepage as your own, but where is the fun in that.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Unwalled Garden
&lt;/h2&gt;

&lt;p&gt;What Protopage offers is more than just a cloud bookmark service, it is a dashboard. Pages can be customized to have many widgets such as an embedded web page, embeddable site widget, or even many RSS readers. I am also guilty of using an RSS reader the wrong way, by trying to brute force sites that do not offer feeds, to simply view their site without distractions. In a perfect world, you could embed many site widgets and get much work done without leaving the comfort of your home (page), but alas many sites restrict having their sites embedded for a reason.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Way of the Proto
&lt;/h2&gt;

&lt;p&gt;A simple idea is all it requires to make a page. It offers simple drag and drop layout customizations like many others, and offers more tweaks like no other. Like a real site, you can have widgets import scripts from elsewhere, while also running inline scripts. A widget can (almost) technically be called a browser window, but with limitations such as many sites not allowing their site to be embedded. A simple site specific search from above could land you an example of such complex pages that fancies you. Some have even used it as their own personal site page, or even a blackboard like organizer.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Final Words
&lt;/h2&gt;

&lt;p&gt;I am truly shocked this site has been around for so long, yet so few people use it. In another alternate reality, had it gone done Googled, it would have easily beat so many other homepages of the past. I was born 1990, and have seen so many of them gone. There are few remaining and they are making a comeback, but in another form. Having a personal homepage like Protopage is like having your own personal newspaper, where you decide what you want. Let us hope it can continue for years to come...&lt;/p&gt;

&lt;h6&gt;
  
  
  1st post, lets up it goes well
&lt;/h6&gt;

</description>
      <category>tutorial</category>
      <category>productivity</category>
      <category>cloud</category>
    </item>
  </channel>
</rss>
