Hacker News new | past | comments | ask | show | jobs | submit login
Qualities that I believe make the most difference in programmers’ productivity (antirez.com)
782 points by sathis on Feb 28, 2017 | hide | past | favorite | 312 comments



In this thread: mostly people responding to the headline, not the actual content of the article.

There's some fantastic stuff in here about how great design is the key to increased productivity. For example:

"It is very important for a designer to recognize all the parts of a design that are not easy wins, that is, there is no proportionality between the effort and the advantages. A project that is executed in order to maximize the output, is going to focus exactly on the aspects that matter and that can be implemented in a reasonable amount of time. For example when designing Disque, a message broker, at some point I realized that by providing just best-effort ordering for the messages, all the other aspects of the project could be substantially improved: availability, query language and clients interaction, simplicity and performances."

redis itself is a masterpiece of pragmatic design - the feature set is brilliantly selected to make the most of what you can do with shared data structures exposed over a network. Let's talk about that.


Another great thing here: "Design sacrifice: killing 5% to get 90%."

I remember a very specific example of this from Perl 6 development circa 2009. perlgeek (I think) and I had been struggling with coding up the sequence operator for a couple of months. Every time we thought we had it, someone would come up with a case that broke the system again.

pmichaud (not sure if it's the same pmichaud here on HN) comes up to us and says something like, "Guys, you're not getting this, let me do it." And I was kind of offended, because it wasn't like perlgeek and I were chopped liver; why did he think he could easily solve a problem that had been plaguing us?

But here's what pmichaud did. He went up to TimToady (Larry Wall) and said, "There's too much magic in the sequence operator. We need to simplify it." I don't know which combination of the two of them came up with the details, but less than 24 hours later the spec had been changed so that there was no magic on the right hand side of the operator and they had a working implementation. Any sequence possible before was still possible, but the user was required to be more specific about what they wanted. After the change the median sequence took maybe two more characters to specify ... but suddenly 90% of the hard part of coding the operator was gone.


I had a similar experience while trying to devise an algorithm to fill up n spots having n-1 soldiers available in the military. So after losing few hours, not being able to come up with any combination that satisfied all conditions I run to the sergeant, explained the problem and he just erased a spot for 24h, changing spec. Suddenly everything fell in to place.

Alexander the Great did the same thing in order to solve the Gordian Knot[1], he changed the spec by removing the complexity (in one stroke).

I was not in a position to even think about proposing the removal of any spot that had to be guarded at all times. Doing so, might have resulted in someone (including myself) doing double-shifts for a few days. Only he who has the power can do it (e.g. Larry Wall for Perl, Alexander the Great for the Gordian Knot and the sergeant for the military camp).

[1] https://www.wikiwand.com/en/Gordian_Knot


I think you'll like George Pólya's How To Solve It. That's one of the methods he prescribed on solving a difficult problem; by gently removing the most difficult part and look at it again.


Finding a better solution by changing the problem is great, especially as the problem stated is often not the problem faced.

Not doing something, or doing something dramatically simpler, ends up with less code being written. The cost of writing the code is usually a small fraction of the cost of supporting it during over the life span of the system.

One problem I faced was a client that as part of an e-commerce re-implementation brought a huge list of requirements for promotions and how they should work. There was hundreds of use-cases, some being very complicated.

I came back to the client and said, "are you sure you need all of this?" After working with them to investigate, it turned out that they had just documented all the features of their existing system. In the previous ten years, they had created exactly one coupon, and that was for a flat 10% off.

That was the functionality we initially went live with.


This is the difference between a real programmer and a coding monkey.

Coding monkeys consider the spec the problem and try to write code that solves it.

Programmers consider the spec a part of the solution and evolve it as necessary.


Interestingly this is pretty much "valuing individuals, working software, and customer interaction" - the core of the agile manifesto, but the bits that never seem to ever show up in "Agile" workplaces where way too often rigid compliance with standups, scrum meetings, and evenly sloped burndown charts (and foosball table, bean bags, and free energy drinks) are all "critical to the process", and fixed price engagements and hard deadlines are "the business reality"...


"The problem is not the problem, the problem is your attitude towards the problem." - Jack Sparrow

So many times I've seen someone struggle to implement a poorly written spec rather than just say 'hey can we just do X instead?' If X solves the REAL problem then sure you can.


> the problem stated is often not the problem faced.

100% true! So many times I was assigned to the task in issue tracker, where requirements was written, estimation was made, but after I sat and tried to solve given problem, it turned out that 80% of issue description was false - real problem was totally different than it was written in task.

What seemed right on planning meeting, turned out to be quite false in the process.

But quite often managers/product owners etc. don't understand this. They often believe 100% in planning ahead and issue tracker/backlog descriptions... And when something is going off the track (like it sometimes does - when problem needs extra time for thinking through) they aren't so glad because thinking and design process was not budgeted in issue tracker (even if it could lead to the better design on the long run).


Perfect is the enemy of good enough. If you never ship a "perfect" product, it has 0 value.

In the end, you provide value or you don't. The hardest thing about any product development is to stop taking things out or worse yet, keep adding things in. The top performers are usually the ones who can weigh these pros and cons almost immediately and force the product in a better direction.


And good enough is the enemy of at all. Love this little piece of wisdom from Paul Buchheit.


I wish somebody writes a book accumulating such stories. Nothing excites me more than learning from history.


Check "The Art of Unix Programming" by Eric Raymond. It's full of exciting stories from computing pioneers epoch, and more than that, it's just filled with empowering inspiration about simplicity. To quote just one story from this book:

> One epochal example not mentioned in Gabriel's paper is from distributed hypertext systems. Early distributed-hypertext projects such as NLS and Xanadu were severely constrained by the MIT-philosophy assumption that dangling links were an unacceptable breakdown in the user interface; this constrained the systems to either browsing only a controlled, closed set of documents (such as on a single CD-ROM) or implementing various increasingly elaborate replication, caching, and indexing methods in an attempt to prevent documents from randomly disappearing. Tim Berners-Lee cut through this Gordian knot by punting the problem in classic New Jersey style. The simplicity of implementation he bought by allowing “404: Not Found” as a response was what made the World Wide Web lightweight enough to propagate and succeed.


Kobayashi Maru


"great design is the key to increased productivity"

Given how many times the 90/10 principle will brutally murder your time estimates ("we're 90% done, so there's only 90% left to go!"), learning to also harness it in your favor as antirez talks about is a great programmer differentiator. If 90% of the effort is coming from 10% of the design, and you can find some way to cut that part of the design in half, you just cut 45% of your effort out. My numbers are made up, but the principle holds. Most of the time you don't get that lucky, but every once in a while it is possible to do even better; I have, on occasion, seen entire seemingly-massive multi-month projects dissolve into 200 lines of code in the right place, built on the right foundation.


I'm proud to say that I've accomplished that, at least once. My company was developing a new feature, hundreds of medical textbooks that would be searchable and readable online. The source content for each textbook consisted of a huge xml file and a bunch of images. The problem we faced was that many of our customers were government-funded libraries, and they required a physical product for anything they purchased. (We wanted to sell renewable access licenses for the online product.)

We were discussing this in a meeting with the C-level execs and other top employees, and they were working out a plan for bulk manufacture of CDs containing the textbook content. Many of the textbooks already had CDs that came with them when you bought the physical book, but most of them did not, and we'd need to manufacture copies in either case. There was liner material to produce, CDs and cases to buy, global distribution to manage, and a new department and headcount needed to manage all of this.

I interjected with an idea. I was building the online display of this content, and had already built everything needed for converting the xml into a table of contents display and per-chapter displays, all in html with the styling that we wanted, including features like the substantial amount of cross-linking between sections, chapters, figures, indexes, appendices, etc. So I told them "You know, as part of the production process where I'm converting all of this xml for online display, I can also produce a set of static files that would work well for an offline display, either sitting in a folder or on a CD. We can do that, create an iso image from it, and let the customers download the iso and burn their own CD if they want physical possession. It'd be exactly the same content, and would only lack the online searching and dynamic excerpting features that the website has which depend on our search engine."

They were stunned. They discussed, and decided that for most of the customers this would be just fine, and for the handful of exceptions we could burn the CD for them and mail it. We included a cover-art image from the book on the CD if they wanted a liner, and our download links had a little help icon that pointed to documentation we wrote for a few free CD burning utilities. Overall cost was a few extra days of development time.


I hope you were handsomely rewarded for saving the company tens of thousands of dollars, if not more.


Hundreds of thousands, probably, and my work on that textbook feature brought in millions in revenue. Another aspect of the project is that I wrote a custom XML content storage and retrieval database, and spending a couple of months proving that my solution was far more scalable and performant than either the Oracle-based solution or commercial XML database solution that the director of development and CTO preferred. So I saved the company a 6-7 figure annual licensing cost as well.

My reward was short-lived immunity to the corrosive political environment that the CTO and director of development had created. The director came from a competitor we had acquired for their customers (not their tech), and right from the start he was open about wanting to eliminate our development team so that his old team could be in charge. They failed due to incompetence, and he and his entire team were let go some years later. The CTO lasted longer, eventually firing my manager without cause, and I quit a few months later. The overall product we were responsible for (which the textbooks were a part of) is still running, and it is still their flagship. But very little has been done to it in the past seven years since I left. The CTO was let go a year or two after I left.

Handsomely rewarded? Hardly. That's not how it goes in big corps. Presiding over the hand-off from the team that was let go was satisfying, and knowing that my software is still running strong after many years of neglect because everyone who was capable of maintaining it quit is also somewhat rewarding.


Heh - did pretty much the same thing (not for medical textbooks) but included a title/keyword/first few hundred works text search thing as a Java applet, for this "Best viewed with Netscape 3!" was actually relevant! ;-)


Great story.

That's exactly it.


At one of my first jobs, my employer had $1.2MM and 10 people budgeted full time for 2 years to build a project that would allow managers to make queries on a very large dataset.

I pored through the specs, talked to everyone who would use this, and realized all the queries could be calculated from a much smaller, summarized version of the data.

I wrote a script that would create an Excel PivotTable every month and send it to everyone who asked, solving the problem in a few weeks with a <500 lines of code. The execs decided it would not be worth spending an extra two years to get the exact same answers in a web UI.

Good times.


It's amazing how much time and money one intelligent person with ideas can save a company if their ideas are actually able to be implemented.

I hope you ended up seeing some of that $1.2M, yet somehow I doubt it.


Great article, as I'm a bit of an old hat myself I'd like to add a few extra categories -

