summaryrefslogtreecommitdiff
path: root/docs/ta/vg151_funny_shit.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ta/vg151_funny_shit.md')
-rw-r--r--docs/ta/vg151_funny_shit.md68
1 files changed, 68 insertions, 0 deletions
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.