<?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: Aditya Sorathiya</title>
    <description>The latest articles on DEV Community by Aditya Sorathiya (@aditya_sorathiya_069252f4).</description>
    <link>https://dev.to/aditya_sorathiya_069252f4</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%2F4023995%2F485e9466-24ea-4f21-b88a-2a5fb850b430.png</url>
      <title>DEV Community: Aditya Sorathiya</title>
      <link>https://dev.to/aditya_sorathiya_069252f4</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aditya_sorathiya_069252f4"/>
    <language>en</language>
    <item>
      <title>🚀 PasteDB is now on AlternativeTo!</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Tue, 28 Jul 2026 13:19:43 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/pastedb-is-now-on-alternativeto-i8i</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/pastedb-is-now-on-alternativeto-i8i</guid>
      <description>&lt;p&gt;PasteDB is a modern paste-sharing platform built for developers. Share code, notes, logs, markdown, links, and images with ease. Features include public and private pastes, end-to-end encrypted (E2EE) sharing, syntax highlighting, custom URLs, Burn After Read, QR code sharing, Nearby Transfer, Markdown preview, an Explore page, REST API, Python SDK, VS Code extension, and API key management. Fast, privacy-focused, and designed to simplify sharing and collaboration.&lt;/p&gt;

&lt;p&gt;I got approval on 27 July 26 &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2cy6ds07lkfzibhsj1y4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2cy6ds07lkfzibhsj1y4.png" alt="Approved" width="799" height="767"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See on AlternativeTo : &lt;a href="https://alternativeto.net/software/pastedb/about/" rel="noopener noreferrer"&gt;https://alternativeto.net/software/pastedb/about/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Or &lt;/p&gt;

&lt;p&gt;&lt;a href="https://alternativeto.net/software/pastedb" rel="noopener noreferrer"&gt;https://alternativeto.net/software/pastedb&lt;/a&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Why I Keep My Frontend and Backend Separate (Even in the Same Repository)</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Sun, 26 Jul 2026 09:10:57 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/why-i-keep-my-frontend-and-backend-separate-even-in-the-same-repository-390j</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/why-i-keep-my-frontend-and-backend-separate-even-in-the-same-repository-390j</guid>
      <description>&lt;p&gt;When I started building web applications, I quickly realised that keeping the frontend and backend as separate applications made development much easier.&lt;/p&gt;

&lt;p&gt;My current setup looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;project/
│
├── frontend/
│   ├── index.html
│   ├── config.js
│   ├── script.js
│   └── ...
│
├── backend/
│   ├── main.py
│   ├── auth.py
│   ├── ....
│   └── ...
│
└── README.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I still keep everything in one Git repository, but the frontend and backend are deployed independently.&lt;/p&gt;

&lt;p&gt;1.Frontend&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;HTML, CSS and JavaScript&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hosted on Netlify&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.Backend&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;FastAPI&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hosted on Render&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;3.Database&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MongoDB Atlas&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why this works well
&lt;/h2&gt;

&lt;p&gt;Independent deployments&lt;/p&gt;

&lt;p&gt;If I update the UI, I only redeploy Netlify.&lt;/p&gt;

&lt;p&gt;If I add a new API endpoint, I only redeploy Render.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Neither deployment affects the other.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Cleaner codebase
&lt;/h2&gt;

&lt;h3&gt;
  
  
  The frontend focuses only on:
&lt;/h3&gt;

&lt;p&gt;User interface&lt;/p&gt;

&lt;p&gt;API requests&lt;/p&gt;

&lt;p&gt;Client-side logic&lt;/p&gt;

&lt;h3&gt;
  
  
  The backend focuses only on:
&lt;/h3&gt;

&lt;p&gt;Authentication&lt;/p&gt;

&lt;p&gt;Database operations&lt;/p&gt;

&lt;p&gt;Business logic&lt;/p&gt;

