Yegor Bugayenko's Blog, page 21
February 27, 2017
How to Handle the Problem of Too Many Classes
During nearly every presentation in which I explain my view of object-oriented programming, there is someone who shares a comment like this: "If we follow your advice, we will have so many small classes." And my answer is always the same: "Of course we will, and that's great!" I honestly believe that even if you can't consider having "a lot of classes" a virtue, you can't call it a drawback of any truly object-oriented code either. However, there may...
February 20, 2017
Why I Don���t Talk to Google Recruiters
This is a real story, and it's not only about Google. I'm getting emails from recruiters at Amazon, Facebook, and smaller Silicon Valley startups. They find me somehow, most likely through this blog, my books, or my GitHub account. They always start with "We're so impressed by your profile" and finish with "Let's schedule an interview." I always reply with the same text, and they always disappear, only to come back in a few months under a different name. Le...
Why I Don���t Talk to Google Recruiters
This is a real story, and it's not only about Google. I'm getting emails from recruiters at Amazon, Facebook, and smaller Silicon Valley startups. They find me somehow, most likely through this blog, my books, or my GitHub account. They always start with "We're so impressed by your profile" and finish with "Let's schedule an interview." I always reply with the same text, and they always disappear, only to come back in a few months under a different name. Le...
February 13, 2017
StackOverflow Is Your Mandatory Tool
I've said before that your StackOverflow reputation is very important to us when we make a decision on how much we should pay a software developer. However, there were many complaints about this metric. Take, for example, the ones here and here. In a nutshell, so many of you disagreed and said that the number of StackOverflow up-votes was nothing more than a measurement of the amount of time someone spent answering stupid questions asked by clueless programmers. Let me disagree and explai...
February 6, 2017
Each Private Static Method Is a Candidate for a New Class
Do you have private static methods that help you break your algorithms down into smaller parts? I do. Every time I write a new method, I realize that it can be a new class instead. Of course, I don't make classes out of all of them, but that has to be the goal. Private static methods are not reusable, while classes are—that is the main difference between them, and it is crucial.
[image error]The Master (2012) by Paul Thomas AndersonHere is an example of a simple class:
class Token { private St...January 30, 2017
Decorating Envelopes
Sometimes Very often I need a class that implements an interface by making an instance of another class. Sound weird? Let me show you an example. There are many classes of that kind in the Takes Framework, and they all are named like *Wrap. It's a convenient design concept that, unfortunately, looks rather verbose in Java. It would be great to have something shorter, like in EO for example.
[image error]North by Northwest (1959) by Alfred HitchcockTake a look at RsHtml from Takes Framework. Its desi...
January 23, 2017
16 Don���ts of Career Growth
I get questions like this all the time: How does one become a senior software developer or an architect? How does one grow from a junior just starting to write Java code to the leader of a software team that is driving a BMW and making $150K+ per year? What are the exact steps that won't waste time and will get you there faster? Let me share what I think might be helpful.

Before writing this, I Googled a bit and found a lot of interesting s...
16 Don���ts of Career Growth
I get questions like this all the time: How does one become a senior software developer or an architect? How do I grow from a junior just starting to write Java code to the leader of a software team that is driving a BMW and making $150K+ per year? What are the exact steps that won't waste time and will get you there faster? Let me share what I think might be helpful.
[image error]The Grand Budapest Hotel (2014) by Wes AndersonBefore writing this, I Googled a bit and found a lot of interesting sugge...
January 16, 2017
Synchronized Decorators to Replace Thread-Safe Classes
You know what thread safety is, right? If not, there is a simple example below. All classes must be thread-safe, right? Not really. Some of them have to be thread-safe? Wrong again. I think none of them have to be thread-safe, while all of them have to provide synchronized decorators.
[image error]Aladdin (1992) by Ron Clements and John MuskerLet's start with an example (it's mutable, by the way):
class Position { private int number = 0; @Override public void increment() { int before = this.numb...January 9, 2017
How to Teach a Customer
In outsourcing, very often a customer is an idiot doesn't really know what he needs — not only in terms of functionality, but also on a technical level. What makes the situation even worse is that the customer very often always thinks he knows and understands enough. The question is how do you teach a customer? How do you train, educate, and help him? You don't!
[image error]The Firm (1993) by Sydney PollackThe temptation will be huge, though. You will think that the customer is your frien...