Skip to content

Commit a6956e8

Browse files
committed
Merge branch 'main' into content-restructure
# Conflicts: # astro.config.ts # content/crutchcorn/posts/object-mutation/index.md # content/crutchcorn/posts/what-is-ssr-and-ssg/index.md # content/data/unicorns.json # src/pages/collections/framework-field-guide/index.astro # src/utils/achievements/github.ts # src/utils/markdown/iframes/rehype-transform.ts # src/utils/markdown/index.ts # src/utils/markdown/rehype-astro-image-md.ts # src/utils/markdown/rehype-header-text.ts
2 parents a5e1678 + cf68f0f commit a6956e8

File tree

471 files changed

+193197
-1022
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

471 files changed

+193197
-1022
lines changed

.eslintignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ dist
22
node_modules
33
package-lock.json
44
*.md
5-
*.min.js
5+
*.min.js
6+
7+
content/**/*
8+
public/content/**/*

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Community Chat
4+
url: https://discord.com/invite/FMcvc6T
5+
about: Our dedicated community is here to help.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Content Suggestion
2+
description: A suggestion for a new article/post about a technical topic
3+
title: "[Proposed Post]: "
4+
labels:
5+
- blog post
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: >-
10+
> This is a proposed article to be written (by anyone) for Unicorn
11+
Utterances. If this topic seems interesting to you and you'd like to
12+
write it, just leave a comment saying so and let us know what we can do
13+
to help.
14+
- type: input
15+
attributes:
16+
label: "Proposed topic title:"
17+
description: What is the proposed title of the article?
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: "Topic description:"
23+
description: A description of the content you'd like to see written
24+
validations:
25+
required: true
26+
- type: input
27+
attributes:
28+
label: "Link to existing draft:"
29+
description: >-
30+
This is an optional link to an existing draft if work on this content
31+
has already begun,
32+
- type: input
33+
attributes:
34+
label: "Part of series:"
35+
description: >-
36+
If this article is proposed to be part of a article series, what should
37+
said series be called?
38+
- type: textarea
39+
attributes:
40+
label: Resources
41+
description: >-
42+
Resources used to research this topic for those that might not know
43+
already
44+
- type: textarea
45+
attributes:
46+
label: Other Notes
47+
description: Anything else you'd like to add about this potential article
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature Request
2+
description: template for missing feature
3+
title: "[Feature Request]: "
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: A clear and concise description of the problem or missing capability
9+
validations:
10+
required: true
11+
- type: textarea
12+
attributes:
13+
label: Describe the solution you'd like
14+
description: If you have a solution in mind, please describe it.
15+
- type: textarea
16+
attributes:
17+
label: Describe alternatives you've considered
18+
description: Have you considered any alternative solutions or workarounds?
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Website bug report
2+
description: Template for bug reports about the website
3+
title: "[Website Bug]: "
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: A clear and concise description of the problem
9+
validations:
10+
required: true
11+
- type: textarea
12+
attributes:
13+
label: Minimal Reproduction
14+
description: provide steps to reproduce the problem
15+
- type: textarea
16+
attributes:
17+
label: Exception or Error
18+
description: provide error logs

.github/workflows/test.yml

+32-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
11
name: test
22

3-
on: push
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
13+
cancel-in-progress: true
414

515
jobs:
616
test:
717
env:
818
CI: true
919
runs-on: ubuntu-latest
1020
steps:
11-
- uses: actions/checkout@v2
12-
- name: Use Node.js 16.x
13-
uses: actions/setup-node@v2
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 0
25+
- name: Setup Node
26+
uses: actions/setup-node@v4
1427
with:
15-
node-version: 16.x
28+
node-version-file: .nvmrc
1629
cache: npm
1730

1831
- name: Install Dependencies
@@ -25,11 +38,14 @@ jobs:
2538
CI: true
2639
runs-on: ubuntu-latest
2740
steps:
28-
- uses: actions/checkout@v2
29-
- name: Use Node.js 16.x
30-
uses: actions/setup-node@v2
41+
- name: Checkout
42+
uses: actions/checkout@v4
3143
with:
32-
node-version: 16.x
44+
fetch-depth: 0
45+
- name: Setup Node
46+
uses: actions/setup-node@v4
47+
with:
48+
node-version-file: .nvmrc
3349
cache: npm
3450

3551
- name: Install Dependencies
@@ -42,11 +58,14 @@ jobs:
4258
CI: true
4359
runs-on: ubuntu-latest
4460
steps:
45-
- uses: actions/checkout@v2
46-
- name: Use Node.js 16.x
47-
uses: actions/setup-node@v2
61+
- name: Checkout
62+
uses: actions/checkout@v4
63+
with:
64+
fetch-depth: 0
65+
- name: Setup Node
66+
uses: actions/setup-node@v4
4867
with:
49-
node-version: 16.x
68+
node-version-file: .nvmrc
5069
cache: npm
5170

5271
- name: Install Dependencies

.prettierignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ dist
22
node_modules
33
package-lock.json
44
*.md
5-
*.min.js
5+
*.min.js

astro.config.ts

+11-8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import * as path from "path";
2020
import svgr from "vite-plugin-svgr";
2121
import { languages } from "./src/constants/index";
2222
import { fileToOpenGraphConverter } from "./src/utils/translations";
23+
import { posts } from "./src/utils/data";
2324

2425
await symlink(path.resolve("content"), path.resolve("public/content"));
2526

