本小节列出求职、面试和考虑Offer的整个过程中,可以参考的一些有用的网站和资源。
## 1.求职
Glassdoor
<http://www.glassdoor.com>
LinkedIn
<http://www.linkedin.com/jobs>
Indeed
<http://www.indeed.com/>
CareerBuilder
<http://www.careerbuilder.com/>
Monster
<http://www.monster.com/>
## 2.代码
A Short List of DevOps Tools
<http://newrelic.com/devops/toolset>
TopCoder
<http://www.topcoder.com/>
Google CodeJam
<https://code.google.com/codejam>
CodeChef
<http://www.codechef.com/>
HackerRank
<https://www.hackerrank.com/>
ACM ICPC
<http://icpc.baylor.edu/>
hackathon.io
<http://www.hackathon.io>
Hacker League
<https://www.hackerleague.org>
Hackathon Hero
<http://www.hackathonhero.com/>
## 3.行业趋势
Y Combinator
<https://news.ycombinator.com/jobs>
AngelList
<https://angel.co/jobs>
Reddit
<https://www.reddit.com/r/Jobbit>
StackOverflow
<http://careers.stackoverflow.com/>
The Distributed Developer Stack Field Guide
<http://sites.oreilly.com/odewahn/dds-field-guide/>
## 4.代码质量
Continuous Integration
<http://martinfowler.com/tags/continuous%20integration.html>
Java Code Review Checklist
<http://java.dzone.com/articles/java-code-review-checklist>
Stop More Bugs with our Code Review Checklist
<http://blog.fogcreek.com/increase-defect-detection-with-our-code-review-checklist-example/>
Embedded System Code Review Checklist
[http://users.ece.cmu.edu/~koopman/pubs/code\_review\_checklist\_v1\_00.pdf](http://users.ece.cmu.edu/~koopman/pubs/code_review_checklist_v1_00.pdf)
Typesafe Project & Developer Guidelines
<https://gist.github.com/jboner/3864996>
List of tools for static code analysis
[http://en.wikipedia.org/wiki/List\_of\_tools\_for\_static\_code\_analysis](http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis)
Security Source Code Analysis Tools
[https://www.owasp.org/index.php/Source\_Code\_Analysis\_Tools](https://www.owasp.org/index.php/Source_Code_Analysis_Tools)
## 5.团队合作开发
Slack
<https://slack.com/>
Google Apps (GMail, GChat)
<https://www.google.com/work/apps/business/>
IRC
[http://en.wikipedia.org/wiki/Internet\_Relay\_Chat](http://en.wikipedia.org/wiki/Internet_Relay_Chat)
Yammer
<https://www.yammer.com/>
Asana
<https://asana.com/>
Microsoft Project
<http://products.office.com/en-us/project/project-and-portfolio-management-software>
JIRA
<https://www.atlassian.com/software/jira/>
bugzilla
<https://www.bugzilla.org/>
GitHub Issues
<https://github.com/blog/831-issues-2-0-the-next-generation>
Confluence
<https://www.atlassian.com/software/confluence>
DropBox
<https://www.dropbox.com>
Google Drive
<https://www.google.com/drive/>
Zoho
<https://www.zoho.com>
RelateIQ
<https://www.relateiq.com/>
BambooHR
<http://www.bamboohr.com/>
## 6.薪水
Crunchbase
Wealthfront Startup Salary & Equity Compensation
<https://www.wealthfront.com/tools/startup-salary-equity-compensation>
AngelList Salary and Equity Data
<https://angel.co/salaries>
Salary.com
<http://www.salary.com/>
PayScale Salary Calculator
<http://www.payscale.com/salary-calculator>
CareerBuilder Salary Calculator
<http://salary.careerbuilder.com/>
Wolfram Alpha Salary Comparison
<http://www.wolframalpha.com/examples/SalariesWages.html>
PayScale Cost of Living Calculator
<http://www.payscale.com/cost-of-living-calculator>
CNN Money Cost of Living Calculator
<http://money.cnn.com/calculator/pf/cost-of-living/>
An Introduction to Stock & Options for the Tech Entrepreneur or Startup Employee
<http://www.scribd.com/doc/55945011/An-Introduction-to-Stock-Options-for-the-Tech-Entrepreneur-or-Startup-Employee>
Startup Equity for Employees
[http://www.payne.org/index.php/Startup\_Equity\_For\_Employees](http://www.payne.org/index.php/Startup_Equity_For_Employees)
An Engineer's Guide to Stock Options
<http://blog.alexmaccaw.com/an-engineers-guide-to-stock-options>
The Impact of Dilution
<https://blog.wealthfront.com/impact-of-dilution/>
Term Sheet: Liquidation Preference
<http://www.feld.com/archives/2005/01/term-sheet-liquidation-preference.html>
I have a job Offer at a startup, am I getting a good deal?
<http://venturehacks.com/articles/job-Offer>
The 14 Crucial Questions About Stock Options
<https://blog.wealthfront.com/stock-options-14-crucial-questions/>
How much are startup options worth?
<http://www.danshapiro.com/blog/2010/11/how-much-are-startup-options-worth/>
The Equity Equation
<http://paulgraham.com/equity.html>
How I negotiated my startup compensation
<https://keen.io/blog/29904565692/how-i-negotiated-my-startup-compensation>
- 内容提要
- 作者简介
- 前言
- 我的故事,你的故事
- 现状
- 目的
- 特色
- 第1章 简历、面试和Offer
- 1.1 简历
- 1.1.1 格式
- 1.1.2 内容安排
- 1.1.3 描述技巧
- 1.2 面试
- 1.2.1 HR
- 1.2.2 技术面试官
- 1.2.3 老板
- 1.3 Offer
- 1.4 常见问题
- 1.5 工具箱
- 第2章 数组和字符串
- 2.1 知识要点
- 2.1.1 数组
- 2.1.2 哈希表
- 2.1.3 String
- 2.2 模式识别
- 2.2.1 使用哈希表
- 2.2.2 利用哈希表实现动态规划的思想
- 2.2.3 String相关问题的处理技巧
- 2.3 工具箱
- 第3章 链表
- 3.1 知识要点
- 3.2 模式识别
- 3.2.1 链表的基本操作
- 3.2.2 哑节点
- 3.2.3 Runner和Chaser
- 3.2.4 遍历并处理节点
- 3.2.5 交换节点的问题
- 3.2.6 同时操作两个链表
- 3.2.7 倒序处理
- 3.3 工具箱
- 第4章 栈和队列
- 4.1 知识要点
- 4.1.1 栈
- 4.1.2 队列
- 4.2 模式识别
- 4.2.1 通过栈实现特殊顺序的读取
- 4.2.2 “Save for later”问题
- 4.2.3 用栈解决自上而下结构的问题
- 4.3 工具箱
- 第5章 树和图
- 5.1 知识要点
- 5.1.1 树
- 5.1.2 字典树
- 5.1.3 堆与优先队列
- 5.1.4 图
- 5.1.5 图的遍历
- 5.1.6 单源最短路径问题
- 5.1.7 任意两点之间的最短距离
- 5.2 模式识别
- 5.2.1 利用分而治之(D&C)策略判断树、图的性质
- 5.2.3 树和其他数据结构的相互转换
- 5.2.4 寻找特定节点
- 5.2.5 图的访问
- 5.3 工具箱
- 第6章 位操作
- 6.1 知识要点
- 6.2 模式识别
- 6.2.1 基本的位操作
- 6.2.2 位掩码
- 6.3 工具箱
- 第7章 面向对象的设计
- 7.1 知识要点
- 7.1.1 设计题解答要领
- 7.1.2 模拟面试
- 7.1.3 抽象、面向对象和解耦(Decoupling)
- 7.1.4 继承/组合/参数化类型
- 7.1.5 设计模式
- 7.2 模式识别
- 7.3 工具箱
- 第8章 递归和动态规划
- 8.1 知识要点
- 8.1.1 构建从子问题到最终目标的方法
- 8.1.2 递归的空间与时间成本
- 8.1.3 自底向上与自顶向下
- 8.1.4 算法策略
- 8.2 模式识别
- 8.2.1 用动态规划(自底向上)解决收敛结构问题
- 8.2.2 最长子序列类型的问题
- 8.2.3 用Memorization(自顶向下)解决收敛结构问题
- 8.2.4 用回溯法(自上而下)解决发散结构问题
- 8.2.5 用D&C策略解决独立子问题
- 第9章 排序和搜索
- 9.1 知识要点
- 9.1.1 常见的内排序算法
- 9.1.2 常见的外排序算法
- 9.1.3 快速选择算法
- 9.1.4 二分查找
- 9.2 模式识别
- 9.2.1 动态数据结构的维护
- 9.2.2 对于有序/部分有序容器的搜索,用二分查找
- 9.2.3 数据范围有限、离散的排序问题
- 9.2.4 Scalability & Memory Limits 问题
- 9.3 工具箱
- 第10章 测试
- 10.1 知识要点
- 10.1.1 测试现实世界的物体、软件或函数
- 10.1.2 故障排除
- 10.2 模式识别
- 10.3 工具箱
- 第11章 网络
- 11.1 知识要点
- 11.1.1 网络分层
- 11.1.2 路由
- 11.1.3 常用网络统计指标
- 11.1.4 TCP vs. UDP
- 11.2 模式识别
- 11.3 工具箱
- 第12章 计算机底层知识
- 12.1 知识要点
- 12.1.1 进程vs.线程
- 12.1.2 上下文切换
- 12.1.3 系统调用
- 12.1.4 Semaphore/Mutex
- 12.1.5 死锁
- 12.1.6 生产者消费者
- 12.1.7 进程间通信
- 12.1.8 逻辑地址/物理地址/虚拟内存
- 12.1.9 文件系统
- 12.1.10 实时vs.分时操作系统
- 12.1.11 编译器
- 版权信息
- 看完了