Skip to content

Commit 5f9a6ff

Browse files
committed
fix spelling
1 parent 9645eb8 commit 5f9a6ff

9 files changed

+16
-16
lines changed

MyApp/Pages/AutoQuery.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ public class QueryTodos : QueryDb<Todo> {}
411411
<a class="text-indigo-600 hover:text-indigo-800" href="https://blazor-gallery.servicestack.net/gallery">ServiceStack.Blazor's</a>
412412
and
413413
<a class="text-indigo-600 hover:text-indigo-800" href="https://docs.servicestack.net/vue/">Vue's AutoQueryGrid &amp; AutoForm</a>
414-
componnets, enabling amazing levels of reuse.
414+
components, enabling amazing levels of reuse.
415415
</p>
416416
</div>
417417

MyApp/_posts/2024-09-11_background-jobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class MyService(IBackgroundJobs jobs) : Service
130130
Subject = $"Received New Order {request.Id}",
131131
BodyText = $"""
132132
Order Details:
133-
{request.OrderDetails.DumptTable()}
133+
{request.OrderDetails.DumpTable()}
134134
""",
135135
});
136136
//...
@@ -150,7 +150,7 @@ var jobRef = jobs.EnqueueApi(new SendEmail {
150150
Subject = $"Received New Order {request.Id}",
151151
BodyText = $"""
152152
Order Details:
153-
{request.OrderDetails.DumptTable()}
153+
{request.OrderDetails.DumpTable()}
154154
""",
155155
});
156156
```

MyApp/_posts/2025-10-23_rdbms_jobs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Cancel Running jobs and Requeue failed jobs
198198

199199
For even greater reuse of your APIs you're able to queue your existing ServiceStack Request DTOs
200200
as a Background Job in addition to [Commands](https://docs.servicestack.net/commands)
201-
for encapsulating units of logic into internal invokable, inspectable and auto-retryable building blocks.
201+
for encapsulating units of logic into internal invocable, inspectable and auto-retryable building blocks.
202202

203203
### Queue Commands
204204

@@ -216,7 +216,7 @@ class MyService(IBackgroundJobs jobs) : Service
216216
Subject = $"Received New Order {request.Id}",
217217
BodyText = $"""
218218
Order Details:
219-
{request.OrderDetails.DumptTable()}
219+
{request.OrderDetails.DumpTable()}
220220
""",
221221
});
222222
//...
@@ -238,7 +238,7 @@ var jobRef = jobs.EnqueueApi(new SendEmail {
238238
Subject = $"Received New Order {request.Id}",
239239
BodyText = $"""
240240
Order Details:
241-
{request.OrderDetails.DumptTable()}
241+
{request.OrderDetails.DumpTable()}
242242
""",
243243
});
244244
```

MyApp/_posts/2025-11-13_react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Reports
231231

