<?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: Mitchel Techie</title>
    <description>The latest articles on DEV Community by Mitchel Techie (@mitchtechie).</description>
    <link>https://dev.to/mitchtechie</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%2F3864984%2F0c4e1772-3010-4645-970f-8b4d2569f79e.png</url>
      <title>DEV Community: Mitchel Techie</title>
      <link>https://dev.to/mitchtechie</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mitchtechie"/>
    <language>en</language>
    <item>
      <title>EcoMark - Discover your environmental footprint</title>
      <dc:creator>Mitchel Techie</dc:creator>
      <pubDate>Sat, 18 Apr 2026 08:26:15 +0000</pubDate>
      <link>https://dev.to/mitchtechie/ecomark-discover-your-environmental-footprint-22mm</link>
      <guid>https://dev.to/mitchtechie/ecomark-discover-your-environmental-footprint-22mm</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for &lt;a href="https://dev.to/challenges/weekend-2026-04-16"&gt;Weekend Challenge: Earth Day Edition&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  EcoMark – A Simple Way to Reflect on Our Carbon Footprint
&lt;/h2&gt;

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

&lt;p&gt;For this challenge, I built &lt;strong&gt;EcoMark&lt;/strong&gt;, a lightweight web app that helps people quickly understand their everyday environmental impact.&lt;/p&gt;

&lt;p&gt;The idea was simple:&lt;br&gt;&lt;br&gt;
Most of us care about the planet, but we don’t always know how our daily habits translate into real impact. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;EcoMark&lt;/strong&gt; bridges that gap by turning a few lifestyle choices into a &lt;strong&gt;clear, understandable carbon score&lt;/strong&gt;, along with practical suggestions for improvement.&lt;/p&gt;

&lt;p&gt;Users answer a few short questions about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; How they get around
&lt;/li&gt;
&lt;li&gt; What they eat
&lt;/li&gt;
&lt;li&gt; Their energy usage
&lt;/li&gt;
&lt;li&gt; Their shopping habits
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Based on this, the app calculates a score and places them into a category:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Green Hero&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Improving&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;High Impact&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To make it more useful (and less judgmental), the app also generates &lt;strong&gt;personalized tips&lt;/strong&gt; to help users reduce their footprint in realistic ways.&lt;/p&gt;




&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;👉 &lt;strong&gt;Try it here:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://eco-mark--favouredhighly6.replit.app/" rel="noopener noreferrer"&gt;EcoMark&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Video
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://drive.google.com/file/d/1a2ip97oqEQJHxKxwN_9kVNFCniuOW8tX/view?usp=drivesdk" rel="noopener noreferrer"&gt;Video&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Code
&lt;/h2&gt;

&lt;p&gt;The project was built and deployed using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; JavaScript&lt;/li&gt;
&lt;li&gt; HTML/CSS
&lt;/li&gt;
&lt;li&gt; Google Gemini API
&lt;/li&gt;
&lt;li&gt; Replit (development + hosting)
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;p&gt;I approached this project with a focus on &lt;strong&gt;simplicity, clarity, and usability&lt;/strong&gt;, especially since many users might access it on mobile devices.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Carbon Scoring Logic
&lt;/h3&gt;

&lt;p&gt;Instead of trying to build a scientifically perfect calculator, I designed a &lt;strong&gt;simple scoring system&lt;/strong&gt; that reflects relative impact:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Higher-emission activities (e.g., frequent car use, meat-heavy diets) increase the score
&lt;/li&gt;
&lt;li&gt;Lower-impact choices (walking, plant-based diets) reduce it
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This keeps the experience intuitive while still meaningful.&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Backend with JavaScript
&lt;/h3&gt;

&lt;p&gt;I used JavaScript to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Handle form input
&lt;/li&gt;
&lt;li&gt;Process user responses
&lt;/li&gt;
&lt;li&gt;Calculate the carbon score
&lt;/li&gt;
&lt;li&gt;Render results dynamically
&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  3. AI-Powered Suggestions with Google Gemini
&lt;/h3&gt;

&lt;p&gt;One of the most interesting parts of this project was integrating the &lt;strong&gt;Google Gemini API&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of hardcoding advice, I generate tips dynamically based on the user’s score.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Higher scores → stronger, more impactful suggestions
&lt;/li&gt;
&lt;li&gt;Lower scores → reinforcement of good habits
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This made the app feel more:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Personalized
&lt;/li&gt;
&lt;li&gt;Engaging
&lt;/li&gt;
&lt;li&gt;Practical
&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  4. Building with Replit
&lt;/h3&gt;

&lt;p&gt;Since I didn’t have access to a full development setup, I built everything directly in &lt;strong&gt;Replit&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This influenced my approach:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keeping the architecture simple
&lt;/li&gt;
&lt;li&gt;Avoiding unnecessary dependencies
&lt;/li&gt;
&lt;li&gt;Prioritizing fast iteration
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It turned out to be a great way to go from idea → working product quickly.&lt;/p&gt;




&lt;h3&gt;
  
  
  5. Design Choices
&lt;/h3&gt;

&lt;p&gt;I intentionally kept the UI:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Clean
&lt;/li&gt;
&lt;li&gt;Minimal
&lt;/li&gt;
&lt;li&gt;Mobile-friendly
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal was to make the experience feel approachable rather than overwhelming.&lt;/p&gt;




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

