View remux.bat
@echo off | |
for /f "delims=" %%f in ('dir /b /a-d-h-s') do ( | |
if "%%~xf" == ".mkv" ( | |
if not exist "%cd%\%%~nf.mp4" ( | |
ffmpeg -i "%cd%\%%f" -c copy -map 0 "%cd%\%%~nf.mp4" | |
) | |
) | |
) |
View main.yml
# Raspberry Pi (and Linux) Wifi Repair Automation | |
# Created: 2020/01/09 19:41:05 | |
# Last modified: 2020/01/12 13:44:17 | |
- name: Install prerequisite packages | |
become: yes | |
apt: | |
name: "{{ packages }}" | |
state: latest |
View main.yml
--- | |
- name: Make sure packages are installed | |
apt: | |
name: | |
- libgit2-27 | |
- cmake | |
state: present | |
tags: | |
- wsl |
View dist-upgrade.yml
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # # # | |
# # Upgrade Windows WSL 1.x Ubunto to latest release # # | |
# # # # | |
# # Upgrade process based on: # # | |
# # https://medium.com/@rockey5520/wsl-ubuntu-upgrade-to-disco-dingo-19-04-b4abff20452d # # | |
# # # # | |
# # Created: 2019/11/01 23:54:53 # # | |
# # Last modified: # # | |
# # # # |
View c4.puml
!includeurl https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/release/1-0/C4_Container.puml | |
Person(user, "Anwender", "Stellt Reisekostenanträge") | |
Person(consultant, "Sachbearbeiter", "Prüft und genehmigt") | |
System_Boundary(portal, "Reisekostenportal"){ | |
Container(web_app, "Web Applikation", "Spring Boot, Apache", "Stellt die Busainesslogik für das Reisekostenportal bereit") | |
View rfc.bat
@echo off | |
start chrome https://tools.ietf.org/html/rfc%1 |