Override the entrypoint in docker-compose.yml for the MariaDB Docker container by adding:
entrypoint: mysqld_safe --skip-grant-tables --user=mysql
The start up the Docker Compose stack:
$> docker-compose up -d
<# | |
.SYNOPSIS | |
Script to set work location in Microsoft Teams. | |
.DESCRIPTION | |
Author: Martin Heusser | |
Version: 1.0.1 | |
Sponsor Project: https://github.com/sponsors/mozziemozz | |
Website: https://heusser.pro |
# SED Commands to replace HTML entities to characters | |
# Usage: | |
# sed -f htmlentities.sed file.html > newfile.html | |
# Replace entities in all html files | |
# sed -i -f htmlentities.sed file.html **/*.html | |
# ASCII printable characters | |
s/ / /g | |
s/!/!/g |
#requires -Modules HPEiLOCmdlets | |
[CmdletBinding( | |
[PSCustomObject] | |
)] | |
[OutputType()] | |
param ( | |
[Parameter( | |
Mandatory = $true |
#!/bin/bash | |
#Praktisches Skript für alle mydealerz. Am besten diese Codezeilen mit crontab -e jede Minute ausführen lassen (siehe: https://www.linuxwiki.de/crontab) | |
#Die folgenden Zeilen prüfen dann jede Minute (oder von mir aus Sekunde) ob es einen neuen Preisfehler-Deal gibt und schickt dann eine Telegram-Nachricht mit dem Link raus | |
#So ist es nun möglich tatsächlich auch _rechtzeitig_ über Preisfehler informiert zu werden und nicht erst ~10 Minuten später (beim ersten ausführen wird eine Preisfehler-Nachricht verschickt da eine Referenz fehlt, sit aber völlig normal) | |
TOKEN=<TOKEN> #https://core.telegram.org/bots/api#authorizing-your-bot | |
CHAT_ID=<CHAT_ID> #https://stackoverflow.com/a/32572159 | |
touch .tmp_file_lastknowndeal |
SETTING UP THE VIRTUAL MACHINE | |
-Install VirtualBox | |
-Install Kali-Linux machine from downloaded from https://www.offensive-security.com/kali-linux-vm-vmware-virtualbox-image-download/ | |
-DO NOT use "VMWare Images", select "VirtualBox Images" on section's tab | |
-Confirm use of NAT network in network settings | |
-Login: root, PW: toor | |
-Take snapshot, "Fresh Install" | |
-Launch Kali cli, run "apt-get update" | |
The follow is automation script to change the Administrator password of a windows system. One just have to save it as a file with .vbs extension and execute it
sNewPassword = "pass"
Set oWshNet = CreateObject("WScript.Network")
sComputer = oWshNet.ComputerName
sAdminName = GetAdministratorName
On Error Resume Next
Streaming just means a download that they don't want you to keep. But Chrome's developer tools make it easy to access what's really going on under the hood.
From the page where you want to download some things, go into your chrome menu to open the developer tools. You can either:
1. (On a mac): Command-option-J
2. (On a PC): Control-alt-J