<?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: Ali Raza</title>
    <description>The latest articles on DEV Community by Ali Raza (@ali_raza_3c6b980626b17f8a).</description>
    <link>https://dev.to/ali_raza_3c6b980626b17f8a</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4085215%2Fd478e28c-001d-46e5-9cb4-7a251d875f6e.png</url>
      <title>DEV Community: Ali Raza</title>
      <link>https://dev.to/ali_raza_3c6b980626b17f8a</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ali_raza_3c6b980626b17f8a"/>
    <language>en</language>
    <item>
      <title>I Built a Free Minimal Online Notepad in PHP — Here's What I Learned</title>
      <dc:creator>Ali Raza</dc:creator>
      <pubDate>Wed, 19 Aug 2026 14:51:14 +0000</pubDate>
      <link>https://dev.to/ali_raza_3c6b980626b17f8a/i-built-a-free-minimal-online-notepad-in-php-heres-what-i-learned-78m</link>
      <guid>https://dev.to/ali_raza_3c6b980626b17f8a/i-built-a-free-minimal-online-notepad-in-php-heres-what-i-learned-78m</guid>
      <description>&lt;p&gt;Most note-taking apps have become too complicated.&lt;/p&gt;

&lt;p&gt;Notion, Evernote, Google Keep — powerful tools, but when you &lt;br&gt;
just need to capture a thought quickly, they get in the way. &lt;br&gt;
Folders, templates, loading screens — by the time you're ready &lt;br&gt;
to write, the thought is already gone.&lt;/p&gt;

&lt;p&gt;So I built QuickNotepad — a free minimal online notepad built &lt;br&gt;
with PHP and MySQL.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://quicknotepad.us" rel="noopener noreferrer"&gt;QuickNotepad&lt;/a&gt; is a distraction-free &lt;br&gt;
online notepad that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Opens instantly — no install, no sign-up required&lt;/li&gt;
&lt;li&gt;Auto-saves to browser locally without an account&lt;/li&gt;
&lt;li&gt;Syncs to cloud via PHP sessions and MySQL when signed in&lt;/li&gt;
&lt;li&gt;Works on all devices — desktop, tablet, mobile&lt;/li&gt;
&lt;li&gt;Completely free, forever&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The tech stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Vanilla HTML, CSS, JavaScript — no frameworks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; PHP 8 with PDO for database queries&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database:&lt;/strong&gt; MySQL via phpMyAdmin&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auth:&lt;/strong&gt; PHP sessions with password_hash/password_verify&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hosting:&lt;/strong&gt; Shared hosting with cPanel&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I deliberately chose no frameworks. The entire app is one &lt;br&gt;
index.php file for the frontend and three API files for the &lt;br&gt;
backend. Keeping it simple made debugging faster and deployment &lt;br&gt;
trivial — just FTP the files and it works.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I learned
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Vanilla JS is underrated&lt;/strong&gt;&lt;br&gt;
No React, no Vue, no build step. Just clean JavaScript that &lt;br&gt;
runs anywhere. The app loads in under a second because there &lt;br&gt;
is nothing to bundle or compile.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Auto-save UX matters more than features&lt;/strong&gt;&lt;br&gt;
The single most important UX decision was removing the save &lt;br&gt;
button entirely. Notes save 2 seconds after you stop typing. &lt;br&gt;
Users never think about saving — they just write. This one &lt;br&gt;
change made the app feel completely different.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. PHP sessions are still great for simple auth&lt;/strong&gt;&lt;br&gt;
I considered JWTs, Supabase, and Firebase. In the end &lt;br&gt;
PHP sessions with password_hash() did everything I needed &lt;br&gt;
in about 50 lines of code. Sometimes boring is better.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. SEO from day one&lt;/strong&gt;&lt;br&gt;
I added schema markup, a dynamic sitemap, and a blog from &lt;br&gt;
the start. Getting indexed by Google on a new domain takes &lt;br&gt;
time — starting SEO early is always worth it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Google AdSense integration for monetization&lt;/li&gt;
&lt;li&gt;Rich text editor&lt;/li&gt;
&lt;li&gt;Note sharing via public links&lt;/li&gt;
&lt;li&gt;Mobile app&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try it at &lt;a href="https://quicknotepad.us" rel="noopener noreferrer"&gt;quicknotepad.us&lt;/a&gt; — &lt;br&gt;
no sign-up needed, just open and write.&lt;/p&gt;

&lt;p&gt;Would love feedback from the dev community — what would &lt;br&gt;
you add or change?&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>php</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
