Skip to main content

困难时期,我们更需坚强

发信人: Jily (StickOut), 信区: JobHunting
标  题: 困难时期,我们更需坚强
发信站: The unknown SPACE (Thu Jul 10 14:22:13 2003) WWW-POST

已经找了近半年(毕业前+毕业后),没有实质性的进展。和这里的许多朋友一样,我也
觉得现在身份几乎是成了一个最大的障碍。对于一些大牛人来说或许不是太大的问题,但
是大部分人,特别是我们这批硕士毕业的,能拿得出手的响当当的东西也许实在是有限。
我想眼下唯一的出路只能是坚持下去,尽可能发掘所有可能的机会,不会的,学!!

对CAREER BOARD的一些看法:MONSTER上真实的工作相比是最多的(有三次面试机会都
使对方称从monster上看到了我的简历--奇怪的是所有我通过monster发出的简历绝大部分
石沉大海);CAREERBUILDER 和hotjobs工作fake得太多,尤其是careerbuilder,几乎全是
staffing firm的广告。有几个觉得相对比较好的board, 和大家共享。

All Job Search:             http://www.alljobsearch.com/
Job-Hunt                    http://www.job-hunt.org/
Job-Wanted                  http://bakosgroup.wantedjobs.com/
RileyGuide:                 http://www.rileyguide.com/jobs.html

很多时候,心情是非常容易就变得depressed了。但想想人一生就是
在苦难中才会真正成长,也许从长远看起来,现在的这份经历也会
成为财富。就安慰自己,坚持下去,永远不应放弃努力。记得以前
看过一段话,说耶稣死后三天便是复活节,所以在彻底绝望之前,至少等三天。

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