User Kent Beck - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T23:24:02Zhttp://stackoverflow.com/feeds/user/13842http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/613274/fitting-tag-cloud-to-available-space4Fitting tag cloud to available spaceKent Beck2009-03-05T01:27:01Z2009-09-10T19:55:16Z
<p>Given words and their frequencies and an area of screen real estate, what are good approaches to fitting a tag cloud to the space? The two variables I can think of to manipulate are:</p>
<ul>
<li>Font sizes (both absolute and the gradient)</li>
<li>Number of words</li>
</ul>
<p>Everything approach I can think of requires iteration, like setting an upper bound on the number of words then using binary search on font sizes until the words just fit the area. I'd rather have an analytical solution.</p>
<p>One complication of my situation is that the clouds are resizable, so the algorithm needs to be able to handle 100x100 pixels or 1000x1000 pixels reasonably well.</p>
<p>Edit: I should have said this is for a rich client application, not the web (hence the possibility of resizing). Also, I was hoping to hear some experience like "nobody ever looks at more than 100 words in tag cloud so don't bother displaying them".</p>
http://stackoverflow.com/questions/331191/what-interesting-novel-surprising-uses-have-you-found-for-automated-tests17What interesting/novel/surprising uses have you found for automated tests?Kent Beck2008-12-01T15:36:47Z2009-07-28T11:21:09Z
<p>I am working on JUnitMax, a project to increase the utility of automated tests. I'm looking for novel, unexpected ways tests prove valuable. For example, I use tests in responding to defects--one at the system level that fails, reproducing the defect and another at the unit level so I know what code to change (perhaps derived using the <a href="http://www.threeriversinstitute.org/HitEmHighHitEmLow.html" rel="nofollow">Saff Squeeze</a>). What other uses have you found for tests?</p>
http://stackoverflow.com/questions/193364/naming-your-projects-does-it-matter/193425#19342517Answer by Kent Beck for Naming your projects: does it matter?Kent Beck2008-10-11T00:03:26Z2009-07-07T20:21:10Z<p>I think naming is an important part of getting ideas to spread. What I look for in a name are:</p>
<ol>
<li>Memorable. It should be different than other names but easy to remember.</li>
<li>Accurate. It is helpful if the name reflects something about the project.</li>
<li>Positive. It is helpful if the opposite of the name is unattractive. For example, Structured Programming follows this rule because no one wants to be unstructured.</li>
<li>Clever. Clever is optional, but it helps make a name memorable when you achieve it. Clever ages badly, though.</li>
</ol>
<p>It's not worth waiting to program until you have cool name. The more experience you have with the project, the easier it is to name. JUnit wasn't christened until several months after its debut.</p>
<p>For more information about naming, I highly recommend "<a href="http://books.google.com/books?id=vHqxeKVLAYAC" rel="nofollow">Words That Work: It's Not What You Say, It's What People Hear</a>" by Frank Luntz. He is an amoral political operative, but he loves language and communicates that love effectively.</p>
<p>One last point about "sticky" projects: be sure to tell the "creation myth" frequently, the story of how the project got started. Every project I've seen that has had long-term impact has had an oft-repeated story about its genesis.</p>
http://stackoverflow.com/questions/930904/calculating-a-day-given-a-date2Calculating a day given a DateKent Beck2009-05-31T00:06:25Z2009-06-01T21:21:40Z
<p>From a given Date I need to calculate midnight of its day. Here's what I came up with. It's so ugly that I figure there must be a better way.</p>
<pre><code>private Date day(Date creation) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(creation);
calendar.set(Calendar.HOUR_OF_DAY, 0);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);
calendar.set(Calendar.MILLISECOND, 0);
return calendar.getTime();
}
</code></pre>
<p>Suggestions?</p>
<p>Kent</p>
http://stackoverflow.com/questions/898475/how-can-i-create-an-image-dynamically-on-appengine2How can I create an image dynamically on AppEngineKent Beck2009-05-22T15:28:52Z2009-05-28T14:58:54Z
<p>I have an application hosted in Java on AppEngine and I would like to add a feature where users can get a graphical summary of their data. BufferedImage is listed as not supported on AppEngine. The display process will be simple--a series of small squares in one of two colors.</p>
<p>Regards,</p>
<p>Kent</p>
http://stackoverflow.com/questions/98878/how-does-one-elaborate-design-using-crc-cards/595923#59592310Answer by Kent Beck for How does one elaborate design using CRC cards?Kent Beck2009-02-27T18:11:28Z2009-02-27T18:11:28Z<p>It's hard to summarize in an SO answer, but I'll try. One of the challenges of designing objects is balancing thinking from an overall perspective with thinking from the perspective of an individual object. You need the overall perspective to get the computation completed, but you need the individual object perspective to effectively subdivide the logic and data. </p>
<p>Maintaining this balance is where CRC cards come in. When they are sitting there on the table, you get to look at the computation as a whole. When you pick up a single card, though, you are physically, kinesthetically encouraged to take the point of view of that one object--I have this little piece of this computation to do with limited resources, how am I going to accomplish it?</p>
<p>Over time, the ability to simultaneously hold both perspectives seems to soak into the brain. Less and less gets written on the cards. Then the cards are blank. After a while people just point to where the card would be if they would bother taking a blank one off the stack. Eventually, people have the benefits of the thinking style without needing cards at all. When talking with someone who hasn't mastered the balance, pulling out reals cards can be a useful communication assist, though.</p>
<p>The biggest weakness I find with the cards is the lack of feedback. You can fool yourself about how the code is going to turn out. I would suggest using cards only until an interesting question comes up, turn to tests/code for confirmation, and then resume designing.</p>
<p>Ward and I made a video 15 or so years ago of a design session, but I don't find it online anywhere and I don't have a copy. I'm not sure it would be useful as a teaching tool in any case. I don't know of other videos, but they could be interesting, especially if you got to compare several different designer's styles.</p>
http://stackoverflow.com/questions/561432/how-to-find-the-line-number-of-the-start-of-a-procedure-in-eclipse2How to find the line number of the start of a procedure in EclipseKent Beck2009-02-18T15:07:51Z2009-02-18T20:50:49Z
<p>I have code that correctly finds the line number of an IMethod in Eclipse under Windows:</p>
<pre><code>IMethod method= ...;
String source= type.getCompilationUnit().getSource();
int lineNumber= 1;
for (int i= 0; i < method.getSourceRange().getOffset(); i++)
if (source.charAt(i) == Character.LINE_SEPARATOR)
lineNumber++;
</code></pre>
<p>However, this doesn't work on the Mac, presume because the line separator character is different even though the source code it is operating on is the same.</p>
<ol>
<li>is there a built-in way to get the line number without having to traverse every character of the source? (seems like there should be but I couldn't find it)</li>
<li>if not, is there a platform independent way to count line breaks in a string?</li>
</ol>
<p>Thanks,</p>
<p>Kent Beck</p>
http://stackoverflow.com/questions/561432/how-to-find-the-line-number-of-the-start-of-a-procedure-in-eclipse/562298#5622981Answer by Kent Beck for How to find the line number of the start of a procedure in EclipseKent Beck2009-02-18T18:31:21Z2009-02-18T20:50:49Z<p>I ended up using regex instead, because it was simpler. This makes the code O(n^2) in the number of methods I need to take in the file, but I expect this should be a small number so it's acceptable for now.</p>
<pre><code>private int getMethodLineNumber(final IType type, IMethod method) throws JavaModelException {
String source= type.getCompilationUnit().getSource();
String sourceUpToMethod= source.substring(0, method.getSourceRange().getOffset());
Pattern lineEnd= Pattern.compile("$", Pattern.MULTILINE | Pattern.DOTALL);
return lineEnd.split(sourceUpToMethod).length;
}
</code></pre>
<p>Thank you all for the help.</p>
<p>Regards,</p>
<p>Kent</p>
http://stackoverflow.com/questions/504555/non-us-credit-cards-with-amazon-flexible-payment-service0Non-US credit cards with Amazon Flexible Payment Service? [closed]Kent Beck2009-02-02T19:36:13Z2009-02-02T19:46:18Z
<p>Does Amazon FPS allow me (in the US) to take credit card payments from outside the US without creating an Amazon account?</p>
http://stackoverflow.com/questions/332504/in-eclipse-how-can-i-get-my-plugin-to-load-when-another-plugin-is-loaded/337280#3372801Answer by Kent Beck for In Eclipse, how can I get my plugin to load when another plugin is loaded?Kent Beck2008-12-03T14:27:06Z2009-01-22T19:23:14Z<p>It turns out there is no built-in way to load my plugin when another plugin is loaded. The most general way to solve the problem is to force my plugin to load on startup and setup a listener for other plugins getting loaded. Then, when jdt.core loads I can add my element changed listener. However, even though it seems theoretically possible I can't figure out how to force my plugin to load on startup. I went with the ugly hack.</p>
http://stackoverflow.com/questions/332504/in-eclipse-how-can-i-get-my-plugin-to-load-when-another-plugin-is-loaded1In Eclipse, how can I get my plugin to load when another plugin is loaded?Kent Beck2008-12-01T22:46:17Z2009-01-22T19:23:14Z
<p>I want to register to get notified of all Java changes in Eclipse. I can do this by calling JavaCore.addElementChangedListener(). However, I don't want my plugin to be loaded until org.eclipse.jdt.core is loaded. My hack attempt to do this was declare a dummy extension to an org.eclipse.jdt.core extension point, but it doesn't work on all versions of Eclipse. Plus it's ugly. How can I cleanly ensure that my plugin is loaded when another plugin is loaded?</p>
http://stackoverflow.com/questions/339356/tag-cloud-web-service2Tag Cloud web service?Kent Beck2008-12-04T01:29:30Z2009-01-22T19:21:53Z
<p>Is there a public, free web service that generates tag clouds? I'm looking for something like Google Chart--URL in, image out.</p>
http://stackoverflow.com/questions/339356/tag-cloud-web-service/470456#4704560Answer by Kent Beck for Tag Cloud web service?Kent Beck2009-01-22T19:21:53Z2009-01-22T19:21:53Z<p>Thanks for suggesting Wordle, but its license is too restrictive for what I want to do. I want to embed the cloud in the IDE.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/444828#4448280Answer by Kent Beck for What is the single most influential book every programmer should read?Kent Beck2009-01-14T21:46:58Z2009-01-14T21:46:58Z<p>I'll add a couple that I haven't seen here that are influential for me:</p>
<ul>
<li>Yourdon and Constantine, "Structured Design". Everything you need to know about software design is in here, if you're willing to dig for it a little.</li>
<li>Leonard Koren, "Wabi-Sabi: for Artists, Designers, Poets & Philosophers". A pragmatic philosophy balancing beauty and pragmatism. </li>
</ul>
http://stackoverflow.com/questions/440786/junit-java-testing-non-public-methods/440803#44080310Answer by Kent Beck for junit & java : testing non-public methodsKent Beck2009-01-13T21:09:32Z2009-01-13T21:09:32Z<p>As with many unit testing problems, testing private methods is actually a design problem in disguise. Rather than try to do anything tricky to test private methods, when I find myself wishing to write tests for private methods I take a minute to ask myself, "How would I need to design this so I could test it thoroughly through public methods?"</p>
<p>If that doesn't work, JUnitX allows testing private methods, although I believe it is only available for JUnit 3.8.</p>
http://stackoverflow.com/questions/356577/do-independent-developers-still-make-a-living-on-their-own-products/433213#4332135Answer by Kent Beck for Do independent developers still make a living on their own products?Kent Beck2009-01-11T17:02:48Z2009-01-11T17:02:48Z<p>I'm concerned to see that you aren't receiving more positive answers, as I am in the midst of starting a product, JUnit Max, myself. That said, I see positive signs for small-scale software businesses:</p>
<ul>
<li>The cloud dramatically lowers the entry cost for scalable businesses.</li>
<li>Social networks dramatically lower the cost for marketing. You don't need to spend $200K/year on a PR firm if you have 1000 twitter followers and Facebook friends.</li>
<li>Payment services like PayPal or Amazon Flexible Payments Service dramatically lower the transaction costs for collecting payment, enabling micro-payment-ish business models.</li>
<li>The global expansion of technology raises the overall market size, creating more niches (he says, hopefully).</li>
</ul>
<p>I've found inspiration in the writings from 37signals: https://gettingreal.37signals.com/.
I'll be posting regular updates of how my venture goes. Maybe we need a support group...</p>
http://stackoverflow.com/questions/190921/good-programming-twitters/398739#3987390Answer by Kent Beck for Good Programming TwittersKent Beck2008-12-29T21:32:00Z2008-12-29T21:32:00Z<p>I twitter, mostly about my development of JUnitMax. My creatively named account: <a href="http://twitter.com/KentBeck" rel="nofollow">http://twitter.com/KentBeck</a></p>
http://stackoverflow.com/questions/396337/creating-unit-tests-semi-automatically/398728#3987280Answer by Kent Beck for creating unit tests (semi-)automatically?Kent Beck2008-12-29T21:27:53Z2008-12-29T21:27:53Z<p>It sounds like you are looking for a programming language with more declarative expressive power than standard Java. The tests you postulate fill in the gaps until the compiler can check the semantics of the declarations. </p>
<p>I don't know of any tool that converts from the kind of annotations you suggest into automated tests. It sounds like a nice TDD exercise, though, especially with the recent(-ish) compiler APIs.</p>
http://stackoverflow.com/questions/368663/how-to-get-team-member-to-stop-interrupting/369535#36953513Answer by Kent Beck for How to get team member to stop interrupting?Kent Beck2008-12-15T20:06:31Z2008-12-15T20:06:31Z<p>It seems to me like you have a relationship problem. Jumping right to a technical solution, like official office hours, without dealing with the underlying problem means the next conflict is no likelier to be resolved smoothly than this one.</p>
<p>As a positive step, I would try a direct conversation, but bracketed by "hamburger buns"--the beginning and end of the conversation are soft, the meat is in the middle. So, for example, "JimBob, I appreciate that I always know what is going on in your part of the project [choose something real here, preferably related to the topic]. However, I need blocks of time to get my work done and you ask me questions frequently. I'd like to stay in good communication with you. How can you get your questions answered and still leave me time to get my work done?"</p>
<p>This opens the conversation. The result could be any number of things--weekly one-on-ones, a commitment from JimBob to ask colleagues, a tearful confession of how ignored he felt as a child.</p>
<p>If the behavior continues even after this conversation and a commitment to change, then it might be time to bring numbers into the conversation--"Last week you came into my office 43 times. Of those visits, 12 were related to the project. I'd like to stay in communication with you and I'd like you to be effective, but this communication pattern interferes with my ability to do my work. What are we going to do about it?" </p>
http://stackoverflow.com/questions/360516/a-book-on-the-history-of-business-software/360556#3605560Answer by Kent Beck for A book on the history of business softwareKent Beck2008-12-11T19:23:17Z2008-12-11T19:23:17Z<p>Michael Cusumano, "The Business of Software" contains a concise history of business software as part of explaining the current software business. This is an excellent book overall, with Cusumano's typical thorough research behind it. It was written before free software had a big impact on the business, but the discussion is still thought-provoking.</p>
http://stackoverflow.com/questions/96879/advice-to-improve-programmer-communication-skills/353883#3538837Answer by Kent Beck for Advice to improve programmer communication skillsKent Beck2008-12-09T19:16:49Z2008-12-09T19:16:49Z<p>My one piece of advice is to pay attention to building relationships, not just communicating technical information. A resource that helped me is "The Relationship Cure" by John Gottman. He's done decades of careful research into how people interact (which appeals to the geek in me). He talks about "bids", which are offers of relationships. This could be as simple as, "How about those Blazers?" People make tens or hundreds of bids every day. If you want a relationship with someone, how you respond to their bids is critical.</p>
<p>In response to a bid people typically turn towards ("Yeah, that Brandon Roy sure is a hot shooter"), turn against ("Why do you waste your time on professional sports?"), or turn away ("The next release will be ready for production Friday"). Turning towards builds relationships. Turning against inhibits them. Turning away destroys them.</p>
<p>What is important is the balance of your responses to other people's bids. If you generally turn toward someone's bids, you build up "relationship capital" that sustains the relationship during conflict.</p>
<p>Once I learned about bids I began to realize just how much of the time I turned away. I'm still not great at relationships, but at least I'm aware of my incompetence now and I think I'm slowly improving.</p>
<p>Such a complicated topic doesn't fit well into an SO answer. Once you're on your way to building relationships, then it helps to pay attention to how the other person can best hear your idea--stories, analogies, visuals, statistics, etc. My advice is to get started on the relationships and work on presentation later.</p>
http://stackoverflow.com/questions/348611/what-are-some-situations-where-agile-is-inappropriate/350344#3503443Answer by Kent Beck for What are some situations where Agile is inappropriate?Kent Beck2008-12-08T18:14:22Z2008-12-08T18:14:22Z<p>By far the biggest contraindication I've seen is a values mismatch. Extreme Programming relies on respect, communication, feedback, courage, and simplicity. In an organization that behaves based on incompatible values, applying XP will cause friction and won't result in any lasting change (IME).</p>
http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/350157#3501572Answer by Kent Beck for What programming jobs do you aspire to?Kent Beck2008-12-08T16:57:32Z2008-12-08T16:57:32Z<p>Work from home (20 acres of southern Oregon), work with a small team, have a product with social impact, have revenue tied directly to programming activity (more/better features = more revenue), and earn a reasonable living (fund retirement over ten years, pay off house, put kids through college).</p>
http://stackoverflow.com/questions/339356/tag-cloud-web-service/341136#3411360Answer by Kent Beck for Tag Cloud web service?Kent Beck2008-12-04T16:06:26Z2008-12-04T16:06:26Z<p>It still makes sense to me, but I haven't been able to find any such service. Actually, the API could be words in, styled text out or words in, image out. I'll just implement what I need in SWT and go from there.</p>
<p>You can see an example of the kind of thing I'd like to generate at <a href="http://www.wordle.net/gallery/wrdl/359579/JUnit_Tests" rel="nofollow">http://www.wordle.net/gallery/wrdl/359579/JUnit_Tests</a>. These are the words in the names of JUnit's self-tests.</p>
http://stackoverflow.com/questions/337995/how-not-to-rush-yourself/338149#3381491Answer by Kent Beck for How not to rush yourself?Kent Beck2008-12-03T18:07:28Z2008-12-03T18:07:28Z<p>I use a couple of techniques. The first is a simple paper to-do list. In the morning I write down my tasks for the day. I try to work on a task until I can cross it off. I cross it off only when I'm done to my own satisfaction. My to-do list helps me stay focused. When an interruption comes in, I can consciously choose whether it is important enough to interrupt what I'm doing now.</p>
<p>The second technique I use is to give up on the idea of "done" for a design. Instead, I focus on what I've started calling "successions", where a design goes through predictable stages. Each stage supports the current functionality well and will be succeeded at some point by the next stage. This lets me do a good job, a job I can be proud of, without over-designing.</p>
<p>I have the intuition that there is a small catalog of such successions (like <a href="http://www.threeriversinstitute.org/FirstOneThenMany.html" rel="nofollow">http://www.threeriversinstitute.org/FirstOneThenMany.html</a>) that would cover most of design. In the meantime, I try to remember that "sufficient to the day are the troubles thereof".</p>
http://stackoverflow.com/questions/331291/how-do-you-use-mapreduce-hadoop/331315#3313151Answer by Kent Beck for How do you use MapReduce/Hadoop?Kent Beck2008-12-01T16:19:52Z2008-12-01T16:19:52Z<p>I am analyzing existing data sets, in my case traces of programmer activity.</p>
http://stackoverflow.com/questions/297778/home-office-programming-requirements/297910#2979100Answer by Kent Beck for Home Office Programming requirements?Kent Beck2008-11-18T05:18:11Z2008-11-18T05:18:11Z<p>I took my budget for desk and chair and bought the cheapest folding table I could find and the nicest chair (I love my Aeron). I have never regretted either decision.</p>
http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/297906#2979065Answer by Kent Beck for What tricks do you use to get yourself "in the zone"?Kent Beck2008-11-18T05:16:07Z2008-11-18T05:16:07Z<p>Juggling helps make my thoughts slippery (sorry I don't have better vocabulary for this). Ordinarily I latch onto certain thoughts, often thoughts that don't relate to what I'm trying to do. If I juggle for 5-10 minutes I find I can let the distractions gently go their way and get back to my main goal more easily.</p>
http://stackoverflow.com/questions/281719/has-anyone-out-there-succeeded-in-building-chrome-under-windows1Has anyone out there succeeded in building Chrome under Windows?Kent Beck2008-11-11T18:16:03Z2008-11-11T18:25:57Z
<p>I am quantitatively studying various metrics associated with automated tests. Chrome seems to have a reasonable set, so I wanted to add it to my data set. I downloaded the Chrome source code and tried to build it with VisualStudio but got several hundred errors--types not defined, identifiers not defined, etc. Has anyone out there succeeded in building Chrome under Windows? Are there tricks I need to know?</p>
http://stackoverflow.com/questions/88318/whats-the-single-biggest-reason-senior-executives-tolerate-poorly-performing-sof/240711#2407117Answer by Kent Beck for What's the single biggest reason Senior Executives tolerate poorly-performing software development projects and teams? Kent Beck2008-10-27T17:21:09Z2008-10-27T17:21:09Z<p>We (the software industry) have trained them not to ask questions or they'll get gobbledygook answers followed by belligerence if they press. The common overreaction to this is to make unilateral demands on the developers. What I shoot for is dialog. It's seldom easy, because I have to translate what I know into language they can understand. It's scary, because my flaws are exposed. It works out better, though, as I'm reminded every time I change back.</p>
http://stackoverflow.com/questions/190921/good-programming-twitters/398739#398739Comment by Kent Beck on Good Programming TwittersKent Beck2009-10-15T16:15:12Z2009-10-15T16:15:12ZJUnit Max was a continuous testing plugin for Eclipse. After each file save it ran all the tests for the affected project (and all its dependent projects), ran them most-likely-to-fail-first, and showed the results in the source code. While a great tool to use for me, it was a business failure and I cancelled it after seven months.http://stackoverflow.com/questions/356577/do-independent-developers-still-make-a-living-on-their-own-products/433213#433213Comment by Kent Beck on Do independent developers still make a living on their own products?Kent Beck2009-08-02T20:05:42Z2009-08-02T20:05:42Z<a href="http://www.threeriversinstitute.org/blog" rel="nofollow">threeriversinstitute.org/blog</a>
I recently announced the cancellation of my first product, JUnit Max, but I am hard at work on the next.http://stackoverflow.com/questions/954570/definition-of-clean-code/954582#954582Comment by Kent Beck on Definition of 'clean code'Kent Beck2009-06-05T07:29:32Z2009-06-05T07:29:32ZIt should also work correctly. Otherwise this seems like a fine definition to me.http://stackoverflow.com/questions/898475/how-can-i-create-an-image-dynamically-on-appengine/898493#898493Comment by Kent Beck on How can I create an image dynamically on AppEngineKent Beck2009-05-28T19:59:24Z2009-05-28T19:59:24ZI did change the format to fit a graph. Then I had to use AppEngine's URLFetch to get the image from Google Charts and stream it back to the requester. And it mostly works! Here is the little piece of flair showing the number of tests run through JUnit Max per hour for the last ten hours: <a href="http://junitmax.appspot.com/flair" rel="nofollow">junitmax.appspot.com/flair</a>http://stackoverflow.com/questions/898475/how-can-i-create-an-image-dynamically-on-appengine/898493#898493Comment by Kent Beck on How can I create an image dynamically on AppEngineKent Beck2009-05-22T17:42:49Z2009-05-22T17:42:49ZUnfortunately it's not a format that fits nicely into a graph. Perhaps I need to rethink the format in that case... As far as I can tell there isn't a lightweight image library from Java apart from the code that ships in the JRE and I don't want to write a little right now.http://stackoverflow.com/questions/339356/tag-cloud-web-service/350283#350283Comment by Kent Beck on Tag Cloud web service?Kent Beck2008-12-08T20:34:48Z2008-12-08T20:34:48ZThe Wordle license forbids embedding and derivative works. Otherwise I'd love to use it. It's such a beautiful presentation of the information.