&lt;p&gt;Security&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Each application has a single responsibility.&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Better security
&lt;/h3&gt;

&lt;p&gt;Database credentials and secrets stay in the backend.&lt;/p&gt;

&lt;p&gt;The frontend never contains:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;MongoDB URI

API keys

Secret tokens

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead, it communicates with the backend through HTTP requests.&lt;/p&gt;




&lt;h3&gt;
  
  
  Easier maintenance
&lt;/h3&gt;

&lt;p&gt;When a bug appears, I immediately know where to look.&lt;/p&gt;

&lt;p&gt;UI bug? → Frontend.&lt;/p&gt;

&lt;p&gt;Database bug? → Backend.&lt;/p&gt;

&lt;p&gt;Authentication bug? → Backend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Easy hosting&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;Using different platforms allows each service to do what it does best.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Netlify&lt;/strong&gt; serves static files quickly through its CDN.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Render&lt;/strong&gt; runs the FastAPI server.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MongoDB Atlas&lt;/strong&gt; manages the database.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Each service specialises in its own task.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Do you need separate repositories?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No&lt;/strong&gt;t necessarily.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;For solo developers and small teams, a single repository with separate frontend and backend folders is often a great choice. It keeps everything together while still maintaining a clear separation of concerns.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;As projects grow, some teams move to separate repositories, while others continue using a monorepo. Both approaches can work well—the important part is keeping the frontend and backend independent enough that they can be developed and deployed separately.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Built a Paste Tool That Never Stores Your Data on a Server</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Fri, 24 Jul 2026 14:37:54 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/i-built-a-paste-tool-that-never-stores-your-data-on-a-server-1j26</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/i-built-a-paste-tool-that-never-stores-your-data-on-a-server-1j26</guid>
      <description>&lt;p&gt;Most paste services upload your content to a server before giving you a shareable link.&lt;/p&gt;

&lt;p&gt;I wanted something simpler for sharing sensitive information like passwords, Wi-Fi credentials, recovery codes, or short private notes.&lt;br&gt;
So I built Link Paste.&lt;/p&gt;

&lt;p&gt;How it works&lt;br&gt;
🔗 Your entire paste is stored inside the URL.&lt;br&gt;
🚫 Nothing is uploaded or saved on any server.&lt;br&gt;
⚡ The link is generated instantly in your browser.&lt;br&gt;
🔒 No link = no access to the data.&lt;br&gt;
🗑️ Lose the link = the data is gone forever.&lt;/p&gt;

&lt;p&gt;Since there's no database, there are no server-side copies to delete, leak, or expire.&lt;br&gt;
It's best suited for:&lt;/p&gt;

&lt;p&gt;Passwords&lt;br&gt;
Wi-Fi credentials&lt;br&gt;
Recovery codes&lt;br&gt;
Temporary secrets&lt;br&gt;
Short private notes ("shower thoughts" or reminders)&lt;/p&gt;

&lt;p&gt;This isn't intended for large files or permanent storage—it's designed for quick, private sharing without relying on a backend.&lt;br&gt;
I'd love feedback on the idea and suggestions for improving it.&lt;/p&gt;

&lt;p&gt;👉 Try it here: &lt;a href="https://pastedb.netlify.app/newLink" rel="noopener noreferrer"&gt;https://pastedb.netlify.app/newLink&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To Instant share Long Links, QR code is provided &lt;/p&gt;

&lt;p&gt;To scan QR, go to &lt;a href="https://pastedb.netlify.app/scan" rel="noopener noreferrer"&gt;https://pastedb.netlify.app/scan&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For more features&lt;br&gt;
&lt;a href="https://pastedb.netlify.app" rel="noopener noreferrer"&gt;https://pastedb.netlify.app&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>privacy</category>
      <category>javascript</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I Built a Tool That Lets Teachers Write Once and Teach Every Class</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Thu, 23 Jul 2026 09:39:26 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/i-built-a-tool-that-lets-teachers-write-once-and-teach-every-class-1jhk</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/i-built-a-tool-that-lets-teachers-write-once-and-teach-every-class-1jhk</guid>
      <description>&lt;p&gt;Every day, teachers repeat the same process.&lt;br&gt;
