User Ken Gentle - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:32:12Z http://stackoverflow.com/feeds/user/8709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252491#252491 27 Answer by Ken Gentle for One SVN repository or many? Ken Gentle 2008-10-31T02:57:07Z 2009-02-25T17:10:32Z <p>The single vs. multiple issue comes down to personal or organizational preference.</p> <p>Management of multiple vs. single mainly comes down to access control and maintenance.</p> <p>Access control for a single repository can be contained in a single file; Multiple repositories are may require multiple files. Maintenance has similar issues - one big backup, or a lot of little backups.</p> <p>I manage my own. There's one repository, multiple projects, each with its own tags, trunk and branches. If one gets too big or I need to physically isolate a customer's code for their comfort, I can quickly and easily create a new repository.</p> <p>I recently consulted with a relatively large firm on migrating multiple source code control systems to Subversion. They have ~50 projects, ranging from very small to enterprise applications and their corporate website. Their plan? Start with a single repository, migrate to multiple if necessary. The migration is almost complete and they're still on a single repository, no complaints or issues reported due to it being a single repository.</p> <p>This isn't a binary, black &amp; white issue. </p> <p><strong><em>Do what works for you</em></strong> - were I in your position, I'd combine projects into a single repository as fast as I could type the commands, because the cost would be a major consideration in my (very, very small) company.</p> <p>JFTR: </p> <p><strong><em>revision numbers</em></strong> in Subversion really have no meaning outside the repository. If you need meaningful names for a revision, <em>create a TAG</em></p> <p>Commit messages are easily filtered by path in the repository, so reading only those related to a particular project is a trivial exercise.</p> <p><hr /></p> <p>Edit: See <a href="http://stackoverflow.com/users/4064/blade">Blade</a>'s response for details on using a single authorization/authentication configuration for SVN.</p> http://stackoverflow.com/questions/354837/whats-up-with-logging-in-java/356038#356038 6 Answer by Ken Gentle for What's Up with Logging in Java? Ken Gentle 2008-12-10T13:30:10Z 2009-02-12T19:32:13Z <p>See also answers to the question <a href="http://stackoverflow.com/questions/296150/what-are-the-best-practices-to-log-an-error">What are the best practices to log an error?</a>, especially:</p> <ul> <li><p>There are some potential classloading issues with Commons Logging.</p></li> <li><p>Log4J and SLF4J were developed by the same person, learning from issues found in practice with Log4J.</p></li> </ul> http://stackoverflow.com/questions/386265/tortoisesvn-is-showing-the-question-mark-decorators/386279#386279 6 Answer by Ken Gentle for TortoiseSVN is showing the Question mark decorators. Ken Gentle 2008-12-22T13:49:47Z 2008-12-22T13:56:53Z <p>TSVNCache, which TortoiseSVN uses to keep those icons uptodate, doesn't always make the correct choices about which directories need decoration. You can limit which directories it will consider by:</p> <ul> <li>In <strong>TortoiseSVN|Settings|Look and Feel|Icon Overlays</strong> </li> <li><p>In the <strong>Drive Types</strong> section</p> <ul> <li>Mark the drive types you want monitored.</li> <li>Use <em>Include paths</em> for the directories you want monitored </li> <li>Use <em>exclude paths</em> for directories to be excluded (strangely enough)</li> </ul></li> </ul> <p>I have only <strong>Fixed Drives</strong> checked.</p> <p>Exclude paths:</p> <pre><code>c:\* </code></pre> <p>Include paths:</p> <pre><code>c:\cygwin\home\me\workspaces\* c:\dev\* d:\development\* </code></pre> http://stackoverflow.com/questions/381037/true-random-generation-in-java/381570#381570 0 Answer by Ken Gentle for True random generation in Java Ken Gentle 2008-12-19T17:11:53Z 2008-12-19T17:11:53Z <p>See also this SO question: <a href="http://stackoverflow.com/questions/300854/alternative-entropy-sources#300901">Alternative Entropy Sources</a></p> <p>I found <a href="http://www.fourmilab.ch/hotbits/" rel="nofollow">HotBits</a> several years ago - the numbers are generated from radioactive decay, genuinely random numbers.</p> <p>There is a java library for access at <a href="http://www.fourmilab.ch/hotbits/source/randomX/randomX.html" rel="nofollow"><code>randomx</code></a></p> <p>There are limits on how many numbers you can download a day, but it has always amused me to use these as really, really random seeds for RNG.</p> http://stackoverflow.com/questions/378106/subversion-ant-task/378491#378491 6 Answer by Ken Gentle for subversion ant task Ken Gentle 2008-12-18T17:00:34Z 2008-12-18T17:00:34Z <p>By using the nested <code>&lt;fileset&gt;</code> the command ends up calling <code>update</code> for every file in the current directory hierarchy. That's probably why it takes two hours.</p> <p>Try using the <code>dir</code> attribute of the <code>update</code> task:</p> <pre><code> &lt;svn username="user" password="pass"&gt; &lt;update dir="."/&gt; &lt;/svn&gt; </code></pre> <p>And, if that doesn't work, turn on <code>-verbose</code> or <code>-debug</code> and see if you can get more information about what is happening during the task.</p> http://stackoverflow.com/questions/368669/best-practices-building-trunk-against-trunk/368753#368753 9 Answer by Ken Gentle for Best practices, building trunk against trunk? Ken Gentle 2008-12-15T15:42:52Z 2008-12-15T16:03:05Z <p>Hmm, I may be in a minority here, but this comes down to release management.</p> <p>Developing against the <code>trunk</code> of a set of shared components means, by definition, that the components are a "moving target" -- a developer using those shared components won't necessarily know if a newly found defect or failure is due to the project code or the shared components, which leads to a loss of productivity, IMNSHO.</p> <p>The "shared components" have a release cycle all their own. Give your other developers a break and fix the version of the shared components that the projects are going to use and use <code>tags</code>, <code>labels</code> or <code>branches</code> to identify the shared component release. On the next iteration for the projects, bump up to the latest "stable" or "production" build of the shared components.</p> <p>There's another "smell" here, if you'll pardon the expression. Having "shared components" whose "source/interfaces will have changed so much" between project releases sounds like the components aren't so solid or shouldn't necessarily be shared. </p> <p>See also the answer to this question <a href="http://stackoverflow.com/questions/249085/shared-components-throughout-all-projects-is-there-a-better-alternative-than-sv#249146">Shared components throughout all projects, is there a better alternative than svn:externals?</a></p> http://stackoverflow.com/questions/368514/blackberry-development-is-it-as-userfriendly-as-smartphone-dev/368700#368700 1 Answer by Ken Gentle for blackberry development, is it as userfriendly as smartphone dev? Ken Gentle 2008-12-15T15:28:24Z 2008-12-15T15:28:24Z <p>BlackBerry provides a <a href="http://na.blackberry.com/eng/developers/javaappdev/javadevenv.jsp" rel="nofollow">Java Development Environment</a> that has a number of integrated tools (notably coverage, memory usage and profiling) in addition to a syntax highlighting and "smart insertion" editor, compiler and debugger. The BlackBerry code signing tools, JAD and COD generation are also included.</p> <p>I found that it was much easier for me to develop code in Eclipse, compile it with Ant (using etaras' RAPC ant tasks, but they seem to be gone -- <a href="http://bb-ant-tools.sourceforge.net/" rel="nofollow">BlackBerry Ant Tools</a> seem to be a suitable replacement) and use the JDE for debugging/profiling, etc.</p> <p>I've not used the new RIM Eclipse Plugin.</p> <p>The <a href="http://na.blackberry.com/eng/developers/rapidappdev/mdsstudio.jsp" rel="nofollow">MDS Studio</a> has both Eclipse and Visual Studio based environments. I found it handy for prototyping UIs but rather cumbersome for doing any custom development. BB markets it as "Rapid Application Development", and it has that paradigms strengths and weaknesses.</p> <p>I found BlackBerry development to be much like other specialized Java based applications -- if you develop standard J2ME Midlet Apps, you don't need to know much more. If you really want to take advantage of the BlackBerry's unique features, integrate with BB applications, etc., then you need to learn the BlackBerry specific APIs - the javadoc is pretty good, the forums and whitepapers help, but there are few real "overview" documents or papers to tell you how to put it all together.</p> <p>Caveat Emptor, YMMV, etc, ad nauseum.</p> http://stackoverflow.com/questions/360542/plumber-programmers-vs-computer-scientists/363227#363227 1 Answer by Ken Gentle for "Plumber" Programmers vs. Computer Scientists Ken Gentle 2008-12-12T16:19:16Z 2008-12-12T16:19:16Z <p>I'll offer a couple of points that haven't yet been mentioned:</p> <p>If you're 40, in the US you can expect to be working (in most cases) until you're 67. That's 27 more years -- 2 years of education now, if it enhances your opportunity or gets you more satisfaction over those 27 years, is well worth the effort.</p> <p>Having said that, the particular areas that you've mentioned, the "hard core" CS topics aren't generally used in professional, day-to-day software development. I have a CIS bachelor's degree, circa 1985, and I took two "analysis of algorithms" (undergrad and graduate level). I understood Big O notation, proof by induction, and the other concepts pretty well (A's in both courses). <em>I haven't used any of it until recently here on SO</em>. I've worked in businesses from manufacturing (steel, chemical), software product development, financial services/insurance to retail web sites -- I've never worked with anyone who put any business value at all on being able to formally analyze an algorithm.</p> <p>If you can evaluate two methods/functions/blocks of code and determine that one is more efficient in terms of time/memory/resource usage than the other, you have the practical experience to do the job. Knowing Big O and being able to prove one is "better" than the other may get you rep on SO, but won't make a dimes difference in your salary or real ability to be a professional software developer.</p> <p>Bottom line: Do what you <em>want</em> to do, that will make the rest of your career more enjoyable or open more opportunities.</p> http://stackoverflow.com/questions/361801/how-to-change-structure-of-subversion-repository/363168#363168 4 Answer by Ken Gentle for How to change structure of subversion repository? Ken Gentle 2008-12-12T15:58:00Z 2008-12-12T15:58:00Z <p>Especially if you're using Subversion 1.4, see this answer for an alternative:</p> <p><a href="http://stackoverflow.com/questions/331388/svn-replace-trunk-with-branch#331574">svn: replace trunk with branch</a>.</p> <p>Otherwise, <code>move</code> is the simplest way to achieve the restructuring. As @JoelFan said, <code>move</code> will work on directories, so you can perform this operation without a working copy:</p> <pre><code>svn mkdir --quiet --message "Restructuring" http://svnhost/svnrepos/trunk svn mkdir --quiet --message "Restructuring" http://svnhost/svnrepos/tags svn mkdir --quiet --message "Restructuring" http://svnhost/svnrepos/branches </code></pre> <p>then, appropriate <code>move</code> commands for your sources:</p> <pre><code>svn move --message "Restructuring" http://svnhost/svnrepos/dir01 http://svnhost/svnrepos/trunk/dir01 </code></pre> <p>Note: If the existing repository has a structure like:</p> <pre><code>/repos /projectA /branches /tags /trunk /projectB /branches /tags /trunk </code></pre> <p>I'd suggest leaving it that way - it would make separating the projects into separate repositories very straightforward if for some reason you need to do so.</p> http://stackoverflow.com/questions/360774/how-is-code-review-different-from-qa-quality-assurance-reviews/360834#360834 1 Answer by Ken Gentle for How is code review different from QA (quality assurance) reviews? Ken Gentle 2008-12-11T20:51:06Z 2008-12-11T20:56:49Z <p>I agree with the answers posted so far, especially @Ironsides &amp; @Tom. </p> <p>I Googled "White Hat Black Hat QA Testing", and this SO Question was on the first page:</p> <p><a href="http://stackoverflow.com/questions/14040/developer-testing-vs-qa-team-testing-what-is-the-right-division-of-work">Developer testing vs. QA team testing - What is the right division of work?</a></p> <p>Refer to the answers there for a good discussion of what belongs where.</p> <p>On who should do what, during code reviews for one past employer we used the following roles:</p> <ul> <li>Presenter (<strong>not</strong> the author) - leads the code walkthrough</li> <li>Recorder (<strong>not</strong> the author) - records unanswered questions, action items, defects, etc for distribution</li> <li>Reviewers - at least one other developer who is not the author (so you have at least three sets of eyes)</li> <li>Author - answers questions.</li> </ul> <p>Number one ground rule: Talk about the <em>code</em> (or the artifact under review) not the <em>author</em>.</p> <p>Note also that a formal division of QA as described isn't the only way to approach the issue of QA. Small teams often use a combination of unit tests, continuous integration and users or user representatives during the development process. This allows the users or their representatives to get feedback into the process early and often, and can drastically reduce the need for a "Big Bang", exhaustive QA test when a release is made.</p> http://stackoverflow.com/questions/357560/sorting-multiple-keys-with-unix-sort/357582#357582 7 Answer by Ken Gentle for Sorting multiple keys with Unix sort Ken Gentle 2008-12-10T20:54:59Z 2008-12-10T20:54:59Z <p>Use the <code>-k</code> option (or <code>--key=POS1[,POS2]</code>). It can appear multiple times and each key can have global options (such as <code>n</code> for numeric sort)</p> http://stackoverflow.com/questions/357314/file-permissions-in-cygwin-and-mvfs/357572#357572 1 Answer by Ken Gentle for File permissions in cygwin and MVFS Ken Gentle 2008-12-10T20:50:55Z 2008-12-10T20:50:55Z <p>You need <code>/etc/passwd</code> and <code>/etc/group</code> files for permissions to work correctly.</p> <p>See <a href="http://cygwin.com/faq/faq-nochunks.html#faq.using.chmod" rel="nofollow">Why doesn't <code>chmod</code> work?</a> in the <a href="http://cygwin.com/faq.html" rel="nofollow">Cygwin FAQ</a></p> <p>and</p> <p><a href="http://cygwin.com/cygwin-ug-net/ntsec.html#ntsec-files" rel="nofollow">File Permissions</a> in the <a href="http://cygwin.com/cygwin-ug-net/cygwin-ug-net.html" rel="nofollow">Cgywin User's Guide</a></p> http://stackoverflow.com/questions/356791/is-enemy-bot-a-i-part-of-the-model-or-controller-in-an-mvc-game/357044#357044 7 Answer by Ken Gentle for Is enemy / bot A.I. part of the model or controller in an MVC game Ken Gentle 2008-12-10T18:19:40Z 2008-12-10T18:19:40Z <p>MVC works very well as an architecture for a large number of applications. Some applications may find that MVC works well for the <em>external interfaces</em>, especially User Interfaces as part of a more complex architecture.</p> <p>If you find yourself trying to "force fit" a problem into a pattern, it probably isn't the right pattern. Use MVC for the UI - use other patterns (Message Bus, or Observer/Listener, etc...) or other OO techniques for the AI (@Bill the Lizard's suggestion of Strategy still applies).</p> <p>Use your entire toolbox - not just the hammer. ;-)</p> http://stackoverflow.com/questions/353104/what-is-the-relationship-between-programming-and-music/353658#353658 0 Answer by Ken Gentle for What is the relationship between programming and music? Ken Gentle 2008-12-09T17:59:13Z 2008-12-09T17:59:13Z <ul> <li>Voice since age 7; </li> <li>Clarinet age 12;</li> <li>Guitar/Bass Guitar age 14</li> <li>Programming at age 18, while majoring in Physics, minor in Math and Voice</li> <li>Age 46? Still singing and writing software.</li> </ul> <p>Music, harmonies, dissonance allow us obsessive/compulsive, detail oriented personalities a creative outlet -- we can make it up as we go along, yet go back and concretely document, analyze and quantify what was done. Music is math - relationships between tones, rythm, volume.</p> <p>It also keeps me sane. Sort of. ;-)</p> http://stackoverflow.com/questions/350603/svn-tortoise-label-generation/350613#350613 2 Answer by Ken Gentle for SVN/Tortoise - Label generation Ken Gentle 2008-12-08T19:42:13Z 2008-12-08T19:47:32Z <p><code>Tags</code> are the equivalent of labels in Subversion.</p> <p>Tags are created via the <code>copy</code> command, or in the TortoiseSVN <code>Branch/Tag</code> menu option.</p> <p>By convention, <code>tags</code> are copied to a <code>tags</code> path in the Subversion repository.</p> <p>BTW, the TortoiseSVN help is really well done - the <strong>Daily Use Guide</strong> is very helpful.</p> http://stackoverflow.com/questions/348175/java-bounded-generic-type-definition/349849#349849 0 Answer by Ken Gentle for java bounded generic type definition Ken Gentle 2008-12-08T15:24:27Z 2008-12-08T15:24:27Z <p>As an expansion on @Jon Skeet's answer, see</p> <p><a href="http://www.angelikalanger.com/GenericsFAQ/FAQSections/TypeParameters.html#FAQ102" rel="nofollow">Which types are permitted as type parameter bounds?</a></p> <p>in the excellent resource <a href="http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html" rel="nofollow">Java Generics FAQ</a> from <a href="http://www.angelikalanger.com/index.html" rel="nofollow">Angelika Langer</a></p> http://stackoverflow.com/questions/348421/unable-to-locate-properties-file-inside-jar-during-junit-tests-via-ant/349825#349825 0 Answer by Ken Gentle for Unable to Locate Properties File Inside Jar During Junit Tests via Ant Ken Gentle 2008-12-08T15:14:38Z 2008-12-08T15:14:38Z <p>The first steps of <code>ant</code> debugging are always:</p> <ol> <li><code>ant -verbose</code></li> <li><code>ant -debug</code></li> </ol> <p>Review the output for those targets that relate to the <code>junit</code> tests.</p> <p>If you find additional information there that solves the problem, great! If not, please edit the question with relevant information from the output.</p> http://stackoverflow.com/questions/348777/reading-com-port-value-and-printing-in-textarea-which-located-inside-the-panel-in/349797#349797 0 Answer by Ken Gentle for reading COM port value and printing in textArea which located inside the panel in java Ken Gentle 2008-12-08T15:02:29Z 2008-12-08T15:02:29Z <p>For a multi-platform application, look into <a href="http://www.rxtx.org/" rel="nofollow">rxtx</a>.</p> <p><code>javax.comm</code> has not had active development for a number of years. The <a href="http://www.rxtx.org/" rel="nofollow">rxtx</a> project has a compatible api as well as a more feature rich <code>gnu</code> package API.</p> <p>There are examples with the source code and in the Wiki.</p> http://stackoverflow.com/questions/349442/calling-method-versus-class-method/349641#349641 9 Answer by Ken Gentle for calling method Versus class.method Ken Gentle 2008-12-08T14:01:16Z 2008-12-08T14:01:16Z <p>While I agree with the existing answers that this is primarily a style issue, it is enough of a style issue that both Eclipse and IntelliJ's code critics will flag "non-static references to static methods" in code that does not use the <code>Classname.method()</code> style.</p> <p>I made it a habit to emphasize <em>intent</em> by using the classname to qualify references to static targets, <code>this</code> to qualify references to instance targets, and bare names for local references. A modern IDE will use different highlighting for these constructs, so I suppose it is less important these days. I like for the maintainer (often myself) to <em>know</em> what was intended, that yes, I knew that was a <code>static</code> reference.</p> <p>Yeah, it does make for slightly more verbose code, but I think it is worth the extra characters.</p> http://stackoverflow.com/questions/349291/convert-datetime-in-to-date/349601#349601 5 Answer by Ken Gentle for Convert datetime in to date Ken Gentle 2008-12-08T13:50:02Z 2008-12-08T13:50:02Z <p>There's [unfortunately] not an "out-of-the box" method for performing this operation in <code>Grails|Groovy|Java</code>.</p> <p>Somebody <strong>always</strong> throws in <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda-Time</a> any time a <code>java.util.Date</code> or <code>java.util.Calendar</code> question is raised, but including yet another library is not always an option.</p> <p>Most recently, for a similar problem, we created a <code>DateTimeUtil</code> class with <code>static</code> methods and something like the following to get a <code>Date</code> only:</p> <pre><code>class DateTimeUtil { // ... public static Date getToday() { return setMidnight(new Date()) } public static Date getTomorrow() { return (getToday() + 1) as Date } public static Date setMidnight(Date theDate) { Calendar cal = Calendar.getInstance() cal.setTime(theDate) cal.set(Calendar.HOUR_OF_DAY, 0) cal.set(Calendar.MINUTE, 0) cal.set(Calendar.SECOND, 0) cal.set(Calendar.MILLISECOND, 0) cal.getTime() } //... } </code></pre> <p>Then, in the validator, you can use</p> <pre><code>startDate(validator: {return (it.after(DateTimeUtil.today))}) //Groovy-ism - today implicitly invokes `getToday()` </code></pre> http://stackoverflow.com/questions/342250/read-property-value-in-ant/342412#342412 2 Answer by Ken Gentle for read property value in Ant Ken Gentle 2008-12-04T23:10:09Z 2008-12-06T02:15:53Z <p>In Ant 1.6 or later you can use <code>LoadProperties</code> with a nested <code>FilterChain</code></p> <pre><code>&lt;loadproperties srcFile="${property.file.name}"&gt; &lt;filterchain&gt; &lt;tokenfilter&gt; &lt;containsstring contains="path=file:"/&gt; &lt;replaceregex pattern="path=file:" replace="path=" flags=""/&gt; &lt;/tokenfilter&gt; &lt;/filterchain&gt; &lt;/loadproperties&gt; </code></pre> <p>This should result in a <code>path</code> property being loaded with the string "file:" stripped.</p> <p>Not tested, caveat emptor...</p> http://stackoverflow.com/questions/344128/how-do-i-combine-a-java-util-date-object-with-a-java-sql-time-object/344189#344189 1 Answer by Ken Gentle for How do I combine a java.util.Date object with a java.sql.Time object? Ken Gentle 2008-12-05T15:35:27Z 2008-12-05T15:35:27Z <p>@<a href="http://stackoverflow.com/users/3333/paul-tomblin">Paul Tomblin</a> is a sure way to control the <code>TimeZone</code> issue, and I knew someone was going to throw "Joda Time" into the mix. The other answers are all good and more robust than the following hack:</p> <p>If your application executes in the same <code>TimeZone</code> as is the default in the DB, you might be able to get away with the following:</p> <p>If you skip this step:</p> <pre><code>Date t = new Date(time.getTime()); </code></pre> <p>and use the <code>java.sql.Time</code> value directly, like:</p> <pre><code>newDate = new Date(newDate.getTime() + time.getTime()); </code></pre> <p>the conversion to the default <code>TimeZone</code> won't be introduced - the <code>java.sql.Time</code> should contain the value as stored.</p> <p>YMMV, caveat emptor, etc...</p> http://stackoverflow.com/questions/343732/what-units-of-measure-would-you-store-engineering-data-in/343751#343751 6 Answer by Ken Gentle for What units of measure would you store engineering data in? Ken Gentle 2008-12-05T13:02:09Z 2008-12-05T13:02:09Z <p>Keep <em>significant figures</em> in mind -- the accuracy of the measurement. If the PSI is known to only whole pounds, then after conversion to Pa there are 15 decimals, there is still only one significant figure.</p> <p>Precision is different from accuracy, and performing floating point operations on engineering units need to take this into account during the operations - don't store more precision than the accuracy of the measurement, don't use more precision in a calculation than is known.</p> <p><hr /></p> <p>Edit:</p> <p>You might also consider using <code>NUMERIC(p,s)</code> where the precision (number of digits) and scale (number of digits to the right of the decimal) can be explicitly specified.</p> <p>If that is not an option, consider persisting the accuracy for a particular measurement so that it may be reported and/or used in calculations.</p> http://stackoverflow.com/questions/342443/how-do-you-store-unsigned-64-bit-integers-in-sql-server/342467#342467 4 Answer by Ken Gentle for How do you store unsigned 64-bit integers in SQL Server? Ken Gentle 2008-12-04T23:42:20Z 2008-12-04T23:42:20Z <p>You can store the value in a <code>NUMERIC</code> type with a <code>scale</code> of 0, which will retain the <code>integer</code> semantics required. The <code>NUMERIC</code> type will allow negative numbers, although you could set up a constraint to require positive integers.</p> <p>The maximum <code>precision</code> for <code>NUMERIC</code> is 38 decimal digits. <code>2**64</code> is somewhere around 18 or 19 decimal digits, so <code>NUMERIC(19,0)</code> would likely work just fine for this data.</p> http://stackoverflow.com/questions/342152/why-cant-variable-names-start-with-numbers/342197#342197 7 Answer by Ken Gentle for Why can't variable names start with numbers? Ken Gentle 2008-12-04T21:43:56Z 2008-12-04T21:43:56Z <p>Compilers/parsers/lexical analyzers was a long, long time ago for me, but I think I remember there being difficulty in unambiguosly determining whether a numeric character in the compilation unit represented a literal or an identifier.</p> <p>Languages where space is insignificant (like ALGOL and the original FORTRAN if I remember correctly) could not accept numbers to begin identifiers for that reason.</p> <p>This goes way back - before special notations to denote storage or numeric base.</p> http://stackoverflow.com/questions/331388/svn-replace-trunk-with-branch/331574#331574 1 Answer by Ken Gentle for svn: replace trunk with branch Ken Gentle 2008-12-01T17:32:12Z 2008-12-04T13:39:34Z <p>@Aaron Digulla and @kementeus solutions are workable. For Subversion 1.4 repositories, copy/move operations can make future migration to a different repository structure or splitting repositories difficult.</p> <p>I believe 1.5's improvements include better resolution of move/copy history, so it probably wouldn't be an issue for a 1.5 repository.</p> <p>For a 1.4 repository, I'd recommend using <code>svnadmin dump</code> and <code>svndumpfilter</code> to perform the movement of the existing trunk elsewhere, then moving the branch to the trunk with the same mechanism. Load the two dumpfiles into a test repository, verify, then move it to production.</p> <p>Of course, backup your existing repository before starting.</p> <p>This preserves history without recording the move/copy explicitly and makes future re-organization, preserving history, easier.</p> <p><hr /></p> <p>Edit: As requested, the documentation of the 1.4 behavior, from the 1.4 Red-Bean book, <a href="http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.reposadmin.maint.filtering" rel="nofollow">Filtering Repository History</a></p> <blockquote> <p>Also, copied paths can give you some trouble. Subversion supports copy operations in the repository, where a new path is created by copying some already existing path. It is possible that at some point in the lifetime of your repository, you might have copied a file or directory from some location that <code>svndumpfilter</code> is excluding, to a location that it is including. In order to make the dump data self-sufficient, <code>svndumpfilter</code> needs to still show the addition of the new path—including the contents of any files created by the copy—and not represent that addition as a copy from a source that won't exist in your filtered dump data stream. But because the Subversion repository dump format only shows what was changed in each revision, the contents of the copy source might not be readily available. If you suspect that you have any copies of this sort in your repository, you might want to rethink your set of included/excluded paths, perhaps including the paths that served as sources of your troublesome copy operations, too.</p> </blockquote> <p>This applies to migrations/reorganizations using <code>svndumpfilter</code>. There are times when a little extra work now can save a lot of extra work later, and by keeping an easy use of <code>svndumpfilter</code> available for future migrations/reorganizations mitigates the risk at a relatively low cost.</p> http://stackoverflow.com/questions/340415/how-do-i-display-the-selected-values-in-an-htmlselect-when-the-page-loads/340503#340503 0 Answer by Ken Gentle for How do I display the selected values in an <html:select> when the page loads? Ken Gentle 2008-12-04T13:02:01Z 2008-12-04T13:02:01Z <p><code>javascript</code> may not be the best answer, although it is certainly doable that way.</p> <p>In the <code>JSP</code> page, I'm assuming you have a loop that populates the <code>HTML</code> <code>&lt;select&gt;</code> options. In that loop, place a test to see if the current value was selected for the user. If so, add a <code>selected="selected"</code> attribute/value pair to the <code>&lt;option&gt;</code> for that country.</p> <p>If you really want to do this in <code>javascript</code>, the same logic applies: loop through the <code>option</code> elements for the <code>select</code>, and set <code>selected</code> to true for the appropriate elements. </p> <p>As an alternative, you can have your <code>JSP</code> generate the appropriate <code>javascript</code> lines to set only those <code>options</code> that are selected, saving a loop through all countries on page load.</p> <p>Have the javascript function invoked through the <code>page load</code> event so that the selections are made when the page is displayed.</p> http://stackoverflow.com/questions/339462/how-do-i-find-how-much-svn-traffic-im-using/339513#339513 2 Answer by Ken Gentle for How do I find how much SVN traffic I'm using? Ken Gentle 2008-12-04T03:12:43Z 2008-12-04T03:12:43Z <p>Start | My Computer - right click Manage</p> <p>Computer Management - Performance Logs &amp; Alerts.</p> <p>Add a new log, set it up to monitor the SVN process once a day. Select the "I/O Other Bytes/sec" as the counter to record.</p> http://stackoverflow.com/questions/335863/files-used-by-mount/335865#335865 9 Answer by Ken Gentle for Files used by mount Ken Gentle 2008-12-02T23:57:34Z 2008-12-03T00:06:06Z <p><code>du -k -S -x / | sort -n -r | head -10 </code></p> <p>Will return the 10 largest files on the root file system.</p> <p>Edit: @<a href="http://stackoverflow.com/users/6782/alnitak">Alnitak</a>'s answer included the <code>-S</code> and <code>-x</code>, included here for completeness.</p> http://stackoverflow.com/questions/335095/access-jstl-tag-from-code-inside-of-foreach-loop/335140#335140 0 Answer by Ken Gentle for Access JSTL tag from code inside of forEach loop Ken Gentle 2008-12-02T19:31:38Z 2008-12-02T20:11:56Z <p>Edit following the correction of the example:</p> <p>Yes, it is possible to access the <code>var</code> inside the <code>c:forEach</code> </p> <p>Here's an example:</p> <pre><code>&lt;c:forEach items="${elements}" var="element"&gt; ${((Element)element).someMethod()} &lt;/c:forEach&gt; </code></pre> <p>See <a href="http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/c/forEach.html" rel="nofollow">c:forEach</a> in the JSTL Documentation.</p> http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252717#252717 Comment by Ken Gentle on One SVN repository or many? Ken Gentle 2009-02-25T17:05:16Z 2009-02-25T17:05:16Z While you are correct that a single set of authorization/authentication files may be used for multiple repositories, doing so is a matter of preference. I'll update my post to reflect your answer. I do find the &quot;WRONG&quot; a bit inflammatory. http://stackoverflow.com/questions/370921/objectlist-in-mobile-application Comment by Ken Gentle on objectlist in mobile application Ken Gentle 2008-12-16T14:35:24Z 2008-12-16T14:35:24Z What is the target platform? What is the target OS? There's not enough information in the question to give any kind of answer. http://stackoverflow.com/questions/363905/any-good-sites-to-hire-contract-work/363913#363913 Comment by Ken Gentle on Any good sites to hire contract work? Ken Gentle 2008-12-12T19:58:35Z 2008-12-12T19:58:35Z RentACoder is pretty good, although takes a real chunk (15%) of the bid. It is <i>really</i> hard to get past the low-ball and bogus bids to win a project, and then you're pretty much stuck with a fixed price! http://stackoverflow.com/questions/357314/file-permissions-in-cygwin-and-mvfs/357572#357572 Comment by Ken Gentle on File permissions in cygwin and MVFS Ken Gentle 2008-12-10T23:01:11Z 2008-12-10T23:01:11Z Ok, dumb question: Is the drive NTFS? Last thing to suggest: use &quot;mount --system --binary &quot;C:&quot; /c&quot; and try it. I've got all my local drives and common network shares mounted explicitly. Shouldn't make a difference, but... http://stackoverflow.com/questions/357560/sorting-multiple-keys-with-unix-sort/357603#357603 Comment by Ken Gentle on Sorting multiple keys with Unix sort Ken Gentle 2008-12-10T21:49:05Z 2008-12-10T21:49:05Z +1 for the example... http://stackoverflow.com/questions/357314/file-permissions-in-cygwin-and-mvfs/357572#357572 Comment by Ken Gentle on File permissions in cygwin and MVFS Ken Gentle 2008-12-10T21:21:19Z 2008-12-10T21:21:19Z Is the drive mounted with anything unusual? Like <code>noacl</code>? http://stackoverflow.com/questions/357314/file-permissions-in-cygwin-and-mvfs/357572#357572 Comment by Ken Gentle on File permissions in cygwin and MVFS Ken Gentle 2008-12-10T21:13:52Z 2008-12-10T21:13:52Z Hmmm... works for me. I'm using 1.5.25 and have <code>ntea</code> set in CYGWIN (although the latest documentation says that both <code>ntea</code> and <code>ntsec</code> have been removed.) http://stackoverflow.com/questions/357560/sorting-multiple-keys-with-unix-sort Comment by Ken Gentle on Sorting multiple keys with Unix sort Ken Gentle 2008-12-10T20:58:55Z 2008-12-10T20:58:55Z One or two lines of example data would be really helpful for to create example command line. Also, does &quot;1-n&quot; keys mean that you need to sort by a variable number of keys? Doing that without scripting is gonna be fun... http://stackoverflow.com/questions/357421/what-is-the-best-way-to-remove-duplicates-in-an-array-in-java/357449#357449 Comment by Ken Gentle on What is the best way to remove duplicates in an Array in Java? Ken Gentle 2008-12-10T20:20:56Z 2008-12-10T20:20:56Z Yep, <code>LinkedHashSet</code> will maintain the insertion order. http://stackoverflow.com/questions/356807/java-double-comparison-epsilon/356963#356963 Comment by Ken Gentle on java double comparison epsilon Ken Gentle 2008-12-10T18:07:01Z 2008-12-10T18:07:01Z Please tell me you're not working for a Financial Services company! http://stackoverflow.com/questions/349291/convert-datetime-in-to-date/352053#352053 Comment by Ken Gentle on Convert datetime in to date Ken Gentle 2008-12-09T17:42:06Z 2008-12-09T17:42:06Z As long as its OK for &quot;startDate&quot; to be validated as later than or equal to 24 hours ago (ie, yesterday some time), Cool! I think, given my [limited] understanding of the problem, I'd drop the &quot;&gt;=&quot; and go with &quot;&gt;&quot; (or Date.after(Date)) http://stackoverflow.com/questions/349291/convert-datetime-in-to-date/349601#349601 Comment by Ken Gentle on Convert datetime in to date Ken Gentle 2008-12-09T17:39:21Z 2008-12-09T17:39:21Z Hmm... how is it &quot;not working?&quot; I mean, are there any errors, warnings or messages on the console? Does it just not invoke the validation? Is the validation returning &quot;false positives?&quot; http://stackoverflow.com/questions/350352/url-formatting-tips-for-search-engine-optimization/350446#350446 Comment by Ken Gentle on URL formatting tips for search engine optimization? Ken Gentle 2008-12-08T19:14:08Z 2008-12-08T19:14:08Z This test is flawed - if &quot;Test_Test&quot; and &quot;Test Test&quot; are the same as far as Google is concerned, then the results for &quot;Test Test&quot; include the results for &quot;Test_Test&quot; There is also no indication that the search was specifically for URLs. http://stackoverflow.com/questions/349442/calling-method-versus-class-method/349641#349641 Comment by Ken Gentle on calling method Versus class.method Ken Gentle 2008-12-08T17:11:53Z 2008-12-08T17:11:53Z Yes, very often I do in the &quot;public&quot; case. In the private case, not always because the naming convention (ALL_UPPER) conveys the intent. The introduction of static imports in Java has had me reconsidering this practice for public constants/methods, but to date, I'm still following what I described. http://stackoverflow.com/questions/349702/bash-string-handling-char-at-index-and-concatenation/349712#349712 Comment by Ken Gentle on Bash string handling (char at index and concatenation) Ken Gentle 2008-12-08T14:42:27Z 2008-12-08T14:42:27Z piping the output of echo to <code>sed -e 's|\ |\n|g' </code> works on the first example to split the output into lines.