Skip to main content

统计专业找工简历易犯的四大错误

发信人: papertigra (长工瘦头猪), 信区: Statistics
标  题: 《贡献贴》统计专业找工简历易犯的四大错误
发信站: BBS 未名空间站 (Sun Mar  4 01:58:07 2012, 美东)

一家之言,抛砖引玉。

1.内容空洞,书生气十足,言之无物。

这个错误我自己当年毕业找工时也犯过。简历上列了几门课程,几个烂七八糟和申请的
工作毫无关联的PROJECT,就这么发出去了。这样的简历完全无法引起RECRUITER的兴趣
,反馈率当然很低。

RECRUITER最感兴趣的应该是工作经历,对FRESH GRADUATE而言,那就看你的PROJECT了
。PROJECT如果和工作多少有些关联,INTERVIEW问的时候至少也有点话题可以问。没有
关联的话,首先,很难出现在RECRUITER的搜索结果里,其次,很难被RECRUITER在读简
历的5秒内挑中转给HM。

例如,申请一个需要搞SAS DATA MANIPULATION的工作,你在简历里列的PROJECT都是
ANOVA MODEL。

2. 偏离主题

学统计很多人几乎都是从其它专业转过来的。不幸的是,很多人把其它专业的PROJECT
,PAPER在简历上乱堆乱放,看得不知所云,把自己统计相关的经验完全给干扰了。我
见过有的简历上到处都是生物PROJECT, 生物PAPER的。难道是想说明自己学术能力还
不错嘛?如果申请研究类的工作,也许有点用,但对工业界的工作而言,只会减分。

3. 语法错误,用词不当

看到这样的简历我只能认为,要么人太懒惰,根本不上心找工作。要么英语太差。我自
己准备简历时,对自己不确定的某个词的用法我都一定要GOOGLE一遍,确保符合英语习
惯。RECRUITER看到这样的简历,第一印象是以后交流可能会有问题。

4.格式有问题

一般来说,SUMMARY OF QUALIFICATIONS是不能缺的,它是对找工者的基本描述。另外
,工作经验应该在学历的前面。工作经验应该用一系列的动词such as "performed/
created/managed".

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