Skip to main content

总结几个求职网站

发信人: oriental (oriental), 信区: Engineering
标  题: 总结几个求职网站
发信站: BBS 未名空间站 (Tue Feb  1 18:37:50 2011, 美东)

总结几个求职网站

1.   http://www.jobguiding.com
     此网站将Indeed和Simplyhired上的信息综合在一起,用户可以在首页直接点击感
兴趣的职位,尤其适合IT, engineering, web, finance等行业。
2.      http://techcomjob.com
专门发布技术公司的工作机会。
3.    Indeed.com, simplyhired.com
这两个网站都是Job Search Aggregator, 将来自众多企业网站和招聘网站的信息综合
在一起,信息比较全面。但也不是万全的,有的小公司或者小网站上的信息就不能被这
两家搜到。
4.    Monster, careerbuilder, hotjobs
这就是传统的三大网站,不过已经是日趋衰落了,recruiting agency发布的信息的比
例越来越高,这些机会大多是Contract. 但是这三个网站投递简历还是比较方便,在上
面发布简
历也有机会被Recruiter找到,但要经常update。
5.    Linkedin
这个网站的求职功能日益增强,但是职位要求相对比较高。
1) 此网站有职位搜索功能,搜到的很多职位也可以通过此网站直接点击发送。
2) 各个Group里有Job Discussion 功能
3) 做好Profile, 增加联系人,等待Recruiter来联系。
6.    Target Company List
在求职之初,应该定一个20到40家的Target company list, 然后在公司网站上注册,
经常查看、投递。这个回复比例还是比较高的。
7.    Industry job board
各个行业都有自己的求职网站,职位要求比较高,在上面发布简历也比较容易被
Recruiter找到,
比如
Dice.com,
efinancialcareers.com
www.Computerjobs.com
www.computerwork.com
www.chemjobs.net
8.    Craiglist
主要是local的一些小公司的信息。

面试准备网站
www.glassdoor.com, 上面有各个大公司,各种职位的常见面试问题。

H1b查询网站
http://www.h1bwage.com/ 无需注册,很方便。

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