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 | |
ip=( $(ip a | grep inet | grep -v 127.0.0 | grep -oP '(\d{1,3}.){3}\d{1,3}') ) | |
echo "Connect with VLC Media Player via Network stream: rtsp://${ip[0]}:8554/" | |
echo "Press enter to start the stream..." | |
read lol | |
raspivid -o - -t 0 -n | cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/}' :demux=h264 |
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
-- Little reactor control by Decstasy [email protected] | |
-- Please configure everything for your needs | |
-- Where the energy store is located relative to the computer | |
local BatterySide = "back" | |
-- Where to send the "enable the reactor" redstone signal | |
local reactorEnableRedstone = "front" | |
-- Where to abort program when getting a redstone signal | |
local reactorEmergencyRedstone = "right" | |
-- Monitor position |
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
#!/usr/bin/perl -W | |
# Dennis Ullrich | |
### Password settings: | |
# Output settings: | |
$x = 4; # Passwords per line | |
$y = 25; # Lines | |
# (quantity,(charset)) |
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
#!/usr/bin/env python3 | |
__author__ = "Dennis Ullrich" | |
__copyright__ = "Copyright 2023, Dennis Ullrich" | |
__credits__ = ["Dennis Ullrich"] | |
__license__ = "GPL" | |
__version__ = "3.0.0" | |
__maintainer__ = "Dennis Ullrich" | |
__email__ = "[email protected]" | |
__status__ = "Fun" |
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
[root@localhost ~]# yum install icingaweb2-2.11.4 | |
Loaded plugins: fastestmirror | |
Loading mirror speeds from cached hostfile | |
* base: ftp.antilo.de | |
* centos-sclo-rh: mirror.netzwerge.de | |
* centos-sclo-sclo: mirror.netzwerge.de | |
* epel: cdn.centos.no | |
* extras: centos.mirrors.psw.services | |
* updates: centos.mirrors.psw.services | |
Resolving Dependencies |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
2024 - Dennis Ullrich | |
A simple GUI for reading *.conf files in /etc/wireguard. It toggles your connection using wg-quick up/down and displays status information while enabled. | |
Root permissions are required for proper functionality. | |
License: MIT License |
OlderNewer