<?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>Forem: Preethi G</title>
    <description>The latest articles on Forem by Preethi G (@preethi-g).</description>
    <link>https://forem.com/preethi-g</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%2F2988050%2F80f06f8a-31a3-41e6-aff5-5f071fcd808a.jpg</url>
      <title>Forem: Preethi G</title>
      <link>https://forem.com/preethi-g</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/preethi-g"/>
    <language>en</language>
    <item>
      <title>✨ Voices in Tech</title>
      <dc:creator>Preethi G</dc:creator>
      <pubDate>Sun, 06 Apr 2025 13:08:29 +0000</pubDate>
      <link>https://forem.com/preethi-g/voices-in-tech-366l</link>
      <guid>https://forem.com/preethi-g/voices-in-tech-366l</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;You Belong Here.&lt;/strong&gt;&lt;br&gt;
That’s the heart of WeCoded — a celebration of underrepresented voices in tech. &lt;br&gt;
I’m proud to share my submission for the &lt;strong&gt;&lt;a href="https://dev.to/challenges/wecoded"&gt;WeCoded Challenge&lt;/a&gt;: Celebrate in Code&lt;/strong&gt;, designed to create a permanent digital home for these powerful stories.&lt;br&gt;
🔗 &lt;strong&gt;Live Site:&lt;/strong&gt; &lt;a href="https://voices-in-tech.netlify.app/" rel="noopener noreferrer"&gt;VoicesInTech.com&lt;/a&gt;&lt;br&gt;
💻 &lt;strong&gt;Code Repo:&lt;/strong&gt; GitHub – &lt;a href="https://github.com/preethi4848/Voices-In-Tech" rel="noopener noreferrer"&gt;Voices In Tech&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  🎯 About the Project
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Voices in Tech&lt;/strong&gt; is a dynamic and inclusive landing page that highlights WeCoded and SheCoded submissions from the DEV community. It pulls real-time content using the DEV.to API and celebrates the voices of developers who are often underrepresented in the tech industry.&lt;/p&gt;

&lt;p&gt;Built using modern frontend tools (React + TypeScript), this site is fully responsive, accessible, and aligned with the WeCoded brand identity.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔍 Features
&lt;/h2&gt;

&lt;h4&gt;
  
  
  🟣 Hero Section
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;WeCoded branding front and center&lt;/li&gt;
&lt;li&gt;Dynamic typing effect to animate powerful phrases&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  🔁 Dynamic Feed
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;DEV Articles API integration to load real-time stories&lt;/li&gt;
&lt;li&gt;Modern card layout for clarity and inspiration
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;window.fetch('https://dev.to/api/articles?tag=wecoded')
  .then(res =&amp;gt; res.json())
  .then(data =&amp;gt; console.log(data));
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  🌟 Featured Stories
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Special layout for standout submissions&lt;/li&gt;
&lt;li&gt;Smooth animations on scroll&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  📚 About &amp;amp; Resources
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Context on WeCoded and International Women’s Day&lt;/li&gt;
&lt;li&gt;Resources to get involved or submit your own story&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  📬 Newsletter Section
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Clean, simple form design to encourage engagement&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🎨 Styling &amp;amp; Design
&lt;/h2&gt;

&lt;p&gt;The design follows the official WeCoded brand guidelines:&lt;/p&gt;

&lt;h4&gt;
  
  
  🎨 Color Palette:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Blue: #4531EA&lt;/li&gt;
&lt;li&gt;Green: #CCEA71&lt;/li&gt;
&lt;li&gt;Purple: #9D00E5&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  ✨ Design Touches:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Gradient backgrounds&lt;/li&gt;
&lt;li&gt;Clean typography&lt;/li&gt;
&lt;li&gt;Subtle animations&lt;/li&gt;
&lt;li&gt;Fully responsive layout&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🏗 Project Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pgsql
Copy
Edit
voices-in-tech/
├── public/
├── src/
│   ├── assets/
│   ├── components/
│   ├── pages/
│   ├── styles/
│   ├── App.tsx
│   └── index.tsx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  💌 Why I Built This
&lt;/h2&gt;

&lt;p&gt;Representation matters. As someone deeply passionate about inclusive design, I wanted to use this project as a way to spotlight stories that move, motivate, and mirror real experiences in tech.&lt;/p&gt;

