随笔分类 -  Job interview

.net software engineer
What I Wish Someone Had Told Me 4 Years Ago
摘要:What I Wish Someone Had Told Me 4 Years AgoThe year is 2007, and I had just left Microsoft to dive into the startup world. Like many first time entrepreneurs, I was very excited about the adventure. And like many first time entrepreneurs, I didn’t know where to start.So I attended events, meetups, c 阅读全文
posted @ 2011-03-21 10:44 Alan Yang 阅读(399) 评论(0) 推荐(0) 编辑
RICCC随笔推荐
摘要:转载自Riccc有些是翻译的好文章,其他是花了不少精力整理、总结出来的东西[翻译]: 英文文章翻译过来; [原创]: 按自己思路写的; [笔记]: 对书籍或者参考文章要点的简要记录CLR、ASP.NET方面[原创, 笔记] .NET内存管理、垃圾回收[原创] Enterprise Library Data Access Application Block结构: 微软企业库DAAB的源代码结构解析[... 阅读全文
posted @ 2010-05-05 17:25 Alan Yang 阅读(287) 评论(0) 推荐(0) 编辑
一些写英文简历的词汇
摘要:一些写英文简历的词汇吧 name姓名alias别名penname笔名dateofbirth出生日期birthdate出生日期born出生于birthplace出生地点age年龄nativeplace籍贯province省city市autonomousregion自治区prefecture专区county县nationality民族,国籍citizenship国籍duelcitizenship双重国... 阅读全文
posted @ 2010-03-30 11:17 Alan Yang 阅读(286) 评论(0) 推荐(0) 编辑
[转] 130道C#面试题
摘要:1. 简述 private、 protected、 public、 internal 修饰符的访问权限。答 . private : 私有成员, 在类的内部才可以访问。 protected : 保护成员,该类内部和继承类中可以访问。 public : 公共成员,完全公开,没有访问限制。 internal: 在同一命名空间内可以访问。2 .列举ASP.NET 页面之间传递值的几种方式。 答. 1.使用... 阅读全文
posted @ 2010-03-22 10:07 Alan Yang 阅读(302) 评论(2) 推荐(0) 编辑
高薪是怎么跳出来的[转]
摘要:高薪是怎么跳出来的序言:其实按人的本性而言,谁也不喜欢没事跳槽可现在的形势是大学生比民工还多工资上涨的速度远赶不上房价上涨的速度你好容易玩命的赶上小康,人家都中产了等你中了产了,还得填小孩医疗与教育费用的无底洞所以,为了生存,为了娘子,为了房子和 孩子We have to jump!下面我将原帖中一些被大家认同的,认为在跳前看看还是有点帮助的实战心得摘要发布出来与大家共享,一、配合猎头的流程,有章... 阅读全文
posted @ 2009-12-29 18:45 Alan Yang 阅读(565) 评论(0) 推荐(0) 编辑
挑选简历
摘要:挑选简历(引自ThoughtWorks公司hr的一篇博客文章)(2007-05-18 14:00:02) 许多求职者抱怨各公司的HR通过看简历直接PK掉应聘者是一种很不负责任的行为。诚然,有不少优秀的人才,因为简历的问题,很遗憾地失去了渴望已久的机会,在这个过程中,看似是公司的“伯乐”不够专业,但换一个角度而言,“伯乐”并不是旨在看你简历写的好坏,而... 阅读全文
posted @ 2009-12-23 16:11 Alan Yang 阅读(284) 评论(0) 推荐(0) 编辑
[转]异地分布式敏捷软件开发(Distributed Agile Software Development)
摘要:异地分布式敏捷软件开发 (Distributed Agile Software Development)异地分布式软件开发(Distributed Software Development)是指由多个位于不同地理位置的团队进行同一个软件项目的开发过程。这个词越来越频繁的出现在各种技术媒体中。异地分布式软件开发不同于外包,它建立在平等关系的两个团队之间。通常是一个公司的不同分公司或办公室间的协作,他... 阅读全文
posted @ 2009-12-15 18:12 Alan Yang 阅读(343) 评论(0) 推荐(0) 编辑
c#缓存介绍(转)
摘要:本章导读缓存主要是为了提高数据的读取速度。因为服务器和应用客户端之间存在着流量的瓶颈,所以读取大容量数据时,使用缓存来直接为客户端服务,可以减少客户端与服务器端的数据交互,从而大大提高程序的性能。本章从缓存所在的命名空间“System.Web.Caching”开始,详细介绍框架提供的缓存类和操作方法,主要涉及简单数据的缓存、数据缓存依赖和数据库缓存依赖三个技术要点,最后演示... 阅读全文
posted @ 2009-12-07 15:43 Alan Yang 阅读(41043) 评论(22) 推荐(11) 编辑
社会生存的75条忠告----胜读十年书
摘要:01.犯了错误就该诚实地认错——狡辩、诿过只会害了自己。  02.朋友之间要保持距离——这样的友谊才能长久。  03.钱追人,人追健康——有了健康,还怕挣不到钱么?  04.别轻易转行——转行的风险很高,最好不要轻率为之。  05.适度地抬高身价——在就业市场中,人也是一种商品。... 阅读全文
posted @ 2009-11-15 13:34 Alan Yang 阅读(514) 评论(9) 推荐(0) 编辑
Data Structures Interview Questions and Answers
摘要:What is data structure?A data structure is a way of organizing data that considers not only the items stored, but also their relationship to each other. Advance knowledge about the relationship betwee... 阅读全文
posted @ 2009-11-12 08:35 Alan Yang 阅读(411) 评论(0) 推荐(0) 编辑
C# Interview Questions and Answers
摘要:What's C# ?C# (pronounced C-sharp) is a new object oriented language from Microsoft and is derived from C and C++. It also borrows a lot of concepts from Java too including garbage collection. Is it p... 阅读全文
posted @ 2009-11-12 05:57 Alan Yang 阅读(1258) 评论(0) 推荐(0) 编辑
Asp Interview Questions and Answers
摘要:What is ASP?ASP stands for Active Server Pages. It is a server side technology which is used to display dynamic content on web pages. For example you could write code that would give your visitors dif... 阅读全文
posted @ 2009-11-12 05:30 Alan Yang 阅读(280) 评论(0) 推荐(0) 编辑
Web Service Interview Questions and Answers
摘要:Web Service Interview Questions and AnswersWhat is a Web service?Many people and companies have debated the exact definition of Web services. At a minimum, however, a Web service is any piece of softw... 阅读全文
posted @ 2009-11-12 05:19 Alan Yang 阅读(412) 评论(0) 推荐(0) 编辑