Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
colevandersWands committed Oct 26, 2023
0 parents commit f841512
Show file tree
Hide file tree
Showing 43 changed files with 21,231 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish.yaml
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.next
out
node_modules
plann.txt
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
denepo.js.org
21 changes: 21 additions & 0 deletions LICENSE
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.
5 changes: 5 additions & 0 deletions README.md
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)
5 changes: 5 additions & 0 deletions next-env.d.ts
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.
17 changes: 17 additions & 0 deletions next.config.js
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()
);
33 changes: 33 additions & 0 deletions package.json
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"
}
}
11 changes: 11 additions & 0 deletions pages/_meta.json
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
}
}
17 changes: 17 additions & 0 deletions pages/awesome-teaching.mdx
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)!
3 changes: 3 additions & 0 deletions pages/curriculum-design.mdx
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.
23 changes: 23 additions & 0 deletions pages/curriculum-design/_meta.json
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"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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 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 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 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.
Loading

0 comments on commit f841512

Please sign in to comment.