Skip to main content

不同时段有不同时段的追求


同意 不同时段有不同时段的追求
可以将自己的部分青春献给coding 但绝不能是全部 如果是一个有理想有追求的人
其实 大部分有理想有追求的有为青年 随着时间的流逝 也茫茫众人已 蹉跎岁月 感叹
人生
反过来说 这也没什么错 至少有份安逸的工作 稳定的生活 闲时打打球 玩玩牌 钓钓鱼
挺好的 毕竟世界上领导者企业家等成功者只是少数 大部分平庸 这是现实

我是学机械的 我也可能一辈子做个工程师 只是工程师 和程序员等级一样 回想几年前
毕业时我根本就没想到自己今后的工作还有机会经常回国 当时的心态是找到一份工作
就好 至少能养活自己 我拿着ms的学位还做过tech 当时还很激动 现在想来 自己对自
己的要求有点低 - 但那份工作也是我目前工作的跳板

现在随着工作经验的增加 又不满足于自己的现状 希望能当上PM 高工 这都是很正常的
当学生时 一份工作已经知足 随着时间的推移 普通的工程师已经不能满足我们的欲望
人往高处流 当个程序员工程师 对于年轻人 很好 如果要是有雄心的话 还是不要做太
久 每个行业做到一定时间都会有一定瓶颈 有些人意识到这一点 他们果断的跳槽 转职
成为了我们现在眼中的成功者

话有说回来 大部分人在这 还不是混口饭吃 混的还不错 有豪车有大房 - 这已经做够

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