mirror.dongdigua.github.io/js/random-quote.js

40 lines
2.2 KiB
JavaScript
Raw Normal View History

2022-10-29 13:26:19 +08:00
var data = [
2022-10-29 15:03:53 +08:00
"富强民主文明和谐, 自由平等公正法治, 爱国敬业诚信友善",
2022-10-29 13:26:19 +08:00
"解放思想, 实事求是, 与时俱进",
2022-10-29 15:03:53 +08:00
"绿水青山就是金山银山",
2022-11-04 16:52:02 +08:00
"为中华之崛起而读书!",
2022-11-06 12:45:28 +08:00
"减轻义务教育阶段学生作业负担、减轻校外培训负担",
"实践是检验真理的唯一标准",
2022-10-29 13:26:19 +08:00
2022-10-29 16:44:27 +08:00
"<a id=quote href=https://www.bilibili.com/video/BV1vW411g7tN>谁甘人生黯淡无光 谁愿做叶不争艳芳</a>",
2022-11-04 16:52:02 +08:00
"Fly high my friend, until we meet again",
"HsCnPtPSrYZn",
2022-11-13 16:44:41 +08:00
"李无用地瓜碱水, 硒钫铕𬭶鿔合金",
2022-11-06 12:45:28 +08:00
"There will be an answer: Let It Be",
"<a id=quote href=https://calm.com>Take a deep breath</a>",
2022-12-02 13:47:08 +08:00
"我这人有几个缺点: 第一, 不会数数; 第二, 记性不好; 第四, 不会数数",
2022-10-29 16:44:27 +08:00
2022-10-29 13:26:19 +08:00
"The internet is FULL, go away!",
2022-11-20 15:10:14 +08:00
"<a id=quote href=new_blog_arch>May the --force be with you</a>",
2022-11-06 12:45:28 +08:00
"<a id=quote href=https://suckless.org>Software that sucks less</a>",
2022-10-29 15:03:53 +08:00
"whoami: No system is safe",
2022-10-31 10:22:26 +08:00
"DROP it at <a id=quote href=https://lttstore.com>lttstore.com</a>",
2022-11-06 12:45:28 +08:00
"Cant keep up! Is the server overloaded?\nRunning 5000ms or 100 ticks behind",
2022-10-29 15:03:53 +08:00
"大炮做好了不放珍珠是什么意思?",
2022-11-06 12:45:28 +08:00
"write terrible nonsensical code to\nensure the Copilot doesn't take over as captain",
2022-11-04 16:52:02 +08:00
"<a id=quote href=https://www.curseforge.com/minecraft/mc-mods/carpet>NOT VANILLA!</a>",
"Big Brother is Watching You",
2022-11-06 12:45:28 +08:00
"消除恐惧的最好办法就是面对恐惧,\n坚持, 才是胜利, 加油, 奥利给!",
"Presenting to the emergency room, unconcious",
"Never Gonna Give You Up",
"treat C compiler like your girlfriend",
2022-11-13 16:44:41 +08:00
"衬衫的价格是9磅15便士",
"李彦宏: 我想中国人可以更加开放,对隐私问题没有那么敏感。\n如果他们愿意用隐私交换便捷性很多情况下他们是愿意的。",
"<a id=quote href=https://wiki.evageeks.org/A.T._Field>AT&T field</a>",
2022-11-20 15:10:14 +08:00
"I □ Unicode",
2022-12-02 13:47:08 +08:00
"<a id=quote href=https://ravynos.com>ravynOS, Always; FreeBSD, Mostly; Linux, Sometimes; macOS, Maybe</a>",
2022-10-29 13:26:19 +08:00
];
var index = Math.floor((Math.random() * data.length));
window.document.getElementById("quote").innerHTML = data[index];