Skip to content

Instantly share code, notes, and snippets.

View dinandmentink's full-sized avatar
🤠
🌆

Dinand Mentink dinandmentink

🤠
🌆
View GitHub Profile
@dinandmentink
dinandmentink / OpenAI ChatGPT Adventure Game: Harry Dresden.md
Last active May 31, 2023 17:33
OpenAI ChatGPT Adventure Game: Harry Dresden

image

This is a description which will, when entered into OpenAI's chat ai result in a text based adventure game.

In this text based adventure game you play Harry Dresden, a professional wizard in chicago. The game has a dark tone like 90s noir detective novels. Open world exploration is encouraged. Each turn you will be prompted for a choice which will influence the outcome.

  1. Go to https://chat.openai.com
  2. Create an account and login
  3. Copy, without reading (!) the below description into the chatbot.
  4. Enjoy!
@dinandmentink
dinandmentink / remove_bloatware.sh
Last active January 15, 2023 16:00
Raspbian remove bloatware
#!/bin/bash
# First version taken from https://github.com/raspberrycoulis/remove-bloat
# Update
sudo apt-get update
# Remove default raspbian bloatware
sudo apt-get remove --purge \
dillo \
gpicview \
@dinandmentink
dinandmentink / designmode
Last active May 12, 2021 09:37
Designmode
javascript: (function () {if (document.designMode == "on") {console.log("designMode is now off"); document.designMode = "off"; } else {console.log("designMode is now on"); document.designMode = "on"; } })();