<?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: Anurag Parmar </title>
    <description>The latest articles on DEV Community by Anurag Parmar  (@asp0766).</description>
    <link>https://dev.to/asp0766</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%2F3443615%2Fd9b679ec-5e7a-4a6b-977a-3629081e0409.jpg</url>
      <title>DEV Community: Anurag Parmar </title>
      <link>https://dev.to/asp0766</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/asp0766"/>
    <language>en</language>
    <item>
      <title>Day 2 of C++ Programming: Bitwise Operators (AND, Shift, NOT)</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sun, 21 Sep 2025 08:16:35 +0000</pubDate>
      <link>https://dev.to/asp0766/day-2-of-c-programming-bitwise-operators-and-shift-not-1m2</link>
      <guid>https://dev.to/asp0766/day-2-of-c-programming-bitwise-operators-and-shift-not-1m2</guid>
      <description>&lt;p&gt;On &lt;strong&gt;Day 2&lt;/strong&gt; of my C++ journey, I explored &lt;strong&gt;bitwise operators&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
These are super powerful because they operate directly on &lt;strong&gt;binary bits&lt;/strong&gt; — the true language of the computer.  &lt;/p&gt;

&lt;p&gt;At first, they look abstract, but once I saw the outputs of small numbers, I understood why they’re so important.  &lt;/p&gt;




&lt;h2&gt;
  
  
  ✅ Example 1: Bitwise AND (&lt;code&gt;&amp;amp;&lt;/code&gt;)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
cpp
#include &amp;lt;iostream&amp;gt;
using namespace std;

int main() {
    int x = 11, y = 7, z;
    z = x &amp;amp; y; 
    cout &amp;lt;&amp;lt; z &amp;lt;&amp;lt; endl;
    return 0;
}
Explanation
11 → 1011 (binary)
7 → 0111 (binary)
1011 &amp;amp; 0111 → 0011 = 3
👉 AND is useful in masking operations (filtering specific bits).

✅ Example 2: Bitwise Shift (&amp;lt;&amp;lt;)
C++

#include &amp;lt;iostream&amp;gt;
using namespace std;

int main() {
    char x = 5, y;
    y = x &amp;lt;&amp;lt; 1; // left shift by 1
    cout &amp;lt;&amp;lt; (int)y &amp;lt;&amp;lt; endl;
    return 0;
}
Explanation
5 → 0101 (binary)
Shift left by 1 → 1010 (binary) = 10
👉 Shifting left is basically multiplying by 2.
✅ Example 3: Bitwise NOT (~)
C++

#include &amp;lt;iostream&amp;gt;
using namespace std;

int main() {
    char x = 5, y;
    y = ~x;
    cout &amp;lt;&amp;lt; (int)y &amp;lt;&amp;lt; endl;
    return 0;
}
Explanation
5 → 00000101 (binary)
~x flips all bits → 11111010
Result = -6 (in signed integer representation).

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

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Backend</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sun, 21 Sep 2025 04:04:30 +0000</pubDate>
      <link>https://dev.to/asp0766/backend-p23</link>
      <guid>https://dev.to/asp0766/backend-p23</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.amazonaws.com%2Fuploads%2Farticles%2F63lgntf558tupfmmvvka.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.amazonaws.com%2Fuploads%2Farticles%2F63lgntf558tupfmmvvka.png" alt=" " width="800" height="764"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 Diving into Web Development – My First Backend with Node.js &amp;amp; Express 🌐&lt;/p&gt;

&lt;p&gt;After learning Python and other languages, tonight I explored Web Development and built my very first backend using Node.js and Express. It’s amazing to see how a few lines of code can make a server respond to requests!&lt;/p&gt;

&lt;p&gt;Here’s what my first backend can do:&lt;br&gt;
🔹 Sends Hello World on the home route /&lt;br&gt;
🔹 Responds with my Twitter handle on /twitter&lt;br&gt;
🔹 Shows a simple login message on /login&lt;/p&gt;

&lt;p&gt;This small project helped me understand routes, server setup, and basic API handling. Slowly, I’m connecting frontend and backend knowledge to build full-stack applications.&lt;/p&gt;

&lt;h1&gt;
  
  
  NodeJS #ExpressJS #WebDevelopment #FullStack #CodingJourney #LearningInPublic #StudentDeveloper
&lt;/h1&gt;

</description>
      <category>webdev</category>
      <category>fullstack</category>
      <category>express</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Python – Beginner-Friendly Start</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sun, 21 Sep 2025 03:53:03 +0000</pubDate>
      <link>https://dev.to/asp0766/python-beginner-friendly-start-19h1</link>
      <guid>https://dev.to/asp0766/python-beginner-friendly-start-19h1</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#Python #CodingJourney #LearningInPublic #100DaysOfCode #StudentDeveloper #GreatLearning
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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.amazonaws.com%2Fuploads%2Farticles%2F7ewc9p11pruikh70ld4f.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.amazonaws.com%2Fuploads%2Farticles%2F7ewc9p11pruikh70ld4f.png" alt=" " width="800" height="805"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2F6vy88hfhzhtykzqvmk0x.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.amazonaws.com%2Fuploads%2Farticles%2F6vy88hfhzhtykzqvmk0x.png" alt=" " width="800" height="646"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2Fk61amymg0lo6rf6tg13v.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.amazonaws.com%2Fuploads%2Farticles%2Fk61amymg0lo6rf6tg13v.png" alt=" " width="800" height="541"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2Fg56uwbdcppz4zcvj21do.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.amazonaws.com%2Fuploads%2Farticles%2Fg56uwbdcppz4zcvj21do.png" alt=" " width="800" height="257"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2F1pmkxxdu03osx15rnrcn.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.amazonaws.com%2Fuploads%2Farticles%2F1pmkxxdu03osx15rnrcn.png" alt=" " width="800" height="1960"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>#JavaScript #CodingJourney #WebDevelopment #LearningInPublic #StudentDeveloper</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sun, 21 Sep 2025 03:37:59 +0000</pubDate>
      <link>https://dev.to/asp0766/javascript-codingjourney-webdevelopment-learninginpublic-studentdeveloper-2hl</link>
      <guid>https://dev.to/asp0766/javascript-codingjourney-webdevelopment-learninginpublic-studentdeveloper-2hl</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;🌙 Evening Coding Log – JavaScript Basics 🌙