&lt;p&gt;This isn’t just a static landing page — it’s a living, breathing space powered by your voices. 💜&lt;/p&gt;

&lt;h2&gt;
  
  
  🙌 Want to Contribute?
&lt;/h2&gt;

&lt;p&gt;This project is open source!&lt;br&gt;
If you’d like to help improve or expand it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/preethi4848/Voices-In-Tech.git
git checkout -b feature/your-feature
npm install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then submit a pull request — I’d love to collaborate!&lt;/p&gt;

&lt;h2&gt;
  
  
  🧡 Thanks for Reading!
&lt;/h2&gt;

&lt;p&gt;Thanks for checking out my submission. If it resonates with you, feel free to share, contribute, or leave feedback. Let’s keep building a tech world that reflects the beautiful diversity of the people in it.&lt;br&gt;
&lt;em&gt;You belong here.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;- By Preethi G&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>wecoded</category>
      <category>dei</category>
      <category>webdev</category>
    </item>
    <item>
      <title>My Greatest Debug: Learning to Believe I Belong in Tech</title>
      <dc:creator>Preethi G</dc:creator>
      <pubDate>Sun, 06 Apr 2025 12:59:24 +0000</pubDate>
      <link>https://forem.com/preethi-g/my-greatest-debug-learning-to-believe-i-belong-in-tech-4e54</link>
      <guid>https://forem.com/preethi-g/my-greatest-debug-learning-to-believe-i-belong-in-tech-4e54</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/wecoded"&gt;WeCoded Challenge&lt;/a&gt;: Echoes of Experience&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  👩‍💻 Introduction: The Struggle You Don't See
&lt;/h2&gt;

&lt;p&gt;I still remember the first time I doubted if I belonged in tech.&lt;/p&gt;

&lt;p&gt;I had just started my first coding job, and every meeting felt like a test. Everyone spoke in acronyms I didn’t understand. Conversations moved fast, and I hesitated to ask questions, afraid that if I did, they’d realize I wasn’t "good enough."&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.amazonaws.com%2Fuploads%2Farticles%2Faodm5vouzs55bbcv849p.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%2Faodm5vouzs55bbcv849p.png" alt="Doubted if I belonged in tech or not" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I thought I had to figure everything out on my own. I was afraid of looking unqualified. So, I stayed silent. I struggled in isolation. And I almost quit.&lt;/p&gt;

&lt;h2&gt;
  
  
  🎯 The Moment That Changed Everything
&lt;/h2&gt;

&lt;p&gt;One day, a senior engineer noticed me hesitating and said something that changed my mindset completely:&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.amazonaws.com%2Fuploads%2Farticles%2F55b1c97hmhxwknqbkqis.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%2F55b1c97hmhxwknqbkqis.png" alt="Quote" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;☝ That hit me hard.&lt;/p&gt;

&lt;p&gt;I had spent so much time trying to “prove” I belonged that I forgot that learning is part of the process. No one starts out knowing everything. And those who grow the fastest aren’t the ones who pretend to have all the answers—they’re the ones who ask the right questions.&lt;/p&gt;

&lt;p&gt;So, I decided to change the way I approached tech.&lt;/p&gt;

&lt;h2&gt;
  
  
  💻 Debugging My Mindset: From Isolation to Empowerment
&lt;/h2&gt;

&lt;p&gt;Instead of suffering in silence, I started asking questions. At first, it was uncomfortable. But then something surprising happened:&lt;/p&gt;

&lt;p&gt;Every time I asked a question, I noticed something. Others in the room looked relieved.&lt;/p&gt;

&lt;p&gt;Because they had the same question.&lt;/p&gt;

&lt;p&gt;That’s when I realized: 👇 &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;My struggle with feeling lost wasn’t unique—it was universal.&lt;/em&gt;&lt;/strong&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And by being open about it, I wasn’t just helping myself. I was helping others, too.&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.amazonaws.com%2Fuploads%2Farticles%2Fjj49c0tt0tjf8qf31oft.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%2Fjj49c0tt0tjf8qf31oft.png" alt="Struggle into my superpower" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I took it a step further. Instead of just asking questions, I started documenting what I learned. I shared notes, wrote articles, and mentored others who felt like I once did. The thing I once saw as my weakness—&lt;strong&gt;not knowing everything&lt;/strong&gt;—became my strength.&lt;/p&gt;

