This page is to provide an easy to read/find section link to the youtube video found at https://www.youtube.com/watch?v=Ia-UEYYR44s
The section timings were taken directly from the source video comments by the original author.
/* | |
* Run the following script in browser dev tools when having redis insight open | |
* to continue searching for the keypattern until the scan is completed | |
* | |
* Changelog | |
* 2022-08-23 - danstreeter - Update to make work in RedisInsightv2 `2.6.0` (Note TODO) | |
*/ | |
var clickIntervalId = setInterval( | |
() => { | |
var button = document.querySelector('[data-testid=scan-more'); |
This page is to provide an easy to read/find section link to the youtube video found at https://www.youtube.com/watch?v=Ia-UEYYR44s
The section timings were taken directly from the source video comments by the original author.
ssh -o PasswordAuthentication=yes -oPreferredAuthentications=keyboard-interactive,password -o PubkeyAuthentication=no user@server |
<?php | |
/* To output XML as a nicely formatted (line breaks and indentations) on screen */ | |
$doc = new \DOMDocument('1.0'); | |
$doc->loadXML($rawXml); | |
$doc->preserveWhiteSpace = false; | |
$doc->formatOutput = true; | |
$xml_string = $doc->saveXML(); | |
echo $xml_string; |
for file in *.frm; do echo $file" : "$(hexdump -s 0x33 -n 2 -v -d *.frm | head -1 | rev | awk '{$1=$1};1' | cut -d" " -f1 | rev); done; |
location ~ ^/(status|ping)$ { | |
allow 127.0.0.1; | |
log_not_found off; | |
access_log off; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
fastcgi_pass php:9000; | |
# fastcgi_pass unix:/var/run/php7.2-fpm.sock; | |
} |
from os import listdir | |
from os.path import isfile, join, expanduser | |
import json | |
import copy | |
new_list = list() | |
new_file_dict = { | |
"uid": "", | |
"path": "", | |
"title": "", |
npm-watch: | |
image: node:8.11.1 | |
volumes: | |
- ./:/home/node/app | |
working_dir: /home/node/app | |
restart: unless-stopped | |
command: ['npm', 'run', 'watch'] |
I hereby claim:
To claim this, I am signing this object:
# Can be used to quickly spin up Wordpress and MySQL containers for testing something quickly. | |
# uploads.ini content - Write this to a file local to your running docker command, removing the hashes. | |
# file_uploads = On | |
# memory_limit = 64M | |
# upload_max_filesize = 64M | |
# post_max_size = 64M | |
# max_execution_time = 600 | |