Saturday, July 30, 2011

Welcome Java 7

Yes, approximately we were waiting Java 7 for 11 months.


Here it is available:

http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html

In the next post, i will inform news about Java7.

Stay with Threads and Locks :).

Thursday, July 14, 2011

[KEYNOTE]Do not!

No matter what  programming language you are working with, you must not use copy and paste the code blocks on your code!

When you do this, I'm sure that; Extra effort will be shown for solving runtime problems by you.

Saturday, July 2, 2011

Good Commenting Technique

Of course, again our publishment from same book i mentioned before: Code Complete!

Good Commenting Technique's are very important for the project which have more than one programmers work on.

In this Book, Steve Mcconnel mentioned about good commenting techniques cleanly and completely. Also he prepared a question list for your intention.

Some of them are:

Are comments up to date?
Are comments clear and correct?
Is the purpose of each file described?

Yessss, please respond! :)

Friday, July 1, 2011

Checking is important before using cache on your methods

Be Carefull! Dear Programmer,

If you add a cache statement/structure to your methods of your application, think twice!

Before add a statement, please check your variables are used or updated by another method.

If you dont check, your application may not be safe!