summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2023-01-16 20:24:35 +0800
committerFrederick Yin <fkfd@fkfd.me>2023-01-16 20:24:35 +0800
commit632adb669ba50343f017f06961e2c2b5c989ec2e (patch)
treef6692853d5e6bfd8158326344b7c9a91350f51cb
parent2d3b4add08f850071ba8073dca7a5ba708be7de1 (diff)
ta/vg151_funny_shit, ta/index: end of semester
-rw-r--r--docs/ta/img/vg151_funny_shit/deleted_quiz.pngbin0 -> 27268 bytes
-rw-r--r--docs/ta/img/vg151_funny_shit/minamike.pngbin0 -> 712877 bytes
-rw-r--r--docs/ta/img/vg151_funny_shit/p2_code.pngbin0 -> 197649 bytes
-rw-r--r--docs/ta/img/vg151_funny_shit/target_os_iphone.pngbin0 -> 19773 bytes
-rw-r--r--docs/ta/index.md4
-rw-r--r--docs/ta/vg151_funny_shit.md68
6 files changed, 72 insertions, 0 deletions
diff --git a/docs/ta/img/vg151_funny_shit/deleted_quiz.png b/docs/ta/img/vg151_funny_shit/deleted_quiz.png
new file mode 100644
index 0000000..6a9e475
--- /dev/null
+++ b/docs/ta/img/vg151_funny_shit/deleted_quiz.png
Binary files differ
diff --git a/docs/ta/img/vg151_funny_shit/minamike.png b/docs/ta/img/vg151_funny_shit/minamike.png
new file mode 100644
index 0000000..60e7049
--- /dev/null
+++ b/docs/ta/img/vg151_funny_shit/minamike.png
Binary files differ
diff --git a/docs/ta/img/vg151_funny_shit/p2_code.png b/docs/ta/img/vg151_funny_shit/p2_code.png
new file mode 100644
index 0000000..505ef52
--- /dev/null
+++ b/docs/ta/img/vg151_funny_shit/p2_code.png
Binary files differ
diff --git a/docs/ta/img/vg151_funny_shit/target_os_iphone.png b/docs/ta/img/vg151_funny_shit/target_os_iphone.png
new file mode 100644
index 0000000..9a017c6
--- /dev/null
+++ b/docs/ta/img/vg151_funny_shit/target_os_iphone.png
Binary files differ
diff --git a/docs/ta/index.md b/docs/ta/index.md
index 102f1c8..b718b0c 100644
--- a/docs/ta/index.md
+++ b/docs/ta/index.md
@@ -31,8 +31,12 @@ Update: we switched to "hybrid mode" in late October, and then offline
only (save for international students). I went to VG151 classroom twice,
it was pretty populated.
+Update: whoops, back to online.
+
Anyway, enjoy my compilation of blogposts on life being a TA:
- [Funny shit](vg151_funny_shit)
- [Lab 1](vg151_lab1)
- [Exam 1](vg151_e1)
+
+VG151 came to an end in December 2022.
diff --git a/docs/ta/vg151_funny_shit.md b/docs/ta/vg151_funny_shit.md
index c9c3fba..f2d510a 100644
--- a/docs/ta/vg151_funny_shit.md
+++ b/docs/ta/vg151_funny_shit.md
@@ -215,3 +215,71 @@ I did. Context: project 2 is an Uno spinoff but with regular poker cards.
I checked their code. First thing I saw was `struct Puke`. I asked them
what it was. It was pinyin transliteration for "Poker". I tried to explain
"Puke" means "to vomit" in English. They didn't care. 🤷
+
+## 2022-11-19, some conference room
+
+We were about to deliver a recitation class for the midterm, and my
+colleague put on Minami-ke music (in case you didn't know, the three
+sisters from [Minami-ke](https://en.wikipedia.org/wiki/Minami-ke) are
+recurring characters in the VG151 lore.
+
+![Playlist titled "Minami-ke OP/ED"](img/vg151_funny_shit/minamike.png)
+
+## 2022-12-15, Mattermost
+
+We were about to hold the final exam the next day, and since it was
+online, we decided that Canvas quizzes are the way to go. I clicked into
+one they were working on, clicked Edit then Cancel, but a heads-up told me
+the quiz was deleted. I was like "I done fucked up". Quickly I admitted my
+mistake to my colleagues.
+
+![Chat dialogue](img/vg151_funny_shit/deleted_quiz.png)
+
+<details markdown="1">
+<summary>Transcript</summary>
+Me: @TA-redacted um, this is gonna be really awkward, but I accidentally
+deleted the quiz
+
+Me: idk how it happened all i did was poke around
+
+TA-redacted: no, i [sic] deletes it
+
+Me: bruh
+
+(there was a ROFL emoji reaction below my first message.)
+</details>
+
+## 2022-12-16, dorm
+
+I was grading project 2 late at night and saw this monstrosity.
+
+![Screenful of code, hardly any linebreaks](img/vg151_funny_shit/p2_code.png)
+
+clang-format to the rescue.
+
+## 2022-12-18, dorm
+
+Still grading project 2, but this one made me chuckle.
+
+![Part of a C source file](img/vg151_funny_shit/target_os_iphone.png)
+
+<details markdown="1">
+<summary>Transcript</summary>
+
+```
+//----------------Apple OS-------------
+#elif __APPLE__
+
+#if defined(TARGET_OS_OSX)
+// MacOS
+
+#elif TARGET_OS_IPHONE
+// IOS
+
+#else
+// other APPLE os
+#endif
+```
+</details>
+
+For context, our project was meant to run on computers in the terminal.