Skip to content

Commit

Permalink
Updated JamBoard
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoss committed Nov 24, 2023
1 parent 423da3c commit aa2748b
Show file tree
Hide file tree
Showing 17 changed files with 2,695 additions and 8 deletions.
4 changes: 2 additions & 2 deletions _lehrveranstaltungen/020-retro.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
titel: Keep, Drop, Try
titel: Keep, Drop, Try, Reflect
kuerzel: w-lmw
verantwortlich: cn
typ: retro
Expand All @@ -13,4 +13,4 @@ info: |
Es gibt wenig, was man nicht noch besser machen kann. In dieser Retro zum Kurs geht es darum, unbewusste Qualitäten und Defizite des Kurses, aber auch des eigenen Handelns bewusst zu machen, um in der nächsten Iteration oder im nächsten Kurs darauf reagieren zu können.
---

Wir nutzen für die Retro die Keep, Drop, Try Methode. Dazu habe ich ein [Jamboard](https://jamboard.google.com/d/1VhC-8YwG2frbUR5jxj_Ms0DtXrPBFyFx8F6UI4-94Qo/edit?usp=sharing) erstellt, dass Sie gerne schon füllen dürfen.
Wir nutzen für die Retro die Keep, Drop, Try Methode. Dazu habe ich ein [Jamboard](https://jamboard.google.com/d/1p7Htciz0f6S0zdfdyrxt2yBOiAUW6DZQVGyJSuL76qg/edit?usp=sharing) erstellt, dass Sie gerne schon füllen dürfen.
4 changes: 2 additions & 2 deletions _site/building-blocks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ <h3 class="card-header-title">Hinweise zur Prüfung // Präsentieren im Design</
<div class="is-tab-content card is-retro is-overview-item is-freiwillig" id="retro">

<div class="card-header">
<h3 class="card-header-title">Keep, Drop, Try</h3>
<h3 class="card-header-title">Keep, Drop, Try, Reflect</h3>
</div>

<div class="card-content">
Expand Down Expand Up @@ -1001,7 +1001,7 @@ <h3 class="card-header-title">Keep, Drop, Try</h3>
</div>
</div>
<div class="card-footer">
<p><a class="card-footer-item" href="/generative-gestaltung/lehrveranstaltungen/020-retro/">mehr zu Keep, Drop, Try</a></p>
<p><a class="card-footer-item" href="/generative-gestaltung/lehrveranstaltungen/020-retro/">mehr zu Keep, Drop, Try, Reflect</a></p>
</div>
</div>

Expand Down
1 change: 1 addition & 0 deletions _site/code/shared/libs/dat.gui.min.js

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions _site/code/shared/libs/gg-dep-bundle.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions _site/code/shared/libs/opentype.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions _site/code/shared/libs/opentype.min.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions _site/code/shared/libs/p5.dom.min.js

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions _site/code/shared/libs/p5.gui.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,19 @@
}
qs.bindParams(object, params);
};

this.update = function (key, value) {
if (key === 'undefined' || !value === 'undefined' ) { console.error("No Parameters defined. Key and value required: obj.update(key, value)"); return false; }
try {
qs.setValue(key, value);
} catch (e) {
if (e instanceof TypeError) {
console.error(key + " is not a known GUI Element.");
} else {
logMyErrors(e);
}
}
}

// noLoop() to call draw every time the gui changes when we are not looping
this.noLoop = function() {
Expand Down
1 change: 1 addition & 0 deletions _site/code/shared/libs/p5.gui.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions _site/code/shared/libs/p5.min.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions _site/code/shared/libs/p5.sound.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions _site/code/shared/libs/p5.sound.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit aa2748b

Please sign in to comment.