-
Notifications
You must be signed in to change notification settings - Fork 1
/
random.html
61 lines (61 loc) · 3.87 KB
/
random.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<body onload="javascript:dogo();">
<script>
function dogo(){
var urls=[
"https://ouoholly.github.io/post/git-command-notes/",
"https://ouoholly.github.io/post/docker-command-notes/",
"https://ouoholly.github.io/post/awesome-wordpress-plugins/",
"https://ouoholly.github.io/post/backup-outlook-mails-via-thunderbird/",
"https://ouoholly.github.io/post/Rime-input-Win-weasel-setup/",
"https://ouoholly.github.io/post/switch-node-version-mac/",
"https://ouoholly.github.io/post/windows-run-php-using-vs-code/",
"https://ouoholly.github.io/post/Run-php-locally/",
"https://ouoholly.github.io/post/python-web-crawl-shhh2/",
"https://ouoholly.github.io/post/IMDb-movie-catalog-json-html/",
"https://ouoholly.github.io/post/protect-file-directory-using-htaccess/",
"https://ouoholly.github.io/post/rgb-to-cmyk-in-Photoshop-in-batch/",
"https://ouoholly.github.io/post/mac-terminal-custom-style/",
"https://ouoholly.github.io/post/hexo-in-new-mac/",
"https://ouoholly.github.io/post/execute-windows-exe-on-mac-using-wine/",
"https://ouoholly.github.io/post/jupyter-shortcut/",
"https://ouoholly.github.io/post/Excel-data-to-Photoshop/",
"https://ouoholly.github.io/post/github-profile-readme/",
"https://ouoholly.github.io/post/adobe-brackets-extensions/",
"https://ouoholly.github.io/post/diff-of-array-and-list/",
"https://ouoholly.github.io/post/python-IMDb-cover-url/",
"https://ouoholly.github.io/post/Excel-notes/",
"https://ouoholly.github.io/post/python-diff-print-return/",
"https://ouoholly.github.io/post/butterfly-add-hexo-electric-clock/",
"https://ouoholly.github.io/post/add-random-article-function-hexo-butterfly/",
"https://ouoholly.github.io/post/add-likecoin-btn-to-hexo-butterfly/",
"https://ouoholly.github.io/post/butterfly-add-hexo-generator-calendar/",
"https://ouoholly.github.io/post/my-custom-config-on-hexo-butterfly-theme/",
"https://ouoholly.github.io/post/build-github-hexo-butterfly-record/",
"https://ouoholly.github.io/post/butterfly-add-hexo-butterfly-charts/",
"https://ouoholly.github.io/post/hexo-new-post-auto-open-text-editor/",
"https://ouoholly.github.io/post/hexo-delete-commit-history-in-github/",
"https://ouoholly.github.io/post/gitbash-common-hexo-command/",
"https://ouoholly.github.io/post/hexo-blog-encrypt-post-for-testing/",
"https://ouoholly.github.io/post/view-local-html-file-on-iphone-ipad/",
"https://ouoholly.github.io/post/Excel-data-to-Word/",
"https://ouoholly.github.io/post/batch-rename-files/",
"https://ouoholly.github.io/post/batch-create-folders/",
"https://ouoholly.github.io/post/google-spreadsheet-data-to-json-javascript-html/",
"https://ouoholly.github.io/post/python-web-crawl-class-title-urls/",
"https://ouoholly.github.io/post/command-folder-directory-tree-structure/",
"https://ouoholly.github.io/post/python-web-crawl-google-search-result-urls/",
"https://ouoholly.github.io/post/python-web-crawl-shhh/",
"https://ouoholly.github.io/post/note-regular-expression-regex/",
"https://ouoholly.github.io/post/win10-turnoff-animation-effect-setting/",
"https://ouoholly.github.io/post/markdown-notes/",
"https://ouoholly.github.io/post/ai-export-300dpi-image/",
"https://ouoholly.github.io/post/cmd-terminal-command/",
"https://ouoholly.github.io/messageboard/index.html",
"https://ouoholly.github.io/link/index.html",
"https://ouoholly.github.io/categories/index.html",
"https://ouoholly.github.io/tags/index.html",
];
n = Math.floor(Math.random()*urls.length);
location.href= urls[n];
}
</script>