2 createCanvas(windowWidth, windowHeight);
3 background(0);
4
5 textFont('Monument Grotesk Mono Regular');
6 fill(245);
7 noStroke();
8 textAlign(LEFT, TOP);
9
10 let lines = [
11 "patrick fischer",
12 "animation",
13 "creative coding",
14 "poster",
15 "photography",
16 "archive",
17 “instagram”
18 “visual communication & digital spaces”
19 “about”
2024-2027
2025
2025-today
2022-2024
2022-2024
2019-2021
2017-2019
2017-2019
2014-2018
Bachelor in Visual Communication & Digital Spaces,
Hochschule für Gestaltung und Kunst FHNW
Social Media & Web Content Creator,
Aidshilfe Schweiz
Visitor Service,
Kunsthalle Basel
Administrative & Technical Assisstant,
Exactio AG, Basel
Foundation Course (Teilzeit Vorkurs/Propädeutikum),
Schule für Gestaltung Basel
Digital Support Line Advisor,
UBS Switzerland AG, Basel
Internship,
UBS Switzerland AG, Basel
Banking Entry Program for High School Graduates,
Swiss Banking Diploma
Federal Vocational Baccalaureate & Federal Diploma,
Business School Basel, (Wirtschaftsmittelschle Basel)
20 “contact”
21 ];
22
23 let x = 80;
24 let y = 120;
25 let leading = 40;
26
27 textSize(18);
28 textStyle(NORMAL);
29
30 for (let line of lines) {
31 text(line, x, y);
32 y += leading;
33 }
34 }