Skip to main content

索男们,人生就一辈子,真的不能在编程和刷试管中度过啊!!!

理工科索男,长期接受技能教育,慢慢忘记了为什么读书,
慢慢忘记了读书的目的是什么,逐渐麻木不仁的习惯于成为工具!
索男们,夜深人静,扪心自问,当年考上北大清华,现在成为码工或者刷试管,
你们能睡的着?心里不滴血?没有辗转反侧,彻夜难眠?

看看古人吧:

1.备住荆州数年,尝於表坐起至厕,见髀里肉生,慨然流涕。还坐,表怪问备,备曰:
“吾常身不离鞍,髀肉皆消。今不复骑,髀里肉生。日月若驰,老将至矣,而功业不建
,是以悲耳。”

2.班超,字仲升,班固之弟,东汉名将。班超从小不喜好文墨,尝投笔叹曰:“大丈夫
当效傅介子、张骞立功西域,以取封侯,安能久事笔砚乎?

现在是没有西域要平定了,但是索男们,你们就安心一辈子码工试管或者在美国
某个山沟里面做老师?比如虎肉,一辈子就在山沟里面了?一辈子啊我操!

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