Knows how to handle not knowing or getting stuck - some people have a melt down or won't ask for help when they hit a wall or don't know when to push back (we had a vendor that gave us buggy code but kept claiming it wasn't until we pushed back through our management and forced them to let us see the code).

Can visualise the program - how much of a program someone can hold in their head is the only thing I've really seen make a programmer exceptional. It is rare and I've only met a couple of people that can hold a medium sized program in their head, the whole thing this ability lets them basically just vomit it all out into the editor without having to switch between functional and structural context and really does make for a big productivity bonus (maybe as much as 4x).


Is that really a long-term productivity boost? I wager the cost of maintaining and debugging the vomited code destroys any total productivity advantage.

Of course I am completely biased in that I can bold barely anything of a program in my head. I feel like that makes me a better programmer in terms of writing shorter, maintainable code. It's hard to assess yourself honestly though.


"vomit" maybe isn't the best word.

The point is they are able to in their head: compose the program, notice bugs, fix those bugs, possibly tweaking the design in the process.

Basically, they can prefect the design in their head and fix a lot of bugs all before starting type.


It's true the resulting code isn't perfect. But there are design advantages to holding the code in your head that make up for sloppiness at least that was my observation. A code review for error checking is certainly advisable and good practice to boot!


but the thing is the poor person finding bugs or adding features in the code is going to spend 2x as long. and then 2x as long the next time, and the next time... "no we can't re-write it, it's working code! just add the feature...".

If Mr. 4x had slowed down a bit and written something more structured, the overall cost would have been less, surely.


No nothing like that at least the couple I've worked with. I think you are confusing these people with "coding minds" with people that can churn out working code quickly (they are a different beast). The code produced by the 4x people is very elegant structurally because they can see how it fits together, this is the strength but it may be missing some edge cases / functionality and or validation in the first pass.


That second addition is not nearly as valuable for creating code as it is debugging it. When you see an error and can pretty much pinpoint where the problem is, just because that's the only place where that error makes sense... That's a lot of time you just cut out of the entire process.


Exactly. All the arguments that have the word "productivity" are probably off. It's not about "productivity" as in "which programmer produces more code" or even "more programs" or whatever. It's about the person being able to recognize what matters, on one side, versus those that can even make such decisions to finally cause the doom of the project. I have such experiences, and some huge failures can really be caused by the disconnection on the lower levels (programmers) and the managers who can't recognize what's going on (accepting the wrong arguments of these doom-causing programmers). Some of stories like that are also in the book "In Search Of Stupidity"

http://www.insearchofstupidity.com/

The author calls them "marketing disasters" but I recognized several purely technical disastrous decisions there, like "let's rewrite the product from scratch, but ignore the way the users use the product (to print) and ignore the printer drivers existing in the earlier version." Then wonder why nobody wants to use the new version, and the competition takes over. These things are eternal in tech.

On another side, if we claim that as soon somebody is making any design decisions is not "just a programmer" then sure, all the programmers are "good enough."

The way I understand it, antirez probably considers himself a programmer and for what he produced he really made most of the design decisions himself?

But if you factor in the design decisions: they can make the product great or kill it. What's the difference then between the best and the worst? Much more than 10 times, if we compare the survival vs. the death, it's even infinite.


My favourite programming anecdote[0]. How many lines of code did you produce today? -2000. Indeed it's not about lines of code. A 10x programmer might produce a solution that would take a team of three 1x programmers twice as long to implement and is twice as 'good' (fast, compact, stable, elegant, maintainable, etc).

It's interesting that this anecdote is from Apple, as Steve Jobs was a famous proponent of the 10x or 20x programmer and hiring only the best available. In contrast at Microsoft Charles Simonyi took completely the opposite approach, with a highly stratified organizational structure dependent on hiring large numbers of drone programmers[1] and reducing programming tasks down to easily implementable essentially rote modules.

I don't think it's a matter of one model or the other 'winning' though as the Simonyi strategy certainly seemed to work for MS.

[0] http://www.folklore.org/StoryView.py?story=Negative_2000_Lin...

[1] https://en.wikipedia.org/wiki/Charles_Simonyi#Denmark_and_US...


Thanks for a hint! Reading [1], there the "programmer actually making decisions" was called a "metaprogrammer":

"the metaprogrammer was the designer, decision maker, and communication controller in a software development group.... individual progammers were allowed to make no design decisions about the project. All they did was write the code as described by the metaprogrammer."

In that case, the differences between programmers can't be too big and surely matter little. It's the "metaprogrammers" that are important and influence the faith of the project. And those that Jobs praised were, by that definition, surely "metaprogrammers" who also did the tasks of "programmers."


The meta programmer model is very different though. How the programmers implement their code is not addressed. Fast? Compact? Memory efficient? Maintainable? Doesn't matter, perhaps as long as the code meets some pre-determined criteria.


In the metaprogrammer model, as far as I understand, the programmers don't even decide "how the programmers implement their code," that's what the metaprogrammer decides: if what they produced is acceptable and according to his exact instructions or is to be rejected. So they don't decide: "Fast? Compact? Memory efficient? Maintainable?" they do it exactly the way the metaprogrammer said.

What I wanted to point is that as soon as we define that the programmer doesn't decide, we have a system where the "quality" of the programmer doesn't matter much as the programmers by that definition do more-or-less a mechanical task.

However that "metaprogrammer" term is probably not so common. How are metaprogrammers called otherwise? What are their job titles?


> However that "metaprogrammer" term is probably not so common. How are metaprogrammers called otherwise? What are their job titles?

In places that use this approach the people filling that role are sometimes called Architects, Principal Engineers, and sometimes Product Managers or Technical Product Managers.


This was an excellent read. There are people who are great a design. There are people who are great at architecture. There are far fewer people who are great and making the tradeoffs needed to sacrifice part of a design or part of a "perfect" architecture when they aren't necessary to a project.

You've really got to have people who have a culture of celebrating trimming the fat at both ends to get to that.


one million time this. as the resident tech lead I spend more time trying to get people focus on things that matters than actually designing and documenting

can provide daily anectodes but here's the last one: we use a javascript scrolling library, for reasons etc, long story short a programmer spent a couple day trying to figure out why the horizontal bar wronly showed on edge, until I went in and dropped a display none on the bar itself.

ultimately we aren't paid for technical excellence but for working programs.


> can provide daily anectodes but here's the last one: we use a javascript scrolling library, for reasons etc, long story short a programmer spent a couple day trying to figure out why the horizontal bar wronly showed on edge, until I went in and dropped a display none on the bar itself.

If that is something that has to be done a couple of times in a projects whole life, fine. If that is how bugs are solved all the time or frequently, I can only imagine how bad the codebase will be to maintain in years, and how depressing a job it must be to work on it.

That line of thought bleeds that no-one cares about the project, and only cares that the "people paying for it" hopefully don't notice the state of affairs underneath, and that they are not in a position to switch away from the product when ultimately it burns, which it will, if that is how bugs are treated. It bleeds that money is the only incentive, not heart, not passion, and that's just sad. It's why so much software is so bad and ends up costing much more in the long run than fixing the damn bugs properly right now, either because you end up having to maintain it until death, because it's so hard to maintain, or because you can't keep increasing customers after years because the product is now in such a bad state that time is spend fixing/hiding bugs instead of adding new features or improving existing ones.

> ultimately we aren't paid for technical excellence but for working programs.

That is true for most people and most projects, unfortunately. Bugs should not be covered and hidden away, they should be fixed.


I had the same reaction as you to this post, so thank you for nicely summarizing my thoughts.

I'll just add:

To me, the main distinction is this: you must at the very least figure out the reason for the unwanted behavior. If you don't, then you really have no idea whether your quick little fix covered up something important or not.

It's one thing to investigate, find out the cause, and then say "meh, that's way too expensive/time-consuming to fix, so we'll switch libraries/3rd party code or just remove the requirement for the special scrolling". It's quite another to just say "meh, display: none, look at how productive I am !".

I've had other developers do this in front of me, and it freaks me out to no end. One sat there and told me that if he changes a month calculation to subtract a month, then the total comes out correctly. I asked him why that was and he said "Why does it matter, I'm getting the right result ?"

We all need to remember that we're not being paid to type, we're being paid to think.



Beautiful, thank you.



In a third party library which already touches a sensitive area that shouldn't messed with in the first place? That'd be a week of two of work, easy. Means reaching a client less. No way I'm gonna chase the white rabbit in its hole to fix something that has no side effects and zero ripercussion on other components.


> we use a javascript scrolling library, for reasons etc, long story short a programmer spent a couple day trying to figure out why the horizontal bar wronly showed on edge, until I went in and dropped a display none on the bar itself.

Wouldn't an even simpler solution be to just use the scrolling built into browsers?


Because while default scroll is fine for scrolling pages whole, in any scrollable div that's not top level it looks out of place like a blacksmith on an iceberg.

It's a gray slab that looks like a tombstone riding a straight, dull rollercoaster and unless your site makes a point of having a '90s inspirational look there's no way to integrate them in a page so that it doesn't feel completely detached.


If I was in your team I would be saying "why not just scrap scrollable divs?".

I am always looking for excuses to get rid of stuff.


I'll do r&d for 1 or 2 days and give you the right answer :)


If you need smooth scroll you can't rely on browser support and need to use a library or cook something up yourself. It's surprising how few browsers work with smooth scroll. Today it's basically only Firefox; not even Chrome.


Not to be a fanboy but I use a Mac and one of the things that they clearly did a huge amount of research and fine tuning on is the scrolling. I can always tell when there's non native scrolling on a site and it always sucks. Maybe I'm out of touch, but IMO the smoothness of the scrolling is an OS or hardware level feature. If somebody's OS or hardware does not scroll smoothly, then clearly it's something that they're used to from every other site they visit.

Putting a "smooth scrolling" library in makes about as much sense as rendering all of your site's text on canvas because some computers have font aliasing issues. It reeks of a micromanaging CEO getting fixated on some arbitrary requirement that makes stuff look better only on his computer.


I'm not talking about manually implementing a virtual scrollable canvas. I'm talking about "make item 19 in that list box visible in the middle of It's display area."

I agree that scrolling virtual spaces should be native and hardware accelerated whenever possible, but I think we are talking about different use cases.


document.querySelector('.item-19').scrollIntoView()


What web page or application would need smooth scrolling? What can't work with whatever scrolling is normal for the browser/OS/hardware?

Looking cool at the request of some manager does not constitute a need.


Imagine there's a scrollable list of items and you want to scroll one particular item into view when some event happens. Without smooth scroll the item just pops into view and the user may not see it happening. It's a usability issue-- when the user interface jerks instantly, the user can lose context about what's happening. When it's smoothly animated it's easier for the user to keep track of what's happening in the user interface, and to see how one interaction triggers the next.

Done right, animation isn't just snazzy, it produces a more usable, more approachable user interface. It helps the user keep a good mental model of what's going on. It's easier for them to mentally track "ah, when I select this item, it also selects that other item in the other list".

It's the same reason why when you click an app on your phone it animates up from the app icon when the window opens. The animation wordlessly tells the user "I'm opening this app, and the window that's appearing is born of the icon you just clicked." Necessary? Not exactly. More natural? Absolutely. Nothing just snaps into existence in the real world, except for maybe things like lightning.

When things appear out of nowhere it can be jarring. Animation is especially called for when it might not be intuitive why you're making a change to the visual state, or when you want to call attention to something.

Keep in mind that a generation ago, pretty much every piece of software (even games!) came with a printed manual that the user needed to read first before expecting to be able to accomplish anything. Today users expect to be able to figure things out for themselves, and animation is part of the user experience that helps users learn their applications naturally by exploring the user interface.


Exactly, and just we wait for mainstream VR/AR. I believe we'll see quite a lot of animation skeumorphism (is that a thing? I mean realistic animation/appearance relatively to a real world setting, e.g. gravity on objects, diffraction on transparency, etc). For a few years at least, time for users to learn new interaction paradigms and positioning within a virtual/hybrid environment.


This is what I use right now for cross-browser smooth scrolling. It's native first with a jQuery fallback.

  <style>
      html, body {
          scroll-behavior: smooth;
      }
  </style>

  <script>
      // Uses native smooth scrolling if available, otherwise uses a jQuery fallback
      // Just add data-scroll attribute to any anchor you want to make smooth
      // Add data-scroll-header to a sticky nav / header to offset the window top
      if (!('scrollBehavior' in document.documentElement.style)) {
          // jQuery fallback
          // Taken from https://css-tricks.com/snippets/jquery/smooth-scrolling/
          $('[data-scroll]').click(function() {
              if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
                  var target = $(this.hash);
                  target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
                  if (target.length) {
                      $('html, body').animate({
                          scrollTop: target.offset().top - $('[data-scroll-header]').height()
                      }, 600);
                      return false;
                  }
              }
          });
      }
  </script>


> If you need smooth scroll

Why would I need smooth scroll? All it achieves is slows down the scrolling so it takes me longer to get to where i want to in the page.


> ultimately we aren't paid for technical excellence but for working programs

In my very un-expert opinion, there has to be a balance between technical excellence and working program.

I'm assuming that your case is really a non-issue. A dev wanted to find the root cause of the issue, fix the issue, and then never have to worry about it again. That's an admirable quality to me, but from your quick fix, it proved to be too much overhead for so little gain.

On the other hand, you can reach a point such that you peel back a Band-Aid brand adhesive bandage, you find a generic brand adhesive bandage atop a goopy dollop of ointment atop rotting wounds. I think technical excellence is knowing when a quick-fix for your situation is good enough and knowing when you really need to roll back the sleeves to dive in.


> ultimately we aren't paid for technical excellence but for working programs.

Depends who you are, now doesn't it? People writing core OS components, network infrastructure, cloud servides, etc have a much higher bar to hold to.

But I'm in agreement with antirez that good design and solid technical underpinnings often make projects go much faster. Even if you don't know it by heart, being able to research the tools you need can give better results than not knowing at all.


It also depends on what you want to do, of course. Job satisfaction matters too.


ultimately we aren't paid for technical excellence but for working programs.

Some level of technical excellence is required, though, otherwise complex technical debt piles up, and we are then no longer able to deliver working programs.


Technical debt on something that outer on the stack is irrelevant, there's nothing we need to build on top of this behavior


Nothing you need to build, but your customers will be building their workflow around your outer layer.


> It is very important for a designer to recognize all the parts of a design that are not easy wins, that is, there is no proportionality between the effort and the advantages.

In optimization, if you make an analogy between speedup / improvement with advantages / effort, you get Amdahl's Law:

https://en.wikipedia.org/wiki/Amdahl's_law

"[T]heoretical speedup of the execution of the whole task increases with the improvement of the resources of the system and that regardless of the magnitude of the improvement, the theoretical speedup is always limited by the part of the task that cannot benefit from the improvement."


So you're allowed to name laws after basic common sense now?


Another good example of simple design is Slack. They completely eliminate the sharding problem by allowing each user to be in at most one team.


had a similar response. lots and lots in this piece that actually works out as fairly profound advice.


> Let's talk about that.

Sorry, doesn't fit in a two week sprint.


> In this thread: mostly people responding to the headline, not the actual content of the article

Agreed - the actual content reads more like "The mythical 10x programmer ... is me". ("many people told me that they believe I’m a very fast programmer... I’ll also use myself as a reference of coding things fast").

I don't mean to disparage Redis or the author, but the point needs to be made that seniority makes it a lot easier to be a "10x" programmer. First off, you have excellent knowledge of business requirements and PMs will listen to you; so it's relatively easy to redefine engineering tasks as you work on them ("killing 5% to get 90%"). Second, you're much less likely to be interrupted by someone who's decided you're working on a low-priority project ("focus"). Third, you probably get to decide what "programmer productivity" even means.


In this thread: mostly people responding to the headline, not the actual content of the article.

And the headline was purposefully chosen to elicit that effect -- nothing engenders a massing crowd response quite like summoning the boogeyman of the 10x programmer, allowing everyone to flow forward with their anecdotes and personal grievances.


In defense of those people, the layout of the site is actively hostile to people on mobile.

-10x for readability.


I'm sorry, for the kind of things I tend to blog about, monospace font was the simplest way to have a truly what-I-write-is-what-appears without using any markup. If I could start from scratch I would use MarkDown, however at this point if I switch all the past blog posts will be broken, or I should switch conditionally from a post ID >= but then the blog will be a bit inconsistent. I'll try to figure out a solution.


Dan Luu's website is an example of a blog with extremely simple markup that's very readable on mobile and desktop.


You could make it so new posts have markdown, but your old ones are untouched?

