# cline (blogs) — RSS Amplifier

Recent posts from the 3 feeds in the RSS Amplifier directory that cover cline.

Page: <https://rssamplifier.com/topics/cline/blogs>  
Feed: <https://rssamplifier.com/topics/cline/blogs.md>

---

## [Where Moral Authority Begins](https://raecline.substack.com/p/where-moral-authority-begins)

_2026-08-09 · Rae Cline · OPENINGS_

Part I: Beloved by Toni Morrison

## [BOMB: Issue 176, THE BROOKLYN RAIL: July/Aug '26, THE PARIS REVIEW: Summer '26 & ONE STORY: "Monarch"](https://raecline.substack.com/p/bomb-issue-176-brooklyn-rail-julyaug)

_2026-08-02 · Rae Cline · OPENINGS_

OPENINGS: Where Stories Connect

## [NOON: 2026, HIGH LONESOME, BONE BLACK, HIDDEN RIVER AND CONFUSE THE WIND](https://raecline.substack.com/p/noon-2026-high-lonesome-bone-black)

_2026-07-24 · Rae Cline · OPENINGS_

OPENINGS: Where Stories Connect

## [The Hollis Chapman Show: Precious Ugly, Domestic Violence and the Resilience of Girls](https://raecline.substack.com/p/the-hollis-chapman-show-precious)

_2026-07-20 · Rae Cline · OPENINGS_

How does a child survive terrible circumstances?

## [Ghosts of the Gipper: Making America Sick Again](https://raecline.substack.com/p/ghosts-of-the-gipper-making-america)

_2026-07-19 · Rae Cline · OPENINGS_

Every presidency leaves something behind

## [She lay back in the water again...](https://raecline.substack.com/p/she-lay-back-in-the-water-again)

_2026-06-06 · Rae Cline · OPENINGS_

PRECIOUS UGLY

## [God had taken all the warmth of the earth...](https://raecline.substack.com/p/god-had-taken-all-the-warmth-of-the)

_2026-06-04 · Rae Cline · OPENINGS_

PRECIOUS UGLY

## [WAITING ON A FRIEND by Natalie Adler](https://raecline.substack.com/p/waiting-on-a-friend-by-natalie-adler)

_2026-05-26 · Rae Cline · OPENINGS_

Hogarth

## [THE FEAR OF 13 with Adrien Brody and Tessa Thompson](https://raecline.substack.com/p/the-fear-of-thirteen-with-adrien)

_2026-05-25 · Rae Cline · OPENINGS_

James Earl Jones Theatre, NYC

## [THEIR EYES WERE WATCHING GOD by Zora Neale Hurston](https://raecline.substack.com/p/their-eyes-were-watching-god-by-zora)

_2026-05-22 · Rae Cline · OPENINGS_

Storytime with Sophi

## [AI QA That Opens Fix PRs (Sponsored)](https://crawlproof.com/a/ADyOAmo0iNKD)

_2026-05-22 · **Sponsored**_

Runs browser QA, files issues with repro evidence, and opens fix PRs.

## [Building Audist with AI](https://waiyanyoon.com/building-audist-with-ai/)

_2026-04-22 · yyan · waiyan.yoon_

I've been building Audist — a macOS app for recording and transcribing meetings — as a solo side project. It started as an attempt to replace Granola , a meeting notes app I was using but wanted more control over. Rather than keep paying for a subscription, I decided to build my own. AI tooling made that feel achievable as a solo developer, and I used it throughout the entire development process.…

## [The Agency of Agents: Why Your AI Agents Aren&#8217;t Following Orders](https://vainolo.com/2026/02/02/the-agency-of-agents-why-your-ai-agents-arent-following-orders/)

_2026-02-02 · Vainolo · Musings of a Strange Loop_

There’s a recurring complaint: people give AI agents detailed instructions, guides, and specific requirements, only to find the agent does something unexpected that is completely…

## [Exploring AI-Assisted Software Development – Part 3: Third Time&#8217;s a Charm](https://vainolo.com/2026/01/25/exploring-ai-assisted-software-development-part-3-third-times-a-charm/)

_2026-01-25 · Vainolo · Musings of a Strange Loop_

Drawing from my previous experiences, I started again from scratch. But this time, I was more methodical with the AI coding agent. I’ve been exploring AI-assisted coding…

