This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
import sys | |
import struct | |
import socket | |
import time | |
import select |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
这篇文章是我的一个外国的同事Gareth推荐给我的,我和他一起工作过一段时间。他之所以觉得非常不错,是因为这篇文章让他身有体会,他觉得我也一定会有体会,并让我考虑一下翻译到我的blog上来。我看完后觉得很有代表性,而且觉得说得太对了,所以翻译过来,希望大家都读一读,最好转给你的公司老板。 | |
这篇文章来源于 StakeExchange上的一个问题——“为什么BA和PM的薪水要比程序员要高?”,顶在一楼的回复分析了这个原因,并指出了两种管理文化。 | |
———————————————————正文开始———————————————————— | |
一个简单的回答应该是——“因为在我们的社会里,我们总是会认为薪水和会和职位的层次绑在一起”。但是,这个答案同时也折射出一个事实——我们的薪资是基于我们的所理解的价值,但这并没有解释 | |
为什么PM(Project Manager)和BA(Business Analysts)在很多软件公司里在组织的上层? | |
为什么软件项目团队总是在最底层? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
为了更全面的展示你自己,你可以回答以下题目,每个问题你都可以不作答,不会减分,只是答的好的话会加分。 | |
1. 有哪些兴趣爱好和擅长 | |
2. 常去哪些技术网站和社区 | |
3. 参与过开源项目,做了什么贡献 | |
4. 常用哪些组件,库或框架,哪个是你最熟悉最拿手的 | |
5. 完整看完过哪些技术书籍,哪本是你反复看过的,哪本对你影像最大 | |
6. 使用过哪些编程语言,最擅长哪个语言? | |
7. 有没有自己的域名,网站,博客,github,stackoverflow ,v2ex,知乎,微博,twitter,google plus账号 | |
8. 精通正则表达式吗? | |
9. c学的如何? 计算机组成原理学的咋样? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTML+CSS | |
1.对WEB标准以及W3C的理解与认识 | |
标签闭合、标签小写、不乱嵌套、提高搜索机器人搜索几率、使用外链css和js脚本、结构行为表现的分离、文件下载与页面速度更快、内容能被更多的用户所访问、内容能被更广泛的设备所访问、更少的代码和组件,容易维护、改版方便,不需要变动页面内容、提供打印版本而不需要复制内容、提高网站易用性; | |
2.xhtml和html有什么区别 | |
HTML是一种基本的WEB网页设计语言,XHTML是一个基于XML的置标语言 | |
最主要的不同: | |
XHTML 元素必须被正确地嵌套。 | |
XHTML 元素必须被关闭。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*把代码加到样式表就可以了,表示很喜欢。*/ | |
::-webkit-scrollbar{ | |
padding-left:1px; | |
border-left:1px solid #d5d5d5; | |
background-color:#fafafa; | |
overflow:visible; | |
width:13px; | |
} | |
::-webkit-scrollbar-thumb{ | |
background-color:rgba(0, 0, 0, .2); |