Honestly, your site is probably the very hard to read, but some of the problems it has are just omissions on your part If you want to see how to make monospaced fonts readable in bulk, pattern your layouts after phrack.


Great, I'll check the Phrack site. Thanks!


Personally it wasn't the font for me but the way it wraps. I have some annoying vision issues that pop up from time to time. My solution is to use Safari reading mode on iOS, but that made it worse in this case.


As a quick fix, would changing width: 800px to max-width: 800px for #content help in CSS?


I'm on a phablet and it was easy to read. (Also liked it and have questions)


The site's layout and typography is actively hostile to readers in general, mobile or no. The choice of a monospaced font in spite of all readability, the letter spacing, the lack of headings, list marking or indentation, the extremely wide lines...

It's a design anti-pattern that makes the article difficult to read, even if you don't have a cognitive differences that make reading more challenging.


I thought you were exaggerating but you are right. It is hard to read. At least the text is visible (not gray on light gray) so that is a positive.


Not true, I just read it on my 5" Android phone and it was pretty okay to read. I won't call it hostile at least.


Everything from the original post sounds reasonable, you should absolutely read it. Just some random thoughts to add to it:

* For most of my past clients, the skill / output of their programmers was not the bottleneck, even though they thought so. As long as something is not a bottleneck, there's not point in trying too hard to optimize it (since you can get better ROI somewhere else).

* Software is a team effort. Improving how the team works together / how work flows through the system probably has a bigger impact than raw programmer output (unless you are already very good at that).

* Improving the quality of your software (minimizing defects and rework) will improve the output of everyone in the team, regardless of how good they are.

* I have heard of cases where removing the "top programmer" from a team made the whole team more productive, even though an important person was missing. I don't have data to back that up, though.

Update: Thinking more about this... I have a talk called "Your Company Will Never be Agile", where I talk about how most companies actively prevent their people from doing a good job (by having policies, procedures and a company structure that is not suitable for empowered teams). And then, those same companies complain that they cannot get good people and how all the hip companies can get the 10x programmers that "we cannot hire".

I don't have an English recording of the talk, but I started a series of blog posts about it: http://devteams.at/your_company_will_never_be_agile_intro . I should maybe finish it some day ;)


Come on, Antirez is a x10 programmer, he coded one of the most brillant software of the last decade. It's so well done I use it as an example in my trainings, making people compile it to stop being afraid of building from source because I know it never fails and it's so damn simple.

And programmer reading anything on his blog, or anything on HN for that matter, is not an average programmer anyway. The simple fact you are interested in your work singles you out.

Guys, you need to come out of your super power bubble and come to work down here. Where people uses PHP, SVN, and don't know what an environment variable is. Where they work for money, not for passion. Where Vi is scary and they pay the licence for Oracle even if their DB has one table.

This is the huge majority of the devs : plumbers.

I find it disrespectful when people don't realize this, because it means they live a life ignoring a vast majority of dev tool users.

Not only those people are numerous, but they create a lot of wealth because they are so many.

Don't assume:

- devs know the command line

- devs know how to setup a server

- devs know how to use a package manager

- devs know how to version control, unit tests...

And above all, if they don't know how to do that, don't assume they can't do their job. Because according to their employer they do. And they are paid for it.

They won't do a graceful reload, they won't compress their css and won't escape the user input. But the website will be online, serving customers.

This is why on my blog I have articles explaining what's javascript, what's RSS, how to setup the Windows PATH, etc. Because for important tutorials on Python, I can reference those, not assuming people know what I'm talking about.


So you're saying that 10x developers definitely exist, it's just a disappointing state of affairs.

Like how the Turing Test was rendered obsolete because online comments (e.g. Youtube) became so bad, the bar to writing a bot that passed as one of them was lowered dramatically.


Lol, I didn't know about the Turing Test state. Hilarious perspective.


Maybe all these "I'm \d+ years old, and I like this song" before each old* song were written by bots. This would explain a lot.

*old song, according to Youtube comments is every song recorded before 2016 AD.


What do you expect ? you are at HN, and the bubble is strong here.

Heck even the large recent trend among app developers and business analysts for low-code tools, tools that require mostly GUI and some code to get pretty complex applications going, offering maybe 5x-10x (or more) boost to productivity - that trend wasn't even mentioned at HN over the last few years, even though it seems like a really important trend, if you develop software or start businesses.

That just makes me wish there was a different type of community for entrepreneurs, one that is focused on democratizing creation and simplifying knowledge, in many fields - because those are the building blocks entrepreneurs work with.


That's actually a good startup idea, since the corporate world also spend more money that the agile one.


What are some of these tools?


For enterprise software(and some IOT) Mendix and outsystems are the leaders, but there others : http://agilepoint.com/wp-content/uploads/Q2-2016-Forrester-L...

For the IOT, i believe thingworx is the leader.


HN is a bubble for sure, but that may not be the reason why low-code tools are not discussed. Suffice it to say that my interest got less and less piqued with every single word in the URL you provided (I was already biased against it before even reading the report), and I couldn't get past the first few pages in the PDF before feeling bored.

I recently was looking for Java based open sourced wiki software for intranets. And I read about this software called LifeRay. To most people on these forums, LifeRay is not particularly interesting (based on searching HN for LifeRay related submissions and seeing how many comments a submission gets). The market size for LifeRay might be quite large, I don't know, but it is just not the kind of tech that people are excited enough to comment about. For example, I am fairly sure no one is going to go and read about LifeRay just because they read this blurb.

There are many different reasons for the lack of excitement as I am sure you can imagine. But the echo chamber is not the cause of the lack of discussion. Some topics are not just interesting enough, and probably never will be.


The link i gave is to a report. It's boring. But it's comprehensive and lists all the platforms and a good starting point, because someone asked about that.

But the issue itself is more interesting: first - it's a big and relatively common software design problem(for example see how often visual "coding" is discussed) - how to enable common people to build complex systems. So what are the approaches being tried ? How are the better/different/worse/etc ? what could we learn from them ?

Second - what does it mean to the software engineering profession ? to freelancers ?

Third - what are the implications to entrepreneurs ? what kind of new opportunities does this open ? could this make large corporations agile enough to make it hard for startups ? what are good strategies ?

On the other hand, often you see here discussed some toy programming language that someone made(which is a cool project), but the improvements are quite small, the implications are quite small, and the major reason people find it so interesting is the bubble.


While I agree with almost everything you wrote - I found that original post awesome and there are many great lessons in it - I don't see what this has to do with my comment.

Also, I don't get what I seemingly did not realize (mostly helping clients with legacy code on legacy platforms in legacy organizations to improve their quality and teamwork), or why this is disrespectful...


> For most of my past clients, the skill / output of their programmers was not the bottleneck

Of course it was not. If you are antirez, you will mostly work with people on projects which, by nature, will involve talented programmers.

> Improving how the team works together / how work flows through the system probably has a bigger impact than raw programmer output

But only a person good enough can do that. This is catch-22

> Improving the quality of your software (minimizing defects and rework) will improve the output of everyone in the team

Yes, but it requires a really good dev to create and execute a plan to progressively enhance it. Instead of doing another from scratch which will also fail.

> I have heard of cases where removing the "top programmer" from a team made the whole team more productive

Yeah I heard of people stopping vegetables and living fine as well. And "top programmer" <=> "top dev". You can be very good at software and terrible with people.

My point is, the entire article is build on assumptions from the "top programmer" perspective.

All that goes to the water when your team is composed of:

- a senor waiting for retirement

- an apprentice fresh out of a community college

- a new dad who needs money and hates his job

- a legacy spaghetti code project coded by 3 different teams 10 years ago

- and no 10x programmer to be found

It will work. But say goodbye to best practices, and all the rules Antirez is stating.


But a lot of what you describe is what most people here would describe as basic competence. We're not talking about something like continuously deploying to multiple regions with architectures that permit high scalability, availability, yadda yadda. We're taking about the ability to create a simple back-end that won't lose customer data (because it has tested backups), obeyed 80/20 rules on cybersecurity, and are reasonably maintainable (code isn't suffocating under centuries of tech debt).

Every other engineering discipline has licensing requirements. People think software is special because the industry moves quickly, and indeed I agree that creating a formal, standard licensure body is extremely difficult, bordering on impossible, but think of it this way:

If, hypothetically, there was a proper licensure - how many people would be competent enough to earn it? We may think that there's a labor shortage now, but really, it pales in comparison to how bad things could be if all of a sudden everyone had to get licensed.

That's the real problem - most "software engineers" are not at a level of competence where they could get licensed, if such a license existed. And the industry's way of dealing with a lack of licensure is to throw more people and money at the problem, because the problem has defied all attempts to think smarter about solving it.


"But the website will be online, serving customers"

..., frustrating them, leaking their data, and wasting their time.


Oh yes. We tend to wrongly assume the goal of most companies is to do correctly their job. It's not. Their goal is to make money.

And a lot of businesses do so while providing terrible services or products. Plus people working for them have their own agendas : family, play, not get blamed, etc and won't do anything about it.

It's not specific to software. How many of you have experienced :

- a completely broken by design shower

- those "easy to open" packages that are impossible to open

- kitchen ware taking centuries to wash because obviously nobody designing them never bother to use them

- laptop with horrible sound

- shoes that destroy you feet after 2 hours of using them

?

Doing your job well is the exception, not the rule.


Alright, my turn for anecdata, since I am having this... "discussion" right now. About 3 years ago, I was hired to write a program to partially automate an incredibly complicated engineering workflow. It was a total rewrite of a crufty program that had been running for about 5 years (written by my boss), but which couldn't keep up any more. It took me MONTHS just to truly understand the process, and about a year and a half (after a few experiments) to get to a stable, mostly-feature-complete version. Hundreds of people are now using it every day.

I am in engineering, not IT. The executive director in charge of engineering software for the company wants to own all data and processes. He HATES my project. My second week there, his underling told me, to my face, that it was his intention to kill the project I was hired to do. (Yeah, it's like THAT.) The ED convinced my boss' boss to stop me from working on my program, and hand it over to his team. That was 5 months ago.

When I was hired, this director restarted his THIRD attempt to write the same thing with contract, overseas labor. They've been at this attempt for as long as I have been here. Their program doesn't work very well. Literally every step (that they've managed to code) takes 3-5 times longer to do with their version. The engineers are refusing to use the tool.

My boss, through excruciating effort, has collected feedback on IT's tool, and made a list of things it must do in order to switch to it from mine. This "must-have" list is about 140 items long. The program manager of this competing tool finally "put pen to paper," and estimated that, using EIGHT people, he could code TWENTY-FIVE of the required items in THREE MORE YEARS.

Rough math says I'm a 100x+ programmer, and I feel pretty good about that, but I've worked with several people who are sharper.

I said all that to set this up: To the parent comment, yes, these people produce software, and use tools, and get paid, and all that. But at what cost? The other group has spent TENS OF MILLIONS of dollars for something that will take YEARS more effort to match something my boss did for a couple hundred grand. You're right, "they" don't know how to do a lot of stuff. The person assigned to pick up my project doesn't understand how work with Azure, doesn't understand the database schema (let alone the process that dictated it), and apparently can't even copy working code from the existing program to derive new features. If you want to give people credit for being able to log into a computer, and run Visual Studio, that's great, but there's quite a bit more to it than that. When these kinds of people are creating software, it'd be better to let the users continue to do everything in Excel themselves.

I guess some people would pat the executive director on the back for creating such an empire out of this one project inside a vast Fortune 150 company, but the waste just leaves me shaking my head. And the worst part is watching how my boss, very deftly, and very respectfully, has worked to give engineers a tool that will help them do their job, and improve the process, and how the person actually in charge of such things has fought him for almost 10 years now, trying to force people to use an inadequate tool which doesn't match how they work, just to say he owns it, and there's apparently no one in the company who will or can do anything about the situation, because it would take the CEO to make IT and engineering play nice together, and he could not possibly care less what software thousands of his engineers use, or if they do it all by hand, as long as profits are increasing and the stock price is rising.

I know, I know. This is not uncommon in large manufacturing (i.e., non-"IT") companies, but this example is the worst I've seen.


So basically your are saying the mythical 10x is not mythical. You are one of them.

And you are on HN.

And you did live in the real word where people are not 10x.

:)


Or maybe saying that there are 0.001x managers out there?


Thank you for reminding me of this. I used to tell coworkers these same types of things to remind them to keep things simple, especially since we generally don't pay well enough and struggle to attract top talent. But we've managed to hire so many good devs in the last few years I've started to forget...


> Don't assume:...

What kind of dev do you suppose know what you listed? A 1.5X, 2X, or 5X programmer? Surely not a 10X/Free Electron.


> Come on, Antirez is a x10 programmer, he coded one of the most brillant software..

"x10 programmer" doesn't mean "great programmer", it means specifically "programmer 10x better than average", so simply writing great software isn't enough - the strongest man in the world might still not be 10x as strong as the average man.


I used to be a tech lead/PM on teams where we came in as an outsider and delivered code where the organization itself couldn't.

Part of that was having great programmers with great habits, sure. But a big part of that was something like "Not letting your broken organization and practices break our delivery speed"

Bad org structures and practices pull developers and teams into poorer and poorer practices, like an accretion stream getting sucked into a black hole. The org itself can take a .1 dev and turn them into a .01 dev.


I have definitely been involved in teams where removing the "top programmer" made everybody more productive. Usually, these developers are "10x programmers", in the sense that they write 10x the lines of code as the rest of the team, it's just all bad.


Maybe this is the distinction that throws off these "10x programmer" threads: the idea that a 10x programmer produces ten times the amount of code in a given time. The best programmers I have worked with frequently replace thousands of lines of code with hundreds. Programmer productivity is about value delivered, not lines of code.


The best programmer I have ever worked with used to be my boss. When I learned Perl, he had me write a very simple program to monitor some network printers. When I was finished, I showed him what I came up with and it worked pretty well.

I guess it was to show me that I was thinking too much like a C programmer, he rewrote my program in about 10 lines of Perl.

He was always willing to listen when I had design ideas that differed from his own. When my ideas were better, he'd incorporate them into our plans.

We had a four man team that was probably the most productive one of which I have ever been a member.


> He was always willing to listen when I had design ideas that differed from his own. When my ideas were better, he'd incorporate them into our plans.

This is what makes someone a good Tech Lead and/or manager.


Exactly. Years ago, one company I was at proposed we start a bonus plan based on lines of code. I wrote a script that inspected the RCS commits (it was years ago) and generated a report that showed that most of our best developers were net negative lines of code.



And how did you define and measure the "best developers"?


1.) When I am stuck on hard problem, he is a good bet for help.

