-
Notifications
You must be signed in to change notification settings - Fork 0
/
random.html
48 lines (48 loc) · 2.64 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
<body onload="javascript:dogo();">
<script>
function dogo(){
var urls=[
"https://gallen881.github.io/posts/truenas_snapshot/",
"https://gallen881.github.io/posts/circle_cursor/",
"https://gallen881.github.io/posts/interference_of_two_waves_of_different_frequencies/",
"https://gallen881.github.io/posts/MR0094_unbox/",
"https://gallen881.github.io/friend.json",
"https://gallen881.github.io/posts/windows10_stuck_on_welcome_screen/",
"https://gallen881.github.io/posts/install_adguard_home/",
"https://gallen881.github.io/subscribe/index.html",
"https://gallen881.github.io/datas/index.html",
"https://gallen881.github.io/link/index.html",
"https://gallen881.github.io/posts/zj_a217/",
"https://gallen881.github.io/posts/catalase_research/",
"https://gallen881.github.io/posts/catalase_research_2/",
"https://gallen881.github.io/posts/zj_j224/",
"https://gallen881.github.io/posts/zj_o087/",
"https://gallen881.github.io/posts/zj_n688/",
"https://gallen881.github.io/posts/access_free_github_education_benefits/",
"https://gallen881.github.io/posts/cpp_in_vscode/",
"https://gallen881.github.io/posts/stdc++-h_in_vscode/",
"https://gallen881.github.io/posts/reflections_on_sshp24/",
"https://gallen881.github.io/posts/insects_in_monitor/",
"https://gallen881.github.io/posts/reflections_on_macronix_science_awards22/",
"https://gallen881.github.io/posts/rye_juice_rgb/",
"https://gallen881.github.io/posts/ukko_P310A_and_PD2DC_adapter_unbox/",
"https://gallen881.github.io/posts/akibajinja/",
"https://gallen881.github.io/posts/afternoon_black_tea/",
"https://gallen881.github.io/posts/fischl_doll_unbox/",
"https://gallen881.github.io/categories/index.html",
"https://gallen881.github.io/about/index.html",
"https://gallen881.github.io/datas/interference_of_two_waves_of_different_frequencies_videos/index.html",
"https://gallen881.github.io/posts/the_traditions_of_tao/",
"https://gallen881.github.io/posts/jellyfin_flickering/",
"https://gallen881.github.io/posts/milk_tea_unbox/",
"https://gallen881.github.io/posts/bopomofo2hanzi/",
"https://gallen881.github.io/posts/vim_smile/",
"https://gallen881.github.io/posts/counseling_psychologist/",
"https://gallen881.github.io/posts/yui_docs/",
"https://gallen881.github.io/tags/index.html",
"https://gallen881.github.io/posts/first_post/",
];
n = Math.floor(Math.random()*urls.length);
location.href= urls[n];
}
</script>