-
Notifications
You must be signed in to change notification settings - Fork 2
Curate projects listing #1350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
schalkneethling
wants to merge
20
commits into
main
Choose a base branch
from
codex/curated-projects-listing-1344
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Curate projects listing #1350
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
355c43c
Curate projects listing
schalkneethling 98ae281
Add minimal project detail pages
schalkneethling 603ac95
Add project detail pages
schalkneethling 4a7bbd5
Fix projects masonry card visibility
schalkneethling e758af1
Merge branch 'codex/curated-projects-listing-1344' into codex/project…
schalkneethling 7a7c079
Restore project card image headers
schalkneethling 55368f4
Merge branch 'codex/curated-projects-listing-1344' into codex/project…
schalkneethling 95300d9
Polish project card metadata and links
schalkneethling 8ebd7c2
Merge branch 'codex/curated-projects-listing-1344' into codex/project…
schalkneethling 756321f
Narrow project detail links
schalkneethling 8be9ce0
Merge pull request #1352 from schalkneethling/codex/project-detail-pa…
schalkneethling 3f13757
Complete starter project content
schalkneethling 8b0dccb
Redesign project detail pages
schalkneethling 3ed784f
Merge pull request #1353 from schalkneethling/codex/complete-starter-…
schalkneethling 5688e3b
Add manual project doc cache refresh
schalkneethling d2d37e0
Merge pull request #1357 from schalkneethling/codex/manual-repo-doc-c…
schalkneethling 4bacc26
Add project-local projects skill
schalkneethling 2c64f5c
Merge pull request #1358 from schalkneethling/codex/project-local-wha…
schalkneethling 3c52dfb
Refine project detail page design
schalkneethling 2a07735
Merge branch 'main' into codex/curated-projects-listing-1344
schalkneethling File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,56 @@ | ||
| --- | ||
| import type { CollectionEntry } from "astro:content"; | ||
|
|
||
| import ProjectCard from "./ProjectCard.astro"; | ||
|
|
||
| interface Props { | ||
| heading: string; | ||
| headingId: string; | ||
| intro?: string; | ||
| minColumnWidth?: number; | ||
| projects: CollectionEntry<"projects">[]; | ||
| } | ||
|
|
||
| const { heading, headingId, intro, minColumnWidth = 280, projects } = | ||
| Astro.props; | ||
| --- | ||
|
|
||
| <section aria-labelledby={headingId}> | ||
| <h2 id={headingId} class="gradient-text">{heading}</h2> | ||
| {intro && <p>{intro}</p>} | ||
| <masonry-grid-lanes min-column-width={minColumnWidth} gap="24"> | ||
| { | ||
| projects.map((project) => ( | ||
| <ProjectCard | ||
| name={project.data.title} | ||
| description={project.data.description} | ||
| url={`/projects/${project.id}`} | ||
| language={project.data.language ?? null} | ||
| stars={project.data.stars ?? 0} | ||
| imageUrl={project.data.imageUrl ?? ""} | ||
| featured={project.data.category === "main"} | ||
| linkLabel="View project" | ||
| /> | ||
| )) | ||
| } | ||
| </masonry-grid-lanes> | ||
| </section> | ||
|
|
||
| <style> | ||
| section { | ||
| margin-block-start: var(--spacing-section-large); | ||
| } | ||
|
|
||
| masonry-grid-lanes { | ||
| display: block; | ||
| inline-size: 100%; | ||
| margin-block-start: var(--size-24); | ||
| position: relative; | ||
| } | ||
|
|
||
| masonry-grid-lanes:not(:defined) { | ||
| display: grid; | ||
| gap: 1rem; | ||
| grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | ||
| } | ||
| </style> | ||
This file contains hidden or 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
This file contains hidden or 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,7 @@ | ||
| --- | ||
| title: "Throwing Confetti with CSS Random" | ||
| pubDate: 2026-07-07 | ||
| description: "" | ||
| author: "Schalk Neethling" | ||
| tags: ["css", "frontend-engineering-explained"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "common-components" | ||
| description: "A collection of commonly used components as either HTML or Web Components." | ||
| category: "main" | ||
| order: 10 | ||
| repoUrl: "https://github.com/schalkneethling/common-components" | ||
| imageUrl: "https://opengraph.githubassets.com/bbda519087a7bfd65cf5cb287d564c489f6005c2993c92bfb3103aff2c288aa2/schalkneethling/common-components" | ||
| language: "HTML" | ||
| stars: 3 | ||
| technologies: ["HTML", "Web Components", "CSS"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "create-project-calavera" | ||
| description: "A simple starting skeleton of linters and formatters for common web projects." | ||
| category: "main" | ||
| order: 7 | ||
| repoUrl: "https://github.com/schalkneethling/create-project-calavera" | ||
| imageUrl: "https://repository-images.githubusercontent.com/903176922/d1319ba4-0fc9-4df5-8c96-f8c59c9be799" | ||
| language: "JavaScript" | ||
| stars: 7 | ||
| technologies: ["JavaScript", "CLI", "Project Scaffolding"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-benchpress" | ||
| description: "Grow realistic web-platform CSS test cases until measurable performance regressions appear." | ||
| category: "main" | ||
| order: 8 | ||
| repoUrl: "https://github.com/schalkneethling/css-benchpress" | ||
| imageUrl: "https://repository-images.githubusercontent.com/1272350957/e3bc5088-f054-46b0-86ab-1c5fdea570b0" | ||
| language: "TypeScript" | ||
| stars: 9 | ||
| technologies: ["TypeScript", "CSS", "Performance"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-community-reset" | ||
| description: "A CSS reset inspired by the community." | ||
| category: "main" | ||
| order: 1 | ||
| repoUrl: "https://github.com/schalkneethling/css-community-reset" | ||
| imageUrl: "https://opengraph.githubassets.com/8ee4947881a615c98b4308d4e1887b93924348633c77074b9cd7908d0bb002ee/schalkneethling/css-community-reset" | ||
| language: "CSS" | ||
| stars: 16 | ||
| technologies: ["CSS"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-custom-property-inspector" | ||
| description: "A VS Code extension that shows CSS custom property values, definitions, and resolved references on hover." | ||
| category: "main" | ||
| order: 9 | ||
| repoUrl: "https://github.com/schalkneethling/css-custom-property-inspector" | ||
| imageUrl: "https://opengraph.githubassets.com/8ee606d555f413fb3414dff7e8d8280ae7ffc9305fc38d5e353e2d5ecf86a707/schalkneethling/css-custom-property-inspector" | ||
| language: "TypeScript" | ||
| stars: 0 | ||
| technologies: ["TypeScript", "VS Code", "CSS"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-expect" | ||
| description: "Write browser-native expectations for CSS custom functions and mixins." | ||
| category: "main" | ||
| order: 5 | ||
| repoUrl: "https://github.com/schalkneethling/css-expect" | ||
| imageUrl: "https://repository-images.githubusercontent.com/1258634645/be6e459a-0cd5-47db-b6bb-d4b1789638d6" | ||
| language: "TypeScript" | ||
| stars: 4 | ||
| technologies: ["TypeScript", "CSS", "Testing"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-media-pseudo-polyfill" | ||
| description: "A CSS polyfill for media pseudo-classes such as :playing, :paused, :seeking, and :muted." | ||
| category: "main" | ||
| order: 11 | ||
| repoUrl: "https://github.com/schalkneethling/css-media-pseudo-polyfill" | ||
| imageUrl: "https://opengraph.githubassets.com/3e4f3b4145c5fce35fd49cf5f9b83806101eee6f02b2a6b937511bcdf1de65fc/schalkneethling/css-media-pseudo-polyfill" | ||
| language: "TypeScript" | ||
| stars: 3 | ||
| technologies: ["TypeScript", "CSS", "Polyfill"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-property-type-validator" | ||
| description: "Standalone tooling for validating CSS custom property registrations declared with @property." | ||
| category: "main" | ||
| order: 6 | ||
| repoUrl: "https://github.com/schalkneethling/css-property-type-validator" | ||
| imageUrl: "https://repository-images.githubusercontent.com/1198765576/0966a7fe-ab8b-4e6d-997e-5dbb136ff80d" | ||
| language: "TypeScript" | ||
| stars: 10 | ||
| technologies: ["TypeScript", "CSS", "Tooling"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "css-tree-ast-viewer" | ||
| description: "A focused CSS AST explorer for writing CSS in one pane and viewing the CSS Tree AST in another." | ||
| category: "demo" | ||
| order: 2 | ||
| repoUrl: "https://github.com/schalkneethling/css-tree-ast-viewer" | ||
| imageUrl: "https://repository-images.githubusercontent.com/1190851472/d5be03b0-23c7-4406-a967-f7c4b085929d" | ||
| language: "TypeScript" | ||
| stars: 1 | ||
| technologies: ["TypeScript", "CSS", "AST"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "jsconsole" | ||
| description: "A focused JavaScript REPL for quickly testing browser-style JavaScript snippets." | ||
| category: "demo" | ||
| order: 3 | ||
| repoUrl: "https://github.com/schalkneethling/jsconsole" | ||
| imageUrl: "https://opengraph.githubassets.com/e418ca0eafcc3e8d7a81ff50d551b0e4e73d3c27eed30ce504c0f58bddcb4719/schalkneethling/jsconsole" | ||
| language: "TypeScript" | ||
| stars: 0 | ||
| technologies: ["TypeScript", "JavaScript", "REPL"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "little-demos" | ||
| description: "A collection of little web platform feature demos." | ||
| category: "demo" | ||
| order: 1 | ||
| repoUrl: "https://github.com/schalkneethling/little-demos" | ||
| imageUrl: "https://opengraph.githubassets.com/904c2e7a34440a8e86746a299d491f82b96be028d7c69d6f27e8dc11b03bdc73/schalkneethling/little-demos" | ||
| language: "CSS" | ||
| stars: 0 | ||
| technologies: ["HTML", "CSS", "JavaScript"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "masonry-gridlanes-wc" | ||
| description: "A light-DOM custom element for CSS Grid Lanes masonry with a JavaScript fallback." | ||
| category: "main" | ||
| order: 4 | ||
| repoUrl: "https://github.com/schalkneethling/masonry-gridlanes-wc" | ||
| imageUrl: "https://opengraph.githubassets.com/69ce968cb624e4cde1f74edf54d4dd27c018a4ec1fb692a82b0672d0ed04bee6/schalkneethling/masonry-gridlanes-wc" | ||
| language: "JavaScript" | ||
| stars: 11 | ||
| technologies: ["JavaScript", "Web Components", "CSS Grid"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "ossreleasefeed-v2" | ||
| description: "Create custom RSS release feeds for GitHub topic repositories or starred projects." | ||
| category: "main" | ||
| order: 2 | ||
| repoUrl: "https://github.com/schalkneethling/ossreleasefeed-v2" | ||
| imageUrl: "https://opengraph.githubassets.com/582d0382d7093bcd8c120f0ae972246626b09ef5b27f6a3c008556cb4b22ad22/schalkneethling/ossreleasefeed-v2" | ||
| language: "TypeScript" | ||
| stars: 0 | ||
| technologies: ["TypeScript", "RSS", "GitHub"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "refined-plan-mode" | ||
| description: "A local web app for reviewing AI coding-agent plans with anchored feedback." | ||
| category: "main" | ||
| order: 13 | ||
| repoUrl: "https://github.com/schalkneethling/refined-plan-mode" | ||
| imageUrl: "https://opengraph.githubassets.com/29924b3161f878801383457c29b92083fb0ae345ba4523d6ffb9f984940cbb3c/schalkneethling/refined-plan-mode" | ||
| language: "TypeScript" | ||
| stars: 3 | ||
| technologies: ["TypeScript", "AI Agents", "Review Tools"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "skills-autoresearch-flue" | ||
| description: "A Flue agent harness for autoresearching, evaluating, and improving agent skills." | ||
| category: "main" | ||
| order: 12 | ||
| repoUrl: "https://github.com/schalkneethling/skills-autoresearch-flue" | ||
| imageUrl: "https://repository-images.githubusercontent.com/1229035215/462a7f1d-5fdf-4c7c-a6f6-ee53437a2a43" | ||
| language: "TypeScript" | ||
| stars: 12 | ||
| technologies: ["TypeScript", "Agents", "Evaluation"] | ||
| --- |
This file contains hidden or 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 @@ | ||
| --- | ||
| title: "web-platform-pulse" | ||
| description: "Keep your finger on the pulse of the web platform." | ||
| category: "main" | ||
| order: 3 | ||
| repoUrl: "https://github.com/schalkneethling/web-platform-pulse" | ||
| imageUrl: "https://opengraph.githubassets.com/e3937f860da25df07b660fed4a1f0e0a4294d43ee02958b08b7bb05d693b856f/schalkneethling/web-platform-pulse" | ||
| language: "TypeScript" | ||
| stars: 0 | ||
| technologies: ["TypeScript", "Web Platform"] | ||
| --- |
This file contains hidden or 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,25 @@ | ||
| export type ProjectCategory = "main" | "demo"; | ||
|
|
||
| type OrderedProject = { | ||
| data: { | ||
| category: ProjectCategory; | ||
| order: number; | ||
| }; | ||
| }; | ||
|
|
||
| export function sortProjectsByOrder<TProject extends OrderedProject>( | ||
| projects: readonly TProject[], | ||
| ) { | ||
| return [...projects].sort((projectA, projectB) => { | ||
| return projectA.data.order - projectB.data.order; | ||
| }); | ||
| } | ||
|
|
||
| export function getProjectsByCategory<TProject extends OrderedProject>( | ||
| projects: readonly TProject[], | ||
| category: ProjectCategory, | ||
| ) { | ||
| return sortProjectsByOrder( | ||
| projects.filter((project) => project.data.category === category), | ||
| ); | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.