## [Experimenting with Cline Workflows for Git Branching and QA Tickets](https://waiyanyoon.com/experimenting-with-cline-workflows-for-git-branching-and-qa-tickets/)

_2025-09-02 · yyan · waiyan.yoon_

Over the past couple of weeks, I’ve been experimenting with Cline , a workflow automation layer that connects natural language to developer tools. My goal was simple: reduce repetitive steps in my software development cycle by codifying them into reusable workflows. Why Cline Workflows? As part of a typical SDLC, there are a few tasks I perform over and over: Creating a new Git branch from a…

## [Exploring AI-Assisted Software Development – Part 2: Crashed and Burned](https://vainolo.com/2025/08/08/exploring-ai-assisted-software-development-part-2-crashed-and-burned/)

_2025-08-08 · Vainolo · Musings of a Strange Loop_

A week later and after many hours in front of the computer, my project is a complete failure and a great success. Let me explain.…

## [Exploring AI-Assisted Software Development &#8211; Part 1](https://vainolo.com/2025/07/31/exploring-ai-assisted-software-development-part-1/)

_2025-07-31 · Vainolo · Musings of a Strange Loop_

I’ve been working with AI coding agents for a while now in my professional environment, and overall, they’ve proven to be quite effective. While they…

## [Learning .NET Aspire – Part 3: Deploying a Simple Web App](https://vainolo.com/2025/05/18/learning-net-aspire-part-3-deploying-a-simple-web-app/)

_2025-05-18 · Vainolo · Musings of a Strange Loop_

In the previous tutorial we created a simple web app using .NET Aspire. Now we will see how to deploy it to Azure. The simplest…

## [Learning .NET Aspire &#8211; Part 2: Creating a Simple Web App](https://vainolo.com/2025/05/02/learning-net-aspire-part-2-creating-a-simple-web-app/)

_2025-05-02 · Vainolo · Musings of a Strange Loop_

In the previous tutorial, we took a look at the basic sample Aspire web app works. This time, we’ll create a new app from scratch.…

## [Fixing HTML5 Validation in Rails Forms with Simple Form](https://waiyanyoon.com/fixing-html5-validation-in-rails-forms-with-simple-form/)

_2025-04-25 · yyan · waiyan.yoon_

While migrating a page from AngularJS to Rails templates, I stumbled on a strange issue: my form skipped HTML5 validation entirely. At first, I considered handling it manually using the reportValidity() API. But while digging into low-level validation APIs, I discovered the noValidate attribute. It turns out that Rails forms—when using the simple\_form gem—have novalidate enabled by default. This…

## [Learning .NET Aspire &#8211; Part 1: The Basics](https://vainolo.com/2025/04/18/learning-net-aspire-part-1-the-basics/)

_2025-04-18 · Vainolo · Musings of a Strange Loop_

.NET Aspire is a new “stack” for developing application for the cloud. I’m usually not into opinionated stacks, or stacks in general, because they create…

## [AI QA That Opens Fix PRs (Sponsored)](https://crawlproof.com/a/eOi7YF18uODv)

_2025-04-18 · **Sponsored**_

Runs browser QA, files issues with repro evidence, and opens fix PRs.

## [Fetching Currency Exchange Rates in Excel](https://vainolo.com/2025/02/01/fetching-currency-exchange-rates-in-excel/)

_2025-02-01 · Vainolo · Musings of a Strange Loop_

While Excel is not a programming language, it is one of those awesome tools that every person should be familiar with. You would be amazed…

## [Creating a C# NuGet Package and Publishing it to NuGet.org](https://vainolo.com/2024/12/16/creating-a-c-nuget-package-and-publishing-it-to-nuget-org/)

_2024-12-16 · Vainolo · Musings of a Strange Loop_

This turned out to be a lot simpler than I thought. First, we start with a C# class library project, which we can create by…

## [Analysing SQL Queries](https://waiyanyoon.com/analysing-sql-queries/)

_2024-10-17 · yyan · waiyan.yoon_

Make use of EXPLAIN clause in your database engine to run a query analyse: EXPLAIN SELECT user\_id , COUNT ( DISTINCT ( user\_id )) FROM users . post GROUP BY user\_id HAVING COUNT ( DISTINCT ( user\_id )) \> 1 ; It will show you how the query is being executed: | QUERY PLAN | | ----------------------------------------------------------------------------- | | GroupAggregate (cost=790088.08..848298.55…

