User jlouis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:32:18Z http://stackoverflow.com/feeds/user/25083 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/171711#171711 4 Answer by jlouis for What are Code Smells? What is the best way to correct them? jlouis 2008-10-05T08:45:14Z 2009-08-28T18:08:20Z <p>Lack of abstraction.</p> <ul> <li><p><strong>Description</strong>: the code is written such that everything happens on the same level. There is no separation between different concerns and no splitting into parts.</p></li> <li><p><strong>Key indicators</strong>: you suddenly find presentation code in the business layer, or you find business code in the data access layer. The line count of a feature is much too big for what it does. The code space looks 'flat' and you don't find yourself having to look up and down the chain of abstraction.</p></li> <li><p><strong>Fixing</strong>: refactoring is key as always. Define your abstraction layers; for instance data access, business logic and presentation. Then slowly begin pushing code into the right layer when you find it. Suddenly other code smells will show up in each abstraction layer (code duplication is common) making it possible to further simplify the code. It is very much possible to refactor such code into elegance.</p></li> </ul> http://stackoverflow.com/questions/927331/why-do-we-care-about-data-types/950231#950231 0 Answer by jlouis for Why do we care about data types? jlouis 2009-06-04T12:28:57Z 2009-06-04T12:28:57Z <p>Constraint is perhaps the most important thing mentioned here. Data types exist for ensuring the correctness of your data so you are sure you can manipulate it correctly. There are 2 ways we can store a date. In a type of date or as a string "4th of January 1893". But the string could also have been "4/1 1893", "1/4 1893" or similar. Datatypes constrain that and defines a canonical form for a date.</p> <p>Furthermore, a datatype has the advantage that it can undergo checks. The string "0th of February 1975" is accepted as a string, but should not be as a date. How about "30th of February 1983"? Poor databases, like MySQL, does not make these checks by default (although you can configure MySQL to do it -- and you should!).</p> <p>data types will ensure the consistency of your data. This is one of the most important concepts as keeping your data sane will spare your head from insanity.</p> http://stackoverflow.com/questions/945331/how-can-i-use-rsync-to-backup-files-changed-within-a-recent-period/950143#950143 0 Answer by jlouis for How can I use rsync to backup files changed within a recent period? jlouis 2009-06-04T12:13:13Z 2009-06-04T12:13:13Z <p>May I suggest you drop rsync and look at rdiff-backup?</p> http://stackoverflow.com/questions/949932/hard-algorithm-problem-categorizing-words-and-category-values/950126#950126 0 Answer by jlouis for Hard Algorithm Problem: Categorizing Words and Category Values jlouis 2009-06-04T12:09:03Z 2009-06-04T12:09:03Z <p>My attempt would be to use the toolset of <a href="http://crm114.sf.net" rel="nofollow">CRM114</a> to provide a way to analyze a big corpus of text. Then you can utilize the matchings from it to give a guess.</p> http://stackoverflow.com/questions/949687/iis-compression/949816#949816 0 Answer by jlouis for IIS compression jlouis 2009-06-04T10:48:42Z 2009-06-04T10:48:42Z <p>If your website is slow, use some diagnostic tools on it. Firebug and YSlow are worth examining.</p> http://stackoverflow.com/questions/949761/when-is-sql-distinct-faster-than-java-programming-distinct/949797#949797 0 Answer by jlouis for When is sql distinct faster than java programming 'distinct' jlouis 2009-06-04T10:43:43Z 2009-06-04T10:43:43Z <p>SQL distinct is "heavy" because it has to eliminate multiple occurrences. This can be achieved by first sorting the data and then eliminate runs with equal elements. The heaviness relates to the fact that it costs to do this operation.</p> <p>The idiomatic solution here would be to let the database do the lifting and then worry about performance if it becomes a problem.</p> http://stackoverflow.com/questions/949494/latex-citations-in-section-headings-put-into-table-of-contents-first/949769#949769 3 Answer by jlouis for Latex: Citations in section headings put into table of contents first jlouis 2009-06-04T10:40:07Z 2009-06-04T10:40:07Z <p>You may perhaps not like this answer, but I think citations in headings is a bad style. I would rather recommend that you use another heading and then throw your citation references in the paragraphs following it. I've read quite some papers and none of those I recall used references in headings.</p> <p>In the same vein, may I recommend using bibTex and bibtool for managing your bibliography database. Bibtool can normalize the citation keys so you can just drop other peoples bibtex references, run bibtool, and then you have standardized keys.</p> http://stackoverflow.com/questions/949266/git-work-flow-with-an-inexpirenced-member/949760#949760 1 Answer by jlouis for Git work flow with an inexpirenced member. jlouis 2009-06-04T10:37:14Z 2009-06-04T10:37:14Z <p>I really like using git format-patch to turn a set of commits into mails. Then you can mail the changes and reapply them in the other end. It also means you can discuss the changes on a mailing list etc.</p> <p>For me, this is a brilliant way to work. You get code reviews in the same process and since email usually <em>can</em> go over firewalls, they are not that much of a problem. Getting the repository in shape is another game though.</p> http://stackoverflow.com/questions/303830/whats-the-best-way-to-parse-a-body-of-text-against-multiple-15-regexes-on-eac/328693#328693 0 Answer by jlouis for what's the best way to parse a body of text against multiple (15+) regexes on each line? jlouis 2008-11-30T10:15:34Z 2008-11-30T10:15:34Z <p>For a problem like this, I'd just close my eyes and use a Lexer+Parser generator. You can beat that with hand-optimization probably, but it is much easier to use a generator. Also, it is way more flexible when the input suddenly changes.</p> http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python 18 What is a good PDF report generator tool for python? jlouis 2008-10-07T09:50:39Z 2008-10-28T20:01:41Z <p>What is a good tool for PDF report generation in Python? I've checked out ReportLab, but it seems to be awfully low-level for what I want to do. My current hunch is to call TeX on the command-line and let it produce the PDF, but if there is something that is easier to work with (and looks professional - We'll send this to customers) I'd very much like a prod in the right direction.</p> http://stackoverflow.com/questions/179745/speeding-up-java/180529#180529 0 Answer by jlouis for Speeding Up Java jlouis 2008-10-07T21:32:31Z 2008-10-07T21:32:31Z <p>Here is an (older) document by Peter Sestoft which is worth reading: <a href="http://www.dina.kvl.dk/~sestoft/papers/performance.pdf" rel="nofollow">Performance in java</a>. Some of the advice is probably not true anymore since Java got a lot better with the later versions in optimizations. But there are still a good set of gems in there to utilize and try when the profiler has found something you can't do any other way (ie, change algorithmically).</p> http://stackoverflow.com/questions/180430/mixed-syntax-for-control-structures-generating-syntax-errors/180507#180507 2 Answer by jlouis for Mixed syntax for control structures generating syntax errors jlouis 2008-10-07T21:25:41Z 2008-10-07T21:25:41Z <p>This is a wild guess since I am not familiar with the grammar of PHP. But here goes:</p> <p>The problem is the second <code>else</code>. The parser can't see if this <code>else</code> is belonging to the first or the second if (counting from the beginning). In your second example there is an <code>endif</code> making the second <code>if</code>-block be terminated so there it can do the parse. Perhaps this is the famous 'dangling-else' problem in disguise?</p> http://stackoverflow.com/questions/180388/programatically-access-weather-info/180473#180473 1 Answer by jlouis for Programatically access weather info jlouis 2008-10-07T21:17:36Z 2008-10-07T21:17:36Z <p>If you can accept data from airports you could check out:</p> <p><a href="http://en.wikipedia.org/wiki/METAR" rel="nofollow">METAR</a> or <a href="http://en.wikipedia.org/wiki/Terminal_Aerodrome_Forecast" rel="nofollow">TAF</a>, which many desktop-applets use to gather weather information. In general, if you dig a little, there are many expositions of this kind of information.</p> http://stackoverflow.com/questions/180327/equation-solvers-for-c/180380#180380 0 Answer by jlouis for Equation Solvers for C++ jlouis 2008-10-07T20:56:11Z 2008-10-07T20:56:11Z <p>In addition to the other posts. Your constraint sets make this reminiscent of an <strong>integer programming problem</strong>, so you might want to check that kind of thing out as well. Perhaps your problem can be (re-)stated as one.</p> <p>You must know, however that the integer programming problems tends to be one of the harder computational problems so you might end up using many clock cycles to crack it.</p> http://stackoverflow.com/questions/180297/what-are-your-java-rules/180351#180351 4 Answer by jlouis for What are your Java 'rules'? jlouis 2008-10-07T20:49:30Z 2008-10-07T20:49:30Z <p>Thou shalt document ye code!</p> <ul> <li>You must document all code that you write. When you come back and read it 3 months later it is crucial you have left some hints on what the code does.</li> <li>You should not document <strong>what</strong> the code is doing, as it is right there, in the code.</li> <li>You should, however, document <strong>why</strong> the code is there. You will have much more benefit of the 'why' comments then the 'what' comments in the long run.</li> <li>If it is hard to document, chances are you have not thought enough about the problem.</li> </ul> http://stackoverflow.com/questions/172831/how-often-do-you-worry-about-how-many-if-cases-will-need-to-be-processed/173089#173089 1 Answer by jlouis for How often do you worry about how many if cases will need to be processed? jlouis 2008-10-06T02:51:23Z 2008-10-06T02:51:23Z <p>Rather than answer the PHP question, I'll answer a bit more generally. It doesn't apply directly to PHP as it will go through some kind of interpretation.</p> <p>Many compilers can convert to and from if-elif-elif-... blocks to switch blocks if needed and the tests in the elif-parts are simple enough (and the rest of the semantics happens to be compatible). For 3-4 tests there is not necessarily anything to gain by using a jump table.</p> <p>The reason is that the branch-predictor in the CPU is really good at predicting what happens. In effect the only thing that happens is a bit higher pressure on instruction fetching but it is hardly going to be world-shattering.</p> <p>In your example however, most compilers would recognize that $var is a constant 3 and then replace $var with 3 in the if..elif.. blocks. This in turn makes the expressions constant so they are folded to either true of false. All the false branches is killed by the dead-code eliminator and the test for true is eliminated as well. What is left is the case where $var == 3. You can't rely on PHP being that clever though. In general you can't do the propagation of $var but it might be possible from some call-sites.</p> http://stackoverflow.com/questions/172720/speeding-up-python/173055#173055 10 Answer by jlouis for Speeding Up Python jlouis 2008-10-06T02:28:52Z 2008-10-06T02:28:52Z <p>Rather than just punting to C, I'd suggest:</p> <p>Make your code count. Do more with fewer executions of lines:</p> <ul> <li>Change the algorithm to a faster one. It doesn't need to be fancy to be faster in many cases.</li> <li>Use python primitives that happens to be written in C. Some things will force an interpreter dispatch where some wont. The latter is preferable</li> <li>Beware of code that first constructs a big data structure followed by its consumation. Think the difference between range and xrange. In general it is often worth thinking about memory usage of the program. Using generators can sometimes bring O(n) memory use down to O(1).</li> <li>Python is generally non-optimizing. Hoist invariant code out of loops, eliminate common subexpressions where possible in tight loops.</li> <li>If something is expensive, then precompute or memoize it. Regular expressions can be compiled for instance.</li> <li>Need to crunch numbers? You might want to check <code>numpy</code> out.</li> <li>Many python programs are slow because they are bound by disk I/O or database access. Make sure you have something worthwhile to do while you wait on the data to arrive rather than just blocking. A weapon could be something like the <code>Twisted</code> framework.</li> <li>Note that many crucial data-processing libraries have C-versions, be it XML, JSON or whatnot. They are often considerably faster than the Python interpreter.</li> </ul> <p>If all of the above fails for profiled and measured code, then begin thinking about the C-rewrite path.</p> http://stackoverflow.com/questions/172631/a-platform-for-easy-creation-of-custom-websites/172641#172641 5 Answer by jlouis for A platform for easy creation of custom websites? jlouis 2008-10-05T20:51:35Z 2008-10-05T20:51:35Z <p>If it has to be dead easy, then look at something like Joomla. If you want a bit more control, try Drupal. I think that both will suit you better than WordPress if my hunch is right.</p> http://stackoverflow.com/questions/172300/what-is-the-state-of-the-art-user-interface-for-browsing-complex-version-control/172358#172358 5 Answer by jlouis for What is the state of the art user interface for browsing complex version control system history? jlouis 2008-10-05T17:57:15Z 2008-10-05T17:57:15Z <p>the <code>gitk(1)</code> tool for git is what I use at work. Note that it takes a <code>git rev-list</code> constraint so you can limit what you see. You definitely want to begin doing such selective picking in the long run when the amount of commits go up.</p> http://stackoverflow.com/questions/172306/how-are-you-planning-on-handling-the-migration-to-python-3/172350#172350 4 Answer by jlouis for How are you planning on handling the migration to Python 3? jlouis 2008-10-05T17:50:42Z 2008-10-05T17:50:42Z <p>The main idea of 2.6 is to provide a migration path to 3.0. So you can use <code>from __future__ import X</code> slowly migrating one feature at a time until you get all of them nailed down and can move to 3.0. Many of the 3.0 features will flow into 2.6 as well, so you can make the language gap smaller gradually rather than having to migrate everything in one go.</p> <p>At work, we plan to upgrade from 2.5 to 2.6 first. Then we begin enabling 3.0 features slowly one module at a time. At some point a whole subpart of the system will probably be ready for 3.x.</p> <p>The only problem are libraries. If a library is never migrated, we are stuck with the old library. But I am pretty confident that we'll get a fine alternative in due time for that part.</p> http://stackoverflow.com/questions/172303/is-there-a-regular-expression-to-detect-a-valid-regular-expression/172338#172338 6 Answer by jlouis for Is there a regular expression to detect a valid regular expression? jlouis 2008-10-05T17:38:50Z 2008-10-05T17:38:50Z <p>Good question. True regular languages can not decide arbitrarily deeply nested well formed parenthesis. Ie, if your alphabet contains '(' and ')' the goal is to decide if a string of these has well-formed matching parenthesis. Since this is a necessary requirement for regular expressions the answer is no.</p> <p>However: if you loosen the requirement and add recursion you can probably do it. The reason is that the recursion can act as a 'stack' letting you 'count' the current nesting depth by pushing onto this stack.</p> <p>Russ Cox has written a wonderful treatise on regex engine implementation: <a href="http://swtch.com/~rsc/regexp/regexp1.html" rel="nofollow">Regular Expression Matching Can Be Simple And Fast</a></p> http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/172036#172036 0 Answer by jlouis for What applications is Python optimal for? jlouis 2008-10-05T14:06:45Z 2008-10-05T14:06:45Z <p>Python is dynamically typed and that makes it perfect for problems where you only have a vague idea of the goal. You can slowly begin getting the ball rolling and you can see the direction of the ball early on. Then you can slowly prod it a bit at a time until it reaches the goal.</p> <p>In general, a system like J2EE does not support this kind of development to the same extent. You need a more specific plan up front unless you want to redefine bug chunks of the code completely.</p> http://stackoverflow.com/questions/170563/when-will-most-libraries-be-python-3-compliant/172026#172026 1 Answer by jlouis for When will most libraries be Python 3 compliant? jlouis 2008-10-05T14:02:10Z 2008-10-05T14:02:10Z <p>The general idea in the migration plan is to stay on 2.x and then slowly change the code to 3.x. You will have at <strong>least</strong> 1.5 years to worry about it in. Of course there's the chicken and egg problem though.</p> http://stackoverflow.com/questions/171952/is-there-a-destructor-for-java/172012#172012 1 Answer by jlouis for Is there a destructor for Java? jlouis 2008-10-05T13:51:17Z 2008-10-05T13:51:17Z <p>Perhaps you can use a try ... finally block to finalize the object in the control flow at which you are using the object. Of course it doesn't happen automatically, but neither does destruction in C++. You often see closing of resources in the finally block.</p> http://stackoverflow.com/questions/171785/how-do-you-organize-python-modules/172007#172007 4 Answer by jlouis for How do you organize Python modules? jlouis 2008-10-05T13:47:05Z 2008-10-05T13:47:05Z <p>In addition to PEP8 and easy_install, you should check out virtualenv. Virtualenv allows you to have multiple different python library trees. At work, we use virtualenv with a bootstrapping environment to quickly set up a development/production environment where we are all in sync w.r.t library versions etc. We generally coordinate library upgrades.</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/171680#171680 1 Answer by jlouis for What is the one programming skill you have always wanted to master but haven't had time? jlouis 2008-10-05T08:20:08Z 2008-10-05T08:20:08Z <p>Become a master of either theorem proving, model checking or concurrency calculi.</p> http://stackoverflow.com/questions/91932/how-does-the-strategy-pattern-work/171656#171656 0 Answer by jlouis for How does the Strategy Pattern work? jlouis 2008-10-05T08:05:27Z 2008-10-05T08:05:27Z <p>To add to the already magnificient answers: The strategy pattern has a strong similarity to passing a function (or functions) to another function. In the strategy this is done by wrapping said function in an object followed by passing the object. Some languages can pass functions directly, so they don't need the pattern at all. But other languages can't pass functions, but <i>can</i> pass objects; the pattern then applies.</p> <p>Especially in Java-like languages, you will find that the type zoo of the language is pretty small and that your only way to extend it is by creating objects. Hence most solutions to problems is to come up with a pattern; a way to compose objects to achieve a specific goal. Languages with richer type zoos often have simpler ways of going about the problems -- but richer types also means you have to spend more time learning the type system. Languages with dynamic typing discipline often gets a sneaky way around the problem as well.</p> http://stackoverflow.com/questions/171597/dvorak-vs-qwerty/171645#171645 8 Answer by jlouis for Dvorak vs QWERTY jlouis 2008-10-05T07:50:57Z 2008-10-05T07:50:57Z <p>It took me 14 days to come up to speed with a qwerty -> dvorak change such that I could actually use it. The first part, where you are trying to unlearn qwerty is deeply frustrating, but then you get the hang of dvorak and begin liking it.</p> <p>Is it considerably faster than qwerty? No. But one nice thing is that your hands move much less on the keyboard compared to qwerty. Another interesting thing is that there are considerably fewer typing demons on dvorak. I would recommend people to use the layout, provided they can type with 10 fingers. If you usually use 2-5 for typing I don't think you will gain much be a new keyboard layout.</p> http://stackoverflow.com/questions/170207/how-to-improve-garbage-collection-performance/170431#170431 3 Answer by jlouis for How to improve garbage collection performance? jlouis 2008-10-04T14:31:24Z 2008-10-04T14:31:24Z <p>The single most important aspect is to minimize the allocation rate. Whenever an object is allocated, it needs GC later. Now of course, if the object is <i>small</i> or <i>shortlived</i> it will get nailed in the young generation (provided that the GC is generational). Large objects tend to go directly into the tenured arena. But avoiding having to collect at all is even better.</p> <p>Also, if you can throw things on the stack, you will enjoy much less pressure on the GC. You could attempt toying with GC-options, but I think you would be much better helped with an allocation profiler in hand, so you can find the spots that makes the problems.</p> <p>The thing one should beware is the weight of standard libraries and frameworks. You wrap a couple of objects and it will fill up pretty quickly. Remember, whenever something goes on the GC-heap, it usually uses a bit more space for GC-bookkeeping. So your 1000 pointers allocated individually is much bigger than an array/vector of the same pointers since the latter can share the GC-bookkeeping. On the other hand, the latter will probably stay alive for much longer.</p> http://stackoverflow.com/questions/169946/choosing-a-new-language/170020#170020 3 Answer by jlouis for Choosing a new language jlouis 2008-10-04T09:09:49Z 2008-10-04T09:09:49Z <p>I'd go with Haskell or Prolog.</p> <p>You need to learn a new paradigm. Any Computer Scientist would tell you the importance of knowing other paradigms of programming. Haskell would probably open your eyes on a lot of things, even if you find you never use it. But the same would be true if you tried Erlang, Ocaml or Common Lisp. So from your list, I'd pick Haskell.</p> <p>You should start by focusing on the language rather than the libraries. Learn the semantics of the language. When you have become somewhat fluent, you can begin pulling libraries off the shelf.</p> <p>You must be aware, though, that Haskell is probably harder to learn for you than Common Lisp or Ocaml, say. The reason is that while CL or Ocaml have an imperative subset you can access when needed; Contrary, Haskell encodes imperative side-effecting constructs in the concept of a big-warm-fuzzy-thing (monad). The monad concept will take a bit of time getting used to.</p> http://stackoverflow.com/questions/949687/iis-compression/949816#949816 Comment by jlouis on IIS compression jlouis 2009-06-04T12:11:40Z 2009-06-04T12:11:40Z It <i>probably</i> means that a large number of objects are requested from the page. Browsers will only keep a small amount of concurrent connections. There are several tricks you can utilize to bring down the number of objects. http://stackoverflow.com/questions/178026/why-is-null-present-in-c-and-java/178050#178050 Comment by jlouis on Why is "null" present in C# and java? jlouis 2008-10-08T19:24:23Z 2008-10-08T19:24:23Z You'll find that null is possibly the worst way to build a 'no-information' element into data. http://stackoverflow.com/questions/179745/speeding-up-java/179841#179841 Comment by jlouis on Speeding Up Java jlouis 2008-10-07T21:34:14Z 2008-10-07T21:34:14Z Happens because you are close to exhausting the heap space and thus have more garbage collections to attempt a clean-up. You can either increase heap space as you suggested or find the culprit that is taking up all the memory. http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python Comment by jlouis on What is a good PDF report generator tool for python? jlouis 2008-10-07T21:02:43Z 2008-10-07T21:02:43Z Lots of nice answers here. Thanks! http://stackoverflow.com/questions/172466/how-to-deal-with-design-freaks/172480#172480 Comment by jlouis on How to deal with design-freaks? jlouis 2008-10-05T19:37:05Z 2008-10-05T19:37:05Z This would have been my answer as well. Get the focus on deliveries rather on rocket science. http://stackoverflow.com/questions/108141/how-do-i-work-effectively-with-very-messy-legacy-code/108197#108197 Comment by jlouis on How do I work effectively with VERY messy legacy code jlouis 2008-10-05T17:26:32Z 2008-10-05T17:26:32Z This is +1 from me. In addition: tests that tears and shreds the legacy code into pieces showing where it breaks down can be wonderfully powerful when negotiating refactoring :) http://stackoverflow.com/questions/36106/what-are-some-alternatives-to-a-bit-array/36311#36311 Comment by jlouis on What are some alternatives to a bit array? jlouis 2008-10-05T15:16:15Z 2008-10-05T15:16:15Z Beautiful solution. It might even be fast as well since memory loads are so costly today.