After working on Java in the afternoon, I switched gears to JavaScript this evening. JavaScript always excites me because it’s the language that brings web pages to life 🌐⚡.

Here’s what I practiced today:
🔹 Basic arithmetic operations
🔹 Writing and using functions
🔹 Applying if-else conditions
🔹 Playing around with arrays

These small steps are helping me understand how JavaScript handles logic and data differently compared to C++ or Java. I’m slowly connecting the dots between languages while keeping my foundation strong.

👉 Do you remember the first JavaScript code you ever wrote? Share it below ⬇️

#JavaScript #CodingJourney #WebDevelopment #LearningInPublic  #StudentDeveloper

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

&lt;/div&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.amazonaws.com%2Fuploads%2Farticles%2Frxnwjqn0g43ztuijmgih.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.amazonaws.com%2Fuploads%2Farticles%2Frxnwjqn0g43ztuijmgih.png" alt=" " width="800" height="469"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2Fq2vcvzqjqh13r3a929f0.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.amazonaws.com%2Fuploads%2Farticles%2Fq2vcvzqjqh13r3a929f0.png" alt=" " width="800" height="1209"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2Fyhefhfh8ac0u5g8fioxe.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.amazonaws.com%2Fuploads%2Farticles%2Fyhefhfh8ac0u5g8fioxe.png" alt=" " width="634" height="558"&gt;&lt;/a&gt;&lt;br&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.amazonaws.com%2Fuploads%2Farticles%2F7ds7j4ydxmru04y78kzf.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.amazonaws.com%2Fuploads%2Farticles%2F7ds7j4ydxmru04y78kzf.png" alt=" " width="800" height="618"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>#CProgramming #C #CPP #CodingJourney #LearningInPublic</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sun, 21 Sep 2025 03:24:37 +0000</pubDate>
      <link>https://dev.to/asp0766/cprogramming-c-cpp-codingjourney-learninginpublic-31k8</link>
      <guid>https://dev.to/asp0766/cprogramming-c-cpp-codingjourney-learninginpublic-31k8</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;As I continue my journey into C++ 🚀, I realized that a strong foundation in C language is equally important to truly understand how things work under the hood.

So, I decided to go back to the basics and practice simple but powerful concepts in C 💻. Here are a few codes I worked on today:

🔹 Printing my first Hello World in C.
🔹 Performing multiple operations (+, −, ×, ÷, true/false).
🔹 Exploring logical operators like &amp;amp;&amp;amp; (AND), || (OR).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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.amazonaws.com%2Fuploads%2Farticles%2F2pjpf4domes23w9pxdn4.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.amazonaws.com%2Fuploads%2Farticles%2F2pjpf4domes23w9pxdn4.png" alt=" " width="800" height="478"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>#CProgramming #C #CPP #CodingJourney #LearningInPublic #ProgrammersLife</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sun, 21 Sep 2025 03:22:24 +0000</pubDate>
      <link>https://dev.to/asp0766/cprogramming-c-cpp-codingjourney-learninginpublic-programmerslife-pi5</link>
      <guid>https://dev.to/asp0766/cprogramming-c-cpp-codingjourney-learninginpublic-programmerslife-pi5</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;As I continue my journey into C++ 🚀, I realized that a strong foundation in C language is equally important to truly understand how things work under the hood.

So, I decided to go back to the basics and practice simple but powerful concepts in C 💻. Here are a few codes I worked on today:

🔹 Printing my first Hello World in C.
🔹 Performing multiple operations (+, −, ×, ÷, true/false).
🔹 Exploring logical operators like &amp;amp;&amp;amp; (AND), || (OR).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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.amazonaws.com%2Fuploads%2Farticles%2Fxl8yj3e72zmm0o796oe1.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.amazonaws.com%2Fuploads%2Farticles%2Fxl8yj3e72zmm0o796oe1.png" alt=" " width="800" height="409"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>“My First Step in C++: Hello World!” “Journey from Beginner to C++ Programmer: My First Code”</title>
      <dc:creator>Anurag Parmar </dc:creator>
      <pubDate>Sat, 20 Sep 2025 21:56:43 +0000</pubDate>
      <link>https://dev.to/asp0766/my-first-step-in-c-hello-worldjourney-from-beginner-to-c-programmer-my-first-code-4l5l</link>
      <guid>https://dev.to/asp0766/my-first-step-in-c-hello-worldjourney-from-beginner-to-c-programmer-my-first-code-4l5l</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.amazonaws.com%2Fuploads%2Farticles%2F06og332ffpwq1gacghrf.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.amazonaws.com%2Fuploads%2Farticles%2F06og332ffpwq1gacghrf.png" alt=" " width="664" height="558"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✨ Key Learning: Starting small is important! “Hello World” was my first step toward becoming a C++ programmer.

📌 Source: Abdul Bari C++ Basics

#CPP #CodingJourney #Learning #BeginnerToAdvanced #AbdulBari #Programming
&amp;gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>programming</category>
      <category>cpp</category>
      <category>learntocode</category>
      <category>codingjourney</category>
    </item>
  </channel>
</rss>
