Skip to main content

标  题: 稍微谈一谈生物转程序猿

发信人: KeeVan (Kevin), 信区: Biology
标  题: 稍微谈一谈生物转程序猿
发信站: BBS 未名空间站 (Tue Jan 24 05:56:42 2012, 美东)

就当拜个年。虽然我不是高智商大牛,但资历也可以自称“我老”。

太晚了我也不扯多。我脚得:
(1)要想上升快,就要找打仗的地方往前冲。再聪明的人,没有大project的锻炼也没
用。Argue“为什么把大项目交给你”是没有意义的。
(2)最好的学习方法就是使用,所以修了啥学位上了啥课都不如自己写过一堆东西
(3)环境氛围很重要,一是要有牛人指点,二是要有牛人刺激。
(4)我可以理解工作了一年两年的童鞋,觉得科班好牛啊。第三年还这样是不是就要
从自己身上找原因了,一般来说就是锻炼不够,这样的情况下该跳槽就跳槽了,反正面
试还是算法题。

表面上,俺这个总结不是很有操作性,但是多年以后各位大爷想起来,可能就觉得俺说
得有理了。但可是,能提升功力和能混出来赚钱也不一样。反正,人这一辈子,最后就
没有然后了

发信人: KeeVan (Kevin), 信区: Biology
标  题: Re: 稍微谈一谈生物转程序猿
发信站: BBS 未名空间站 (Thu Jan 26 04:43:07 2012, 美东)

谢大哥。

其实技术帖有太多了。总的来说要找工作就去做算法题就可以了。不过现在风声紧,谁
要是说学计算机就是做算法题,有人就跟你急。我觉得呢,如果你到了自己设计掌管
component,service或者在一个大project里解决一个新问题的阶段,核心都是算法。
计算机最重要的最常使用得skill还就是算法。

当然啦,神马要学会好多人写一个code base呀,神马要多看开源framework呀,神马要
养成独立investigate的习惯呀,神马要懂操作系统编译原理网络基础呀,任取一人工
作个一两年自然就catch up了。在学校里的童鞋们不要听大人回来吓人。这里边儿的小
九九其实就是,科班的弱人你完全是可以横扫的,科班的强人来欺负你你也没辙,但是
地球人都阻止不了你找到工作,干得开心。写程序就是好玩儿,它不如科研费神能积累
,career path也比较尴尬,可以当成放纵几年打了游戏。当然广大程序猿还可以argue
神马前台 vs 后台,application vs infrastructure。我觉得,未来难预料。范进他
岳父说得好,大丈夫相时而动。

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