https://www2.microstrategy.com/producthelp/Current/Office/en-us/Content/enable_cors_settings.htm
In conf/web.xml
<filter>
<filter-name>CorsFilter</filter-name>
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'admin'; | |
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION; | |
CREATE USER 'admin'@'%' IDENTIFIED BY 'admin'; | |
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' WITH GRANT OPTION; | |
SHOW GRANTS FOR mstr; | |
FLUSH PRIVILEGES; | |
CREATE DATABASE my_store CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; |
/* https://animista.net/ */ | |
.typing { | |
animation: typing 2s steps(22), blink .5s step-end infinite alternate; | |
} |
https://www2.microstrategy.com/producthelp/Current/Office/en-us/Content/enable_cors_settings.htm
In conf/web.xml
<filter>
<filter-name>CorsFilter</filter-name>
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
https://stackoverflow.com/questions/12194113/how-to-get-range-of-selected-text-of-textarea-in-javascript https://stackoverflow.com/questions/8332390/how-to-receive-coordinates-of-selected-text-in-input-textarea-elements https://stackoverflow.com/questions/6930578/get-cursor-or-text-position-in-pixels-for-input-element/7948715#7948715
http://blog.wilsonpage.co.uk/introducing-layout-boundaries/
https://github.com/wilsonpage/fastdom https://gist.github.com/paulirish/5d52fb081b3570c81e3a
cat SCRIPT_FILE | openssl dgst -sha512 -binary | openssl base64 -A |
Refer to https://www.jenkins.io/doc/book/installing/docker/
docker run \
--name docker-in-jenkins \
--rm \
See xz manual
# compress a directory
XZ_OPT='-9' tar -chvJf output-file.tar.xz -C /your/dir .
# The output archive of the above command doesn't contain the root directory.
# To compress a directory with its name in the output archive, use below command:
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML popover property</title> | |
</head> | |
<body> | |
<button id="button" popovertarget="select">请选择</button> | |
<menu id="select" popover> | |
<div><input type="radio" name="type" value="">请选择</div> |