This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run once with a PowerShell as Admin to allow execution of script: | |
# set-executionpolicy remotesigned | |
# CONFIG | |
$URL = https://badlands.cc | |
$SEARCH_FOR = "BADLANDS 2024 INFORMATION COMING SOON3" | |
$WAIT_SECONDS = 10 | |
# CONFIG-END | |
Add-Type -AssemblyName PresentationCore,presentationFramework |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# - install tmux and vim (e.g. for ubuntu run `apt install tmux vim`) | |
# - Create the showroom.presentation.sh | |
# - add executable flag with `chmod +x showroom.presentation.sh` | |
# - To run the presentation | |
# - Open a terminal and run `./showroom.presentation.sh` | |
# - Open a second terminal on presentation screen and run `tmux a -t showroom` | |
# - Go back to the first terminal and hit [Space] to send next line | |
# - To stop the presentation hit ':q' in vim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:22.04 | |
# add missing dependencies needed by openframeworks | |
RUN apt-get update -y \ | |
&& \ | |
# tzdata is installed later in install_dependencies script | |
# but with interactive choices, so we configure it here correct | |
DEBIAN_FRONTEND=noninteractive TZ=Europe/Berlin apt-get -y install \ | |
tzdata \ | |
# and also some other depedencies are missing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:22.04 | |
RUN apt-get update -y \ | |
# needed for sound | |
libpulse0 libasound2 libasound2-plugins \ | |
# to test sound with e. g. aplay <sound-file> | |
alsa-base \ | |
# to test display with xterm | |
xterm \ | |
&& \ |