master
km0 11 months ago
parent b66df12470
commit 66bdaf9b5f

@ -1,6 +1,6 @@
# Hello worlding # Hello worlding
In this presentation i will look at the work made across the 2 years to reflect on how it changed my understanding of programming and code documentation. In this presentation i will look at the work made across the 2 years & __how it changed my understanding of programming and code documentation.__
Code documentation here is intended as a broad set of practices: comments in code, readme files, tutorials, guides, references etc., but also moments of collective learning, workshops, pair programming and collaborative versioning. Code documentation here is intended as a broad set of practices: comments in code, readme files, tutorials, guides, references etc., but also moments of collective learning, workshops, pair programming and collaborative versioning.
@ -31,11 +31,9 @@ The institutional required list of things done during these two years is left in
- 1 important thing in common - 1 important thing in common
- (soup) - (soup)
<br>
__how to program together with different programming knowledge__ __how to program together with different programming knowledge__
<br>
- first months: - first months:
- incredible - incredible
@ -45,14 +43,20 @@ __how to program together with different programming knowledge__
- only timid and minimal modification in the homepage - only timid and minimal modification in the homepage
- lot of different prototypes with my classmates! - lot of different prototypes with my classmates!
- cute to look back and see the level where we started - cute to look back and see the level where we started
- (see tech questions in soup-gen, cringe & funny & empowering)
<br> <br>
- some prototypes found their way through the two years :) ![screen of soup-gen](https://hub.xpub.nl/soupboat/~kamo/static/img/recap/soup-gen-2.jpg)
- (see text weaving, from si16 to the screenless office workshop to jian final project) _soup generator aka our first prototype_
![screen of soup-gen with tech questions](https://hub.xpub.nl/soupboat/~kamo/static/img/soup.png)
_doubts for the soup gen_
<br>
- some prototypes found their way through the two years
- some others no! but have been documented! so wont be forgotten - some others no! but have been documented! so wont be forgotten
- first things to take home: started documenting things - first things to take home: __started documenting things__
- the famous documentation workout that was one of the objective to achieve in these two years :) - the famous documentation workout that was one of the objective to achieve in these two years :)
<br> <br>

@ -5,7 +5,20 @@
<title>my 2 cents about code documentation</title> <title>my 2 cents about code documentation</title>
<style> <style>
@font-face {
font-family: "Unilegant";
src: url("https://hub.xpub.nl/soupboat/docs/font/Unilegant.woff2")
format("woff2"),
url("https://hub.xpub.nl/soupboat/docs/font/Unilegant.woff") format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
body { body {
background-color: dodgerblue; background-color: dodgerblue;
@ -56,20 +69,24 @@
margin-top: 0.4em; margin-top: 0.4em;
} }
h1, h2, h3 {
font-family: "Unilegant";
text-decoration: underline;
}
.contents { .contents {
position: relative; position: relative;
z-index: 50; z-index: 50;
margin: 0 auto; margin: 0 auto;
padding-top: 32px; padding-top: 32px;
font-size: 42px; font-size: 48px;
max-width: 60ch;
filter: blur(10px); filter: blur(10px);
max-width: 50ch;
transform: translate(100px); transform: translate(100px);
opacity: 0.5; opacity: 0.5;
line-height: 1.6; line-height: 1.6;
z-index: 999; z-index: 999;
transition: all 0.6s ease-out, opacity 2s ease-out 0.4s; transition: all 0.6s ease-out, opacity 2s ease-out 0.4s;
} }
@ -82,6 +99,16 @@
transform: translate(0); transform: translate(0);
} }
.contents ul {
list-style-type: '꩜ ';
}
.contents li+li {
margin-top: 16px;
}
a { a {
color: white; color: white;
} }
@ -93,16 +120,6 @@
} }
blockquote:after {
content: '𓆏';
text-align: center;
display: flex;
justify-content: center;
margin-top: 32px;
font-weight: bold;
color: white;
}
strong { strong {
background-color: white; background-color: white;
color: black; color: black;

Loading…
Cancel
Save