They solve a math problem on the board for one class, erase it, then rewrite the exact same solution for the next section. The explanation changes, but the writing doesn't.&lt;br&gt;
While building PasteDB, I started wondering:&lt;br&gt;
What if teachers only had to write it once?&lt;br&gt;
The idea is simple:&lt;br&gt;
Write the solution on the board once.&lt;br&gt;
Capture it as an image or digital note.&lt;br&gt;
Upload it.&lt;br&gt;
Open the same page in every classroom using the projector.&lt;br&gt;
Spend time explaining instead of rewriting.&lt;br&gt;
I'm exploring how a developer-focused paste sharing platform can also become a lightweight classroom teaching tool.&lt;br&gt;
I'd love feedback from teachers and developers—would something like this actually be useful?&lt;br&gt;
See here &lt;a href="https://pastedb.netlify.app" rel="noopener noreferrer"&gt;https://pastedb.netlify.app&lt;/a&gt;&lt;/p&gt;

</description>
      <category>deved</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Users close to 100!!</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Wed, 22 Jul 2026 11:02:19 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/users-close-to-100-5aaj</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/users-close-to-100-5aaj</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fp4col5e5phvfypdhnxaw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fp4col5e5phvfypdhnxaw.png" alt="Google Analytics 4" width="800" height="1579"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Complete the target for 100&lt;br&gt;
Visit now &lt;a href="https://pastedb.netlify.app" rel="noopener noreferrer"&gt;https://pastedb.netlify.app&lt;/a&gt; &lt;br&gt;
Or search &lt;br&gt;
"PasteDB" on Google&lt;/p&gt;

</description>
      <category>seo</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Open for Freelance — Full-Stack Python &amp; FastAPI Developer | Websites, APIs &amp; Custom Tools</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Mon, 20 Jul 2026 16:25:15 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/open-for-freelance-full-stack-python-fastapi-developer-websites-apis-custom-tools-nh6</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/open-for-freelance-full-stack-python-fastapi-developer-websites-apis-custom-tools-nh6</guid>
      <description>&lt;p&gt;Looking for a developer to build your next project? I create modern websites, FastAPI backends, REST APIs, Python automation tools, and custom web applications. I've built projects like PasteDB, a secure code-sharing platform with end-to-end encryption, a Python SDK, and a VS Code extension. If you need a reliable developer for your next idea, let's work together.&lt;/p&gt;

&lt;p&gt;PasteDB: &lt;a href="https://pastedb.netlify.app" rel="noopener noreferrer"&gt;https://pastedb.netlify.app&lt;/a&gt;&lt;br&gt;
Github: &lt;a href="https://github.com/sorathiya903" rel="noopener noreferrer"&gt;https://github.com/sorathiya903&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Built the Official PasteDB Python SDK — Upload Code, Notes &amp; Images with Just a Few Lines of Python 🚀</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Mon, 20 Jul 2026 10:20:52 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/i-built-a-python-sdk-for-pastedb-upload-code-notes-images-with-just-a-few-lines-of-python-5foj</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/i-built-a-python-sdk-for-pastedb-upload-code-notes-images-with-just-a-few-lines-of-python-5foj</guid>
      <description>&lt;h2&gt;
  
  
  Stop writing raw HTTP requests
&lt;/h2&gt;

&lt;p&gt;every time you want to create or manage pastes. I built the official PasteDB Python SDK to make uploading code snippets, notes, and images effortless from any Python project.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fw7j5bw8lvo0ak676o5it.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fw7j5bw8lvo0ak676o5it.png" alt="API Documentation Page" width="800" height="1579"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this article you'll learn how to install the SDK, authenticate with your API key, create public and private pastes, upload images, manage your content, and integrate PasteDB into your own applications. Whether you're building automation scripts, developer tools, or AI workflows, this SDK simplifies the entire process with a clean and Pythonic API.&lt;/p&gt;

