Skip to content

Commit 65d6c8b

Browse files
committed
chore: update opencollective link
1 parent 79e3433 commit 65d6c8b

File tree

37 files changed

+38
-38
lines changed

37 files changed

+38
-38
lines changed

content/crutchcorn/collections/react-beyond-the-render/posts/what-are-react-server-actions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ In short; React Server Actions are a way to call server-side code in React's cli
101101

102102
However, to pass a function from a server component down to the client we must designate our functions we want to pass with a special boundary string.
103103

104-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
104+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
105105

106106
# What is `"use server"`?
107107

content/crutchcorn/collections/react-beyond-the-render/posts/what-are-react-server-components/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Here, we can see that `<ProfilePicture>`, `<Dashboard/>`, and all of their child
5656

5757
> Keep in mind, client-components will still pre-generate HTML on the server by default. The difference here is that the client re-initialization is now informed by the VDOM constructed on the server, allowing for drastically reduced required execution.
5858
59-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
59+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
6060

6161
# What is `"use client"`?
6262

content/crutchcorn/collections/react-beyond-the-render/posts/what-is-react-suspense-and-async-rendering/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Now React will treat the `result` as if it were not a promise, so that you can a
7777
> - Refetching with new inputs
7878
> - Abort signals to avoid timing issues
7979
80-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
80+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
8181

8282
# What is the `<Suspense>` component?
8383

content/crutchcorn/collections/react-beyond-the-render/posts/what-is-reactivity/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Then we can add in the required JavaScript to make the button functional:
7171

7272
<iframe data-frame-title="Example #1 - StackBlitz" src="pfp-code:./step1-code?template=node&embed=1&file=index.html" sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin"></iframe>
7373

74-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
74+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
7575

7676
# Adding a List
7777

content/crutchcorn/collections/react-beyond-the-render/posts/what-is-reconciliation-and-the-vdom/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You'll end up with a VDOM that mirrors the markup you've written in JSX. This JS
6060

6161
The process of how these changes are mirrored is called "Reconciliation".
6262

63-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
63+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
6464

6565
# What is "Reconciliation"?
6666

content/crutchcorn/collections/react-beyond-the-render/posts/what-is-ssr-and-ssg/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ While you may not be familiar with this term, you're more than likely familiar w
4141

4242
This is because React's code has to initialize to render the components on screen before it can spit out HTML for the browser to parse. Sure, there's an initial HTML file that might have loading spinner, but until your components have time to render, that's hardly useful content for your user. _While these load times can be sufficient for smaller applications_, if you have many components loading on-screen, _you may be in trouble if you want to keep your time-to-interactive (TTI) low_. That scenario is where SSR often comes into play.
4343

44-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
44+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
4545

4646
# Server Side Rendering (SSR) {#ssr}
4747

content/crutchcorn/collections/react-beyond-the-render/posts/what-is-use-action-state-and-form-status/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export function Todo({ todos, addTodo }) {
166166

167167
`useActionState` allows us to get a response from a React Server Action and handle the results any way we might want to; including (but not limited to) displaying the contents of the response to the client.
168168

169-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
169+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
170170

171171
This is a simple example of what `useActionState` looks like on client-side form actions:
172172

content/crutchcorn/posts/android-studio-setup-for-ryzen-cpus/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Enabling IOMMU on a Gigabyte AMD motherboard is much easier than enabling SVM mo
4949

5050
Once changed, tab over to "Save & Exit" and select "Exit and save changes".
5151

52-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
52+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
5353

5454
# Windows Features Setup {#windows-features}
5555

content/crutchcorn/posts/angular-components-control-value-accessor/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ You'll want to call this `onTouched` method any time that your user "touches" (o
246246
/>
247247
```
248248
249-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
249+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
250250
251251
# Consumption {#consume-demo}
252252

content/crutchcorn/posts/angular-constructor-error-behavior/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ Because of this, and following JavaScript's early return implementation of throw
312312

313313
This is why we can see elements rendered _before_ our `throw-an-error` component, but not elements _after_.
314314

315-
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/unicorn-utterances" -->
315+
<!-- ::in-content-ad title="Consider supporting" body="Donating any amount will help towards further development of articles like this." button-text="Visit our Open Collective" button-href="https://opencollective.com/playfulprogramming" -->
316316

317317
# Why we need a fix
318318

0 commit comments

Comments
 (0)