Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
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
# One liner | |
wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
# Explained | |
wget \ | |
--recursive \ # Download the whole site. | |
--page-requisites \ # Get all assets/elements (CSS/JS/images). | |
--adjust-extension \ # Save files with .html on the end. | |
--span-hosts \ # Include necessary assets from offsite as well. | |
--convert-links \ # Update links to still work in the static version. |
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
# | |
# --- YouTube Ad Blocklist --- | |
# This project was created and is maintained by: Evan Pratten (@ewpratten) | |
# More information at: https://github.com/Ewpratten/youtube_ad_blocklist | |
# | |
0.0.0.0 r1.sn-poqvn5u-jb36.a1.googlevideo.com | |
0.0.0.0 r2.sn-poqvn5u-jb36.a1.googlevideo.com | |
0.0.0.0 r3.sn-poqvn5u-jb36.a1.googlevideo.com | |
0.0.0.0 r4.sn-poqvn5u-jb36.a1.googlevideo.com | |
0.0.0.0 r5.sn-poqvn5u-jb36.a1.googlevideo.com |
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
diff -u ./bootstrap/js/src/base-component.js ./bootstrap-ssr-friendly/js/src/base-component.js | |
--- ./bootstrap/js/src/base-component.js 2021-11-02 20:30:03.000000000 +0900 | |
+++ ./bootstrap-ssr-friendly/js/src/base-component.js 2021-11-02 20:30:24.000000000 +0900 | |
@@ -8,7 +8,9 @@ | |
import Data from './dom/data' | |
import { | |
executeAfterTransition, | |
- getElement | |
+ getElement, | |
+ getWindow, |