&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;p&gt;✨ Guest paste creation is fully supported — no account required.&lt;/p&gt;

&lt;p&gt;📖 Documentation: &lt;a href="https://pastedb.netlify.app/docs" rel="noopener noreferrer"&gt;https://pastedb.netlify.app/docs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🐍 Python SDK GitHub Repository:&lt;br&gt;
&lt;a href="https://github.com/sorathiya903/pastedb-package-python" rel="noopener noreferrer"&gt;https://github.com/sorathiya903/pastedb-package-python&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;NOTE : TO STORE IMAGES ADD &lt;br&gt;
"images":["&lt;a href="https://image.urls" rel="noopener noreferrer"&gt;https://image.urls&lt;/a&gt; array]&lt;/p&gt;

&lt;p&gt;Images URL array acceptable rather than whole image&lt;/p&gt;

</description>
      <category>python</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>product</category>
    </item>
    <item>
      <title>🚀 My VS Code Extension Was Featured on DevBytes — Here's the Story</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Sun, 19 Jul 2026 14:00:04 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/my-vs-code-extension-was-featured-on-devbytes-heres-the-story-cp4</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/my-vs-code-extension-was-featured-on-devbytes-heres-the-story-cp4</guid>
      <description>&lt;h3&gt;
  
  
  I built PasteDB,
&lt;/h3&gt;

&lt;p&gt;a modern paste-sharing platform with a VS Code extension, Python SDK, secure API keys, anonymous guest pastes, and end-to-end encrypted private sharing and much more. Recently, the VS Code extension was featured by DevBytes. In this post, I'll share the journey, what the extension does, the challenges I faced while building it, and what I learned as a student developer.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F62d17bazklsnk1r6xeno.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F62d17bazklsnk1r6xeno.png" alt=" " width="800" height="1579"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;View extension on marketplace&lt;br&gt;
&lt;a href="https://marketplace.visualstudio.com/items?itemName=adityasorathiya.pastedb" rel="noopener noreferrer"&gt;https://marketplace.visualstudio.com/items?itemName=adityasorathiya.pastedb&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Search "pastedb" on VS code extensions section &lt;/p&gt;

</description>
    </item>
    <item>
      <title>PasteDB is More Than a Pastebin — Share Code, Images, &amp; Notes Instantly</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Sun, 19 Jul 2026 05:06:41 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/pastedb-is-more-than-a-pastebin-share-code-images-notes-instantly-5c4l</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/pastedb-is-more-than-a-pastebin-share-code-images-notes-instantly-5c4l</guid>
      <description>&lt;h2&gt;
  
  
  Most people think PasteDB is only for developers—but it's designed for much more.
&lt;/h2&gt;




&lt;h3&gt;
  
  
  🧑‍💻 Developers
&lt;/h3&gt;

&lt;p&gt;Share code snippets and error screenshots&lt;br&gt;
Upload images alongside your pastes&lt;br&gt;
Share logs, configs and debugging information&lt;br&gt;
Generate QR codes or use Nearby Transfer&lt;/p&gt;

&lt;h3&gt;
  
  
  👨‍🏫 Teachers
&lt;/h3&gt;

&lt;p&gt;Share class notes, assignments and reference material&lt;br&gt;
Include images, diagrams and examples in a single paste&lt;br&gt;
Students can open the same link instantly&lt;/p&gt;

&lt;h3&gt;
  
  
  🎓 Students
&lt;/h3&gt;

&lt;p&gt;Receive notes with one link&lt;br&gt;
Share homework, projects and study material&lt;br&gt;
Save important information for later&lt;/p&gt;

&lt;h3&gt;
  
  
  🎤 Presenters &amp;amp; Speakers
&lt;/h3&gt;

&lt;p&gt;Share slides, code snippets or images with your audience instantly&lt;br&gt;
No QR code scanning or typing long URLs&lt;br&gt;
Simply open Nearby Transfer, and people nearby can receive the paste with one tap&lt;br&gt;
Great for workshops, classrooms and live demos&lt;/p&gt;

&lt;p&gt;✨ PasteDB combines text, code and images into one shareable page, making sharing simple for everyone—not just developers.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>pastebin</category>
    </item>
    <item>
      <title>Share Images Instantly with PasteDB</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Sun, 19 Jul 2026 04:58:42 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/share-images-instantly-with-pastedb-h8m</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/share-images-instantly-with-pastedb-h8m</guid>
      <description>&lt;h2&gt;
  
  
  PasteDB isn't just for sharing code anymore.
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;You can now upload and share images with a simple link—perfect for screenshots, diagrams, bug reports, notes, and more.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzmoikl27mwqxyjwnc2k5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzmoikl27mwqxyjwnc2k5.png" alt=" " width="800" height="1579"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Click the Camera Icon &lt;/li&gt;
&lt;li&gt;Select the image(s)&lt;/li&gt;
&lt;li&gt;And Creating a paste will first upload those images&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;📷 Upload images in seconds&lt;/li&gt;
&lt;li&gt;🔗 Instant shareable link&lt;/li&gt;
&lt;li&gt;🌐 Public or unlisted visibility&lt;/li&gt;
&lt;li&gt;🔒 Optional password protection&lt;/li&gt;
&lt;li&gt;⏳ Expiration options (10 min to never, including Burn After Read)&lt;/li&gt;
&lt;li&gt;📱 QR code for quick sharing&lt;/li&gt;
&lt;li&gt;⚡ Fast loading and mobile-friendly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Whether you're sharing a UI mockup, an error screenshot, or an image with friends, PasteDB keeps it simple.&lt;/p&gt;

&lt;p&gt;Try it: &lt;a href="https://pastedb.netlify.app/%E2%81%A0" rel="noopener noreferrer"&gt;https://pastedb.netlify.app/⁠&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love to hear your feedback and suggestions for future features!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>javascript</category>
    </item>
    <item>
      <title>🚀 PasteDB Templates — Instantly Start with Ready-to-Use Code Snippets</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Sat, 18 Jul 2026 15:24:56 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/pastedb-templates-instantly-start-with-ready-to-use-code-snippets-8ek</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/pastedb-templates-instantly-start-with-ready-to-use-code-snippets-8ek</guid>
      <description>&lt;p&gt;&lt;strong&gt;Stop writing the same boilerplate code over and over.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  PasteDB Templates
&lt;/h2&gt;

&lt;p&gt;lets you create new pastes from a collection of ready-made templates. Whether you're starting a simple HTML page, a Flask app, a FastAPI project, JavaScript script, Python file, or other common snippets, you can begin coding instantly with a single click.&lt;/p&gt;

&lt;p&gt;✨ Why use Templates?&lt;br&gt;
⚡ Start coding instantly&lt;br&gt;
📄 Ready-made starter code&lt;br&gt;
🌐 Templates for popular languages and frameworks&lt;br&gt;
⏱️ Save time on repetitive setup&lt;br&gt;
🚀 Great for beginners and experienced developers&lt;br&gt;
Instead of creating every file from scratch, choose a template, customize it, and share it immediately with PasteDB.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to start?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fphqoq2nnfjsjf3fkkqa1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fphqoq2nnfjsjf3fkkqa1.png" alt=" " width="800" height="415"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Click the blue text "Start with a template"&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A dialog box will open, select the template you want&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftvzaq3unpc3fmgb7l88x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftvzaq3unpc3fmgb7l88x.png" alt=" " width="800" height="1383"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Then configure other settings and create the paste!&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;See &lt;a href="https://pastedb.netlify.app/create" rel="noopener noreferrer"&gt;Create Page&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Magic Nearby Transfer for PasteDB — Send Code to Nearby Devices Without QR Codes or Links 🚀</title>
      <dc:creator>Aditya Sorathiya</dc:creator>
      <pubDate>Sat, 18 Jul 2026 09:55:49 +0000</pubDate>
      <link>https://dev.to/aditya_sorathiya_069252f4/magic-nearby-transfer-for-pastedb-send-code-to-nearby-devices-without-qr-codes-or-links-3o06</link>
      <guid>https://dev.to/aditya_sorathiya_069252f4/magic-nearby-transfer-for-pastedb-send-code-to-nearby-devices-without-qr-codes-or-links-3o06</guid>
      <description>&lt;p&gt;Ever wanted to send a code snippet from one device to another &lt;strong&gt;without generating a QR code, copying a link, or messaging yourself?&lt;/strong&gt;&lt;br&gt;
I built Nearby Transfer into PasteDB. It lets you send a public paste directly to another nearby device with just a few taps.&lt;br&gt;
It feels a bit like magic.&lt;/p&gt;

&lt;h2&gt;
  
  
  Nearby Transfer in PasteDB
&lt;/h2&gt;

&lt;p&gt;Normally, sharing a paste means:&lt;br&gt;
Copying a URL&lt;br&gt;
Sending it through WhatsApp/Discord&lt;br&gt;
Scanning a QR code&lt;br&gt;
&lt;strong&gt;Nearby Transfer skips all of that.&lt;/strong&gt;&lt;br&gt;
If the receiver is nearby, you simply select their device and send the paste instantly.&lt;/p&gt;




&lt;h3&gt;
  
  
  🧑‍💻 Receiver
&lt;/h3&gt;

&lt;p&gt;Open &lt;a href="https://pastedb.netlify.app" rel="noopener noreferrer"&gt;PasteDB&lt;/a&gt;.&lt;br&gt;
Go to &lt;a href="https://pastedb.netlify.app/transfer" rel="noopener noreferrer"&gt;Transfer Page&lt;/a&gt;.&lt;br&gt;
Become discoverable:&lt;br&gt;
&lt;strong&gt;Mobile&lt;/strong&gt;: Hold 3 fingers on the screen for 3 seconds, or press and hold the Be Discoverable button for 3 seconds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Desktop/Laptop&lt;/strong&gt;: Press and hold the Be Discoverable button for 3 seconds.&lt;br&gt;
Your device becomes visible to nearby users for &lt;strong&gt;10 seconds&lt;/strong&gt;.&lt;/p&gt;




&lt;h3&gt;
  
  
  📤 Sender
&lt;/h3&gt;

&lt;p&gt;Open any public paste to share.&lt;br&gt;
Click Nearby Share.&lt;br&gt;
Nearby discoverable devices appear.&lt;br&gt;
Select the device.&lt;br&gt;
The paste opens instantly on the receiver's device.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No QR code.&lt;br&gt;
No copy-paste.&lt;br&gt;
No messaging apps.&lt;/strong&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  📍 Location Permission
&lt;/h4&gt;

&lt;p&gt;Nearby Transfer uses your approximate location to find nearby devices.&lt;br&gt;
For the best experience, both the sender and receiver should allow location access.&lt;br&gt;
Location is only used to improve nearby discovery.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌐 Try it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;PasteDB&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://pastedb.netlify.app%E2%81%A0" rel="noopener noreferrer"&gt;https://pastedb.netlify.app⁠&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Transfer Page&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://pastedb.netlify.app/transfer%E2%81%A0" rel="noopener noreferrer"&gt;https://pastedb.netlify.app/transfer⁠&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/sorathiya903/pastedb%E2%81%A0" rel="noopener noreferrer"&gt;https://github.com/sorathiya903/pastedb⁠&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love to hear your feedback or ideas for improving the feature!&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
