-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
708 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pnpm run format |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
layout: ../../layouts/MarkdownPostLayout.astro | ||
title: Week of January 4th 2024 | ||
--- | ||
|
||
## FreeCodeCamp work | ||
|
||
- Updated answers for the CSS Colors Quiz | ||
|
||
- Reviewed PR to update the working with media lecture | ||
|
||
- Reviewed PR to update tests in event-hub lab | ||
|
||
- Reviewed PR to update forms lecture wording | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
layout: ../../layouts/MarkdownPostLayout.astro | ||
title: Week of January 11th 2024 | ||
--- | ||
|
||
## FreeCodeCamp work | ||
|
||
|
||
- Enabled JSON syntax highlighting in the description in the Curriculum | ||
|
||
- Enable JSON syntax highlighting for the UI library | ||
|
||
- Removed unused CSS rule from client | ||
|
||
- Removed counter-productive hint from accessibility quiz project (both legacy and modern versions) | ||
|
||
- Added a link to the development version of the challenge from the challenge editor | ||
|
||
- Explored the templates to add seed verification | ||
|
||
## Goals | ||
|
||
- Determine if the seed verification works |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
--- | ||
import BaseLayout from '../layouts/BaseLayout.astro'; | ||
const pageTitle = "Home Page"; | ||
import Greeting from '../components/Greeting'; | ||
--- | ||
|
||
<BaseLayout pageTitle={pageTitle}> | ||
<h2>My subtitle</h2> | ||
<Greeting client:load messages={["Hi", "Hello", "Howdy", "Hey there"]} /> | ||
<h2>Welcome to my home page</h2> | ||
</BaseLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: ../../layouts/MarkdownPostLayout.astro | ||
title: Week of January 4th 2025 | ||
--- | ||
|
||
## Personal Development | ||
|
||
- Found an already completed Archive of Our Enchancement plugin with tag blocking | ||
- Made a PR to make the word count easier to read | ||
|
||
- Consider making the Undertale Accessibility Project a mod for Undertale instead of a full remake in Godot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
layout: ../../layouts/MarkdownPostLayout.astro | ||
title: Week of January 11th 2025 | ||
--- | ||
|
||
## Personal Development | ||
|
||
- Download and read up on the Undertale Mod Tool | ||
|
||
- Add an automatic linter and tester to this site | ||
|
||
- Start working on a GameMaker to Godot importer | ||
|
||
## Goals | ||
|
||
- Add sprite buttons to Undertale Accessibility Project | ||
|
||
- Import and create a single room in the Godot importer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { assert, expect, test } from "vitest"; | ||
|
||
// Edit an assertion and save to see HMR in action | ||
|
||
test("Math.sqrt()", () => { | ||
expect(Math.sqrt(4)).toBe(2); | ||
expect(Math.sqrt(144)).toBe(12); | ||
expect(Math.sqrt(2)).toBe(Math.SQRT2); | ||
}); | ||
|
||
test("JSON", () => { | ||
const input = { | ||
foo: "hello", | ||
bar: "world", | ||
}; | ||
|
||
const output = JSON.stringify(input); | ||
|
||
expect(output).eq('{"foo":"hello","bar":"world"}'); | ||
assert.deepEqual(JSON.parse(output), input, "matches original"); | ||
}); |