<?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: Vivian Gichure</title>
    <description>The latest articles on DEV Community by Vivian Gichure (@vivian_gichure_ec51d453bf).</description>
    <link>https://dev.to/vivian_gichure_ec51d453bf</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%2F3474086%2F44b4c158-d68f-435e-bca5-66f2bba2f81d.png</url>
      <title>DEV Community: Vivian Gichure</title>
      <link>https://dev.to/vivian_gichure_ec51d453bf</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vivian_gichure_ec51d453bf"/>
    <language>en</language>
    <item>
      <title>Getting Started with Flask — Your First Web App in 10 Minutes</title>
      <dc:creator>Vivian Gichure</dc:creator>
      <pubDate>Sun, 28 Sep 2025 18:35:06 +0000</pubDate>
      <link>https://dev.to/vivian_gichure_ec51d453bf/getting-started-with-flask-your-first-web-app-in-10-minutes-35hh</link>
      <guid>https://dev.to/vivian_gichure_ec51d453bf/getting-started-with-flask-your-first-web-app-in-10-minutes-35hh</guid>
      <description>&lt;p&gt;If you’re new to Python web development, &lt;strong&gt;Flask&lt;/strong&gt; is one of the easiest frameworks to start with. It’s lightweight, flexible, and perfect for building simple APIs or full web apps. Let’s build a tiny “Hello, World!” app together. 👩‍💻&lt;/p&gt;

&lt;h3&gt;
  
  
  🛠️ Step 1: Install Flask
&lt;/h3&gt;

&lt;p&gt;Make sure you have Python installed, then run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;flask
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  🧑‍💻 Step 2: Create &lt;code&gt;app.py&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;flask&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;Flask&lt;/span&gt;

&lt;span class="n"&gt;app&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;Flask&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;__name__&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="nd"&gt;@app.route&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;/&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;home&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Hello, Flask World!&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;

&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;__name__&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;__main__&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="n"&gt;app&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;run&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;debug&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="bp"&gt;True&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  🚀 Step 3: Run the App
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python app.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Go to &lt;code&gt;http://127.0.0.1:5000/&lt;/code&gt; in your browser — you should see:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hello, Flask World!
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;🎉 Congratulations! You’ve just built your first Flask web application. From here, you can add more routes, return HTML templates, or build REST APIs.&lt;/p&gt;

&lt;p&gt;💡 &lt;strong&gt;Pro tip:&lt;/strong&gt; Add &lt;code&gt;debug=True&lt;/code&gt; while developing to get automatic reloads and detailed error messages.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>tutorial</category>
      <category>webdev</category>
      <category>python</category>
    </item>
    <item>
      <title>🚀 Exploring Key Trends in Tech: AI, Cloud, and Best Practices</title>
      <dc:creator>Vivian Gichure</dc:creator>
      <pubDate>Mon, 01 Sep 2025 19:41:06 +0000</pubDate>
      <link>https://dev.to/vivian_gichure_ec51d453bf/exploring-key-trends-in-tech-ai-cloud-and-best-practices-4nib</link>
      <guid>https://dev.to/vivian_gichure_ec51d453bf/exploring-key-trends-in-tech-ai-cloud-and-best-practices-4nib</guid>
      <description>&lt;p&gt;In today’s fast-paced tech world, staying updated on industry trends is essential. Here are a few areas shaping the landscape:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Artificial Intelligence (AI):&lt;/strong&gt;&lt;br&gt;
AI is no longer just a buzzword—it’s transforming industries. From generative AI models to intelligent automation, businesses are leveraging AI to enhance productivity and deliver smarter solutions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Cloud Computing:&lt;/strong&gt;&lt;br&gt;
Cloud platforms enable scalable and cost-effective infrastructure. Hybrid and multi-cloud strategies are becoming standard, allowing organizations to optimize performance while maintaining flexibility.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Best Practices:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Agile Development:&lt;/strong&gt; Iterative workflows speed up delivery and foster collaboration.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DevOps:&lt;/strong&gt; Continuous integration and deployment streamline releases.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security by Design:&lt;/strong&gt; Prioritizing security from the start reduces vulnerabilities.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Keeping up with these trends helps developers and companies stay competitive and deliver innovative solutions.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
