Hi everyone! Here's the situation: I want to master Java and I'm thinking what do I need to do everyday to increase my chances of standing out and being hired if let's say I came from another field? If I have 1-2 hours a day of free time, what do you guys think I should do? Thanks in advance!
|
2
|
|||
|
|
|
This is largely summarising what others have written (hence wiki) but:
For blog recommendations, there are at least three SO questions with plenty of answers:
|
||||||
|
|
|
Read JDK code! Lots of good programming ideas and practises are in there! |
||
|
|
|
Write software - write it for yourself, write it freelance for some clients, write it at your current job, you'll find lots of places to do so. For a more paper-based approach, there are numerous questions about good programming books on SO to get you started. |
|||
|
|
|
|
Ask Why. Don't be satisfied with standards and patterns until you understand why they are what they are. Then program intentionally, with a clear idea of why you have chosen how you are doing it. |
||
|
|
|
|
Get some good books first Java Programming language and then start reading some open source project code and in the process writing lot of snippets (which will be your learning). Maintain a journal/blog of your learnings. |
||
|
|
|
Find a personnal project a try to build it from 'A' to 'Z'. Buildling a game or the interface to a database will help you to explore a lot of API. Share your code and your progress threw a blog to get some useful criticisms . |
||
|
|
|
|
If you want to get better at Java, you might want to take a look at Effective Java by Joshua Bloch. It's more or less a "best practice" book which will show you with plenty of sample code of what to do and what not to do when designing and writing Java programs. Aside from that, there are going to be the standard list of things to do:
One of the things with Java is that the Java API itself is huge. That said, I feel that the Java API Specifications are very well-written. For Java, learning to read the Java API Specification and Javadoc-style documentation is going to be key. As the Java API is huge, try to learn bits at a time, and work on projects you're interested in. If you're starting out, perhaps making small tools which you might want to use may be a good start. Perhaps, write a little calculator application. Then, maybe adapt the calculate application into an applet. Maybe write a text editor. Probably the biggest thing is keep working at it everyday. If you have 2 hours per day, you would have been doing something programing-related for 60 hours per month. By the end of the year, that's 720 hours. What's going to make a difference is that you keep at working at it. And most of all, have fun! The best way to learn something is having fun while you're learning it. Good luck! |
||
|
|
|
|
get certified -- this will force you to get to know the language as well as make a good impression on your cv. while IMHO the programmer certification is a bit of a waste (just forces you to know the SDK, but doesn't really test whether you are a good programmer), the developer certification is a great assignment which covers a lot of "real world" aspects. it made me read a lot about patterns and think about clean & scaling solutions. |
||
|
|
|
|
Write code in your spare time by using some of the most hot technologies in Java, doing a quick job search can point you to those. |
||
|
|
|
|
Make things, even if they have already been done. I remember when I was first learning data structures and algorithms, I remade a lot of Java classes, like ArrayList and the like. It was a great way to practice what I had learned in class. Also, realize that you don't know everything. And even though you never will, you must never stop learning something new. I am almost done with one book now, and I already have another lined up. Finally, don't go crazy trying to learn things. Every so often in those few free hours, try tossing a disc or whatever else you find fun. Sometimes the best things we can do are to stop looking at the technical side of life to stop ourselves from going crazy. |
||
|
|
|
|
|
|||
|
|
|
|
just start writing code: think of tools you'd need, which could be simple or more complex tools and start designing them, e.g. think through what you'd need to write to get the job done and then write the code to realize the tool. This won't teach you everything a good computer science course would but it would make you become a developer who can write some code. To become really really good, you have to develop software for a looooong time and think outside the box: challenge yourself when looking for answers for a problem you encounter while writing code: when you find an algorithm to get it solved, try to find an algorithm at wikipedia.org to see if your algorithm indeed is optimal, and if not, try to implement the documented algorithm. Software engineering is a process where you recognize functionality to make executable, then you try to recognize algorithms in this functionality to build the software with, and then finally you translate the algorithms into executable form, i.e. sourcecode. As you're a beginner, don't get demotivated by the obvious naive decisions you'll make and the utterly ugly code you'll likely write in the beginning. We've all been there. Looking back at my own career, I'm now developing software for over 23 years and still find I learn something every day and discover I made mistakes a couple of days ago. Though what you should never forget: no-one who you think is a great developer has become a great developer overnight. Most of them, if not all, have invested the majority of their awake time of their life in writing software, being a software engineer, how to get better, try this, try that. It's similar to playing guitar: everyone can pick up a guitar and after a few weeks, you can play some chords. However to become Malmsteen-good, you have to invest a lot of time which will literally takes many many years of study and hard work. Don't let that convince you to do something else, the end result is very rewarding :) |
||
|
|
|
In addition to all the above, Work your way through the CodeKata exercises. |
||
|
|
|
|
Just. Write. A Lot. Of Code. Also, you should learn more then just java. Particularly you should learn assembler and low level filesystem and socket programming. Knowing how things work at the low levels, being aware of what's going on is actually pretty helpful. Also, keep in mind that being a great programmer and having really marketable resume are not the same thing. |
||
|
|
|
|
Code and read. Once that gets boring, read and code... I also suggest picking a fun project. Something you will use and be interested in. Also the project should be something harder than you think you can do. |
||
|
|
|
|
I don't mean to brag, but personally, I've always been very successful wherever I work, and always recognized and praised by my peers and managers. I am usually the one that every project manager wants working on their project, and always get "thrown into the fire" to fix the emergency difficult problems. So how do I do it? What sets me apart? A few things:
|
||
|
|
|
|
Find small but interesting problems you want to solve, and write the code for them. Google for what you're wondering about, and write code different ways to get to your result. Post the code online and ask for comments. Find an interesting, small open-source project and see if you can contribute through writing code. Test-code. Code to interface other systems. Small plug-ins. Nothing major, just define small projects, and write code. A book is great, but you should stop reading every 15 pages and write code. |
||
|
|