2.) History: was assigned tasks or project multiple people failed previously and was first to succeed.

3.) Tasks and projects assigned to him/her move with reasonable speed, does not need handholding. When other people take over, they don't complain all that much and are able to continue without encountering major wtgs.


People getting important shit done.


Yes, I have seen that too, but that's not what I was talking about.

I have heard about a case where really the best programmer left, and now everybody else had more responsibility, had to learn about parts of the code they did not know previously, had to fix harder problems.

So, everybody else was getting better because the one person who could help with the hard stuff was not there anymore.

But I honestly can't remember where I heard that...


Ah, I've also seen that situation. But both times it was because the lead programmer was an autocrat who would scream at people if they did things wrong or revert their code or fail their code reviews, etc.

They were, as individuals, very productive, but they suppressed the productivity of the rest of the team.


That reminds me of "The Metamorphosis" by Franz Kafka. The transformation of Gregor Samsa (who was the family's the primary breadwinner) into an insect turns out to have a few unexpected benefits for the family. The develop self-confidence, regain health and skill, all that was lost because of their dependance on Gregor.


I have seen that with a guy that produced alright code, but was pretty bad leader - which was clearly his ambition. You either did everything exactly his way or had to argue for hours and days. The result was that whole project moved slowly, initiative people punished and parts of project he could not micromanage were mess anyway (since everyone else either left or was too passive).


This bit articulates what I consider to be the main advantage of experience in programmers:

> Often complexity is generated when there is no willingness to recognized that a non fundamental goal of a project is accounting for a very large amount of design complexity, or is making another more important goal very hard to reach, because there is a design tension among a fundamental feature and a non fundamental one.

It happens all the time that requirements are very complex. Junior programmers will fail to implement them. Better programmers will manage to implement them, but it'll take too much time to develop and especially to maintain their solution.

Experienced programmers recognize what's happening and have the personality to stand up the project leader and get a simplified version of the requirements accepted.

It's also why very large software projects fail, especially the type that is intended to save costs by replacing many different existing informal systems by a unified one. The requirements will be ridiculously complicated (have to do everything all the projects to be replaced do), and nobody in the software development part has the power to change the organisation first.


> Experienced programmers recognize what's happening and have the personality to stand up the project leader and get a simplified version of the requirements accepted.

Some years ago I was tasked with taking a program and fixing a major bug and adding a new feature. The original devs were gone, the code base was a mix of spaghetti code and a large number of design pattern layers. I brought up rewriting it but was told no, absolutely not. After thrashing around the code for a while longer I rewrote it anyway, taking the requirements from our actual usage in production plus the desired new feature, and was done in short order with about 1/4 the LOC of the original. A lot of supposed requirements fell on the floor, but none of them were being used and some of them never belonged in that particular program at all.

For someone like me, a "normal" programmer, this is the only way to achieve bursts of 10x productivity. At that same job there was another like-minded person I collaborated with. As a nuts and bolts dev I was as good or better than he was, but his ability to cut to the chase and somehow convince management was almost magical. 10x doesn't come from typing in code very quickly on sub-tasks.


Exactly... working as a consultant in the past I saw there was this communication/personality problem. It gets both the experience to recognize there is a problem with one of the spec and the authority to say it and get a different proposal accepted. If the environment is hostile about proposals coming from programmers, a lot of bad things happen.


>The requirements will be ridiculously complicated (have to do everything all the projects to be replaced do),

One of the biggest problems in this type of project is that many requirements are unknown. Yes, the new system must do what the old system did, but no one can write down exactly what that is.


I'm working on a project exactly like this. I'm merging two billing systems. One of these is a legacy mudball of classic ASP and it's a veritable snake pit of nested includes and globally defined variables that just magic themselves into existence out of no-where.

It's been very hard to define tasks and timescales because there are little dark corners and special edge cases in the legacy mudball that don't immediately jump out at you when trying to review the code and work out what the hell it does, and why. The original developer is long gone and there's not much way of commentary in the code. A lot of the code is illegible because somehow the original dev's indentation went mad at some point in the past.

Then there's the database....


Oh, there have been plenty of attempts to write down exactly what that is. The problem is that more than half of it will inevitably consist of bullshit ceremonies, bike-shedding and marketing. Given enough experience to cut the right corners and knowledge about actual use cases for the old software, rewriting is not the horror story that's currently on auto-repeat.


Absolutely. This is why it's so important to have input from engineering during the product design stage of any new product or feature: good engineers can help spot when a minor change to the requirements could have a major positive effect on the overall system complexity and time to delivery.


Value scales exponentially with good design, costs scale exponentially with bad design.

This is the hardest thing to communicate to people running projects, in terms of why the amount of Python or Django or whatever that you know has very little to do with being a good or bad developer.


I started the week as an 1x programmer.

The lead on my current project micro manages every point of the code's architecture. I have no freedom to make any calls, even on legacy parts of the code that could be refactored to better fit new requirements. None of the other developers "own" anything so no one can make any calls. Anything takes a week or more to be discussed. Arbitrary non-obvious decisions have been made in the code base and it's up to you to figure them out. I am left fixing simple bugs and building things very slowly, treading very carefully rather than making it right. I am now a 0.8x programmer.

I look at my week's schedule. I see that I have a lot of meetings and checkups that, while important, are unrelated to my current project and will only take a chunk of my time and energy. I am now a 0.6x programmer.

I work in an open space office where terrible music is played through its sound system the whole day. I have a hard time focusing and staying focused. I am now a 0.4x programmer.

--

While I enjoyed the article, I think it overlooks the fact that a developer's efficiency is also often a factor of their environment (not just physical, but the project itself too). I've been 5x, I've been 0.1x, and the biggest contributing factor from project to project has been my environment. My experience and knowledge is also a factor, but this changed slowly, over time, while environment changes can mean I'll go from being super productive to very unproductive in a month. More managers and leads need to be aware of that.


>> I have no freedom to make any calls

It took me a long time to realize I don't have to say yes to everything that comes my way. What happens if you say some version of, "I'm not going to do that"? It may or may not be tenable option in your situation.

It's like going to a party, the host keeps offering you food, you eat everything offered to you, and then blaming the host when you gain weight.


I actually agree with you. Over time, as I gained more experience as a developer, one of the best things I've learned was to take charge and fix things where I know they were not right, even if not officially requested. Or to identify that a request for one specific fix actually meant something else was broken and that's what should be addressed instead.


Yes, yes, yes! Instead of always blaming the worker, look at the environment. I have been on 50x teams and the main reason was that we were allowed to do our job coding and making recommendations and management did their job by removing obstacles and clarifying things quickly. They also believed us when we said something. I see it so often that management has an inherent distrust of their own people and goes behind their backs to get advice from other parties.

You go down to 0.1x if management doesn't make decisions, drags you through tons of process like status meetings and stupid metrics, forces you to use incompetent vendors and so on.


> I work in an open space office where terrible music is played through its sound system the whole day. I have a hard time focusing and staying focused. I am now a 0.4x programmer.

Slightly off-topic, but you might try some white-noise to defeat the bad music.

If you run linux, here's a nice little one-liner in a terminal:

play -q -c 2 -n synth brownnoise band -n 1600 1500 tremolo .1 30


Good observation. In Peopleware: Productive Projects and Teams the authors specifically address this phenomenon. Programmer productivity varies widely between organizations and a lot of it comes down to environment.


Yup. I cannot recommend this book enough.


Taking myself as a 0.5x programmer, I have sadly encountered some 0.01x programmers. In fact it might be better to characterize them as -0.01x programmers, who I believe can work indefinitely without ever producing a working piece of software. Usually the best indicator of this is when the initial snaglist for a piece of work grows after the snags have been "completed". Then each round of fixes becomes a kind of Hydra and finally we have to give up cutting off heads and start over.

I resisted believing in this phenomenon for a long time, especially because I'm no great shakes myself. But in the end it could no longer be rationally denied.


I've also seen negative impact developers. If they did not code, we'd be closer to the finish line than if they did not.

Works great if you pair them with a more senior developer who has the chutzpah to make an impact by deleting egregiously bad code. E.g. one of the best I know made a failing project succeed by literally deleting all unit tests (which in that case were not providing value at all).


> I've also seen negative impact developers. If they did not code, we'd be closer to the finish line than if they did not.

Code? I know people that have caused big projects to fail by just showing up at the meetings. The amount of damage a -10x idiot can do to a project is just mind boggling.

Here is my unsolicited advice to young players: if you end up in a project with a -1x (or worse) guy who is also the darling of the PM or CEO: no matter how hard you work you cannot save this project, don't wait for the shit to hit the fan, give them your two week notice today!


In my experience, those -10x people don't even have to be developers.


Care to share a war story about someone ruining a project by showing up to a meeting? That's amazing.


Here is one you might enjoy:

We had a guy coming into every meeting demanding we produced some low-level internal document for him. We tried to explain to him that (A) our project was not related to his project and (B) we were not comfortable giving anyone an internal implementation document of something that was highly agile.

So this went on for a year and by then the managers were really pissed off that we didn't have the "proper documentation" in place. We spent the next year creating a stable internal API and writing the documents he wanted.

What I learned from all this was that the only way to fix a -10x guy is to fire him. Because despite all this we spent the third year defending internal design decisions from a guy who wasn't even part of the team. In the end he was fired for failing to deliver in his own project - by which time our productivity doubled.


Failing project or failing project tests?


Failing project: the tests were the impediment (too broken and costly to refactor, every change would cost more in unit test fixing than actual implementation).


A -0.01x programmer would flip the working state of the codebase everytime he commits ;)


Here it's meant as a ratio of personal productivity, not a multiplier on the state of the codebase.


Yes. If you add two -2x programmers to the project, you decrease its productivity by 4 programmers. You don't multiply it by 4.

I started my professional career in a project where the previous developer had been given incentives per lines of code produced. Her approach was to do

  display_buffer[0] = 'H';
  display_buffer[1] = 'e';
  display_buffer[2] = 'l';
  display_buffer[3] = 'l';
  display_buffer[4] = 'o';
instead of having a print function and saying

  print('Hello');
This was on a 8-bit microcontroller with 64k program memory. And, surprise surprise, I, a humble CS student, was given a task to "implement software to control our new HW with memory paging mechanism, so that the software, which is larger than 64k, can be put on a 128k EEPROM, and then add a network management interface".

Well, having taken a look at the code we didn't have to do any paging; soon after deploying a print function we could put everything on one 64k page and the other 64k of program memory was just sitting empty.


Usually the best indicator of this is when the initial snaglist for a piece of work grows after the snags have been "completed".

I think that's probably quite normal, except for small pieces of software.

If the snags aren't becoming less significant though then I agree, that's a big warning sign.


I don't understand how anyone can say 10x programmers don't exist. There are programmers who DRAIN value from projects and companies. The most insidious I've dealt with are people who assure everyone their part is going to be done on time, but come the deadline, they have nothing.

I am today, a 10x better programmer than I was where I started. In terms of quality, complexity, efficiency, readability, maintainability, everything. I was paid too much when I started and/or not enough now!

Notch and Carmack are 1000x better game programmers than I am. Linus is a 1000x better file system and operating system programmer than me. Monty is a 1000x better database programmer than I am. DHH can build a website at least 10x faster than me and do it in a way that would contribute 100x more to the community than I could.

If you discard people with decades of experience. If you discard people who have specialized. If you discard the many geniuses in our field. And then if you start to make excuses at the other end, and if you narrow it to a specific set of tasks, with a specific set of complexity, then maybe there isn't a huge gap. But even then, I feel that if you apply yourself to that task for a decade or two, you'll find that you're a 10x better programmer than you used to be.


I don't doubt that 10x programmers exist. What I doubt is that anyone is a 10x programmer all the time. Whether or not someone is contributing 10x output to a project is such a complex number of things both attributable to the person, their environment, life factors, their coworkers etc.

I've seen programmers that were dead weight, moved to a different team and begin to flourish. I've seen programmers that on paper were the least valuable part of the team, do all the small things so well they were actually invaluable. I've been the developer that was considered a 10x dev but due to life stuff getting in the way I was probably a negative.

So sure, there are developers who are better than others, maybe even in non-linear ways, but so what? I think we can put lots of 1x developers into situations were they get 40% productivity improvements and that will go a lot further than chasing the long tails of 1000x devs.


> So sure, there are developers who are better than others, maybe even in non-linear ways, but so what?

The fastest way to kill high levels of productivity is to not value high levels of productivity.

Edit: And I believe there is a strong correlation between people who value high levels of productivity and people who can build highly productive work environments.


> The fastest way to kill high levels of productivity is to not value high levels of productivity.

