User:Tommi/T2 Assessment/Metassessment

From XPUB & Lens-Based wiki
< User:Tommi‎ | T2 Assessment
Revision as of 17:13, 29 March 2026 by Tommi (talk | contribs) (Add Alejandro and fix headers’ level)

The making of my T2 assessment is also a meta-assessment (or metassessment of simplicity), because of a combination of two factors.

  • In a way, it is how I assess myself. By preparing the assessment presentation I am reflecting on what I am proud of and where I failed, inevitably evaluating myself.
  • Most importantly, it is about the making of the assessment

Marina the scale

As I kept thinking about the way to best present my reflections over the first two trimester of XPUB, I was looking for a device to represent a constant, precarious, dynamic equilibrium, or better juggling with many different thoughts crowding my head. I started looking for an old-style scale, also in honor of my grandma’s passion for antiques.

I started telling this to all my classmates. In a quiet Saturday afternoon, during a walk with Lea, she brought me to De Majum, an adorable thrift shop in Delfshaven. Not five minutes since I was inside the shop, I found exactly what I needed.

A photo of a antique red scale in Lea’s hands.

I sent Nonna Gorix this picture, and I called her to ask her the maximum price she would put on this scale. She told me not to pay more than 20€, and that I could negotiate the price down to 15€. Eventually, I managed to buy it for 10€, especially because it did not have any plates. Victory!

I cleaned it and I added some pieces of wood at the bottom to calibrate it, as it was totally off-balance.

A photo of Tommi and their godmother Marina during their confirmation celebration.

The only step left was to find a name for it. I named it Marina as my godmother and former scout chief, as historically she has been my reference point for pondering decisions and finding the right equilibrium, both spiritually or not.

Making the puzzle

TODO!

Meta-procrastination

By documenting this process and writing this very page, I am meta-procrastinating.

Meta-procrastination is to procrastinate by exploring and reflecting on the act of procrastination itself. It is the highest and most poignant form of procrastination, as it is potentially endless, and it self-reproduces.


Alejandro

Alejandro is a Bash script made to quickly and simply parse a Wiki page in a plain standalone HTML, and add some styling to it.

Actually, not particularly quickly: I planned to spend a few minutes working on it, but I ended up procrastinating and refining it for several hours.

Naming

This tool is named Alejandro because it is the title of the song by Lady Gaga I was listening to while I was creating it.



Code

#!/bin/bash

PAGE_TITLE=User:Tommi/T2_Assessment
TITLE='Tommi’s T2 Assessment'
BASE_URL=https://pzwiki.wdka.nl
WIKI_API=$BASE_URL/mw-mediadesign/index.php
PAGE_URL="$WIKI_API?action=render&title=$PAGE_TITLE"
OUTPUT=~/public_html/t2.html
STYLE="@import url('$WIKI_API?action=raw&ctype=text/css&title=User:Tommi/T2_Assessment/style.css');"
PAGE=`curl --location $PAGE_URL` # Using curl is better than wget to store the content in stdout. Nevertheless, absolute links to resources must be transformed at a later time.

# The following is a very basic HTML template from which data is read.
CONTENT="<!DOCTYPE HTML><html lang=en><head><title>$TITLE</title><meta charset=UTF-8><style>$STYLE</style></head><body><main><h1>$TITLE</h1><article>$PAGE</article></main></body></html>"

# Saving the HTML content parsed by MediaWiki to a local output file
echo "$CONTENT" > "$OUTPUT"

# This regular expression goes through the output file and prepends the wiki’s BASE_URL to all absolute links
sed -E --in-place 's/("| )\/mw-mediadesign/\1https:\/\/pzwiki.wdka.nl\/mw-mediadesign/g' "$OUTPUT"

Improvements

  • Some variables should be passed as arguments, instead of hardcoded
  • Some variables should be stored as environment variables, instead of hardcoded
  • The HTML content template could be read from a template file