Skip to main content

终于等到你


终于等到你
作词:陈曦
作曲:董冬冬
演唱:张靓颖

到了某个年纪你就会知道
一个人的日子真的难熬
渐渐开始尝到孤单的味道
时间在敲打着你的骄傲
过了某个路口你就会感到
彻夜陪你聊天的越来越少
厌倦了被寂寞追着跑
找个爱你的人就想托付终老
能陪我走一程的人有多少
愿意走完一生的更是寥寥
是否刻骨铭心并没那么重要
只想在平淡中体会爱的味道
终于等到你还好我没放弃
幸福来得好不容易
才会让人更加珍惜
终于等到你差点要错过你
在最好的年纪遇到你
才算没有辜负自己
终于等到你

Comments

Popular posts from this blog

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

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