Status Updates From Effective Java

Effective Java Effective Java
by


Status Updates Showing 31-60 of 70

order by

Mihnea
Mihnea is 59% done
Item 49
May 29, 2016 02:01PM Add a comment
Effective Java : Programming Language Guide

Mihnea
Mihnea is 52% done
Item 41
May 27, 2016 10:16AM Add a comment
Effective Java : Programming Language Guide

Mihnea
Mihnea is 46% done
Item 35
May 25, 2016 01:32PM Add a comment
Effective Java : Programming Language Guide

Mihnea
Mihnea is 44% done
Item 33
May 24, 2016 11:20AM Add a comment
Effective Java : Programming Language Guide

Mihnea
Mihnea is 39% done
Item 29
May 21, 2016 01:44AM Add a comment
Effective Java : Programming Language Guide

Mihnea
Mihnea is 36% done
Item 27
May 17, 2016 12:52PM Add a comment
Effective Java : Programming Language Guide

Ha Truong
Ha Truong is 70% done
We follow two rules in the matter of optimization:
Rule 1. Don’t do it.
Rule 2 (for experts only). Don’t do it yet—that is, not until you have a
perfectly clear and unoptimized solution.
—M. A. Jackson
May 17, 2016 05:35AM Add a comment
Effective Java : Programming Language Guide

Mihnea
Mihnea is 31% done
Item 25
May 17, 2016 01:14AM Add a comment
Effective Java : Programming Language Guide

Ha Truong
Ha Truong is 8% done
Planned to scan items but looks like I made the wrong decision. Each item in this book is so catchy that I have to read one by one thoroughly.
Feb 15, 2016 07:33AM Add a comment
Effective Java : Programming Language Guide

Kimberly
Kimberly is on page 5 of 346
Just starting on the book.
Jul 17, 2015 05:12PM Add a comment
Effective Java

Vasyl Spodin
Vasyl Spodin is on page 114 of 440
Статья 16 "Предпочитайте компоновку наследованию"
May 08, 2015 12:29PM Add a comment
Java. Эффективное программирование (Второе издание)

Vasyl Spodin
Vasyl Spodin is on page 46 of 440
Глава 3 "Методы, общие для всех объектов"
Apr 07, 2015 12:15AM Add a comment
Java. Эффективное программирование (Второе издание)

Peter Perhac
Peter Perhac is on page 67 of 346
I can tell by reading just the first dozen items in this book that it's incredibly good. I believe this is an absolute must read for all Java software developers. can't wait to reach some of the later chapters. I intend to read this cover to cover, although it's not a requisite.
Sep 05, 2014 03:22PM Add a comment
Effective Java: A Programming Language Guide (Java Series)

Dainius Jocas
Dainius Jocas is on page 241 of 412
Now it is time for exceptions.
Jul 23, 2014 02:20PM Add a comment
Effective Java

Denys Digtiar
Denys Digtiar is 84% done
Concurrency - DONE
Aug 23, 2013 04:45PM Add a comment
Effective Java : Programming Language Guide

Denys Digtiar
Denys Digtiar is 76% done
Exceptions - DONE
Aug 02, 2013 02:20PM Add a comment
Effective Java : Programming Language Guide

Rooparam Choudhary
Rooparam Choudhary is on page 45 of 346
completed 8 items
Jul 28, 2013 12:03PM Add a comment
Effective Java

Denys Digtiar
Denys Digtiar is 71% done
General Programming - DONE
Jul 03, 2013 05:50PM Add a comment
Effective Java : Programming Language Guide

Denys Digtiar
Denys Digtiar is 62% done
Methods - DONE
Jun 24, 2013 05:16PM Add a comment
Effective Java : Programming Language Guide

Denys Digtiar
Denys Digtiar is 52% done
Enums and Annotations - DONE
Jun 12, 2013 12:19AM Add a comment
Effective Java : Programming Language Guide

Denys Digtiar
Denys Digtiar is 40% done
Chapter about Generics is done. Well written and useful.
May 31, 2013 02:40AM Add a comment
Effective Java : Programming Language Guide

Carasel
Carasel is on page 181 of 346

May 10, 2013 05:03AM Add a comment
Effective Java

something_
something_ is 24% done
"it is impossible to represent 0.1 (or any other negative power of ten) as a float or double
exactly."


Once again, *mindblown*. I shudder to think how many mistakes must be buried in my software pieces on account of this one.
Nov 26, 2012 03:06PM Add a comment
Effective Java : Programming Language Guide

something_
something_ is 18% done
Check parameters:
- public methods: throw exceptions
- private ones: use assert!
Nov 20, 2012 03:28PM Add a comment
Effective Java : Programming Language Guide

something_
something_ is 9% done
"Using the string concatenation operator
repeatedly to concatenate n strings requires time quadratic in n. It is an unfortunate
consequence of the fact that strings are immutable. When two strings are
concatenated, the contents of both are copied." Oo
Nov 15, 2012 08:09AM Add a comment
Effective Java : Programming Language Guide

something_
something_ is starting
I just began this book, and I'm already learning quite the interesting things! This can only be a good sign.

From now on, all my for loops shall look like this:

for (int i = 0, n = expensiveComputation(); i < n; i++) {}

So obvious, so simple, and yet, why aren't we all doing it this way?
Nov 13, 2012 04:02PM Add a comment
Effective Java : Programming Language Guide

Donald Guy
Donald Guy is on page 67 of 346
Because work.
Sep 10, 2012 08:09PM Add a comment
Effective Java

Wajdy Essam
Wajdy Essam is on page 27 of 346
#Java: whenever a class manages its own memory, the #programmer should be alert for #memory #leaks
Aug 06, 2012 02:05AM Add a comment
Effective Java

John Boyd
John Boyd is 43% done
so 169 is 50%
Mar 23, 2011 08:03PM Add a comment
Effective Java