<?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: Nivedya AV</title>
    <description>The latest articles on DEV Community by Nivedya AV (@nivedya2008).</description>
    <link>https://dev.to/nivedya2008</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%2F4124546%2F0d7f711d-28db-4eb3-a0c4-11032b2c4bd7.png</url>
      <title>DEV Community: Nivedya AV</title>
      <link>https://dev.to/nivedya2008</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nivedya2008"/>
    <language>en</language>
    <item>
      <title>Building a Persistent Smart Contact Book CLI App Using Pure Python</title>
      <dc:creator>Nivedya AV</dc:creator>
      <pubDate>Sun, 20 Sep 2026 06:25:16 +0000</pubDate>
      <link>https://dev.to/nivedya2008/building-a-persistent-smart-contact-book-cli-app-using-pure-python-3n86</link>
      <guid>https://dev.to/nivedya2008/building-a-persistent-smart-contact-book-cli-app-using-pure-python-3n86</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hello DEV Community!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As a 2nd-year BCA student aspiring to become a &lt;strong&gt;Web / Developer Advocate&lt;/strong&gt;, I believe that mastering data structures, error handling, and file persistence is crucial. Today, I am excited to share my 4th python project: a &lt;strong&gt;Smart Contact Book CLI Application&lt;/strong&gt; built completely from scratch!&lt;/p&gt;

&lt;p&gt;Unlike basic scripts that lose data when closed, this tool stores all data locally and validates inputs efficiently to mimic real-world system behavior.&lt;/p&gt;




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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Local Data Persistence (JSON):&lt;/strong&gt; Stores contacts securely in a &lt;code&gt;contacts.json&lt;/code&gt; file so data is never lost.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Robust Input Validation:&lt;/strong&gt; Ensures phone numbers are exactly    &lt;strong&gt;10 digits&lt;/strong&gt; and validates email structures (&lt;code&gt;@' and&lt;/code&gt;.`).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full CRUD Operations:&lt;/strong&gt; Allows to &lt;strong&gt;Add, View, Search, and Delete&lt;/strong&gt; contacts through a continuous interactive menu.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Crash-Proof Design:&lt;/strong&gt; Uses &lt;code&gt;try-except&lt;/code&gt; blocks to handle empty inputs or missing files gracefully.&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  What I Learned From This Project
&lt;/h3&gt;

&lt;p&gt;Building this application helped me master several critical backend concepts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;File I/O &amp;amp; JSON Parsing:&lt;/strong&gt; Reading and writing structured dictionary data using Python's inbuilt &lt;code&gt;json&lt;/code&gt; module.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Defensive Programming:&lt;/strong&gt; Anticipating bad user inputs and catching errors before they cause system crashes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Git Workflow Management:&lt;/strong&gt; Staging, committing, and managing repository files efficiently within VS code.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Source Code &amp;amp; Repository
&lt;/h2&gt;

&lt;p&gt;I have hosted the complete codebase along with my updated learning journey on GitHub. check it out here:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/nivedya2008/my-python-project" rel="noopener noreferrer"&gt;Link to my GitHub Repository&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;I Would Iove to get your feedback on how I can optimize this logic further! Should I add an &lt;strong&gt;Edit/Update" feature&lt;/strong&gt; next, or migrate the data handling into a &lt;strong&gt;SQLite database&lt;/strong&gt;? Let me know in the comments!&lt;/p&gt;

</description>
      <category>python</category>
      <category>showdev</category>
      <category>bca</category>
      <category>womenintech</category>
    </item>
    <item>
      <title>Building an Advanced URL Shortener &amp; ASCII QR Code Generator From Scratch Using Pure Python</title>
      <dc:creator>Nivedya AV</dc:creator>
      <pubDate>Mon, 14 Sep 2026 13:42:18 +0000</pubDate>
      <link>https://dev.to/nivedya2008/building-an-advanced-url-shortener-ascii-qr-code-generator-from-scratch-using-pure-python-4dmg</link>
      <guid>https://dev.to/nivedya2008/building-an-advanced-url-shortener-ascii-qr-code-generator-from-scratch-using-pure-python-4dmg</guid>
      <description>&lt;p&gt;Hello DEV Community!&lt;/p&gt;

&lt;p&gt;I am a BCA Student, currently learning and building in public to pursue my dream of becoming a Web Advocate. Today, I want to share my latest project: an &lt;strong&gt;Advanced URL Shortener &amp;amp; ASCII QR Code Generator&lt;/strong&gt; built completely from scratch!&lt;/p&gt;

&lt;p&gt;Building this tool with zero external dependencies required careful algorithmic thinking. Here is how i structured the logic into 116 lines of clean Python code:&lt;/p&gt;

&lt;h3&gt;
  
  
  The Logic Breakdown &amp;amp; Core Features
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;** Smarter URL Validation: **&lt;br&gt;
Before processing any link, the program implements custom validation logic to check if the user input starts with http://. If it doesn't, the tool prompts the user with a helpful error message to prevent dead or unsafe links.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;** Custom URL Shortening: **The script simulates backend link mapping by creating short, unique paths for long URLs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;** ASCII QR Code Array Logic: **instead of installing a massive image library, I created a grid matrix mechanism to dynamically print a scannable ASCII QR code using block characters directly inside the terminal window. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;** Positioning Corner Markers: **implemented an &lt;code&gt;add_marker()&lt;/code&gt; helper function that precisely places 7x7 finder patterns at the three corners of the grid matrix.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  key Takeaways
&lt;/h3&gt;

&lt;p&gt;This project gave me a deeper understanding of &lt;strong&gt;input validation, array manipulations, and character-mapping for console UIs&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check out the full repository here:&lt;/strong&gt;&lt;br&gt;
 &lt;a href="https://github.com/nivedya2008/my-python-project" rel="noopener noreferrer"&gt;https://github.com/nivedya2008/my-python-project&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