&lt;p&gt;Because it made me a better &lt;code&gt;Learner👩‍🎓&lt;/code&gt;. A better &lt;code&gt;Mentor👩‍🏫&lt;/code&gt;. A better &lt;code&gt;Developer👩‍💻&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✍ The Lesson: You Belong Here
&lt;/h2&gt;

&lt;p&gt;If you’ve ever felt like you don’t belong in tech, I want you to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You &lt;strong&gt;don’t have to know everything&lt;/strong&gt; to succeed.
&lt;/li&gt;
&lt;li&gt;Asking questions doesn’t make you weak—it makes you grow.
&lt;/li&gt;
&lt;li&gt;Your struggles don’t disqualify you. They make you &lt;strong&gt;stronger, more empathetic, and more valuable&lt;/strong&gt; to those around you.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So, the next time you feel like an outsider, remember this: 👇&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.amazonaws.com%2Fuploads%2Farticles%2Fe4t0yiqdb6t0zjfkh7ji.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%2Fe4t0yiqdb6t0zjfkh7ji.png" alt="Lesson" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;You belong here. And your journey—struggles and all—will one day help someone else feel like they belong, too.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  💬 Now, I’d Love to Hear From You! 😊
&lt;/h3&gt;

&lt;p&gt;Have you ever struggled with imposter syndrome or feeling like you didn’t belong in tech?&lt;br&gt;&lt;br&gt;
What helped you push through?&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.amazonaws.com%2Fuploads%2Farticles%2F2ivqqj8iwszul62019wa.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%2F2ivqqj8iwszul62019wa.png" alt="Connect" width="800" height="581"&gt;&lt;/a&gt;Drop your story in the comments 💬👇  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;- By Preethi G&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>wecoded</category>
      <category>dei</category>
      <category>career</category>
    </item>
    <item>
      <title>Waves of Tomorrow: The Tech Shaping Our Lives</title>
      <dc:creator>Preethi G</dc:creator>
      <pubDate>Sat, 29 Mar 2025 06:13:09 +0000</pubDate>
      <link>https://forem.com/preethi-g/waves-of-tomorrow-the-tech-shaping-our-lives-2l35</link>
      <guid>https://forem.com/preethi-g/waves-of-tomorrow-the-tech-shaping-our-lives-2l35</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://future.forem.com/challenges/writing-2025-02-26" rel="noopener noreferrer"&gt;Future Writing Challenge&lt;/a&gt;: How Technology Is Changing Things.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Dear Family and Friends,
&lt;/h3&gt;

&lt;p&gt;I pray this letter reaches you in good health. In our daily lives one effect that is gradual but strong is technology. It is often difficult to perceive, but like the tides, technology customizes our lives in ways that do not resemble the world we were accustomed to. From the aspect of change, these factors can be a mix of good, bad or very complex because they change everything about how we interact family, work, and go about our day to day activities.&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.amazonaws.com%2Fuploads%2Farticles%2Ff19calxkay5igv3h318c.jpeg" 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%2Ff19calxkay5igv3h318c.jpeg" alt="Image description" width="800" height="787"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Exercises for the Imagination
&lt;/h3&gt;

&lt;p&gt;Let’s say it’s morning; instead of taking out your phone which is likely out of reach, how about being gently awoken to gentle lighting as well as your favorite song. Now imagine coming downstairs to find that your coffee is already brewing because the vertically integrated kitchen understands you. If you further imagine leaving your house, just picture a sink that pulls you in and drives you to your place of work vertically.&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.amazonaws.com%2Fuploads%2Farticles%2Fk2chb8n3i1h4umv72mny.jpeg" 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%2Fk2chb8n3i1h4umv72mny.jpeg" alt="Image description" width="800" height="780"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is not science fiction and happens to be a reality with powerful home appliances, smart houses, and automation connected through the internet.&lt;/p&gt;

&lt;h3&gt;
  
  
  Work Will Not Be the Same
&lt;/h3&gt;