&lt;p&gt;This project reminded me that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You don’t need complex systems to communicate important ideas
&lt;/li&gt;
&lt;li&gt;AI works best when it enhances—not replaces—core logic
&lt;/li&gt;
&lt;li&gt;Constraints can lead to better, more focused solutions
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Future Improvements
&lt;/h2&gt;

&lt;p&gt;If I had more time, I’d love to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Add location-based recommendations
&lt;/li&gt;
&lt;li&gt;Improve scoring accuracy
&lt;/li&gt;
&lt;li&gt;Include visual progress tracking
&lt;/li&gt;
&lt;li&gt;Let users compare lifestyle scenarios
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;EcoMark isn’t meant to be a perfect measurement tool.&lt;br&gt;&lt;br&gt;
It’s a &lt;strong&gt;conversation starter&lt;/strong&gt;—a small way to help people reflect on their habits and take simple steps toward a more sustainable lifestyle.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Small changes, multiplied by many people, can make a real difference.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;Thanks for reading! 🌱&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>weekendchallenge</category>
    </item>
    <item>
      <title>COMMON LAPTOP ACCESSORIES</title>
      <dc:creator>Mitchel Techie</dc:creator>
      <pubDate>Mon, 13 Apr 2026 05:13:48 +0000</pubDate>
      <link>https://dev.to/mitchtechie/common-laptop-accessories-5ddg</link>
      <guid>https://dev.to/mitchtechie/common-laptop-accessories-5ddg</guid>
      <description>&lt;p&gt;External peripherals&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keyboard&lt;/li&gt;
&lt;li&gt;Mouse and mousepad&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;External storage&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;External Hard Drive &lt;/li&gt;
&lt;li&gt;SSD&lt;/li&gt;
&lt;li&gt;USB Flash Drive&lt;/li&gt;
&lt;li&gt;Memory Card&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Power&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Power bank&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sound&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Headphones&lt;/li&gt;
&lt;li&gt;Earbuds&lt;/li&gt;
&lt;li&gt;Earphones&lt;/li&gt;
&lt;li&gt;Speakers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cables&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;USB Cables&lt;/li&gt;
&lt;li&gt;VGA Cables&lt;/li&gt;
&lt;li&gt;HDMI Cables&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Connectors&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;USB hub&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Protection&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Surge Protector&lt;/li&gt;
&lt;li&gt;Screen protector&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Other Accessories&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Laptop bag&lt;/li&gt;
&lt;li&gt;Laptop stand&lt;/li&gt;
&lt;li&gt;Laptop cooling pad&lt;/li&gt;
&lt;li&gt;Webcam cover&lt;/li&gt;
&lt;li&gt;Laptop cleaning kit&lt;/li&gt;
&lt;li&gt;Laptop lock&lt;/li&gt;
&lt;li&gt;Laptop skins or decals&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Commonly Used Laptop Brands</title>
      <dc:creator>Mitchel Techie</dc:creator>
      <pubDate>Tue, 07 Apr 2026 11:12:56 +0000</pubDate>
      <link>https://dev.to/mitchtechie/commonly-used-laptop-brands-46ad</link>
      <guid>https://dev.to/mitchtechie/commonly-used-laptop-brands-46ad</guid>
      <description>&lt;p&gt;&lt;strong&gt;LAPTOP BRANDS&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Hp&lt;/li&gt;
&lt;li&gt;Lenovo&lt;/li&gt;
&lt;li&gt;Dell&lt;/li&gt;
&lt;li&gt;Apple&lt;/li&gt;
&lt;li&gt;Asus&lt;/li&gt;
&lt;li&gt;Acer&lt;/li&gt;
&lt;li&gt;Microsoft Surface&lt;/li&gt;
&lt;li&gt;Msi&lt;/li&gt;
&lt;li&gt;Samsung&lt;/li&gt;
&lt;li&gt;Razer&lt;/li&gt;
&lt;li&gt;Huawei&lt;/li&gt;
&lt;li&gt;Chuwi&lt;/li&gt;
&lt;li&gt;Infinix&lt;/li&gt;
&lt;li&gt;Toshiba&lt;/li&gt;
&lt;li&gt;Fujitsu&lt;/li&gt;
&lt;li&gt;Panasonic&lt;/li&gt;
&lt;li&gt;Gigabyte&lt;/li&gt;
&lt;li&gt;Alienware(Gamers)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;USERS&lt;/strong&gt;&lt;br&gt;
Students and young adults. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Age range: 14yrs – 25yrs
Gamers. &lt;/li&gt;
&lt;li&gt;Age range: 16yrs – 35yrs.
Young professional and digital nomads. &lt;/li&gt;
&lt;li&gt;Age range: 25yrs – 40yrs
Corporate and business users. &lt;/li&gt;
&lt;li&gt;Age range: 25yrs – 55+yrs
Home use and Senior users. &lt;/li&gt;
&lt;li&gt;Age range: 40yrs – 55+yrs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;FACTORS TO CONSIDER WHEN BUYING A LAPTOP&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Budget constraints&lt;/li&gt;
&lt;li&gt;Use e.g for business, for home&lt;/li&gt;
&lt;li&gt;Features e.g security, performance&lt;/li&gt;
&lt;/ul&gt;

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