Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to be prepared for industry? [closed]

The amount of available programming languages is both a bless and a curse, I think. I know a lot of programming languages already, some at syntax-level only and some good enough to do actual coding (Python, C, C++, Haskell, Perl, BASH, PHP, and lots of others). I have been programming for almost as long as I've been intensivly using computers (6 years), in almost every paradigm (functional, imperative, object oriented), but I don't feel prepared for the software industry.

I've been writing a lot of bigger programs in a lot of different languages, mostly network based, including large multithreaded server/clients, and I still don't feel prepared!

Currently I'm obsessed with my "3-tier" plan, which includes a high level language like Haskell, an interpreted language like Python and a low level language like C, yet I don't feel good enough!

I know how to work in teams, and how to work along given guidelines, but I'm unsure.

Am I prepared?
Please, kind people of stackoverflow, help me out of this mess! :(


Thanks for all the answers, I wish I could chose more answers as THE answer :)

like image 629
LukeN Avatar asked Mar 02 '10 22:03

LukeN


People also ask

What happens to employees when a company closes in India?

An employee is considered terminated at the conclusion of such a contract, unless a new contract is offered or the clauses in the initial contract are amended. As in most countries, employees in India who are terminated by employers are often given one month notice or payment of one month of wages in lieu thereof.

Why would a business shut down?

Common reasons cited for business failure include poor location, lack of experience, poor management, insufficient capital, unexpected growth, personal use of funds, over investing in fixed assets and poor credit arrangements. Yet, not all businesses close due to business failure.

How do you tell your customers you are closing?

Simply, state the fact that you are closing the business, the exact date the doors will close and perhaps suggest another business where they can have their needs met. If you have outstanding orders which you are able to fill, reassure customers that they will receive their merchandise.


1 Answers

Sounds like you know an awful lot about programming, but you don't mention anything else. Being a software developer requires more than just programming as a technical skill. Brush up on topics such as source code control, unit testing/test-driven development, continuous integration, etc. Hopefully you'll land in a job where at least one of those is in use. Try and learn as many useful time-savers as you can with your tools; try to become as flexible and efficient with your IDE as possible.

Elsewhere, don't forget to develop the more personal skills; attitude and work ethic, and more related to your field, issues such as eliciting requirements, documenting issues and describing problems and solutions. Don't worry too much about these if you're going in afresh, because you're not expected to have a huge knowledge of them, but if you're at least aware of them and trying to improve, then you have a greater chance of doing so.

Try to appraise yourself of general software development issues that aren't directly coding, if you haven't already - general attitudes to security-oriented development (and testing), good design and similar best practices.

Don't sweat too much about being perfect right off the bat. If you've got no room for improvement, you aren't going to enjoy your career very long, and burning out as a programmer ain't much fun.

like image 200
Rob Avatar answered Oct 07 '22 23:10

Rob