Skip to main content

标  题: Re: 请教转行CS如何尽快入行找到工作

发信人: terrific (terrific), 信区: JobHunting
标  题: Re: 请教转行CS如何尽快入行找到工作
发信站: BBS 未名空间站 (Sat May 20 00:55:47 2017, 美东)

这位同学和我以前很像,多说两句:

做Web的小公司工作机会现在仍然非常多,看看cragigslist就知道,
但是光上课看javascript的书没有用,而且很容易就忘了。

你需要做的是动手去做网站:
假设你未来的老板让你从0开始搭一个可以用的E-commerce网站,
你要怎么一步一步去做,前端,后端都需要什么技术,熟悉了语言,为什么还要熟悉框
架,
碰到问题,怎么去stackoverflow上找答案,或是看书。
如果你能在两个月(或者三个月,或者半年)内写出一个看起来还可以的网站,
一定要是自己写的,代码的逻辑自己都明白。你从中间学到的知识,
可以让你轻轻松松的通过一般小公司的面试,并且在工作中活下来。

为什么我这么肯定?因为很久以前我就是这么做的,
有了第一份入行的工作,随着经验的积累,再去找更好的公司就有底气了。
但是你一定要马上开始写代码, 目标是做个可以拿出手的网站。
加油!

【 在 lightoflight (lightoflight) 的大作中提到: 】
: 大家好!我先介绍下自己情况。
: 本人美国一般大学化学博士,做过几年薄厚。目前在工业界工作已经两年。打算转行
CS
: 。去年下半年到现在网上上过python,java,matlab 的课。最近考了oracle java
: programmer I的 certificate。然后申请了Georgian tech的2017年fall的OMS CS,去
: 年被拒了,今年估计programming背景强点终于录取了。之前看了点刷题,有CC,还有
: leetcode,做的不多。因为想尽快找到工作转行先,需要做project。
: 现在freecodecamp上学web full stack的开发,主要是javascript,能学到点相关的像
: ajax,jquery, bootstrap, 反正就是作网页需要的。
: 试着透过一些简历,主要java programmer,但是毫无消息。
: 我想请教一下,如何能尽快找到CS相关的工作呢,因为年龄不小了,现在的工作和以后
: ...................

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