I have not found that to be true. In my experience the fastest way to kill productivity is to measure it incorrectly & incentivize bad behavior chasing the wrong thing.

Everyone values productivity but virtually no one has a good way to measure it, at least not in software.


I want to point out that you and sheepmullet are not exactly in disagreement.

You can't value high productivity if you don't recognize it when you see it, so any workplace that satisfies your first criterion will also satisfy sheepmullet's.

I once worked at a place that used spreadsheet workbooks to track developer activity down to the second and used SLoC as a management metric. It was the least productive workplace I have ever seen. Paid for by ~= $7M per year of the US federal budget, and returning a CRUD app that was probably still outperformed by folders in a file cabinet. A year of work by 12 "developers" might replace one paper form.

High productivity was interpreted as a threat to the gravy train. In retrospect, I should not have suggested that everyone on the team read _Code Complete_, because it just painted a target on my back.


> In my experience the fastest way to kill productivity is to measure it incorrectly & incentivize bad behavior chasing the wrong thing.

In my experience this is almost always a management driven attempt to turn 1x engineers into 1.2x engineers.

Can you provide some examples where this is the norm in a company culture which focuses on building and enabling high performers?


a very insightful comment!

Maybe we should discuss the role of the managers in getting everyone closer to their 10x potential instead of talking about this mythical always-10x creature?


I consider the notion that everyone has equal potential to be absurd. And I consider the notion that managers have much influence over an engineer's productivity to be absurd as well, other than potential downward pressure by being over-involved, inappropriate, distracting with meetings.


We shouldn't underestimate the impact that happiness, motivation and sense of purpose have on our lives. In terms of potential, I believe we all have a much closer level than our outputs or outcomes would let us believe.


also, OP already hinted that people who were considered to be 0.1x showed significant improvement when moved to a different team, showing that the environment can have a huge effect on you.

Just think about your own carrier and people who helped you in the very beginning. Without them, would be the 10x guy you are today? What if your mentor was instead a -10x idiot?


A great comment. Thank you.

I don't think we're saying anything exclusive. From what I've seen, pretending the gap doesn't exist (for whatever reason), is a sure way to make sure things don't improve.


A 10X programmer is supposed to be 10x the average, not 10x the people who drain value.

I've watched Notch program, and while he knows of lots of game related algos that I don't, he's not a magical snowflake and it'd take me no time at all to find those algos and implement them. There are huge swathes of the code he writes that I'd be comfortable writing at about the same speed.

From experience solving other complex problems in unrelated domains, it might take me 2 or 3 hours of googling, once, for particular problems. The worst ones a day or two. After I've done it once, it's not hard to either remember or find that code and remind myself.

It certainly wouldn't take me 1000s of hours as you seem to think it would.

I don't believe in 10x programmers. I don't agree with many things stated in this article.

What I believe is that most programmers have a complexity ceiling, where if the code goes past a certain level of complexity they are practically useless on that code base. Often they can just deal with bits of it, but try getting them to do a large scale change and they simply can't. They can't reason coherently about their changes. I think both natural talent and experience raises that ceiling, as does time spent on a particular code base (just for that code base).

And that's where I think the 10x myth comes from.

EDIT: I've even seen projects where the original authors couldn't make much more progress with an operational product, I call it 'coding themself into a corner'. They took the project past the point of the complexity that they could personally handle.


10x average is the myth. According to Peopleware, it's 10x the worst and 2.5x average.


Which is hardly as intimidating. If the 10x meme hadn't mutated into a mythical ten times the average developer, it wouldn't be worthy of generating so much clickbait. We'd also be able to hire sanely without freaking out about accidentally recruiting someone normal.


+1 on the hiring sanely. A big part of the hype about the 10x programmer is that you don't pay 10x the salary: you get 10x the programmer for 2x the salary. But if they're only 2.5x programmers, that disconnect disappears.

Antirez's points about design are very relevant. Hiring a 10x CTO is probably very possible. But a 10x CTO can easily cost you 10x in salary, so again no disconnect.


This really ought to be pinned to the top of this HN thread.


+1 complexity ceiling


> I am today, a 10x better programmer than I was where I started

I think "10x dev" usually means 10x average - with the assumption that the average (or median?) is still fairly productive. Also, what metrics have you to conclude this? Do you actually measure your own productivity, or is this a subjective judgement?


> I am today, a 10x better programmer than I was where I started.

When discussing this, I think it's important to be aware of the strong psychological bias that skews our perception of how we have improved ourselves over time. I expect you are a better programmer but people tend to significantly overestimate the extent of improvement.


Notch is known to be quite a bad programmer. Or do you consider him to be 1000x better programmer just because he wrote something which earned billions? In that case he's probably 10x better programmer than Carmack


To me, what's impressive about Notch is the speed at which he can put a decent prototype together. What's also impressive is the experience he's collected.

If I work at it, sure, in X years, maybe I can be in the same ballpark as him. But today, if you wanted a game prototype or full game built, Notch would be worth more than 10x me. Just think of the experience he's collected.

If we're talking in the abstract, sure, maybe he isn't 1000x the programmer I am. I'm not really sure there's a huge value in looking at it that way though.


I do not think Notch have more programming experience than thousands of other programmers in the industry. He worked on games professionally only for 9 years. Minecraft is not that technologically great, it's just a fun game to play and very famous.


> Minecraft is not that technologically great, it's just a fun game to play and very famous.

But that's the point. Kids aren't going out of their way to buy complex technical achievements. They want a fun game. They don't care if it's 30 mil lines of beautiful C or 200k lines of ugly Java.

> I do not think Notch have more programming experience than thousands of other programmers in the industry.

Where and how you use that experience matters. Notch regularly enters game jams where he makes and completes a game in 24-72 hours. How many people here could do that? How many "average" programmers could do that? Maybe I could knock out a simple web service with a REST API quicker than Notch, but if your goal is "I need a simple game prototype by the end of the weekend", Notch is definitely the 10x option.


Yes, I guess you are right in a way. One can become 10x game jam programmer simply by attending a lot of game jams, but be average in normal gamedev job. And Notch might be one of those 10x game jam programmers, I do not know his work in this area.


Minecraft was working and it was already quite big. Quite bad programmer would not achieve working Minecraft. Notch have his limits and made some decisions that did not scaled, but "quite bad programmer" is an overstatement.


You are right, "quite bad programmer" is definitely an overstatement. I should have said average, or maybe a bit above average, but definitely not 10x.


source ?


"quite bad programmer" was a big overstatement, what I meant is that he is just not 10x, but only average. Or maybe he is, the whole 10x programmer is a blurry term.

Sources: 1. you can watch him code on youtube, just search for "notch coding" 2. 0 research papers/new technologies 3. Minecraft is an average game from programmer's POV

I am not saying that he's so bad I would not hire him, I'm just saying that making Minecraft does not make him 10x programmer.


just not making anything isn't the most insidious - the most insidious find ways to slow down whatever you're making as well as not doing anything themselves.


Why would you want a 10X programmer when you could find an X^2 one? It is a pop psychology concept and it has no use.


I think it assumes one person has a value of 1? so 1 x 10 is bigger than 1 ^ 2


I have a friend who is an amazing musician, fairly successful and quite inspiring. He's no Wolfgang Amadeus Mozart and he knows it. Everyone can accept that fact.

Too many people approach "programming" like it is a simple execution of ideas. It's more art than execution and I've been inspired by the creation of many amazing programmers in my long career. And in 35 years of developing technology to solve real-world problems I've managed to have a couple nice ideas that inspired others.

To me coding is a creative process, often I will code for many hours straight without a break, I will "wake up" afterwards like I was in some sort of trance. My wife laughing at me as I realize it's dark outside, not because it's still morning, but because the day disappeared and its night time again. For me coding is a form of meditation, it's pure thought and comes from somewhere outside of my body out my fingertips like lighting into the keyboard. It's a gentle dance with a computer to dialog with it about a problem I'm trying to solve and ways it can help me or many of its friends can help me.

If you don't feel this way about coding, maybe something else is in your future, but for me coding saved my life and without it my soul would be trapped in a metal box without any way to express itself.

Am I a 10x coder, I don't know, I don't care. What I know is I am inspired by amazing coders and sometimes when I'm really lucky I inspire someone.

EDIT: PS: Antirez has inspired me every time I've looked at his creations. I wish some day others could feel that way about my work.


Speaking from my own experience, the truly amazing ultra-productive programmers often come with the caveat that they don't spend much if any time mentoring, explaining, or sharing how they work and why. They can produce a patch in two minutes, or interactively fix up some corrupted data in a few seconds. But spending the time to demonstrate to everyone else how they did it so that the other members of the team could learn their own product better would take a lot more of their time. They're always the ones to fix the unexpected problems, because they can figure it out and fix it before anyone else can even get a handle on what's wrong. That's great in the moment of crisis, but in the long run it can be devestatingly counterproductive.

So whether intentionally, tempermentally, just due to the constant demand for their services, or just because it's tautological, the 10x programmers don't actually contribute back to their team's knowledge, which means the rest of the team stays at 1x, and whent he 10x programmer moves on to another project or company, the rest of the team flounders around while they have to figure out all the things the 10x programmer never bothered to share.


I would agree with you on this if you were to state that someone looked at the code created by one of these ultra-productive developers, asked questions, and was told "f* off".

But, did any of the other developers even look at what the other ultra-productive developer did ? Did it get studied in detail, and were questions asked of the ultra-productive developer ?

I've been the ultra-productive developer in such a situation before. After a couple of runs of "hey, here's some cool things that I did that I thought you might be interested in" followed by a lot of glazed-over looks and shifting in seats, I got the message and stopped doing them. There simply was not any interest, and I learned a valuable lesson: most developers don't have any where near the same level of interest in the craft as those that have done it for 25-30 years and are passionate about it. It's just the way it is, and no amount of persuasion or pleading is going to change it.

Either that, or I'm mind-numbingly boring and that was the reason... ;-)


I think the phenomenon of the 10x programmer does have analogues in physical work. I feel a big part of this is having the ambition to absorb the entire problem domain. A 10x programmer does not work on just one part of a problem, they work on the entire product, each subproblem having a solution that simply flows from the constraints of the entire system. It's this full comprehension that allows the programmer to work without costly analyzing pauses, which I bet is the root cause of the delays associated with the 'regular' programmer.

I think I experience this in my hobby projects, when I fully own the project even when it is fairly complex, every time I spend an hour or two on an evening I pump out a few features that on a big team project would feel like they could've cost weeks.

The physical analogue I offer which might be a little far fetched is the construction worker. I have been renovating a house, doing demolition, basic construction, electrical, plumbing, and hopefully in the future finishing of the house. I'm a total novice, so obviously it's going slow, but eventually I will have constructed (most of) an entire house. Because I do everything, there is little to no overhead (besides me having to learn everything) when switching between tasks, I own all of the project. I bet that someone who solo-renovates houses as a full time job is ridiculously productive, much more so than a general contractor managing a team of subcontractors.

Anyway, obviously this is all just hypothesizing based on anecdotes.


>The programming community is extremely polarized about the existence or not of such a beast

If we go meta and generalize the disagreement, the skepticism about "10X" is the same as the rejection of other labels such as "ninja" and "rockstar".[1] For some, the idea of categorizing a subset of programmers with a grandiose label is psychologically distasteful. It doesn't matter what the label is; any label that attempts to stratify programmers is a "myth".

As for "10x" specifically, I'll repeat what I've written before...

To make peace with the "10x" label, I suggest people just think of it as a rhetorical figure-of-speech instead of a rigorous mathematical term. We don't get hung up when people say "Star Wars IV was 10 times better than Phantom Menace" or "I'm not even 1/2 the football player I used to be."

Even if people were to use a new term such as "3-Sigma Programmer"[2] instead of "10X Programmer", the ensuing debates would still be the same.

E.g. "Some people say 3-σ programmers write string parsing loops that are better in speed and quality than 99.7% of the other loops but that 3-standard-deviations-above-the-mean is a myth... etc"

The argument pattern would be the same: take a label, any label, hyperfocus on some literal meaning to the exclusion of all other colloquial usage, and debate why that mathematical interpretation fails in the real world.

tldr: "10x" in discussions is more of an informal ranking of programmer ability and not a rigorous mathematical measurement of output.

[1]https://www.hanselman.com/blog/TheMythOfTheRockstarProgramme...

[2]https://en.wikipedia.org/wiki/Standard_deviation


Not many people would take issue with the statement that Shakespeare was 10x better / more effective than the average playwright. If you consider that both are creative processes there seems no reason to reject the idea that a programmer could be 10x more effective than his peers.

The comparison between writing a play or a program starts to break down if the problem space is narrow, as the article also mentions, so a lot of what people end up arguing about is what programming actually is.


If publishers decided they were only going to publish Shakespeares, I imagine a multitude of authors would squander a great deal of ink over it, and we'd all be worse off for the cumulative waste of talent.


While I completely agree that some programmers can be 10x more productive than other ones, I think it's far more common to see programmers who LOOK 10x more productive than others. It's very hard to compare people who have different problems to solve. Solving 90% of the problem is not the same as solving 100% of the problem, and sometimes that 10% really is worth the effort.

I've seen cases where one ostensibly 10x developer comes in and solves 90% (the easy parts) of a problem. Management love him. Then he moves on to other projects and leaves a team of "1x developers" to deal with the 10% (which management still insist on having). This team now have to re-write everything this superstar did from the ground up without taking shortcuts this time. The time it takes makes them all look like 0.1x developers.


"I came, things got better, I left, things got worse. What do you think that says about me?"

