Skip to main content

标 题: 请教如何学java和找工作

http://gengwg.blogspot.com/发信人: mywater (梦), 信区: Programming
标  题: 请教如何学java和找工作
发信站: BBS 未名空间站 (Sun Dec 14 15:32:55 2014, 美东)

挖个小坑,向版上的大牛们请教一下学习和复习方法:

目标:通过两三个月在这几个相关版上全情投入学习,提高java, c++编程和面试水平,
希望能在四个月内找到一份工作;

投入:期末考试完之后/一周之后,基本可以做到只有学习找工作一件事;12-15hr/day
?

目前水平:三流滥校半路出家CS硕士毕业在即,只扫过一遍cc150和lc,但所有的算法
基本都自学,有很多理解不深入的地方,需要进一步消化发掘;基本只用过c++,python
和java写过极小的一两个作业,基本还没涉及到任何精髓;

缺点:马上就要放寒假了,很担心自已自律不够,作息时间一片混乱

计划:
1。建一个个人网站帮追踪每天的进度,同时对自己的知识点面开始补全和总结;
2。用C++把lc没刷完的几个题写完,再用java写一遍。这一遍要理解深入彻底参透;
3。同时从放假开始,海投简历,每天花1―2小时投30―50份?

1。是这么想的,但能否把这网站建起来,其实心里还很发毛,目前所以的语言用过的
只有c++,java, python,c#,想用wordpress类中英双语方便自己中文comment,不知道难
度会有多大?I am open to learn new programming language, 但从来不曾干过建站
这种事情,心里没底。若大牛小牛牛牛们有什么建议,也请不吝提点小人一二。

2。对java,正在读那个浅显的《java基础教程》pdf,读完应该就可以刷lc了,遇到不
懂的语法或结构再google一下

学习计划和方法上有偏颇的地方也请大家指出来。先谢谢大家~!

I II 两本英文都找到了,排版很好,读起来一点儿也不伤眼睛,多谢~

【 在 Trojan07 (usc) 的大作中提到: 】
: book: core java vol I. FUndamentals.

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