<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Development Workflow on AI VOID</title><link>https://ai-blog.noorshomelab.dev/tags/development-workflow/</link><description>Recent content in Development Workflow on AI VOID</description><generator>Hugo</generator><language>en</language><lastBuildDate>Wed, 06 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://ai-blog.noorshomelab.dev/tags/development-workflow/index.xml" rel="self" type="application/rss+xml"/><item><title>Chapter 2: Your First SpaceTimeDB Project: Setup and Workflow</title><link>https://ai-blog.noorshomelab.dev/spacetime-db-guide-2026/chapter-2-first-spacetime-db-project/</link><pubDate>Sat, 14 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/spacetime-db-guide-2026/chapter-2-first-spacetime-db-project/</guid><description>&lt;h2 id="chapter-2-your-first-spacetimedb-project-setup-and-workflow"&gt;Chapter 2: Your First SpaceTimeDB Project: Setup and Workflow&lt;/h2&gt;
&lt;p&gt;Welcome back, aspiring real-time architect! In &lt;a href="../../chapter-1-what-is-spacetime-db"&gt;Chapter 1&lt;/a&gt;, we explored the &amp;ldquo;why&amp;rdquo; behind SpaceTimeDB, understanding its unique approach to unifying database, backend logic, and real-time synchronization. Now, it&amp;rsquo;s time to roll up our sleeves and dive into the &amp;ldquo;how.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;This chapter is your hands-on initiation into the SpaceTimeDB universe. We&amp;rsquo;ll guide you through setting up your development environment, creating your very first SpaceTimeDB project, defining a simple database schema, and writing server-side logic that modifies your data. By the end, you&amp;rsquo;ll have a running SpaceTimeDB instance on your local machine, ready to power real-time applications. Get ready to build, learn, and have some fun!&lt;/p&gt;</description></item><item><title>Chapter 10: Incremental Builds and File System Watching</title><link>https://ai-blog.noorshomelab.dev/stellar-gen-guide/chapter-10-incremental-builds/</link><pubDate>Mon, 02 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/stellar-gen-guide/chapter-10-incremental-builds/</guid><description>&lt;h2 id="chapter-10-incremental-builds-and-file-system-watching"&gt;Chapter 10: Incremental Builds and File System Watching&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 10! So far, our Rust-based Static Site Generator (SSG) can parse content, apply templates, generate routes, and output static HTML. However, with every change to a source file, our SSG currently rebuilds the &lt;em&gt;entire&lt;/em&gt; site. While fast for small projects, this full rebuild approach quickly becomes a bottleneck for larger sites, leading to frustratingly long development cycles.&lt;/p&gt;
&lt;p&gt;In this chapter, we will tackle this performance issue head-on by implementing two crucial features: &lt;strong&gt;incremental builds&lt;/strong&gt; and &lt;strong&gt;file system watching&lt;/strong&gt;. Incremental builds allow our SSG to intelligently detect changes and only re-process the necessary files, drastically reducing build times. Coupled with a file system watcher, this will enable an incredibly smooth developer experience: save a file, and the site automatically rebuilds and refreshes in milliseconds, showing your changes instantly.&lt;/p&gt;</description></item><item><title>Chapter 10: Integrating with Development Workflows and IDEs</title><link>https://ai-blog.noorshomelab.dev/apple-containers-mac-2026/10-dev-workflow-integration/</link><pubDate>Wed, 25 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/apple-containers-mac-2026/10-dev-workflow-integration/</guid><description>&lt;h2 id="chapter-10-integrating-with-development-workflows-and-ides"&gt;Chapter 10: Integrating with Development Workflows and IDEs&lt;/h2&gt;
&lt;p&gt;Welcome back, fellow developer! In previous chapters, you&amp;rsquo;ve mastered the fundamentals of creating and running Linux containers on your Mac using Apple&amp;rsquo;s powerful new &lt;code&gt;container&lt;/code&gt; CLI. You&amp;rsquo;ve built images, understood the underlying architecture, and even tackled some advanced networking. But what about your daily grind? How do these amazing tools fit into your existing development workflow?&lt;/p&gt;
&lt;p&gt;This chapter is all about bridging that gap. We&amp;rsquo;ll explore how to seamlessly integrate Apple&amp;rsquo;s &lt;code&gt;container&lt;/code&gt; tool with your favorite Integrated Development Environments (IDEs) like VS Code, making your containerized development experience on macOS as smooth and efficient as possible. We&amp;rsquo;ll dive into practical patterns like bind mounts for live code changes, managing environment variables, and even debugging applications running inside your containers directly from your host machine. Get ready to supercharge your development!&lt;/p&gt;</description></item><item><title>Project: Simplified CI/CD with Docker</title><link>https://ai-blog.noorshomelab.dev/docker-mastery-2025/chapter-14-project-simplified-cicd/</link><pubDate>Thu, 04 Dec 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/docker-mastery-2025/chapter-14-project-simplified-cicd/</guid><description>&lt;h2 id="introduction-automating-your-workflow-with-docker-and-cicd"&gt;Introduction: Automating Your Workflow with Docker and CI/CD&lt;/h2&gt;
&lt;p&gt;Welcome back, future Docker master! In our journey so far, you&amp;rsquo;ve learned to containerize applications, manage multiple services with Compose, and understand the power of isolated environments. Now, it&amp;rsquo;s time to put those skills to work on a concept that truly revolutionizes software development: &lt;strong&gt;Continuous Integration/Continuous Delivery (CI/CD)&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;CI/CD is all about automating the process of building, testing, and deploying your code. It helps catch bugs earlier, ensures consistent quality, and speeds up your development cycle. While full-fledged CI/CD systems like GitHub Actions or GitLab CI can be complex, this chapter will introduce you to the core principles by building a &lt;em&gt;simplified&lt;/em&gt; CI pipeline right on your local machine, powered entirely by Docker. You&amp;rsquo;ll see how Docker&amp;rsquo;s consistent environments are a perfect fit for ensuring your code builds and tests the same way, every time.&lt;/p&gt;</description></item><item><title>Chapter 23: Build Tools, Bundlers, and Environment Separation</title><link>https://ai-blog.noorshomelab.dev/react-mastery-2026/chapter-23-build-tools-bundlers-environments/</link><pubDate>Sat, 31 Jan 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/react-mastery-2026/chapter-23-build-tools-bundlers-environments/</guid><description>&lt;h2 id="introduction-your-codes-journey-to-the-browser"&gt;Introduction: Your Code&amp;rsquo;s Journey to the Browser&lt;/h2&gt;
&lt;p&gt;Welcome back, intrepid React developer! So far, you&amp;rsquo;ve mastered creating components, managing state, handling side effects, and even diving into advanced patterns and performance. But have you ever stopped to wonder how the beautiful JSX you write, the TypeScript you love, or the modern JavaScript features you use actually get understood by browsers? Or how your application knows which API endpoint to talk to when you deploy it to a testing server versus your live production site?&lt;/p&gt;</description></item><item><title>Angular Mastery: Enterprise AI Development</title><link>https://ai-blog.noorshomelab.dev/angular-mastery-enterprise-ai-2026/</link><pubDate>Wed, 06 May 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-mastery-enterprise-ai-2026/</guid><description>&lt;p&gt;Embark on a comprehensive journey to become an Angular expert, from foundational concepts to advanced enterprise solutions. This course emphasizes modern best practices, robust architecture, and hands-on experience with multiple real-world projects. Discover how to integrate AI tools into your development workflow for unparalleled efficiency in building, refactoring, and scaling Angular applications.&lt;/p&gt;</description></item></channel></rss>