Whether it's an engineer, or a manager, or C-level executive, this is very easy to achieve by borrowing from the future. Very difficult to solve I think.


You forgot politician


I've worked with people who could be classed as almost a 10x programmer.

Their code worked, but it was also incomprehensible to everyone else on the team.

I have found that high-speed programmers tend to develop a very personalised workflow style. They do things their way, they code their way and forget that other people may have to maintain that code.


The argument in the above post would not classify those as 10x programmers. antirez is claiming that high quality design and a commitment to simplicity is a big part of what makes some programmers do much more productive.


Oh I agree with the article. Whenever I lead a project I argue that the team should aspire to follow "lowest common denominator" principles. By that I mean they should work in a way that appreciates the abilities of the least skilled on the team or in a manner that would allow someone coming in off the street to get up and running with the project without needing any help from existing developers. That doesn't mean over simplistic code, it just means good simple design, lots of comments and docs and asking around for permission before implementing an obscure or exotic design pattern.

What slows down my productivity more than anything is looking at someones code and thinking "Why did they do that?" Simplicity pay off in the long term.

However in reality, and what my comment was referring to, is that every sizable team has that one dev who rattles off code quicker than anyone else. Yes it works, but it will have a lack of comments, or they don't check in often enough resulting in merge issue or worst of all they implement a design pattern no one else has heard of.


The worst part of working with people like that is that they are usually rewarded, while the rest of us are criticised for not being able to keep up, or lack understanding.

I worked with a guy who was the star of the department, a nice and friendly guy, but holy crap he built some interesting solutions. Example: Our main product could only be debugged if we started up a development environment, consisting of 12 VMs. The 10x guys only problem was that the subnet these thing ran on was a little to small for all us to have a full environment.

You're absolutely right that these people develop tend to develop a very personal style, and often it's harmful to everyone else.


Do they develop a "very personalized workflow", or do they simply use abstractions and techniques that go beyond hashmaps?

I've observed on a number of occasions that very good programmers get accused of writing "incomprehensible" code simply because they use data structures that you learn in the second half of CS 101, e.g. token buckets or bloom filters.


I've worked with some too and they've always needed another 10 junior engineers to clean-up and thoroughly test their code later on. In some big corps, that might not be such a bad thing. If it weren't for them, most projects would be stuck in so called "design-meetings" forever.


Your comment, like the parent comment, makes it sound like neither of you read the article...

The kind of developer you describe literally almost the complete opposite of what antirez was talking about!


I know, I was just making a general observation having worked at some of the Big 4 companies.


> Their code worked, but it was also incomprehensible to everyone else on the team.

It's because the 10x programmer is too fast for the team. Therefore its code is not shared with the team (no time to explain, to time to document, no time to teach), so the team doesn't understand it. But it's not team's fault, nor the 10x programmer's. It's the delta between them.


That is a big part of it. Unfortunately when the department manager looks at lines of code as a measure of productivity, guess who gets a pat on the back....


Ah yes, of course, I forgot that management is chosen because of its infinite wisdom...


I absolutely loved this article. Don't get hung up on the "10x", read it as "good". All the characteristics Salvatore describes are the characteristics of every good developer I know, and that every developer should strive for. They make you a better artisan, but also increase your productivity. Who cares if it's 10x, 100x or 2.5x? The important bit is growing to your personal full potential.

One thing that it's missing from the post is a bit of focus on how good developers (and indeed good leaders) concentrate on maximizing their impact. Not only you want to be fast and reasonably accurate, but also make what you do matter. Sometimes shaving down compilation time by a couple of minutes will save each developer in the team two minutes multiple times a day for years, for example. Not all productivity wins are obvious.


10x what, though? No 10x engineer would accept a unitless quantity from uncalibrated measurements of terrible accuracy.

Yes, it's obvious that some people are getting a lot more done, but it's very hard to quantify and vulnerable to social engineering. It can be hard to spot quieter people working effectively, and it's really hard to quantify those who spend their time helping others or improving team effectiveness or business communication.


It's even harder when you factor in people who seem to get a lot done quickly, but at the cost of huge technical debt that will slow the project down to a crawl in the long run.

Or the other extreme, people who overengineer everything in anticipation of a future that will never come.


> but at the cost of huge technical debt

Which is also unquantifiable and is a very similar myth.


If the domai space is broad, complex, and immensely resistant to quantification, then a 10x engineer would probably prefer a unitless rough approximation over some precise yet useless quantified description.


I thought the research that produced the legend of the 10x programmer showed that he was 10x better than the worst programmers who were still good enough to be employed, and only ~2.5x better than the "average" programmer.


Correct.

In Peopleware, DeMarco and Lister write:

    Count on the best people outperforming the worst by about 10:1.

    Count on the best performer being about 2.5 times better than the median performer.

    Count on the half that are better-than-median performers outdoing the other half by more than 2:1.
What nearly everyone who has read that remembers is the following:

    The best people outperform the average by 10x.


