Skip to main content

大部分人的人生都是磕磕碰碰的吧

推到重来这种事是不是其实一点都不少见?谁年轻的时候就非常明确知道自己要干什么
,而且很多时候也是形势所逼?只是,只是女生的青春真的伤不起啊,大龄产妇的年龄
限制在那里呆着呢。。。

有时候很感慨,觉得自己智商不差,又努力,也是国内top2本科过来的,现在在自己喜
欢的领域懂的东西还不如master学生多。虽然加速度可能比别人大,但是速度不光取决
于加速度。。。

另外一个就是沉没成本,虽然话是说沉没就沉没了,没啥可惜的,真到自己头上还是不
舒服啊。。。即使是生物千老也会考虑坚持下去能拿绿卡,更何况我原来的基础在美国
找个搬砖的工作不是难事,只是不甘于人生(不知道有没有下辈子,如果有的话按概率
来算也得至少几万年之后去了吧)就平庸的搬砖了,还是在自己不是很喜欢的领域。。
。找工作当然是生存必须,可是真的不能饮鸩止渴,当初出国就鼠目寸光的光盯着
offer而没考虑以后发展,导致现在的推到重来,不想让这样的悲剧在工作上重新上演
。。。

唉,牢骚发完,还是继续努力好了。虽然有时候不知道自己的选择是否正确,为什么我
总是选择最艰难的道路,虽然我是个很tough的女生,可是这条道路大部分男生也不愿
意走的啊,不知道艰难的道路是否真的是正确的选择。

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