Skip to main content

我10年前的理想

发信人: guaifei (大肥), 信区: ebiz
标  题: 我10年前的理想
发信站: BBS 未名空间站 (Wed Jan  4 10:03:03 2012, 美东)

看到一篇自己10年前写的东西,当时的理想.我发现,我的当时的理想实现了:)主要是当
时就没啥太高的追求.

发信人: guaifei
标  题: 我们谈谈理想吧
发信站: 水木社区 (Mon Jul  1 20:18:43 2002), 站内
 
         今天中午跟同事一起吃饭,问我,想10年以后成为一个什么样的人?
猛然思索,人家都说,应该随时想想10年以后会做什么样的人?
         我一直也没有个好的答案,或者说清晰的答案。想想以前走的日子,
仿佛从来没想好过要做什么一样。大学前,我在农村过了17年的生活。想着早晨
起来汲水浇园,晚上房前围坐驱蚊聊天的日子,那时候偌大个天地任自己玩耍,
回念啊。
         大学的时候其实日子过得满快的,加上读研7年的时间,竟然都是在
一圈墙内度过的。不过却也多彩。每个食堂里何时供应何种美味,如数家珍。
打牌,杀人,灌水,聊天;或者做些有追求的兼职或社会活动;或者没追求的
躲在自己实验室的窗前,看走过的mm。好多的朋友,幸福啊。
         接着就工作了这么2年。虽说人在异地,不过工作上倒还如意。看着自己的想
法不断变成现实;自己不断被别人认可;竟然也有了小小的成就感。有个
最最可爱的女友,聪明而体贴。虽然不能长厮守,见面却也不是奢求。经济虽非
富有,却也收支平衡,借助出差常常各地转转,甚至体重都能随之减一点。生活
成了这样,算是顺心了。
         将来会怎样那?我总得有个啥理想吧?比如事业上取得更大成功,或者是早
点结婚生娃。呵呵,可现在想想却都没那么渴求。事业上尽力而为了,能够充实,有些
成就感也就好了;经济上本来就没啥太高追求,给我再多钱,我也会能坐坐公车,不会
出入非打车不可。至于感情上,顺其自然好了,我已经很幸福了,什么样子会更幸福那?
         回到开头的问题,十年后我会是怎样地一个人?我想,我不知道自己会不会
是一个成功人士,但我希望,我仍然能够为生活中平凡的小事所感动,能够为单纯的幽
默而微笑,能够保持着那么一点点勇气追求自己的梦想,能够舍得和别人分享自己的快
乐和幸运,能够有生活中一两个片断留在脑海里品味;当然,也希望我们的感情简单而
持久。十年后,我还是这么个平淡的人就好了。
--

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...