-
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
1 parent
8381d86
commit 5165f6d
Showing
9 changed files
with
112 additions
and
101 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
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
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,17 +1,10 @@ | ||
import { expandGlob } from "#/deps.ts"; | ||
import type { WorkshopGroup } from "./workshops.ts"; | ||
import { parseWorkshopsYAML } from "./workshops.ts"; | ||
import { parseWorkshopGroup } from "./workshops.ts"; | ||
|
||
function trimExtension(path: string): string { | ||
return path.replace(/\.[^.]*$/, ""); | ||
} | ||
|
||
export async function* walkWorkshopsYAML(glob: string | URL) { | ||
export async function* walkWorkshopGroups(glob: string | URL) { | ||
for await (const stat of expandGlob(glob)) { | ||
const content = await Deno.readTextFile(stat.path); | ||
const groupID = trimExtension(stat.name); | ||
const workshops = parseWorkshopsYAML(content); | ||
const group: WorkshopGroup = { groupID, workshops }; | ||
const group = parseWorkshopGroup(stat.name, content); | ||
yield group; | ||
} | ||
} |
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
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
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,20 @@ | ||
--- | ||
workshops: | ||
- title: "Spring 2024 Open Source Software Kickoff" | ||
description: "Launch into the vast expanse of collaborative development, exploring new frontiers and innovating together!" | ||
timestamp: "2024-02-08" | ||
url: "https://acmcsuf.com/spring24-oss-kickoff" | ||
- title: "Making First Contributions" | ||
description: "Make your first open source contribution and learn the basics of Git and GitHub." | ||
timestamp: "2024-02-15" | ||
url: "https://acmcsuf.com/1st-slides" | ||
- title: "How to win FullyHacks" | ||
description: "How to win a hackathon, and how to win FullyHacks in particular." | ||
timestamp: "2024-02-22" | ||
url: "https://acmcsuf.com/winning-fh" | ||
--- | ||
|
||
# Spring 2024 workshops | ||
|
||
Workshops are a great way to learn new skills and meet new people. Here are the | ||
workshops we have hosted during the Spring 2024 semester. |
This file was deleted.
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,48 @@ | ||
--- | ||
workshops: | ||
- title: "Intro to Deno Kv" | ||
description: "Learn how to use Deno Kv in celebration of the Deno Kv Hackathon." | ||
timestamp: "2023-06-14" | ||
url: "https://acmcsuf.com/denokv" | ||
- title: "Intro to design documents" | ||
description: "Learn how to write a design document and why it's important." | ||
timestamp: "2023-06-23" | ||
url: "https://acmcsuf.com/dd" | ||
- title: "Intro to HTTP APIs" | ||
description: "Learn how to create and use HTTP APIs." | ||
timestamp: "2023-06-30" | ||
url: "https://acmcsuf.com/api-workshop" | ||
- title: "Intro to acmcsuf.com" | ||
description: "Learn how to contribute to the ACM CSUF website." | ||
timestamp: "2023-07-07" | ||
url: "https://acmcsuf.com/5.1-rampup" | ||
- title: "Intro to JavaScript" | ||
description: "Learn the basics of JavaScript and how to use it in web development." | ||
timestamp: "2023-07-14" | ||
url: "https://acmcsuf.com/js-workshop" | ||
- title: "Intro to TypeScript" | ||
description: "Learn the basics of TypeScript and how to use it in web development." | ||
timestamp: "2023-07-21" | ||
url: "https://acmcsuf.com/ts-workshop" | ||
- title: "Intro to Go" | ||
description: "Learn the basics of Go and how to use it in web development." | ||
timestamp: "2023-07-28" | ||
url: "https://acmcsuf.com/go-workshop" | ||
- title: "Intro to Python" | ||
description: "Learn the basics of Python and how to use it in web development." | ||
timestamp: "2023-08-04" | ||
url: "https://github.com/acmcsufoss/py-workshop#readme" | ||
- title: "How to start an open source project" | ||
description: "Learn how to start an open source project and how to maintain it." | ||
timestamp: "2023-08-11" | ||
url: "https://acmcsuf.com/start-oss" | ||
- title: "API Design" | ||
description: "Learn how to design an API and how to use it in web development." | ||
timestamp: "2023-08-18" | ||
url: "https://acmcsuf.com/api-design-workshop" | ||
--- | ||
|
||
# Hot Open Source Summer 2023 Workshops | ||
|
||
Here are the workshops we have hosted during the | ||
[Hot Open Source Summer 2023 hackathon](https://acmcsuf.com/hot). |
This file was deleted.
Oops, something went wrong.