@@ -45,15 +46,17 @@ export default defineConfig({
4546
),
4647
},
4748
filter(page) {
48-
// return true, unless lart part of the URL ends with "_noindex"
49+
// return true, unless last part of the URL ends with "_noindex"
4950
// in which case it should not be in the sitemap
50-
return !(
51-
page
52-
.split("/")
53-
.filter((part) => !!part.length)
54-
.at(-1)
55-
?.endsWith("_noindex") ?? false
56-
);
51+
const lastPartOfSlug = page
52+
.split("/")
53+
.filter((part) => !!part.length)
54+
.at(-1);
55+
56+
if (lastPartOfSlug.endsWith("_noindex")) return false;
57+
const relatedPost = posts.find((post) => post.slug === lastPartOfSlug);
58+
if (relatedPost && relatedPost.originalLink) return false;
59+
return true;
5760
},
5861
serialize({ url, ...rest }) {
5962
return {
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
{
3+
title: "React Beyond the Render",
4+
description: "React's capabilities are plentiful; there's a reason it's at the top of framework usage. But what can it REALLY do? Let's explore its potential; frontend and backend alike.",
5+
tags: ["react", "webdev", "javascript"],
6+
coverImg: "./cover.png",
7+
published: "2023-12-15T13:45:00.284Z",
8+
buttons: [{ text: "Read now", url: "/posts/what-is-reactivity" }],
9+
}
10+
---
11+
12+
When React started its journey, it was only able to run on the user's machine. Today, it has immense capabilities on both the frontend and backend.
13+
14+
From static site generation to mobile apps to server actions, React can handle an application's needs from start-to-finish.
15+
16+
Let's explore how React is able to do all of that; from the very beginning until its abilities today.

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ 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" -->
53+
5254
# Windows Features Setup {#windows-features}
5355

5456
Now that we have our BIOS (UEFI, really) configured correctly, we can enable the Windows features we need for the Android Emulator.
@@ -99,7 +101,7 @@ SDK_INSTALL_LOCATION\extras\google\Android_Emulator_Hypervisor_Driver
99101

100102
![The location of the hypervisor visually using OneCommander app](./hypervisor_filesystem_path.png)
101103

102-
> If you like having this macOS-like preview pane of files, you can find it in the OneCommander application. We covered this app in [our "Ultimate Windows Development Environment Guide" article](posts/ultimate-windows-development-environment-guide/#Paid)
104+
> If you like having this macOS-like preview pane of files, you can find it in the OneCommander application. We covered this app in [our "Ultimate Windows Development Environment Guide" article](/posts/ultimate-windows-development-environment-guide/#Paid)
103105
104106
Once you have the path located, you'll want to run the `silent_installer.bat` inside of an elevated shell. I did this by pressing <kbd>Win</kbd> + <kbd>X</kbd> and pressing **"Windows PowerShell (Admin)"**. Once that was opened, I copied the path to the PowerShell window via `cd` and ran the installer.
105107

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"demo": {
7+
"root": "",
8+
"sourceRoot": "src",
9+
"projectType": "application",
10+
"prefix": "app",
11+
"schematics": {},
12+
"architect": {
13+
"build": {
14+
"builder": "@angular-devkit/build-angular:browser",
15+
"options": {
16+
"outputPath": "dist/demo",
17+
"index": "src/index.html",
18+
"main": "src/main.ts",
19+
"polyfills": "src/polyfills.ts",
20+
"tsConfig": "src/tsconfig.app.json",
21+
"assets": [
22+
"src/favicon.ico",
23+
"src/assets"
24+
],
25+
"styles": [
26+
"src/styles.css"
27+
],
28+
"scripts": []
29+
},
30+
"configurations": {
31+
"production": {
32+
"fileReplacements": [
33+
{
34+
"replace": "src/environments/environment.ts",
35+
"with": "src/environments/environment.prod.ts"
36+
}
37+
],
38+
"optimization": true,
39+
"outputHashing": "all",
40+
"sourceMap": false,
41+
"extractCss": true,
42+
"namedChunks": false,
43+
"aot": true,
44+
"extractLicenses": true,
45+
"vendorChunk": false,
46+
"buildOptimizer": true
47+
}
48+
}
49+
},
50+
"serve": {
51+
"builder": "@angular-devkit/build-angular:dev-server",
52+
"options": {
53+
"browserTarget": "demo:build"
54+
},
55+
"configurations": {
56+
"production": {
57+
"browserTarget": "demo:build:production"
58+
}
59+
}
60+
},
61+
"extract-i18n": {
62+
"builder": "@angular-devkit/build-angular:extract-i18n",
63+
"options": {
64+
"browserTarget": "demo:build"
65+
}
66+
},
67+
"test": {
68+
"builder": "@angular-devkit/build-angular:karma",
69+
"options": {
70+
"main": "src/test.ts",
71+
"polyfills": "src/polyfills.ts",
72+
"tsConfig": "src/tsconfig.spec.json",
73+
"karmaConfig": "src/karma.conf.js",
74+
"styles": [
75+
"styles.css"
76+
],
77+
"scripts": [],
78+
"assets": [
79+
"src/favicon.ico",
80+
"src/assets"
81+
]
82+
}
83+
},
84+
"lint": {
85+
"builder": "@angular-devkit/build-angular:tslint",
86+
"options": {
87+
"tsConfig": [
88+
"src/tsconfig.app.json",
89+
"src/tsconfig.spec.json"
90+
],
91+
"exclude": [
92+
"**/node_modules/**"
93+
]
94+
}
95+
}
96+
}
97+
}
98+
},
99+
"defaultProject": "demo"
100+
}

0 commit comments

Comments
 (0)