-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
73 lines (73 loc) · 4.66 KB
/
Copy pathrandom.html
File metadata and controls
73 lines (73 loc) · 4.66 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
<body onload="javascript:dogo();">
<script>
function dogo(){
var urls=[
"https://reimirno.github.io/works/index.html",
"https://reimirno.github.io/works/details.html",
"https://reimirno.github.io/works/game.html",
"https://reimirno.github.io/works/research.html",
"https://reimirno.github.io/works/misc.html",
"https://reimirno.github.io/works/webbased.html",
"https://reimirno.github.io/works/book.html",
"https://reimirno.github.io/resume/index.html",
"https://reimirno.github.io/series/encoding-basics.html",
"https://reimirno.github.io/series/unity-2d-collection.html",
"https://reimirno.github.io/about/site.html",
"https://reimirno.github.io/compass/index.html",
"https://reimirno.github.io/2021/08/07/Encoding-Basics-3/",
"https://reimirno.github.io/2021/08/01/Hello-Blog/",
"https://reimirno.github.io/2022/08/07/I-am-back/",
"https://reimirno.github.io/2022/10/01/Database-Cheatsheet/",
"https://reimirno.github.io/404.html",
"https://reimirno.github.io/2022/04/08/On-Going-Back-to-a-Previous-Commit/",
"https://reimirno.github.io/2022/03/26/Staged-but-Uncommited-Files-and-Git-Add/",
"https://reimirno.github.io/2022/04/01/Views-in-Java-Collection-Framework/",
"https://reimirno.github.io/2022/03/20/Unfamiliar-OOP-Concepts-Adaptor-and-More/",
"https://reimirno.github.io/2022/03/08/Bit-Hacks/",
"https://reimirno.github.io/2022/03/20/Java-Standard-Collection-Types/",
"https://reimirno.github.io/2022/03/20/Misconception-in-Asymptotic-Notation/",
"https://reimirno.github.io/2022/03/11/Batch-Encoding-Change-via-Bash/",
"https://reimirno.github.io/2022/03/10/%25E5%25A4%25A7%25E5%25AE%25B6%25E9%2583%25BD%25E6%259C%2589%25E7%2597%2585%25EF%25BC%2588%25E4%25B8%258A%25EF%25BC%2589/",
"https://reimirno.github.io/2022/03/10/%25E5%25A4%25A7%25E5%25AE%25B6%25E9%2583%25BD%25E6%259C%2589%25E7%2597%2585%25EF%25BC%2588%25E4%25B8%258B%25EF%25BC%2589/",
"https://reimirno.github.io/2022/01/18/Clean-Up-My-C-Drive/",
"https://reimirno.github.io/2021/08/12/Python-Collections/",
"https://reimirno.github.io/2021/08/28/CS61A-Notes/",
"https://reimirno.github.io/2021/11/22/SQL-Collections/",
"https://reimirno.github.io/2021/08/10/Regular-Expression-and-Its-Implementation-in-NET/",
"https://reimirno.github.io/about/index.html",
"https://reimirno.github.io/links/index.html",
"https://reimirno.github.io/2021/11/23/Unity-2D-Collections-2/",
"https://reimirno.github.io/2021/11/23/Unity-2D-Collections/",
"https://reimirno.github.io/2021/11/24/Unity-Layer-Tag-Sorting-Layer-and-Best-Practices/",
"https://reimirno.github.io/series/index.html",
"https://reimirno.github.io/2021/10/03/Common-CSharp-Collection-Type/",
"https://reimirno.github.io/2021/11/09/Understanding-Symbol-Type-in-Scheme/",
"https://reimirno.github.io/2021/11/09/Scheme-List/",
"https://reimirno.github.io/2021/11/09/Some-Scheme-Reminders/",
"https://reimirno.github.io/2021/08/25/R-Collections/",
"https://reimirno.github.io/2021/08/29/TBC2-Memorial/",
"https://reimirno.github.io/thanks/index.html",
"https://reimirno.github.io/2021/08/08/Encoding-Basics-5/",
"https://reimirno.github.io/2021/08/08/Encoding-Basics-4/",
"https://reimirno.github.io/2021/08/07/Encoding-Basics-2/",
"https://reimirno.github.io/2021/08/07/Encoding-Basics/",
"https://reimirno.github.io/2021/08/05/Common-CMD-Commands/",
"https://reimirno.github.io/helps/admonition-tag.html",
"https://reimirno.github.io/2021/08/11/Java-Collections/",
"https://reimirno.github.io/2021/08/11/Different-Systems-of-Escape/",
"https://reimirno.github.io/2021/08/09/Unit-Conversion-Standard-and-Imperial/",
"https://reimirno.github.io/2021/08/08/About-Alcohol/",
"https://reimirno.github.io/helps/github-icon-legend.html",
"https://reimirno.github.io/helps/index.html",
"https://reimirno.github.io/helps/direct-to-about-page.html",
"https://reimirno.github.io/helps/featured-post.html",
"https://reimirno.github.io/helps/random-page.html",
"https://reimirno.github.io/2021/08/05/Git-Basics/",
"https://reimirno.github.io/2021/08/06/Working-with-Agencies/",
"https://reimirno.github.io/categories/index.html",
"https://reimirno.github.io/tags/index.html",
];
n = Math.floor(Math.random()*urls.length);
location.href= urls[n];
}
</script>