-
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.
Merge pull request #22 from SilasBerger/feature/shorthands-content-an…
…d-more Fix sync issue, implement special links plugin and usages, add `SeeCodeBadge`, add Micro:bit intro content
- Loading branch information
Showing
52 changed files
with
545 additions
and
167 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
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,8 +1,29 @@ | ||
import { YouTubeVideo } from "@site/src/components/YouTubeVideo/YouTubeVideo" | ||
--- | ||
sidebar_label: YouTube Video | ||
--- | ||
|
||
# YouTube Video | ||
Videos can be embedded at full width... | ||
<YouTubeVideo videoId="bEWP7llgGec" /> | ||
import YouTubeVideo from "@site/src/components/YouTubeVideo" | ||
|
||
# YouTube Video [@SeeCode](https://github.com/SilasBerger/teaching-website/blob/main/content/material/Components-Gallery/03-YouTube-Video.mdx) | ||
Videos can be embedded at full width: | ||
[@YouTubeVideo](https://youtu.be/bEWP7llgGec) | ||
|
||
...or scaled down: | ||
<YouTubeVideo videoId="3yAkX2k_DGs" width="60%" /> | ||
<YouTubeVideo videoUrl="https://youtu.be/3yAkX2k_DGs" width="60%" /> | ||
|
||
*** | ||
|
||
:::info Good to know | ||
This will put the plain text line right above the video player: | ||
```markdown | ||
Videos can be embedded at full width... | ||
[@YouTubeVideo](https://youtu.be/bEWP7llgGec) | ||
``` | ||
|
||
...while this will result in a paragraph spacing between the text and the video player: | ||
```markdown | ||
Videos can be embedded at full width... | ||
|
||
[@YouTubeVideo](https://youtu.be/bEWP7llgGec) | ||
``` | ||
::: |
15 changes: 8 additions & 7 deletions
15
...ry/04-Hero-Image-and-Source-Reference.mdx → ...rial/Components-Gallery/04-Hero-Image.mdx
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,13 +1,14 @@ | ||
import {HeroContainer} from "@site/src/components/HeroContainer/HeroContainer"; | ||
import {Caption} from "@site/src/components/Caption/Caption"; | ||
--- | ||
sidebar_label: Hero Image | ||
--- | ||
|
||
# Hero Image | ||
<HeroContainer> | ||
# Hero Image [@SeeCode](https://github.com/SilasBerger/teaching-website/blob/main/content/material/Components-Gallery/04-Hero-Image-and-Source-Reference.mdx) | ||
:::Hero | ||
![Hero](img/hero.jpeg) | ||
</HeroContainer> | ||
<Caption> | ||
::: | ||
:::Caption | ||
Photo by [Alex Gruber](https://unsplash.com/@alex_gruber?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash) | ||
on [Unsplash](https://unsplash.com/photos/man-in-black-jacket-and-black-pants-standing-on-rock-formation-looking-at-the-mountains-during-ZOCb5G9tA7A?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash). | ||
</Caption> | ||
::: | ||
|
||
🎶 We can be heroes, just for one day. |
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
6 changes: 5 additions & 1 deletion
6
content/material/Components-Gallery/08-Material-Design-Icons.mdx
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,5 +1,5 @@ | ||
import {TileGrid, Layout} from "@site/src/components/tiles/TileGrid/TileGrid"; | ||
import {Tile} from "@site/src/components/tiles/Tile/Tile"; | ||
import TileGrid, {Layout} from "@site/src/components/tiles/TileGrid"; | ||
import Tile from "@site/src/components/tiles/Tile"; | ||
|
||
# Components | ||
A gallery and development sandbox for React components. |
4 changes: 0 additions & 4 deletions
4
content/material/Microbit/01-Projekte-Python.[gym,sek]/01-Health-Points.mdx
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
content/material/Microbit/01-Projekte-Python.[gym,sek]/02-Jukebox.mdx
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
content/material/Microbit/01-Projekte-Python.[gym,sek]/03-Maqueen-RC-Car.mdx
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,38 @@ | ||
--- | ||
sidebar_label: Micro:bit | ||
--- | ||
|
||
# Der Micro:bit | ||
:::Hero | ||
![Micro:bit in einer Hand](./img/microbit_in_hand.jpeg) | ||
::: | ||
:::Caption | ||
Der Micro:bit: Ein winziger Computer, der sogar in eine Hand passt! | ||
::: | ||
|
||
Dieser Artikel gibt Ihnen einen ersten Einblick in die faszinierende Welt des _Micro:bit_. Mit diesem winzig kleinen | ||
Computer können Sie Ihre Python-Programmierkenntnisse auf eine spannende neue Plattform übertragen und ganz | ||
unkompliziert in die Welt der Hardware-Programmierung und Robotik eintauchen! | ||
|
||
## Was ist der Micro:bit? | ||
Der Micro:bit ist eine kompakter _Einplatinencomputer_ - er verfügt also weder über einen Bildschirm, noch über eine | ||
Maus oder eine Tastatur. Sie verwenden den Micro:bit, indem Sie auf ihrem Laptop ein Programm dafür entwickeln, welches | ||
Sie anschliessend via USB-Kabel auf das Gerät übertragen. | ||
|
||
:::insight Wozu wurde dieser Computer entwickelt? | ||
Der Micro:bit wurde von der BBC (_British Broadcasting Corporation_) entwickelt, damit Menschen von jung bis alt die | ||
Grundlagen der Programmierung und der Robotik auf spannende, kreative Weise entdecken können. | ||
::: | ||
|
||
## Was sind seine Anwendungsmöglichkeiten? | ||
Obwohl der Micro:bit klein ist, bietet er vielfältige Einsatzmöglichkeiten als Plattform. Hier sind einige Dinge, die | ||
Sie mit diesem kleinen Kraftpaket realisieren können: | ||
- **Licht und Farben:** Nutzen Sie die eingebauten LEDs, um Muster, Animationen und sogar Nachrichten zu erstellen. | ||
Tauchen Sie ein in die Welt der visuellen Kreationen! | ||
- **Bewegung und Beschleunigung:** Verwenden Sie die integrierten Sensoren, um Bewegungen zu erfassen und Ihre eigenen | ||
Bewegungssteuerungen für den Micro:bit als Plattform zu programmieren. Der Micro:bit setzt Ihre Bewegungen in | ||
aufregende Aktionen um! | ||
- **Musik und Töne:** Ja, Sie können sogar Musik mit dem Micro:bit als Plattform kreieren! Programmieren Sie eigene | ||
Melodien und entdecken Sie, wie Sie Klänge erzeugen können. | ||
- **Spiele programmieren:** Entwickeln Sie Ihre eigenen Spiele! Der Micro:bit als Plattform erlaubt es Ihnen, Ihrer | ||
Fantasie freien Lauf zu lassen und eigene interaktive Spiele zu programmieren. |
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,39 @@ | ||
--- | ||
sidebar_label: Programmierem mit Micro:bit | ||
--- | ||
# Der Micro:bit: Dein Einstieg in die spannende Welt der Programmierung! | ||
:::Hero | ||
![Micro:bit in einer Hand](./img/microbit_in_hand.jpeg) | ||
::: | ||
:::Caption | ||
Der Micro:bit Microcontroller ist so klein, dass er gut in eine Hand passt! | ||
::: | ||
|
||
Dieser Artikel gibt dir einen ersten Einblick in die faszinierende Welt des _Micro:bit_, eines kleinen Computers, der | ||
dich unkompliziert und kreativ an die Grundlagen der Programmierung heranführt. Selbst wenn du bisher keine Erfahrung | ||
mit dem Programmieren hast und nur grundlegende ICT-Kenntnisse besitzt, kannst du ganz entspannt sein – der Micro:bit | ||
ist der ideale Begleiter für deinen ersten Ausflug in die Welt _Codens_. | ||
|
||
## Was ist der Micro:bit? | ||
Der Micro:bit ist kein gewöhnlicher Computer, wie du ihn in deinem Alltag findet. Er hat weder Maus, noch Bildschirm | ||
oder Tastatur. Er ist so klein, dass du ihn vielleicht sogar in deiner Faust verstecken kannst! Der Micro:bit ist | ||
nämlich winziger sogenannter _Einplatinencomputer_. | ||
|
||
:::insight Wozu wurde dieser Computer entwickelt? | ||
Der Micro:bit wurde von der BBC (_British Broadcasting Corporation_) entwickelt, damit Menschen von jung bis alt die | ||
Grundlagen der Programmierung und der Robotik auf spannende, kreative Weise entdecken können. | ||
::: | ||
|
||
## Was kann man damit anstellen? | ||
Der Micro:bit mag klein erscheinen, aber seine Möglichkeiten sind riesig! Hier sind nur einige spannende Dinge, die du | ||
mit diesem kleinen Kraftpaket machen kannst: | ||
- **Licht und Farben:** Der Micro:bit verfügt über eingebaute LEDs, mit denen du Muster, Animationen und sogar | ||
Nachrichten erstellen kannst. Macht deine eigenen leuchtenden Kreationen! | ||
- **Bewegung und Beschleunigung:** Mit den integrierten Sensoren kannst du Bewegungen erkennen und deine eigenen | ||
Bewegungssteuerungen programmieren. Der Micro:bit wird deine Bewegungen in aufregende Aktionen umsetzen! | ||
- **Musik und Töne:** Ja, du kannst mit dem Micro:bit sogar Musik machen! Programmiert deine eigenen Melodien und | ||
entdecke, wie du Klänge erzeugen kannst. | ||
- **Spiele programmieren:** Dein erstes eigenes Spiel erstellen? Mit dem Micro:bit ist das problemlos möglich! Lass | ||
deiner Fantasie freien Lauf und programmiere deine eigenen interaktiven Spiele. | ||
|
||
|
6 changes: 6 additions & 0 deletions
6
content/material/Microbit/Projektideen-Python/01-Health-Points.mdx
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,6 @@ | ||
--- | ||
sidebar_label: Health Points | ||
--- | ||
|
||
# Health Points [@SeeCode](https://github.com/SilasBerger/microbit/tree/main/projects/health-points) | ||
[@YouTubeVideo](https://youtu.be/XqjzFh4eGzI) |
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,6 @@ | ||
--- | ||
sidebar_label: Jukebox | ||
--- | ||
|
||
# Jukebox [@SeeCode](https://github.com/SilasBerger/microbit/blob/main/projects/jukebox.py) | ||
[@YouTubeVideo](https://youtu.be/3yAkX2k_DGs) |
6 changes: 6 additions & 0 deletions
6
content/material/Microbit/Projektideen-Python/03-Maqueen-RC-Car.mdx
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,6 @@ | ||
--- | ||
sidebar_label: Maqueen RC Car | ||
--- | ||
|
||
# Maqueen RC Car [@SeeCode](https://github.com/SilasBerger/microbit/tree/main/projects/maqueen-rc-car) | ||
[@YouTubeVideo](https://youtu.be/bEWP7llgGec) |
2 changes: 1 addition & 1 deletion
2
...Projekte-Python.[gym,sek]/index.[gym].mdx → ...robit/Projektideen-Python/index.[gym].mdx
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,5 +1,5 @@ | ||
--- | ||
sidebar_label: Projekte mit Python | ||
sidebar_label: Projektideen | ||
--- | ||
|
||
# Micro:bit-Projekte mit Python | ||
|
2 changes: 1 addition & 1 deletion
2
...Projekte-Python.[gym,sek]/index.[sek].mdx → ...robit/Projektideen-Python/index.[sek].mdx
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
11 changes: 4 additions & 7 deletions
11
content/material/Netzwerke/01-World-Wide-Web/03-Anfaenge-des-Web.mdx
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,11 +1,8 @@ | ||
import {HeroContainer} from "@site/src/components/HeroContainer/HeroContainer"; | ||
import {Caption} from "@site/src/components/Caption/Caption"; | ||
|
||
# World Wide Web | ||
<HeroContainer> | ||
:::Hero | ||
![World Wide Web rund um Wikipedia](./img/www-around-wikipedia.png) | ||
</HeroContainer> | ||
<Caption> | ||
:::Hero | ||
:::Caption | ||
Das World Wide Web rund um Wikipedia. Quelle: | ||
[Chris 73, Wikipedia](https://de.wikipedia.org/wiki/World_Wide_Web#/media/Datei:WorldWideWebAroundWikipedia.png). | ||
</Caption> | ||
::: |
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
Oops, something went wrong.