232232
The generated source code for the App was uploaded to: [github.com/mythz/budgets.apps.cafe](https://github.com/mythz/budgets.apps.cafe)
233233

234-
### Budgent Planner App
234+
### Budget Planner App
235235

236236
After a few minutes Copilot creates a PR with what we asked for, even things that we didn't specify in the prompt but could be inferred from the Project Template like **Dark Mode** support where it made use of the existing `<DarkModeToggle />`.
237237

@@ -289,6 +289,6 @@ very likely to become the future of software development, especially for UIs. Si
289289
the primary authors of code, our UI choices swing from Developer preferences to UI technologies that AI models
290290
excel at.
291291

292-
So whilst we have a preference for Vue given it's more readable syntax and progressive enhancement capabalities, and despite the .NET ecosystem having a strong bias towards Blazor, we're even more excited for the future of React and are committed to providing the best possible support for it.
292+
So whilst we have a preference for Vue given it's more readable syntax and progressive enhancement capabilities, and despite the .NET ecosystem having a strong bias towards Blazor, we're even more excited for the future of React and are committed to providing the best possible support for it.
293293

294294
::include react-templates.md::

MyApp/_posts/2025-11-20_ai-chat-analytics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: AI Chat history persistence and Admin Analytics UI
3-
summary: Maintain a persistant history of all AI Chat requests and responses
3+
summary: Maintain a persistent history of all AI Chat requests and responses
44
tags: [llms,ai,chat,admin-ui,analytics]
55
author: Demis Bellot
66
image: ./img/posts/ai-chat-analytics/bg.webp

MyApp/_posts/2025-12-01_net8-react-spa-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function App() {
8989
? <p><em>Loading... Please refresh once the ASP.NET backend has started. See
9090
<a href="https://aka.ms/jspsintegrationreact">jsps</a> for more details.
9191
</em></p>
92-
: <table className="table table-striped" aria-labelledby="tabelLabel">
92+
: <table className="table table-striped" aria-labelledby="tableLabel">
9393
<thead>
9494
<tr>
9595
<th>Date</th>

MyApp/_posts/2025-12-04_vibecode-react-templates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Over the last few months our primary focus has been on enabling first-class supp
1010

1111
### Software Development has changed forever
1212

13-
Software Development has reached an inflection point where AI Models and tools are now good enough to build featuers in minutes, not hours and rewrite mid-sized application UIs in hours, not months. This fundamentally changes the economics of Software Development.
13+
Software Development has reached an inflection point where AI Models and tools are now good enough to build features in minutes, not hours and rewrite mid-sized application UIs in hours, not months. This fundamentally changes the economics of Software Development.
1414

1515
Whatever our developer preferences were have become significantly less important in the age of AI where the most important factor is now which frameworks AI Models are most proficient in.
1616

@@ -125,7 +125,7 @@ In addition to the minimal starting templates above, we've also created 2 full-f
125125

126126
All deployments include the GitHub Action workflows to deploy your App to [any Linux Server with Kamal](https://react-templates.net/docs/deployments) using Docker, SSH and GitHub Container Registry (ghcr).
127127

128-
Where you can host it on a [Hetzner US Cloud](https://www.hetzner.com/cloud) VM for as low as **$5 per month** or if you have multiple Apps you can delpoy them all to a single VM which we're doing for our .NET Template Live Demos which runs **30 Docker Apps** on a **8GB RAM/80GB SSD** dedicated VM for **$15 /month**.
128+
Where you can host it on a [Hetzner US Cloud](https://www.hetzner.com/cloud) VM for as low as **$5 per month** or if you have multiple Apps you can deploy them all to a single VM which we're doing for our .NET Template Live Demos which runs **30 Docker Apps** on a **8GB RAM/80GB SSD** dedicated VM for **$15 /month**.
129129

130130
## AI-Assisted Development with CLAUDE.md
131131

MyApp/_posts/2025-12-05_angular-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ GitHub Actions workflows included for:
175175

176176
All deployments include the GitHub Action workflows to deploy your App to [any Linux Server with Kamal](https://docs.servicestack.net/kamal-deploy) using Docker, SSH and GitHub Container Registry (ghcr).
177177

178-
Where you can host it on a [Hetzner US Cloud](https://www.hetzner.com/cloud) VM for as low as **$5 per month** or if you have multiple Apps you can delpoy them all to a single VM which we're doing for our .NET Template Live Demos which runs **30 Docker Apps** on a **8GB RAM/80GB SSD** dedicated VM for **$15 /month**.
178+
Where you can host it on a [Hetzner US Cloud](https://www.hetzner.com/cloud) VM for as low as **$5 per month** or if you have multiple Apps you can deploy them all to a single VM which we're doing for our .NET Template Live Demos which runs **30 Docker Apps** on a **8GB RAM/80GB SSD** dedicated VM for **$15 /month**.
179179

180180
## AI-Assisted Development with CLAUDE.md
181181

MyApp/_posts/2025-12-07_replacing-legacy-uis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@ Implement the NEXTJS_MIGRATION_PLAN.md
127127

128128
With access to both the Migration Plan and existing code-base, Claude Code was able to generate the entire new Next.js UI within 10-20 minutes, for less than $10 (in free credits).
129129

130-
The initial AI-generated code wasn't perfect, but it generated an excellent starting point that converted most of the existing Nust/Vuetify implementation into a modern Next.js App, with its preferred project structure.
130+
The initial AI-generated code wasn't perfect, but it generated an excellent starting point that converted most of the existing Nuxt/Vuetify implementation into a modern Next.js App, with its preferred project structure.
131131

132132
### Vibe Code the rest
133133

134-
The most time consuming part of the mgiration is walking through the entire Application, in tandem with your existing App to test that everything functions as it did before. Fortunately you never need to take the reins to get it over the line, as now that we have a modern AI-friendly Next.js/React/Tailwind UI we can just use Vibe Coding to prompt the AI Models to implement any missing features or fix any issues that you find along the way.
134+
The most time consuming part of the migration is walking through the entire Application, in tandem with your existing App to test that everything functions as it did before. Fortunately you never need to take the reins to get it over the line, as now that we have a modern AI-friendly Next.js/React/Tailwind UI we can just use Vibe Coding to prompt the AI Models to implement any missing features or fix any issues that you find along the way.
135135

136136
If this is your first time using AI Models for all development, it can seem like unrealistic magic from the future.
137137
But not only is it possible, it's the most productive development model we've ever experienced, and is all likely to be the future of software development.
@@ -215,7 +215,7 @@ The unprecedented productivity of AI Assisted development has transformed our ro
215215

216216
<div class="pt-12 not-prose flex justify-center">
217217
<a href="https://react-templates.net"
218-
class="group relative inline-flex items-center rounded-full bg-gradient-to-r from-sky-400 vithe UX Hot reloading of npm UIsa-cyan-400 to-emerald-400 p-[1.5px] shadow-md">
218+
class="group relative inline-flex items-center rounded-full bg-gradient-to-r from-sky-400 via-cyan-400 to-emerald-400 p-[1.5px] shadow-md">
219219
<span class="inline-flex items-center gap-2.5 rounded-full bg-white px-6 py-3 text-base font-semibold text-slate-900 transition group-hover:bg-slate-50">
220220
<span class="h-2.5 w-2.5 rounded-full bg-gradient-to-r from-sky-400 to-cyan-400 shadow-[0_0_7px_rgba(56,189,248,0.7)]"></span>
221221
<span class="tracking-wide">ServiceStack + React</span>

0 commit comments

Comments
 (0)