- Hands on, thus no slides
- This should bring you through your first 1-2 years definitely
- The absolute minimum of theory
- Get started FAST (alone):
- New Project
- Existing Project
- Work with others
| #!/bin/bash | |
| # 2023 Lars Quentin MIT | |
| # Call it with | |
| # ./scriptname ./path/to/your/Dockerfile | |
| # | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Please run as root" | |
| exit |
| #include<stdatomic.h> | |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<string.h> | |
| #include<fcntl.h> | |
| #include<pthread.h> | |
| #include<unistd.h> | |
| /* Lars Quentin 2025, licensed as WTFPL */ |
| module Main where | |
| import Statistics.Types | |
| import Data.Maybe (fromJust) | |
| ----------------------- | |
| -- Confidence levels -- | |
| ----------------------- |
| <# | |
| A script to write an exclude file for all users AppData for TSM Tivoli. | |
| Copyright Lars Quentin 2023, licsensed as CC0 (Public Domain) | |
| #> | |
| <# | |
| Configuration Variables: | |
| - BASE_PATH: | |
| Where the user folders are. |