Skip to main content

某些人,某些事


         某些人,某些事,已经走远了。

        时间就像一个坐标,在相应的点上,发生相应的事件,点串成线,人生的线段
就走完了。

          有人说,某些人注定要成为某个人成长的经历,凄美而真实的回忆,人生似
乎总有许许多多的说不明,道不白的奥秘。我不知道,那些在我们人生中放弃或是擦肩
的人,是否是真正值得我们守望一生的回忆。只是,在每一个平静而深沉的夜里,总会
不经意的想起,那种隐隐牵掣心房,似乎有着毒药般让人上瘾的感觉,总是如此的真实
,甚至当回过神时,早已泪流满腮。

       回忆就是这般纠结,一面止不住的流泪,一面却捂着胸口说,没事...........
.......

       很多东西,失去了才知道拥有有多可贵;很多人,错失了,才知道那是错;很
多过往,我们明明知道已经过去,可却习惯让它成为毒瘤,在每一个不小心触及中,淌
着发腐的毒血。

       曾经以为,这就是爱情,可当紫荆花开了又谢,谢了又开,春天过了,冬天来
了,我的爱情,还是一颗胚芽,所以,我确信,是上帝没有叫醒我的Mr Right  ,让他
误了给我种子的时间;抑或许是我们走的路程不对,所以,没有相遇。

          也许,此刻他站在面前,我不会再胆怯,不会再逃避,我会很坦然的告诉他
,他错过了一个美丽的相遇....................

          但,同时感谢他们,过往的人们,曾经在生命的某个角落深深驻扎的人,生
命很不完美,很困苦,很无奈,但在这个过程中,我们渐渐长大。只有丰庾的生命,才
能承受生命之重。所有,在最后遇到对的人的人们,都应该感谢那些先前你爱的人错失
的人,因为他们的过去,你才有现在,你才拥有一个能拥有坚强内心,为你遮风挡雨的
挚爱。有些爱情,不需要轰轰烈烈,有些感情,平淡最真。我们不会永远年少,不会永
远意气风发,所以,我们的爱情,也不会永远如此放纵,不顾一切死了都要爱。

      拥有了就别计较失去,因为永远的拥有,只会让记忆生锈,苍白。不完美的人生
才是最真实的活过。

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