&lt;p&gt;Do you recall the time when employment stability meant remaining in the same organization for three decades? Well, the world is changing, and so does technology. With AI and automation, some traditional jobs will get replaced, but new opportunities will also emerge, ones that we can’t even begin to comprehend. The concept of climbing the ‘career ladder’ is transforming into something that resembles a ‘career jungle gym’, where we shift laterally, vertically, or change fields completely.&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.amazonaws.com%2Fuploads%2Farticles%2Fus8npm9s1u083rigd3re.jpeg" 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%2Fus8npm9s1u083rigd3re.jpeg" alt="Image description" width="800" height="799"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The positive part? The ability to learn new skills has become more accessible than ever before. Online courses, virtual reality lessons, and AI tutors ensure that we can upgrade our skill set at any time. Still, now, more than ever, we also must be curious and flexible because, in the world that changes at such pace, the only constant is change itself.&lt;/p&gt;

&lt;h3&gt;
  
  
  Life in the Digital Era
&lt;/h3&gt;

&lt;p&gt;While technology can sometimes be unifying, it can equally be divisive. It permits us to carry out video calls with people living oceans apart; at the same time, as we often ignore the people in the same room as us and instead, endlessly browse social media.&lt;/p&gt;

&lt;p&gt;Companions powered by AI are now a reality. Robots that can hold conversations, virtual therapists that listen to your problems, and even friends crafted by AI. Although these innovations can be used to combat loneliness, they bring to light deeper issues: What does connection really mean? Will human relationships still be appreciated when machines are able to duplicate them?&lt;/p&gt;

&lt;h3&gt;
  
  
  Shifts That Will Come From AI and Automation
&lt;/h3&gt;

&lt;p&gt;Even the activities that we view as mundane: shopping, receiving medical care, or even farming are all experiencing changes.&lt;/p&gt;

&lt;h4&gt;
  
  
  Healthcare:
&lt;/h4&gt;

&lt;p&gt;Remote observation together with AI’s ability to identify diseases earlier than doctors enables patients to improve their health from home. However, if AI makes better evaluations than people, will we still trust human physicians?&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.amazonaws.com%2Fuploads%2Farticles%2F8zq9jujj54tg0kmubywe.jpeg" 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%2F8zq9jujj54tg0kmubywe.jpeg" alt="Image description" width="800" height="791"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Education:
&lt;/h4&gt;

&lt;p&gt;AI-driven customized learning offers a solution where every child is taught at their preferred pace. Will schools continue to teach critical thinking, or will students overly depend on technology for answers?&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.amazonaws.com%2Fuploads%2Farticles%2Feqaeodavya3w6tx96m1z.jpeg" 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%2Feqaeodavya3w6tx96m1z.jpeg" alt="Image description" width="800" height="790"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Privacy:
&lt;/h4&gt;

&lt;p&gt;Life is greatly simplified, but the intrusive nature of smart technology always actively listening and learning brings in problems of how much control we have over our data.&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.amazonaws.com%2Fuploads%2Farticles%2Fucv8xqpi3812c105r063.jpeg" 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%2Fucv8xqpi3812c105r063.jpeg" alt="Image description" width="800" height="784"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How Should We Respond?
&lt;/h3&gt;

&lt;p&gt;Considering the fast rate of incoming changes it is easy to feel unprepared However, we are not in control of how technology impacts our daily lives. So, this is what we can all adapt towards: &lt;/p&gt;

&lt;p&gt;Know what is happening in the world around you. Technology is not solely for experts, therefore, the more we learn about contemporary issues, the more informed the choices we make will align with our principles. &lt;/p&gt;

&lt;p&gt;Welcome in changes while being prepared for anything. It is completely fine to appreciate AI-based comfort while still maintaining family dinners that are devoid of technology.&lt;/p&gt;

&lt;p&gt;Consider the next generation. The practices we adopt now will influence the world that our children will live in. Instead, let’s harness technology in a way that strengthens authentic human interaction, rather than replaces it.  &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.amazonaws.com%2Fuploads%2Farticles%2F4oh8m6ju7lgqjm16wjug.jpeg" 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%2F4oh8m6ju7lgqjm16wjug.jpeg" alt="Image description" width="800" height="790"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The future is driving toward us at the speed of light, but we aren’t along for the ride — we’re co-drivers. So let’s be sure we’re heading the right way.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;With love and curiosity,&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Preethi G&lt;/em&gt;&lt;/p&gt;

</description>
      <category>futurechallenge</category>
    </item>
  </channel>
</rss>
