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 | |
set -e | |
{ | |
docker exec --user www-data nextcloud php cron.php | |
docker exec --user www-data nextcloud php /var/www/html/occ db:add-missing-columns --no-interaction | |
docker exec --user www-data nextcloud php /var/www/html/occ db:add-missing-primary-keys --no-interaction | |
docker exec --user www-data nextcloud php /var/www/html/occ db:add-missing-indices --no-interaction | |
docker exec --user www-data nextcloud php /var/www/html/occ db:convert-filecache-bigint --no-interaction | |
docker exec --user www-data nextcloud php /var/www/html/occ maintenance:mimetype:update-db --no-interaction |
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
Nginx Proxy Manager | |
Proxy Host | |
[X] Block Common Exploits | |
[X] Websockets Support | |
[X] Force SSL | |
[X] HTTP/2 Support | |
[X] HSTS Enabled | |
[X] HSTS Subdomains |
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
// ==UserScript== | |
// @name smsng-uk-student-any-mail | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @match https://shop.samsung.com/uk/multistore/ukepp/uk_student/registration | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=samsung.com | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== |
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
const fs = require('fs'); | |
const { exec, execSync } = require('child_process'); | |
const getStartTime = (fileName) => { | |
const ffprobeOutput = execSync(`ffprobe -v quiet -print_format json -show_entries format=start_time ${fileName}`).toString(); | |
const ffprobeJSON = JSON.parse(ffprobeOutput); | |
return parseFloat(ffprobeJSON.format.start_time) * 1000; | |
}; | |
const mixAudioTracks = (audioFiles) => { |
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 | |
setlocal enabledelayedexpansion | |
set "regKey=HKEY_CURRENT_USER\Software\EFD Software\HDTunePro" | |
set "valueName1=Test Parameters 1" | |
set "valueName6=Test Parameters 6" | |
:: Read the value of "Test Parameters 1" | |
for /f "skip=2 tokens=4*" %%A in ('reg query "%regKey%" /v "%valueName1%"') do set "value1=%%B" |
OlderNewer