Here it is in visual form. Median defined as 1.

  |                    |                 | Probably          
  |    Unemployable    |    ___          | Over-     
  |                    |  ,' : '.        | qualified 
  |                    | /   :   \       |           
  |                    |/    :    \      |           
  |                   .'     :     '.    |           
  |                 -" |     :       "-_ |           
  |          __--""    |     :          ""--__       
  |____---"""       0| |     :           |    ""--___
  +------------------+-+-----+-----------+-----------
                       |     |           |           
                      0.25   1          2.5 (10x)    
People with skill below 0.25 cannot meet the minimum requirements for the job, or cannot be productive enough to cover their labor costs. People with skill above 2.5 have likely been promoted beyond the parameters of that job.

Whenever someone exceeds base expectations to such an extent that they hit the ceiling for the position they are in, they either get recognized and promoted, they job-hop to the next rung up the ladder, or they throttle back their own performance to be proportional to their compensation.

There are a few jobs that are at the top of their respective career ladders, where there is no choice but to offer profit-sharing as a means of encouraging best performance. So you can get a 20x CEO, or a 50x celebrity performer, because they get paid a percentage, and there is nothing else to be promoted to, except young passive-investor retiree.


I don't have the book ready here, and it's been a long time since I last read it, but wasn't that the productivity for specific, limited and well-specified tasks? How about the productivity of tasks that only a subset of developers would be able to solve (which don't have to be that hard, like a bug-free binary search, which according to Bentley[1], eluded 90% of professional programmers)? How do you quantify the difference in performance for that?

[1] Programming Pearls. Jon Bentley (Column 4)


"When the task at hand is much more rigid, with specific guidelines about what tools to use and how to implement things, the ability of a 10x programmer to perform a lot of work in less time is weakened: it can still exploit “local” design possibilities to do a much better work, but cannot change in more profound ways the path used to reach the goal, that may include, possibly, even eliminating part of the specification completely from the project, so that the goal to be reached looks almost the same but the efforts to reach it are reduced by a big factor."

This is one of the reason working in software sucks so badly these days. You'll inevitably be forced to work with lesser tools in more ceremonial ways, which takes away most of the leverage from experience and skill; effectively dragging everyone down to the lowest common denominator where everything is done according to some stupid, over engineered specification.

And one of the beefs people seem to have when I share my code publicly. Cutting corners and side-stepping complexity is where coding turns to art for me, where the fun begins; which means that many of my programs look like toys in comparison to "serious" software. Yet they still manage to get the job done for less effort, and a closer look reveals that the simplicity is carefully engineered. I just don't have much time or patience for ceremonies these days.


Reminds me of when I used to work at Cisco. All the software there for routers must be written in C. As a result everything takes much longer than it should.


It always seemed weird to me to hire expensive specialists only to slap them around and override their experience by insisting on sub-optimal tools, methods and work environments. It took me 30 years of diligent, daily practice to get here. That experience better be put to good use or I'm out, I have no patience for business bullshit.


I'd argue that it's greater than that these days, many programmers really just can't do what a lot of good programmers can do. Even if they're given all the time in the world they'll just never get a result. So whats that make them infinityX programmers?


Exactly. At my last job, a colleague of mine was tasked with creating a tool to generate a monthly summary report based on 100s of millions of records. It took him weeks of trying to get something working in Python (naively read in all the data into Python objects and then trying to iterate over them), coming up with convoluted algorithms trying to speed things up. His final solution took multiple days to run (too slow for the requirements). An equivalent solution using PostgreSQL (using the built-in COPY to parse the CSV records) and couple hundred lines of SQL (a day's work) could do the job in less than 10 minutes.

At the beginning of my career I've done comparable things. I once spent multiple weeks implementing a solution to a problem that would have been trivial if I had known about unification [1]. Thousands of lines of complicated C++ code, countless bugs,... If you don't even recognise the problem, how can you expect to find a reasonable solution in a time that is only 10x as long as it would take someone who recognises the problem and knows how to solve it?

[1] https://en.wikipedia.org/wiki/Unification_(computer_science)


I don't understand this. I'm not saying I don't believe you, but it seems ridiculous to me. I actually feel vicariously annoyed just reading that story.

In my experience, most competent programmers encounter problems they can't solve off the cuff frequently. Then they think about it, research a bit, formulate the problem, etc. They come back to solving it after stepping back because they realize they're in the weeds and just treading water.

At a certain point, your colleague must have realized this task was simply beyond his "off the cuff" abilities and gone looking for a more efficient way. Surely he had the presence of mind to realize he was beginning to be unproductive? How did he spend weeks on a problem that can be summarized as "retrieve a lot of records from a database"?

Furthermore, what was your organization like that someone that grossly incompetent wasn't checked in on about progress? There was no "mercy rule"? No referee to call it when it was clear it was taking weeks instead of hours or days?

I guess I'm just confused because I don't consider myself a particularly spectacular programmer, but I'm self-aware enough to search for a solution and RTFM for the tools at hand. I just don't understand how weeks were spent here. I've never encountered a team where it seemed like one person was that far off from the median (to be fair the companies I work with likely wouldn't use them as a point of contact though).


> I don't understand this. I'm not saying I don't believe you, but it seems ridiculous to me. I actually feel vicariously annoyed just reading that story.

It was ridiculous, and I was annoyed at the time too. Especially because I had basically laid out how to solve it just before I left that company. Somehow that didn't get communicated to him. When I went back for one day 5 months later, I learned that he was basically still nowhere (he had been doing other things too). I spent an hour with him laying out the solution in detail. From what I last heard, he listened, and that is the solution they are currently using.

> At a certain point, your colleague must have realized this task was simply beyond his "off the cuff" abilities and gone looking for a more efficient way. Surely he had the presence of mind to realize he was beginning to be unproductive? How did he spend weeks on a problem that can be summarized as "retrieve a lot of records from a database"?

If you only have Python experience and no intuition about how much time/memory certain problems should take, you don't necessarily know when you're out of your depth. It was a Django shop. The only exposure most of the people in that company had to the RDBM was through the Django ORM. Multiple times I have seen them do things through the ORM which would be trivial and multiple orders of magnitude faster with a couple of lines of SQL.

That data also didn't come in a database, but in a series of CSV like files. If you don't have RDBM experience, you don't necessarily see how you would use a database for this problem. And Python conveniently has a csv module that will happily parse your files into objects... If you buy into the marketing that Python is 'fast enough', and 'you can always use Pypy if it needs to be faster', you might not realise when you get stuck.

> Furthermore, what was your organization like that someone that grossly incompetent wasn't checked in on about progress? There was no "mercy rule"? No referee to call it when it was clear it was taking weeks instead of hours or days?

Management didn't know how long that task was supposed to take. The technical competence in that company was very limited, and they were used to deadlines slipping all the time.

> I'm self-aware enough to search for a solution and RTFM for the tools at hand.

That puts you ahead of the pack, in my experience. I had almost no experience with RDBMs before I joined that company, but reading the first 100 pages of the PostgreSQL manual the first week put me ahead of people who had been using PostgreSQL as their principal tool for more than a year (a different team, the metrics team which used PostgreSQL directly, not through the Django ORM). They had never heard of simple things like VIEWs and WITH queries.

> I've never encountered a team where it seemed like one person was that far off from the median

I don't think he was that far off from the median in that company, maybe just a bit below. To be fair, it was technically the worst company I've ever worked at. I was only with them for 6 months (and I never would have started there except for personal circumstances).

Consider yourself lucky never having worked at such a company. They are more common than you think.


yes exactly, funny when I was writing that I had the same thought about what I was like when I first started - I had a flashback to spending days writing out some C code for a linked list. I thought it was cool at the time, comparing that me to this me, then it would easily be a 10x difference. qed.


It seems to me a few people fit their jobs/environment others don't. The few who fit are productive, those who aren't where they are supposed to be are not. We should be discussing how to help people learn what environment/job works for them and empowering them, instead of trying to focus on the mythical 10x programmer. Don't get me wrong some programmers are very talented (and thus more productive), but I think this is due in great part to their ability to add value in a particular setting.

A 10x games programmer in a small studio could easily become a 0.1x web dev in a big web dev team.


From what I've seen from working on two projects with more than 100 engineers is that they break down into these categories:

20% - Not productive. They can't get their tasks done, and after awhile, no one even expects them to. They get routed around. 65% - Neutral. The quality problems and technical debt they incur matches their productive work. 12% - Net negative. They introduce hard to fix bugs and technical debt beyond their productivity. 3% - Gods. They do almost all the productive work. Without these types of people, no large project would ever get done.


There are so many factors at play in team and client environments, so the best benchmark to use is your own productivity as a programmer.

1. Solving problems for the Nth time instead of the first leads to substantial gains in productivity, easily 10X gains on your first attempt.

2. Architectural decisions add another multiplier on the above: picking the wrong database type, structuring and reorganising your models, spending time to design ahead vs coding right away, all can /10 or 10X your project easily from fixes and re-dos alone - combine both 1 and 2, and you have potential 100X gains.

3. Risk-distributing the project work: eliminating the worst 5% as the author says, and/or writing the most complex parts first to reduce risk of massive rewrites in case something doesn't meet expectations in its most critical functionality.

4. Having competent business requirements providers who won't move the ground beneath your feet. You can be 10X or 100X more productive when writing new code, and that much slower when rewriting someone else's bad decisions. It's no different than trying to build a skyscraper on foundations built for a garage.

Stack the above as A x B x C x D and you can see why you might be able to beat your past self 10X or 100X and more between projects. Having teammates who can beat you is even better if you can learn from them and accelerate your own progress by skipping time consuming mistakes.


Some productivity killers:

- Distractions

- Feature creep

- Poor code organization: coupling, action at a distance, cyclomatic complexity

- Noise: comments that do not get to the point. A tool to mitigate this is https://foxtype.com

- Hacks and lack of consistency

- Lack of automation: tests, builds, deployments

Regarding hacks, imagine what would physics equations would look like if a fundamental constant was wrong. All equations would need to compensate for it by including some arbitrary constant making everything more complicated. That is what messy code bases look like, layers of lies to compensate for lies. Clean code is more straightforward, easier to work with.

Regarding iterations... does the army run an exercise with soldiers and trucks and live ammo each time a general wants to test an idea? No. They use simulations, and only the ones that look promising are turned into exercises. So rather than asking engineers to prototype some throwaway idea, get your hands dirty and use Powerpoint and your imagination, stress the idea, then build it. And if it's built, keep it in a feature branch until you've actually decided to keep it for good.

When a car is built, engineers tell designers to modify their concepts in order to make the production more cost efficient. Same in software... be prepared to negotiate requirements if that is in the best interest of the project.


All programmers have different output. How is it even a debate? Some people are more productive than others. Just like one novelist takes 10 years to finish his novel another writes 2 every year.


Also not unimportant, the quality of said novels. 2 shitty novels a year versus one praised novel every 10 years.


Actually, I think it's the inverse. Most 2/year novelists are professionals, and it shows. Stephen King consistently wrote at about that rate. 6 months full-time is a good amount of time for a professional writer: 1-2 months for writing, and then another year or so of polishing and editing that happens in parallel with other efforts.

10 year novelists are often amateurs. That novel your next door neighbour asked you to read? He's probably been working on it for years.

Even notoriously slow George R. R. Martin takes less than 10 years to write a novel.


Two novels off the top of my head with far greater significance that anything GRRM or SK have or ever will write that took ~10 years to write: Dispatches (1968-1977) and Infinite Jest (1986-1996).

Feel free to think that a novel is something one cranks out as if it's just an object that carries no meaning, requiring no sacrifice from the author. But that's an opinion, and not fact.


I did not mean to imply that they have to be bad because of a higher frequency. But I am saying that it is possible that they are.

All I wanted to do was point out that quality matters as well, and not draw a correlation between frequency and quality.

(I do agree that 10 years sounds too extreme for a professional writer of course ^^)


"How is it even a debate?"

Because having different output has nothing to do with being more productive. It's just different, that's it. And productivity is very hard if not impossible to quantify. Relevant experience and knowledge might boost productivity on a specific problem, just like it might make code nearly defect-free with little to no effort, or make someone much better at quickly understanding large code bases. But it doesn't mean that a person is going to be motivated and rested enough to leverage it for the benefit of their employer or that another person is going to be just as unmotivated or that it's not going to change for a different problem, etc.


To clarify what I meant by "how is it even a debate?": I just find it a bit "surprising" that many people in this industry refuse to believe that many programmers are 5x or 10x more productive than others (and write just as good code).


I should clarify too, that I do think it's incorrect to believe in so over generalized concept, these things are much more complicated to claim something like that. I also believe that nobody is going to be a very productive programmer working for an employer. It's just unhuman to work hard and make choices pursuing somebody else's success.


The whole 10x programmer thing is just interpreted wrong. The original statement was that the best are 10 times better than the worst.

I've certainly worked alongside programmers who's output is so bad that I would consider myself both 10 times better and 10 times faster. And I wouldn't even consider myself a top teir programmer. They are often people who's contributions to the project are net negative in that they actually require additional work from someone else to go clean up their mess afterwards.

Stop imaging a mythical coder who is 10 times better than everyone else, and instead think of the worst coder you've ever worked with who is 10x worse than everyone else. There is your 10x'er. We are nearly all 10x'ers when compared to the bottom few percent.


The programmer is only as good as his manager. If a 10x programmer is working under the leadership of a 1x programmer, he will probaby turn into a 0.5x (due to lost motivation). A 10x programmer in a decision-making position will actually bring up the output of all other programmers. In reality, a 10x programmer doesn't have to be fast at programming themselves, they just have to be able to foster good habits which make everyone else faster. That's why it's dangerous to promote 'fast programmers' to leadership positions. Fast doesn't mean good - In fact, most of the time, 'fast' is bad/suboptimal (especially when it comes to design decisions).


I disagree - some of my best managers weren't exactly the best programmers. They did, however, have a mind for smart architectural decisions and knew when to "back off".


You forgot one... sacrificing the efficiency of others to gain multipliers. By undermining team communication, future maintainability, etc, the 10x can appear much faster. This speed is gained not by truly being more efficient, but rather by the coding equivalent of maxing out your credit cards and mooching off your friends.

It looks good at the present, but the team pays for it in the long run - long after Mr 10x (it's always a guy, right?) gets fed up with the process bloat and criticism and whining and leaves for greener pastures.

I've cleaned up after 10x programmers.


As have I.

Interestingly, sometimes that cleanup was an intentional part of the process and looked more like maintenance and extension of rapid prototypes. It still felt like I was compensating for all those bad habits of Mr 10x.


I think the significantly better performer is something we see in all areas like sport, music and craft.

I think Anders Ericsson does a good job of explaining the phenomenon in his book Peak: http://uk.businessinsider.com/anders-ericsson-how-to-become-...

What we should be doing is looking to create companies that can allow workers to reach and sustain peak performance in all areas, not just coding.


Antirez is a 10+x programmer in most peoples' definitions. Writing nice to read code fast. So it is good to read this from him but then again he always appears quite humble.


Somewhat related, there's a very good post here: http://lesswrong.com/lw/l8/conjuring_an_evolution_to_serve_y...

It's about the unintended side effects of trying to be a 'Natural Selector'. One example is selecting individual hens on egg output to create a breed of high-egg producers. The result was mean chickens which had gains b/c they were very aggressive. The breed needed to have their beaks clipped otherwise they would kill each other. When productive groups rather than productive individuals were selected though, they got the desired effect. (Though in another example I can imagine selecting for mean group behavior)

Another example was trying to selectively evolve animals that would self-limit reproduction. (to avoid overpopulation and resource over-consumption) The end result was selecting for cannibalism.

In organizations, the equivalent of propagating a feature are the hiring stage and the promotion stage. Whatever you hire for, or promote for, will be the trait that's optimized. Whatever the side effects may be... (e.g. Enron)


The main difference I have noticed between programmers isn't how fast they get their projects done, it's the amount of technical debt they leave behind.


From experience, it comes down to luck, but in a sense luck = good preparation / pre-built components toolbox.

I can be 10x, even 100x when working on something I've already solved & have "big" set of components ready to plug in (with a little bit of tweaking). The more stuff you have, the "luckier" you are. It's also ability to spot patterns & good memory & being in a flow.


Off-topic, but I know that Antirez has mentioned in the past he is always working on his English grammar.

> Surprisingly the ability to use basic imperative programming constructs very efficiently in order to implement something is, in my experience, not as widespread as one may think.

Those words are spun better than I could do, and I'm a native English speaker. Bravo!

Maybe something missing from the list is hard work and long-term dedication ;)


I think this myth stems from a lack of understanding of what we consider to be "work". For example, one developer could crank out 10x as many features as their peers, but never consider deploying or maintaining. The reality is that they are making everyone else slightly less productive. Similarly, they could work on 1/10th of the features, but help their 10 peers become twice as effective. Taking this even further, there's developers who can complete 1/100th of the features as their peers, but help thousands of other developers become 5% more effective.

In my mind, the mythical 10x programmer is the person that can complete business objectives while helping make those around them more effective. This isn't actually a myth, and "10x" is a completely arbitrary number that doesn't mean anything. It might as well be 2x or 1.1x -- they all mean the same thing to me. They can do their work at 1x speed, a baseline set by the developer in question and not their peers, but they can simultaneously help others around them be more productive.


Two classics on design to flesh out Antirez' thoughts:

Parnas’ ”On the Criteria To Be Used in Decomposing Systems into Modules” https://www.cs.umd.edu/class/spring2003/cmsc838p/Design/crit... [PDF]

Christopher Alexander’s Notes on the Synthesis of Form http://www.hup.harvard.edu/catalog.php?isbn=9780674627512

Both get deep into how a design emerges from the relationships among what Antirez is calling "sub-tasks". Antirez refers briefly to these relationships in the "Design sacrifice section." Parnas and Alexander put them, correctly I believe, at the heart of the craft.

Parnas was a software engineering authority. Alexander went on to write A Pattern Language, from which the software community derived "design patterns" as a foundational idea.


I like the article in general, however sometimes i think that an ideal solution in terms of design sometimes can't exist, I mean a program mostly grows after usage and gets many changes over time. sometimes something which was quite good, is now rusty and bad.

I mean at the moment I'm actually changing my code that was simple at first, but over time more and more things were added and it started to complex. The thing I'm doing right now is getting rid of the complexity to add another future. Well mostly I think a big problem is that many people actually think about the design too much, since the design of a program will eventuelly be changed anyway. What worked for me was design something that works in most cases and grow that path or throw it away if it sucks.

btw. I love what antirez did and does for the community of programmers.

I always use a redis client to teach people more about network programming in java. It's a extremly simple, but still powerful command set/protocol. I hope he can keep up his work.


One of things that come with experience is the ability to foresee the potential changes and ensure that, when possible (preferably during the initial spec phase) the solution is extensible/flexible enough to accommodate the most likely changes.

For a simple example, if you're asked to implement something like a blog, you would naturally be prepared to be asked for authentication, authorization, contact us forms, commenting, etc. If you're aware that there's a high probability of such a change request in the early phases (but not NOW), then that anticipation will usually result in better code.


That's exactly what I think does not work. You can't see the future. Of course a simple project want to have that, but a big project is unpredictable. You should make it flexible by having a great test infrastructure to move forward fast, but you should try to create something that doesn't exist yet. Maybe it is needed, maybe not, it's just too unpredictable to write code for something that doesn't exist in the customers head.


I didn't mean "implement features before they're requested". What I meant was that designing flexibly will allow you to iterate better, and given some experience, you will probably be able to "predict" the next feature req or 2.


Productivity is all about the choices that you make.

It's the essentially the same as optimizing a computer program: you can't make it do more work faster, you can only make it do less work.

And if 'less work' means the problem is solved anyway then you are a 'faster' programmer, even if you produce fewer lines of code than your 'slower' counterpart.


When the overall quality / delivery metric of an individual / team tends to 0, then the ratio between a good (normal) programmer over that will tend to infinity.

Probably the biggest aspect not dealt with in these writings along with the discussion around it (is there or is there not such a beast) is bias.

For example, selection bias: e.g. my view over what was the best / worst programmer was much different when working in different teams. I found out there could be much worse than what I thought is the worse. Then I learned that there could be much worse... It's like a fractal :) As you notice these differences a 10x difference doesn't seem that crazy. It's really things that should take a few weeks, which in turn take months or years or never get done.

Also like any other optimization problem, optimizing software development is about hitting a moving target. When the team is balanced, it may be the process that will become a bottleneck, etc.


Even though I agree with all the points made by the author, the notion of 10x programmer reminds me of one-man army movies like Rambo and it's equally ridiculous. Software development is a collaborative effort, not a contest where whoever commits more LOC or finishes more tasks wins. It's not that hard to be 10 times more productive than anyone else if you built something from the scratch, possibly reinventing the wheel instead of using common libraries/frameworks, wrote no documentation and you're not really willing to share your knowledge with other developers. Sadly, this happens - see e.g. http://thedailywtf.com/articles/the-inner-json-effect [edit: added link]


I don't think the 10x moniker is an internal label given by the developer themselves, rather a label applied to them based upon actual productivity. Your example developer would be commonly judged as the opposite of a productive developer.


I think the real key is simply experience. From what I've seen a 10x programmer is simply one who has worked on 10x as many projects as the baseline. The things the article points out are common traits of such people. A 10x programmer has worked on several teams and has lots of side projects.


Kent Beck has an article that is a nice complement to this one:

https://www.facebook.com/notes/kent-beck/mastering-programmi...


Perhaps it's worth stressing organisational factors in productivity.

Often when you find someone who's really good at what they do, they're the type of person who loves their work, and they've managed to find employment in an environment that suits them. The two are of course mutually helpful.

Also keep in mind it can be very hard to find more than one space for such a person. It's like how certain soccer teams are built around a particular star player; everyone else plays to suit that guy, and it would be hard to fit a clone if you had one. Others may well be suited to a star role, but happen not to have landed the role. Watch the Tour de France to see what happens when the lieutenant steps up to the captaincy. I can often be dramatic.


It's like in driving - most people think they are above average, see https://en.wikipedia.org/wiki/Illusory_superiority


The few times I've had the luck of working with 10x developer (or Nx for some unknown value of N) what I noticed was raw intelligence, insatiable thirst for learning and curiosity, and an intense focus bordering on obsessive.


This was a great read.

BTW I have always known that the 10x programmer exists.

A sufficient proof is that on good days (with proper motivation, concentration, no interruptions, enough coffee etc.) I'm 10x the programmer I am on bad days :)


When considering the implementation of a new system, sometimes considering the relative value of the path is a better and more profound action than than taking it. Similarly, implementation of a system does not necessarily imply deep comprehension, correct or intuitive forward-looking design, composability, repurposability, security, or any other property.

In short, as the saying goes: Decisiveness is overrated.[0]

[0] https://github.com/globalcitizen/taoup


Since people have been objecting to the title and objecting to objecting to the title, we replaced the title with a representative phrase from the article. Let's focus on the body now.


The part on perfectionism is also well worth repeating; pretending to be perfect, and/or bullying others into the same madness is a waste of energy and oxygen that could be better used to move forward.

"Perfectionism and fear of external judice insert a designing bias that will result in poor choices in order to refine a design only according to psychological or trivially measurable parameters, where things like robustness, simplicity, ability to deliver in time, are often never accounted for."


Provided your business will never need more than one and only one expert programmer who may not work in a team and this expert programmer will never leave your business and will always be trustworthy to do the right thing and they can support/maintain their own work in your production environment then a 10x programmer is a great idea.

Otherwise consider other human qualities such as communication skills, adaptability and critical thinking as more valuable than raw coding skill.


I think the point is that the 10x programmer has those other skills. That is the differentiating factor. It's not about typing 10x faster or generating 10x the lines of code. It's about creating 10x the value.

That requires identifying areas where you can deliver value. Frequent cost benefit analysis of potential features vs their estimated cost. And as antirez said in the article, designing these things so that less code gets you those features.

The difference is kind of like book smart vs street smart. If you are just book smart and you understand algorithms and data structures really well it can only get you so far. You need to be able to interpret the user's requests and design what will really help them. You need to understand what they are asking for and what they really mean. And you need to generate solutions and sell them.


There is no such thing as a "10x programmer", only "1/8 environments" i.e. teams/environments where the normal programmer is 1/8th as productive as industry norms, such that a mere 1.25x programmer is 10x productive.

..and an environment that fosters such low productivity norms, probably also gets it's developer productivity measure/metrics wrong as well, so you don't even need a 1.25x for the perception of a 10x...


"The number of hours spent writing code is irrelevant without looking at the quality of the time. Lack of focus can be generated by internal and external factors. Internal factors are procrastination, lack of interest in the project at hand (you can’t be good doing things you do not love), lack of exercise / well-being, poor or little sleeping."

Get your ass up from the chair and go outside to exercise if you wanna reach Antirez levels of mastery


The 10x/-10x decisions are made by the architects, and the decisions tend to involve where network/codebase/layer/service boundaries are drawn.


I'm not sure if it's only me, but I started to see a lot of 1/10x programmers in startups. They can know all newest "cool" technologies, go to various conferences, have a lot of followers on twitter and reputation on stackoverflow, but when it comes to the real work, their value for the company is around zero, usually can't even solve simplest tickets (probably busy tweeting stuff?).


On a yearly task with little code reuse my productivity went from 3 weeks to 3 days the second time.

In another migration measured the time to cut and paste and concluded a day of grind was better than a week of scripting.

Many tasks have a thin path to completion surrounded by cliffs on either side. Experience teaches when to focus on the critical path only vs when to take a wider view.

There's easily a 10x productivity boost there.


I would add "reading the manual" to the list of things that people don't do enough of. I'm often shocked by people just diving into coding instead of doing the research to see if something has already been provided for you. You will go very far if you understand what the technologies you use are capable of doing.


10X? Steve Jobs said more than once in interviews that he saw a 200X difference among professional programmers.

Which I think is bull, of course. You can't quantify things like that. Some people are better than others, but any claim of 10X or 200X is missing a much bigger picture of how humans contribute to each other's work.


Honestly the section about debugging skills needs to be much higher in the article. Debugging skills are essential to learning legacy applications you are thrown into and understanding how your code works in general. It amazes me when I see an engineer with 5+ years experience who cannot hook up a remote debugger to their application.

My number one observation about productivity usually revolves around how an engineer attacks a problem and handles scope creep. There are some programmers who can get a set of requirements, and like a trained surgeon get in, fix the big bleed and get out. While they are in there they might fix a couple close issues but they are not re-architecting the whole application. Then there are others who see all the problems, they notice this problem there, and that problem here and keep asking what does this all mean and it eventually cripples them. They spend some much time seeing all the problems, that they never get around to solving the one they were tasked to fix.

Once you realize you won't understand it all from the beginning and you can't fix every issue you see. You become a much more effective engineer.


Being able to see edge cases and bugs before they happen will kill your productivity. I think the hardest part is to ignore those and deliver. If no one uses the software, then no harm done, and if the software get popular you will hopefully get funds to pay back the tech debt.


I think that knowing the most common edge case(s) will cause 80% of the bugs means you can solve (or design around) the most common issues and move on.


Depends what kind of software you write. Wouldn't want to get into an aircraft that has software written to those standards.


It would be great if programmers got more responsibility with increased skill and experience. But that is often not the case. There are very few jobs for highly skilled and experienced programmers and hackers.


Agreed, as I said - depends on what you write. It's a shame that so much of the industry actually devalues the very thing that got us into this in the first place (presumably not just money, but some love of engineering quality software), degrading the job to be nothing more than "hacking" together something, just to deliver.

It's not just delivering that is important (it is off course), but what is delivered, and if a company's non-techs don't realize and appreciate this, it's a slippery road.


"Sometimes in order to gain focus, extreme measures are needed. For instance I only read emails from time to time and do not reply to most of them."

This is far too extreme and turns you into a counterproductive team member. Like everything in life, a balance demands to be struck.


A good read but I doubt one of his assumptions:

  "you can’t be good doing things you do not love"
I believe you can be very competent at doing things you tolerate. It's time to dispel the notion passion == quality of work.


In my experience, there are 10x engineers but I often noticed they are 10x only because they tend to work alone. As soon as you start pairing them with another 10x engineer, they become 0x because they tend to fight about every decision.


This topic is addressed by Greg Wilson in his exceptional talk: What We Actually Know About Software Development, and Why We Believe It’s True

https://vimeo.com/9270320


OP says 10X programmer is a myth. Then describes the exact characteristics that make some programmers 10 times more productive than others. Maybe not so much a myth.


10x programmer is like Linus, who programs and set structure of the working code. rest of the feature addition and bug solving can be done with 2x programmer.


I would mention also http://yosefk.com/blog/?s=10x


Since this article relies on the premise that a "10 X" programmer makes any sense, I'm going to spend time refuting that central point.

If programmer productivity, or software developer/software engineer productivity, is measured as a linear function, then it really does no service to the field. Beyond looking at network effects from the impact developers have on each other, there is no universal measure of productivity. It would be more believable to say that certain developers have twice as many or five times the number of lines of code produced that are defect free, than to say that they achieve a certain level of productivity.

The two reasons that this should be immediately seen as nonsense to anyone in the field is that first of all, computer problems deal with asymptotic complexity. In the asymptotic world, linear functions are outshined by constant, logarithmic, polynomial, and exponential functions. Furthermore, the prevailing wisdom among programmers is that 'less is more'. That's why we talk about minimizing lines of code and trying to avoid the most bugs by leaving the least surface area for them to exist to begin with. Introducing a measure where 'more is better' is sort of at odds with this philosophy and should be viewed skeptically.

Finally, if you look at the great successful innovative products in software, and technology in general, you'll see that they often make use of new inventions. There's no way to compare an inventor in terms of productivity by saying one has 10 times as many patents as the other, or to compare a mathematician by the number of papers or pages published. The important difference is the quality of the invention or discovery. The engineers at AltaVista and Yahoo could have been extremely productive, but without a revelation like Page Rank, they never could have competed with Google back in the early days of search engines. Here, two college students writing a small amount of code outperformed larger companies. This has nothing to do with productivity and everything to do with talent.

This leads me to believe that the "10 X" slogan is a product of marketers, head hunters, and pop psychologists. It has no bearing on the field of computer science and it is a harmful concept because it perpetuates the idea that software developers are replaceable parts rather than unique contributors.


Simple reality check is that you can't hire a 10x programmer.


To me programmer that knows devops is the 10x programmer in the right company.


As now you need 10 times more developers to maintain the over-engineered Docker, Consul, ELK [...] stack while the 10x developer finds another victim to play resume-SEO?


The article is unreadable on a mobile device.


The quantity and quality of grammatical errors in the piece were finely calibrated to keep me reading it to the end. A curious effect.


Haha :-) Please point me to the worst ones and I'll fix. Re-reading again btw.


Just a few to get you going:

"can imagine one good at doing its work": "its" → "[his|her|their]"

"who says there is no such a thing as the 10x programmer, who says it actually does not just exist": "who says" → "some say" (At this point I guessed, wrongly, that your native language might be Russian)

"a lot less efforts" → "a lot less effort"

"to do a much better work" → "to do much better work"

"graduated programmers" → "programmers with graduate degrees"

Just a little help from one non-native English speaker to another


Nah, just remind them you made a design decision to focus on the meaning, and not the grammar, which let you write the post 10x faster ;)


That's a valid point! A quality of my poor english is that I write it at the same speed I write Italian. This blog post took me 10-20 minutes at max to write, even if the concepts I elaborated for much longer time when thinking/talking about these issues with people.


The writer is a non-native English speaker.


Kudos if that's the case. An essay on soft skills is probably the most difficult genre to master for a non-native speaker, more so for a programmer. I'm ok with the piece, as long as there was effort involved and it's better than Google Translate.


I've been reading antirez's writing for a long time and he's been consistently getting stronger as a writer of English. I think this is some of his best writing yet in terms of grammar and use of the language.


Excuse me if I'll print your comment and pin it in front of my desk. It means I'm not hopeless :-)


You're far from hopeless.


Antirez is not a native English speaker. That said, why did the grammatical errors keep you hooked?


Neither am I. Maybe that's one reason.


Maybe one things missing: 'specific domain knowledge'.

At least 1/2 of programming is learning. You can make a basic Android App, but have you learned how to do 'deep linking'. Well, it can take a full day the first time because it's awkward, and you have to understand a few things, and set a few things up server side.

Second time - it'll take 1 hour.

There's a lot of that.

If you're really comfortable with XMLHttpRequest, and know the ins and outs of post/form structures - well then you can do something quickly in it. If you don't well, it could take a bit to learn for a new dev.

Those things add up a lot. It takes several years to get comfortable with the variety of tools and tech necessary to be good.


Fixed width font on a blog? Is it still 1983 out there somewhere?

Maybe you'd be 10x more productive if it didn't hurt everyone's eyes to read your writing.


Hey, that's a fun game. When the creator of a widely used piece of software makes an insightful contribution to a long-standing controversy, let's talk about fixed-width formatting.


Lol, HN, the place where people try to answer to an expression, a saying or an image by being technically correct.

Your comment could be a line from Sheldon in the Big Bang Theory :)


We detached this subthread from https://news.ycombinator.com/item?id=13753531 and marked it off-topic.


Responding with civility to the pedantry is just a part of HN. I've found that being humble to comments like these, even if you disagree, is the simplest way to defuse the situation.


Responding with civility to non-pedantry is also a part of HN; which is more relevant in this case, lest anyone mistake my post as pedantic.


> the place where people try to answer to an expression

burden is on the you to show that "10x programmer" is "an expression, a saying or an image". Plenty people consider the term to be literal, and argue as such all over HN.


I can do it too, look:

burden is on the you to show that "10x programmer" is not "an expression, a saying or an image". Plenty people consider the term to be not literal, and argue as such all over HN.


You may find one of the studies credited with creating the idea of the "10x programmer" interesting to skim: http://www.dtic.mil/dtic/tr/fulltext/u2/645438.pdf


https://www.techopedia.com/definition/31673/10x-developer

See top answer here: http://softwareengineering.stackexchange.com/questions/17961...

The "10 times" didn't come from nowhere, people who use the term to simply mean a great (and not literally "ten times productive") programmer ignore the origin of the term.


[flagged]


You've crossed into incivility in this thread. We ban accounts that do that. Please don't do it again.


> Plenty people consider the term to be not literal, and argue as such all over HN.

Can you give me examples, so I can tell them that they're wrong as well?


10x programmer = very good programmer. End of discussion.


You are wrong. End of discussion.


I am the mythical 1/10x programmer. Sadly currently not available for hire. :)


The 10x programmer is a myth perpetuated by senior management to get compliant submission from naive young code monkeys. End of discussion.


I don't think you can fool junior devs so easily, from inside of the team it is very easy to see if a person is a 10x or not.

In fact, the management are often the last people to notice if someone in their company is a 10x guy.


Sigh. Why do we keep perpetuating this myth? From the words of the greatest genius of the 20th century

“Right. I don’t believe in the idea that there are a few peculiar people capable of understanding math, and the rest of the world is normal. Math is a human discovery, and it’s no more complicated than humans can understand. I had a calculus book once that said, ‘What one fool can do, another can.’ What we’ve been able to work out about nature may look abstract and threatening to someone who hasn’t studied it, but it was fools who did it, and in the next generation, all the fools will understand it. There’s a tendency to pomposity in all this, to make it deep and profound.” – Richard Feynman, Omni 1979

Stop the pomposity. Please.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: