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 | |
####################################### | |
# Nextcloud update script | |
# (c) R0Wi 2024 | |
####################################### | |
set -Eeou pipefail |
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
public static async Task Main() | |
{ | |
/* | |
* Use this codesnippet inside your WinForm/WPF WebView2 application | |
*/ | |
var wv2 = new WebView2(); | |
await wv2.EnsureCoreWebView2Async(); | |
var devTools = new WebView2DevTools(wv2.CoreWebView2); | |
// Some result vom Javascript |
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
/** | |
* @copyright Copyright (c) 2021 Robin Windey <[email protected]> | |
* | |
* @author Robin Windey <[email protected]> | |
* | |
* @license GNU AGPL version 3 or any later version | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU Affero General Public License as | |
* published by the Free Software Foundation, either version 3 of the |
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 | |
# | |
# Script to backup all running mysql docker instances | |
# | |
# Usage: | |
# Set the BACKUP_TARGET_DIR variable and call the script. Note that | |
# the mysql containers must either have set the MYSQL_ROOT_PASSWORD environment variable | |
# or the MYSQL_DATABASE MYSQL_USER MYSQL_PASSWORD environment variables. | |
# |