-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit f841512
Showing
43 changed files
with
21,231 additions
and
0 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,34 @@ | ||
# https://github.com/gregrickaby/nextjs-github-pages | ||
|
||
name: Publish to GH Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
deployment: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "lts/*" | ||
cache: "npm" | ||
|
||
- name: Pre-Deploy | ||
run: | | ||
yarn install | ||
yarn pre-deploy | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | ||
publish_dir: out |
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,4 @@ | ||
.next | ||
out | ||
node_modules | ||
plann.txt |
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 @@ | ||
denepo.js.org |
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 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 DeNepo | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,5 @@ | ||
# De Nepo Home Page | ||
|
||
[denepo.js.org](https://denepo.js.org) | ||
|
||
> built with [Nextra](https://nextra.site) |
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,5 @@ | ||
/// <reference types="next" /> | ||
/// <reference types="next/image-types/global" /> | ||
|
||
// NOTE: This file should not be edited | ||
// see https://nextjs.org/docs/basic-features/typescript for more information. |
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,17 @@ | ||
const isProd = process.env.NODE_ENV === "production"; | ||
|
||
const withNextra = require("nextra")({ | ||
theme: "nextra-theme-docs", | ||
themeConfig: "./theme.config.tsx", | ||
}); | ||
|
||
module.exports = Object.assign( | ||
{ | ||
assetPrefix: isProd ? "/denepo.github.io/" : "", | ||
images: { | ||
unoptimized: true, | ||
}, | ||
// output: "export", | ||
}, | ||
withNextra() | ||
); |
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,33 @@ | ||
{ | ||
"name": "denepo.github.io", | ||
"version": "0.0.1", | ||
"description": "DeNepo home page", | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"export": "next export", | ||
"pre-deploy": "yarn build && yarn export && cp CNAME ./out/CNAME" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/shuding/nextra-docs-template.git" | ||
}, | ||
"author": "DeNepo", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/denepo/denepo.github.io" | ||
}, | ||
"homepage": "https://github.com/denepo/denepo.github.io", | ||
"dependencies": { | ||
"next": "^13.0.6", | ||
"nextra": "^2.7.1", | ||
"nextra-theme-docs": "^2.7.1", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "18.11.10", | ||
"typescript": "^4.9.3" | ||
} | ||
} |
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 @@ | ||
{ | ||
"index": "Hello", | ||
"study-lenses": "Study Lenses", | ||
"curriculum-design": "Curriculum Design", | ||
"lesson-materials": { "display": "hidden" }, | ||
"awesome-teaching": "Awesome Teaching", | ||
"De Nepo on GitHub": { | ||
"href": "https://github.com/DeNepo", | ||
"newWindow": true | ||
} | ||
} |
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,17 @@ | ||
- **The Rules**, from [Teaching Tech Together](https://teachtogether.tech/): | ||
1. Be kind: all else is details. | ||
2. Remember that you are not your learners… | ||
3. …that most people would rather fail than change… | ||
4. …and that ninety percent of magic consists of knowing one extra thing. | ||
5. Never teach alone. | ||
6. Never hesitate to sacrifice truth for clarity. | ||
7. Make every mistake a lesson. | ||
8. Remember that no lesson survives first contact with learners… | ||
9. …that every lesson is too short for the teacher and too long for the learner… | ||
10. …and that nobody will be more excited about the lesson than you are. | ||
- [Teach Computing . Org](https://teachcomputing.org/pedagogy) | ||
- [Pedagogy Quick Reads](https://blog.teachcomputing.org/tag/quickread/) | ||
- From [Hello World](https://helloworld.raspberrypi.org/) @raspberrypi | ||
- [The Big Book of Computing Pedagogy](https://helloworld.raspberrypi.org/books/big_book_of_pedagogy/) | ||
- [The Big Book of Computing Content](https://helloworld.raspberrypi.org/books/big_book_of_computing_content) | ||
- [Micromaterials](https://github.com/lpmi-13/micromaterials-list)! |
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,3 @@ | ||
This is a collection of curriculum design principles that I've invented (or discovered?) since I started teaching programming. Some of them I've used for many years and have been the foundation of my teaching, others are new and I hope to use soon. | ||
|
||
Inspired by the [Pedagogy Quick Reads](https://blog.teachcomputing.org/tag/quickread/), I've tried to introduce each of these design principles as something simple and actionable. To learn more about the ideas behind these design princples, you can find them [in my notes](https://evancole.be/notes). The notes are less clear than these pages but will have more detail, links to relevant literature, open questions, and all sorts of linked ideas. |
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 @@ | ||
{ | ||
"big-picture-diagrams": { | ||
"display": "hidden" | ||
}, | ||
"connections-are-concepts": { | ||
"display": "hidden" | ||
}, | ||
"spiderweb-curriculum": { | ||
"display": "hidden" | ||
}, | ||
"spiral-curriculum": { | ||
"display": "hidden" | ||
}, | ||
|
||
"prismm": "PRISMM", | ||
|
||
"planning-documents": { | ||
"display": "hidden" | ||
}, | ||
"defining-task-classes": { | ||
"display": "hidden" | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
pages/curriculum-design/big-picture-assets/1-1-collaborative-writing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions
16
pages/curriculum-design/big-picture-assets/1-2-collaborative-coding.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions
16
pages/curriculum-design/big-picture-assets/a-program.excalidraw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,965 changes: 1,965 additions & 0 deletions
1,965
pages/curriculum-design/big-picture-assets/e-0-collaborative-writing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,343 changes: 2,343 additions & 0 deletions
2,343
pages/curriculum-design/big-picture-assets/ea-wd-1-html.excalidraw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,951 changes: 2,951 additions & 0 deletions
2,951
pages/curriculum-design/big-picture-assets/ea-wd-2-users.excalidraw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,967 changes: 2,967 additions & 0 deletions
2,967
pages/curriculum-design/big-picture-assets/ea-wd-3-data.excalidraw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.