Skip to main content

无论多爱是不是都要放弃?

发信人: laosu (laosu), 信区: Love
标 题: Re: 无论多爱是不是都要放弃?
发信站: BBS 未名空间站 (Sat Jul 7 11:06:42 2012, 美东)

虽然很多时候人都在放弃,犹豫的边缘徘徊.
有很多路走着走着就没有路,或荆棘坎坷满地.

放弃,是可以选择平坦的没有风险的旅途,
但不要忘了条条蛇咬人,没有那条路没有问题.

且你的初衷就是爬山要看山顶最美的风景.

这山其实就是你自己.没有人可以打倒你,只有你自己.

人生的旅途,万事万物都是影像,轮回转换,目的都是修炼你自己.

也就是如果修炼成功于己,和谁又会合不来呢?

虽然我说 "可能无法左右,万事都有前因后果."
但这中最重要的是你是否意识到自己,最关键的因是自己,
一念起,你爱了,一念起,你绝望了,一念起,你要绝决的走了.
一念之间,你可以颠覆世界,或重新拥有所有.

不是他/她不够好,总幻想换一个会WORK,事物千变万化不离其中,
如果这个因是你自己,你带着它,换多少个又有什么关系?不还是同样的果.
没有一个人没有问题,没有一个人是完美的,换人,退缩都是借口.

有一天你会发现,大地轮回旋转都是在启发你.

如果这一生感觉爱已被带走,如果认识到此生都再不可能有这样的爱.勇敢的面对他/她,
做好足够的功课,做好充分的准备,和他/她努力.

我说正道是:永不放弃,修炼自己,尽量理解对方,理解不了,起码做到尊重,容忍别人,这
是修炼的精华.


如果爱,就不要言别离,

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...