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
| // The MIT License (MIT) | |
| // Copyright © 2025 Andreas Heil | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the “Software”), to | |
| // deal in the Software without restriction, including without limitation the | |
| // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
| // sell copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // | |
| // The above copyright notice and this permission notice shall be included in |
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
| { | |
| // LiaScript Code Snippets for Visual Studio Code | |
| // | |
| // Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
| // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
| // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
| // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
| // Placeholders with the same ids are connected. | |
| "LiaScript Section": { |
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
| <a href="https://www.patreon.com/bePatron?u=68747299&redirect_uri=https%3A%2F%2Fpodcast.hack-the-planet.tv" style="color: #5dff5d; text-decoration:none"> | |
| <div style="border-radius: 25px; background:#00aa00; hover:background:#00ff00; display: inline-block;padding-top: 5px; padding-bottom:5px; padding-left:25px; padding-right:25px"> | |
| <div style="color:#5dff5d; font-weight:500;"> | |
| <i class="fab fa-patreon" style="color:#5dff5d;"></i> | |
| PATREON | |
| </div> | |
| </div> | |
| </a> |
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
| @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" | |
| ) | |
| ) | |
| ) |
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
| # 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 |
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
| --- | |
| - name: Make sure packages are installed | |
| apt: | |
| name: | |
| - libgit2-27 | |
| - cmake | |
| state: present | |
| tags: | |
| - wsl |
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
| # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
| # # # # | |
| # # 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: # # | |
| # # # # |
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
| !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") | |
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
| @echo off | |
| start chrome https://tools.ietf.org/html/rfc%1 |