User Dan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:04:06Z http://stackoverflow.com/feeds/user/21037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1800754/can-you-implement-lazy-array-access-in-qtscript 0 Can you implement lazy array access in QtScript? Dan 2009-11-25T23:50:50Z 2009-11-28T16:01:43Z <p>Is it possible to implement a QObject for use in QtScript which overloads [] to implement lazy array population?</p> <p>I want to implement something like this:</p> <pre><code>var bar = foo["bar"]; </code></pre> <p>and have the value be lazily calculated in C++ code. Is this possible?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1787708/representing-a-tree-in-clojure/1803661#1803661 2 Answer by Dan for Representing A Tree in Clojure Dan 2009-11-26T13:27:26Z 2009-11-26T13:27:26Z <pre><code>'(A (B (D) (E)) (C (F))) </code></pre> http://stackoverflow.com/questions/1742688/how-do-modern-optimizing-compilers-determine-when-to-optimize 3 How do modern optimizing compilers determine when to optimize? Dan 2009-11-16T15:00:31Z 2009-11-16T20:27:02Z <p>How do modern optimizing compilers determine when to apply certain optimizations such as loop unrolling and code inlining?</p> <p>Since both of these affect caching, naively inlining functions with less than X lines, or whatever other simple heuristic, is likely to generate worse performing code. So, how do modern compilers deal with this?</p> <p>I'm having a hard time finding information on this (especially information thats reasonably easy to understand..), about the best I could find is the wikipedia articles[1]. Any details, links to books/articles/papers are greatly appreciated!</p> <p>EDIT: Since answers are talking mainly about the two optimizations I mentioned (inlining and loop unrolling) I just wanted to clarify that I'm interested in all and any compiler optimizations, not just those two. I'm also more interested in the optimizations which can be performed during ahead-of-time compilation, though JIT optimization is of interest too (though to a slightly lesser extent).</p> <p>Thanks!</p> <p>[1] <a href="http://en.wikipedia.org/wiki/Compiler%5Foptimization" rel="nofollow">http://en.wikipedia.org/wiki/Compiler%5Foptimization</a></p> http://stackoverflow.com/questions/393026/do-you-plan-on-using-the-factor-programming-language/634645#634645 1 Answer by Dan for Do you plan on using the factor programming language? Dan 2009-03-11T14:04:10Z 2009-11-03T12:50:51Z <p>I am considering using Factor for my next big non-work project. I was trying to choose between Factor, OCaml, D and Python. Normally, Python is my language of choice, but for this I'm looking for something different. I was considering D (I used C++ for a good many years and wanted to use D as a cleaner C++), but it doesn't seem to be what I'm looking for really.</p> <p>That leaves OCaml and Factor and I'm having a tough time deciding. OCaml would be slightly easier for me to get to grips with, as my concatenative programming is a bit rusty and I also quite like the language a lot, but Factor keeps drawing me in too (and I'm a big fan of concatenative languages). Hrm indecision..</p> <p>UPDATE: I have since decided to learn Factor properly and use it for my upcoming large personal project. In the meantime, I am working on some of the problems from <a href="http://rads.stackoverflow.com/amzn/click/0387001638" rel="nofollow">Programming Challenges</a> in Factor.</p> <p>UPDATE 2: Factor didn't quite cut it.. Not because of the language, the language is great and I recommend everyone to take a look at it. The reason was Qt bindings. This was an important deal breaker for me. I would bind Qt myself and contribute it, but then I have two projects instead of one and I simply don't have the time. So, sorry Factor. I wrote the code in C++ instead, but I'm now considering either porting it to Clojure or writing future code in Clojure.</p> http://stackoverflow.com/questions/295589/what-program-should-i-use-to-mock-up-guis 34 What program should I use to mock up GUIs? Dan 2008-11-17T13:49:59Z 2009-10-18T19:17:06Z <p>I want to mockup a GUI system so that I can figure out how best to represent what I need. Normally, I would design a GUI in something like glade and then write a quick mockup in Python which implements only the GUI logic (ie, making menus/sub windows etc appear) and not business logic.</p> <p>Are there any tools which automate this? </p> <p>I mean, I can use glade or Visual Studio or whatever to draw a GUI and then write some code to glue things together, but I wonder if there is some tool which would minimize (or eliminate) having to write code, so that I can get input for potential GUI designs from non-programmers too.</p> <p>Ideally, it would let you do things like draw non-standard widgets and perhaps define simple behaviours to them (eg, draggable, or clickable or whatever).</p> <p>Thanks :-P </p> http://stackoverflow.com/questions/1372748/eclipse-regular-expression-search-and-replace 1 Eclipse, regular expression search and replace Dan 2009-09-03T11:00:09Z 2009-09-03T11:12:42Z <p>In eclipse, is it possible to use the matched search string as part of the replace string when performing a regular expression search and replace?</p> <p>Basically, I want to replace all occurrences of</p> <pre><code>variableName.someMethod() </code></pre> <p>with:</p> <pre><code>((TypeName)variableName.someMethod()) </code></pre> <p>Where <em>variableName</em> can be any variable name at all.</p> <p>In <em>sed</em> I could use something like:</p> <pre><code>s/[a-zA-Z]+\.someMethod\(\)/((TypeName)&amp;)/g </code></pre> <p>That is, <em>&amp;</em> represents the matched search string. Is there something similar in Eclipse?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1199358/how-to-get-the-id-of-a-bean-from-inside-the-bean-in-spring 4 How to get the id of a bean from inside the bean in Spring? Dan 2009-07-29T10:45:39Z 2009-07-29T10:51:29Z <p>What is the easiest way to retrieve a bean id from inside that bean (in the Java code) without using a BeanPostProcessor to set a field?</p> <p>The only way I can think of is something like this using a BeanPostProcessor:</p> <pre><code>public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { ((MyBean)bean).setName(beanName); return bean; } </code></pre> <p>Is there a better way that doesn't require me to write an extra class or know the class of the bean in question? I tried searching through the docs and on Google, but I'm not really sure what I need to be looking for.</p> <p>Thanks!</p> http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic/347611#347611 3 Answer by Dan for Why is software quality so problematic? Dan 2008-12-07T14:09:19Z 2009-07-27T09:23:59Z <p><strong>In my opinion</strong> the following are at least partially responsible:</p> <ul> <li>Thorough and complete testing is tedious and time consuming</li> <li>Sometimes its less expensive to ship buggy software than it is to fix it (or, more likely, its <em>perceived</em> to be less expensive)</li> <li>Lack of understanding of the problem being solved. If you don't completely understand what you are solving, its going to be difficult to do so without introducing bugs.</li> <li>Most programmers are pretty bad programmers (my opinion, of course, but in my own experience, I'd say only one in five programmers really know what they're doing)</li> <li>If a problem is complex, its easy to get lost in one aspect and neglect another</li> <li>Some programming languages are too verbose, making it difficult to keep the whole problem in mind at any one time, which allows bugs to creep in (for example, I tend to make more mistakes in Java than in Python, it may just be coincidence, of course, but I feel that Pythons higher level code helps me solve problems in fewer discrete chunks, leaving less room for bugs)</li> <li>Dependencies. I believe that dependencies (I mean calculations and data which depend on one another) are a major cause of bugs - when they're not managed properly anyway (dependents not getting updated when they should etc)</li> <li>A lot of programmers are lazy or distracted causing them to make mistakes. I know I'm guilty of this sometimes.</li> <li>Most programmers aren't rigorous or methodological enough when approaching a problem. Instead of carefully planning out a solution and verifying that it is correct (formally or otherwise), they instead dive in and start coding. I know I sometimes do this even though I know I shouldn't.. </li> <li>The tight coupling of operations (instructions, statements, code blocks, functions etc) makes code less dynamic and fluid, which makes it difficult to update code, determine where code should be split up, what code can be reused, what should run concurrently and so on. This is, IMHO, another large source of error and one thats not easily solved with existing code.</li> </ul> <p>And probably many more factors which I have forgotten about.</p> http://stackoverflow.com/questions/1166992/returning-null-from-native-methods-using-jni 0 Returning null from native methods using JNI Dan 2009-07-22T17:43:48Z 2009-07-23T09:15:19Z <p>Hi,</p> <p>I have some native code which returns a jbyteArray (so byte[] on the Java side) and I want to return null. However, I run into problems if I simply return 0 in place of the jbyteArray.</p> <p>Some more information: The main logic is in Java, the native method is used to encode some data into a byte stream. don;t ask.. it has to be done like this. Recently, the native code had to be changed a bit and now it runs horribly horrible slow. After some experimentation, which included commenting out all code in the native method before the return, it turns out that returning 0 causes the slowdown. When returning an actual jbyteArray, everything is fine.</p> <p>Method signatures for my code:</p> <p>On the C++ side:</p> <pre><code>extern "C" JNIEXPORT jbyteArray JNICALL Java_com_xxx_recode (JNIEnv* env, jclass java_this, jbyteArray origBytes, jobject message) </code></pre> <p>On the Java side:</p> <pre><code>private static native byte[] recode(byte[] origBytes, Message message); </code></pre> <p>The native code looks something like this:</p> <pre><code>jbyteArray javaArray; if (error != ERROR) { // convert to jbyteArray javaArray = env-&gt;NewByteArray((jsize) message.size); env-&gt;SetByteArrayRegion(java_array, 0, message.size, reinterpret_cast&lt;jbyte*&gt;(message.buffer())); if (env-&gt;ExceptionOccurred()) { env-&gt;ExceptionDescribe(); error = ERROR; } } if (error == ERROR) { return 0; // Does NOT work - doesn't crash, just slows everything down horrible. } else { return javaArray; // Works perfectly. } </code></pre> <p>Does anyone know of any reasons that this could happen? Is it valid to return NULL from a native method in place of a jbyteArray, or is there another procedure to return null back to Java. Unfortunately, I had no luck on Google.</p> <p>Thanks!</p> <p>EDIT: Added additional information.</p> http://stackoverflow.com/questions/1058273/what-should-i-call-this-function-composition/1058328#1058328 0 Answer by Dan for What should I call this function composition? Dan 2009-06-29T13:31:41Z 2009-06-29T13:31:41Z <p>The synergy engine.</p> http://stackoverflow.com/questions/336609/what-is-the-next-great-ui-metaphor-that-will-replace-the-desktop/336733#336733 11 Answer by Dan for What is the next great UI metaphor that will replace the Desktop? Dan 2008-12-03T10:16:32Z 2009-06-29T13:23:38Z <p>Heres my opinions:</p> <ul> <li>GUI is horribly inefficient compared to CLI. I can accomplish much more using only keyboard than I can when the mouse is involved, unless I'm editing images.</li> <li>3D desktops are generally not that useful. At least not yet. Anything where I have to move around to find things isn't very useful as it slows me down. Most other 3D interfaces are useless gimmicks. Except maybe being able to flip windows around to keep metadata attached to the back, that is one idea I like.</li> <li>Even though I dislike 3D interfaces, I do like the idea of using spatial data (eg, <em>I left the document over there</em> is useful).</li> <li>I like the ideas behind <a href="http://bumptop.com/" rel="nofollow">BumpTop</a>, but so far, the BETA version has been a major disappointment. If the entire GUI file browser was replaced by this, instead of just the desktop, then it may work better.</li> <li>I'm a big fan of multitouch and feel this could be a very efficient GUI system, however, until an inexpensive multitouch solution becomes easy to buy, I don't think this will catch on.</li> <li>After a conversation with <a href="http://en.wikipedia.org/wiki/Russ%5FNelson" rel="nofollow">this guy</a> some months ago, I realised that, by far, my favorite desktop replacement interface (besides some form of graphical super-CLI) is a <em>zoomable</em> desktop, where documents are spatially positioned on a plane which I can pan around and zoom in and out of. This, coupled with <a href="http://en.wikipedia.org/wiki/Orthogonal%5Fpersistence" rel="nofollow">orthogonal persistence</a> and a smart application launcher (I shouldn't need to know what applications run to edit my files, I simply zoom into the text document and begin editing, completely unaware (if I want to be) of the fact that it just launched open office in the background to actually allow me to edit the file. When I'm done, I simply zoom out and don't worry about saving the file or any other mundane details). This is the interface I hope to eventually see, especially if combined with multitouch.</li> <li>Virtual reality is only useful for certain domains (scientific data visualisation, entertainment, probably a few more) and not general computing. Same goes for augmented reality.</li> </ul> <p>Basically, I don't want to have to manage my computer at such a low level as we need to currently (nor do I want to wave my hands about Minority Report style, waaay too tiring). As a user of a computer, why do I care about filesystems, saving files, starting programs etc etc? I don't. I only care that my work isn't lost and that I can edit it and otherwise accomplish what I want. The OS should manage persisting my work for me. The OS should worry about what applications are running. I shouldn't even see an application start up, I should just see my document and as soon as I begin working on it.. I can. Without knowing that it had to run some program.</p> <p><a href="http://didntread.wordpress.com/2009/06/25/the-internet-is-broken/" rel="nofollow">Thats my opinion anyway</a>.</p> http://stackoverflow.com/questions/953714/face-recognition-library/1043254#1043254 0 Answer by Dan for Face recognition Library Dan 2009-06-25T10:53:02Z 2009-06-25T10:53:02Z <p>Not really what you're looking for, but it may be useful to you. <a href="http://elm.eeng.dcu.ie/~oconaire/source/" rel="nofollow">Face Detection/Computer Vision</a> algorithms in MATLAB.</p> http://stackoverflow.com/questions/725142/how-does-a-reference-counting-smart-pointers-reference-counting-work/725168#725168 2 Answer by Dan for How does a reference-counting smart pointer's reference counting work? Dan 2009-04-07T11:19:22Z 2009-06-23T22:54:13Z <p>Each smart pointer object contains a shared reference count - one for every raw pointer.</p> <p>You could take a look at <a href="http://www.codeproject.com/KB/cpp/SmartPointers.aspx" rel="nofollow">this</a> article. This implementation stores these in a separate object which is copied around. You could also take a look at <a href="http://www.boost.org/doc/libs/1%5F38%5F0/libs/smart%5Fptr/sp%5Ftechniques.html" rel="nofollow">boost's documentation</a>.</p> <p>Search google for "C++ smart pointer implementation" or something similar for more details or take a look at the <a href="http://en.wikipedia.org/wiki/Smart%5Fpointer" rel="nofollow">Wikipedia article</a> on smart pointers.</p> http://stackoverflow.com/questions/461796/dataflow-programming-languages/949771#949771 1 Answer by Dan for Dataflow Programming Languages Dan 2009-06-04T10:40:08Z 2009-06-23T16:32:43Z <p>Some examples of dataflow languages:</p> <ul> <li>LabVIEW</li> <li>SCADE/Lustre, used in defence, aerospace and power plant industries</li> <li>VHDL and Verilog are essentially dataflow</li> <li>Spreadsheets are essentially dataflow</li> <li>Pure Data, dataflow for audio processing</li> <li>Max/MSP</li> </ul> <p>Some lesser known ones:</p> <ul> <li>vvvv</li> <li>Chuck</li> <li><a href="http://ptolemy.berkeley.edu/ptolemyII/" rel="nofollow">Ptolemy II</a></li> <li><a href="http://en.wikipedia.org/wiki/Esterel" rel="nofollow">Esterel</a></li> <li>Nyquist</li> <li><a href="http://www.apple.com/shake/" rel="nofollow">Shake</a></li> </ul> http://stackoverflow.com/questions/975211/creating-a-logic-gate-simulator/975229#975229 1 Answer by Dan for Creating a logic gate simulator Dan 2009-06-10T12:16:46Z 2009-06-10T12:36:05Z <p>You could hard code all the common ones. Then allow them to build their own out of the hard coded ones (which would include low level gates), which would be evaluated by evaluating each sub-component. Finally, if one of their "chips" has less than X inputs/outputs, you could "optimize" it into a lookup table. Maybe detect how common it is and only do this for the most used Y chips? This way you have a good speed/space tradeoff.</p> <p>You could always JIT compile the circuits...</p> <p>As I haven't really thought about it, I'm not really sure what approach I'd take.. but it would possibly be a hybrid method and I'd definitely hard code popular "chips" in too.</p> http://stackoverflow.com/questions/927033/determining-working-directory-of-another-program 1 Determining working directory of another program. Dan 2009-05-29T16:53:42Z 2009-05-29T16:59:03Z <p>Is there any way of determining the current working directory of an already running program in Linux?</p> <p>What I'm trying to achieve is I want to be able to work in a terminal and then have a keyboard shortcut set up which will run a tool which I am writing which displays a little popup window containing some information and a few buttons to perform actions. This tool requires a working directory so that it knows what data to work on and I want to be able to set it up so that it will work on the directory in which I am working in the terminal.</p> http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/849029#849029 3 Answer by Dan for What is your solution to the FizzBuzz problem? Dan 2009-05-11T16:57:14Z 2009-05-11T16:57:14Z <p>Factor version. Can probably be made cleaner, clearer and shorter, but I'm still a Factor n00b, so...</p> <pre><code>! Check is a number is divisible by another number : divisible ( n m -- ? ) mod 0 = ; ! Output a string only if a number is divisible by another and keep the boolean result : write-if-divisible ( string n m -- ? ) divisible? dup -rot ! Is 'n' divisible by 'm'? [ write ] [ drop ] if ; ! If yes print string, otheriwse drop it ! Fizzbuzz procedure : fizzbuzz ( -- ) 100 [ ! 100 iterations 1 + dup ! Start at 1 and keep two copies [ 3 "Fizz" -rot write-if-divisible ] ! Write "Fizz" if divisible by 3 [ 5 "Buzz" -rot write-if-divisible ] bi or ! Write "Buzz" if divisible by 5 [ "" print drop ] [ . ] if ! If divisible by either number print newline otherwise print number ] each ; </code></pre> <p>Maybe someone can improve this for me?</p> http://stackoverflow.com/questions/394430/which-factor-gui-tutorial-example-app/840791#840791 1 Answer by Dan for Which factor GUI tutorial/example app? Dan 2009-05-08T16:50:23Z 2009-05-08T16:50:23Z <p>A little late, but theres Factor bindings for Qt in the works. They should be in a usable state reasonably soon.</p> http://stackoverflow.com/questions/829656/c-for-game-programming-love-or-distrust/829872#829872 8 Answer by Dan for C++ for Game Programming - Love or Distrust? Dan 2009-05-06T14:26:13Z 2009-05-06T14:26:13Z <p>If you or your friend are really paranoid about performance, then go read the Intel manuals on optimization. Fun.</p> <p>Otherwise, go for correctness, reliability and maintainability every time. I'd rather have a game that ran a bit slowly than one that crashed. If/when you notice that you have performance issues, PROFILE and then optimize. You will likely find that theres some hotspot piece of code which can possibly be made more efficient by using a more efficient data structure or algorithm. Only bother about these silly little mico-optimization when profiling shows that they're the only way you can get a worthwhile speedup.</p> <p>So:</p> <ol> <li>Write code to be clear and correct</li> <li>Profile</li> <li><strong>PROFILE</strong></li> <li>Can you use more efficient data structures or algorithms to speed up the bottleneck?</li> <li>Use micro-optimizations as a last resort and only where profiling showed it would help</li> </ol> <p>PS: A lot of modern C++ compilers provide an exception handling mechanism which adds zero execution overhead UNLESS an exception is thrown. That is, performance is only reduced when an exception is actually thrown. As long as exceptions are only used for <em>exceptional circumstances</em>, then theres no good reason not to use them.</p> http://stackoverflow.com/questions/811233/which-libraries-are-indispensable 1 Which libraries are indispensable? Dan 2009-05-01T12:56:57Z 2009-05-01T13:41:53Z <p>If you moved to a new programming language, which libraries do you feel must be supported if you're to keep using the language?</p> <p>I am interested in both specific libraries (eg, bindings for libXYZ should exist) and categories (eg, a regular expression library should exist).</p> <p>As an extension to this, what are the deal breaker features or design decisions (language level or library level) that would persuade you to switch to another language or to ignore it? Does your current main language support these well? How could they be improved upon?</p> <p>I am interested to hear what people find most important for their choice of programming language besides syntax, platform support, efficiency and paradigm.</p> http://stackoverflow.com/questions/200721/most-interesting-non-mainstream-language/811201#811201 1 Answer by Dan for Most interesting non-mainstream language? Dan 2009-05-01T12:45:43Z 2009-05-01T12:45:43Z <p>I find <a href="http://en.wikipedia.org/wiki/Factor%5F%28programming%5Flanguage%29" rel="nofollow">Factor</a>, <a href="http://en.wikipedia.org/wiki/Oz%5F%28programming%5Flanguage%29" rel="nofollow">Oz</a> and <a href="http://en.wikipedia.org/wiki/OCaml" rel="nofollow">OCaml</a> quite interesting. In fact, I have started using Factor for personal projects.</p> http://stackoverflow.com/questions/784835/what-are-typical-questions-good-programmers-should-be-able-to-answer/785857#785857 0 Answer by Dan for What are typical questions good programmers should be able to answer? Dan 2009-04-24T13:32:47Z 2009-04-24T13:32:47Z <blockquote> <p>Write a program (preferably on the whiteboard) which takes as an input another program and outputs whether or not it would terminate.</p> </blockquote> <p>all good programmers should know how to do this :-D</p> http://stackoverflow.com/questions/785390/does-pair-programming-work-when-there-is-a-skills-impedance-mismatch/785603#785603 0 Answer by Dan for Does pair programming work when there is a skills impedance mismatch? Dan 2009-04-24T12:16:02Z 2009-04-24T12:16:02Z <p>Yes, but only if the better person is patient and willing to teach and the worse person is willing to learn. I've pair programmed with people not as good as me and it was tedious, but I think they learnt from it. I've pair programmed with people that are better than me and I certainly learnt from it. Depends on the people really.</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/784055#784055 0 Answer by Dan for What is the best comment in source code you have ever encountered? Dan 2009-04-24T00:04:35Z 2009-04-24T00:04:35Z <p>// TODO: what the hell is this all about?</p> <p>And then some commented out code.</p> <p>This was found in our code in work earlier today. I'm not sure if I should laugh or cry...</p> http://stackoverflow.com/questions/722543/building-a-web-application-with-factor/780912#780912 2 Answer by Dan for Building a web application with Factor Dan 2009-04-23T09:16:04Z 2009-04-23T09:16:04Z <p>Try <a href="http://factorlang-fornovices.blogspot.com/2007/03/creating-simple-web-application-in.html" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/576940/how-do-i-design-sms-service/577345#577345 0 Answer by Dan for How do I design sms service ? Dan 2009-02-23T11:32:17Z 2009-02-23T11:38:14Z <p>Since my company does this sometimes (text promotions etc, though our main focus is much much lower level stuff), I figured I should pitch in.</p> <p>By far the simplest way is to use a service such as <a href="http://www.clickatell.com" rel="nofollow">Clickatell</a>, which provides a HTTP API, as well as FTP and <a href="http://en.wikipedia.org/wiki/SMPP" rel="nofollow">SMPP</a> amongst others. I don't know how Clickatell deals with receiving messages, however, as we use direct SMPP binds to our local mobile operators for this.</p> <p>If you are willing to pay for it, you should be able to get an SMPP bind to your local mobile operator, but its often expensive. This would also allow you to purchase your own <a href="http://en.wikipedia.org/wiki/Short_code" rel="nofollow">shortcode</a>.</p> <p>You may also want to give <a href="http://www.mblox.com/" rel="nofollow">mBlox</a> or <a href="http://netxcell.com/bulk_sms_gateway.html" rel="nofollow">Nextcell</a> a look. A quick <a href="http://letmegooglethatforyou.com/?q=sms%20gateway%20provider" rel="nofollow">Google search</a> will turn up more.</p> <p>you could also buy a GSM modem, which would allow you to send and receive messages as you normally would with a phone, except through a PC. This usually means you will pay whatever you would with a phone. (In Ireland anyway)</p> http://stackoverflow.com/questions/547000/why-would-you-choose-a-fixed-width-design/547721#547721 1 Answer by Dan for Why would you choose a fixed-width design? Dan 2009-02-13T21:16:14Z 2009-02-13T21:16:14Z <p>I put it down to laziness. Fixed width layouts are simply easier to design and make look nice because you do not need to worry about the size changing. This, for example, makes it really easy to add images, since you know what size the layout will be.</p> <p>Personally, fixed-width websites really irritate me. I like to use large monitors. I paid a lot of money for them, so I'd like to make use to make use of them instead of having most of it be left blank. This is made even worse by sites which refuse to get larger if I increase the font size. I don't have the best eyesight and often use larger fonts to read text on websites and nothing is worse than a fixed-width layout leaving me with three words per line and a mostly blank screen...</p> http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/547681#547681 0 Answer by Dan for Biggest performance improvement you've had with the smallest change? Dan 2009-02-13T21:07:05Z 2009-02-13T21:07:05Z <p>I wrote some code in work which was used to process large log files. It had to read each entry and match certain parts of it to previous entries. As you can imagine, the more entries were read, the more had to be searched to perform these matches. After quite a while of pulling my hair out, I realized I was able to make some assumptions on the entries which allowed me to store them in a hash table instead of a list. Now instead of needing to search each previous entry every time a new entry was read, it could simply do a hash table lookup.</p> <p>Performance obviously jumped quite a bit. I believe for a particular log file, the list approach took about an hour and a half to process, while the hash table version took about 30 seconds.</p> http://stackoverflow.com/questions/546479/do-oo-design-principles-apply-to-python/546612#546612 3 Answer by Dan for Do OO design principles apply to Python? Dan 2009-02-13T16:30:20Z 2009-02-13T16:30:20Z <p>Design patterns are little more than duct-tape to fix a languages deficiencies.</p> http://stackoverflow.com/questions/528116/typeerror-nonetype-object-is-not-iterable/528158#528158 4 Answer by Dan for TypeError: 'NoneType' object is not iterable Dan 2009-02-09T13:35:36Z 2009-02-09T13:35:36Z <p>The function you used to select all rows returned None. This "probably" (because you did not provide code, I am only assuming) means that the SQL query did not return any values.</p> http://stackoverflow.com/questions/1824932/clojure-how-to-create-a-function-at-runtime/1824995#1824995 Comment by Dan on Clojure: How to create a function at runtime Dan 2009-12-03T10:21:53Z 2009-12-03T10:21:53Z No, macros run at compile time, not at runtime. http://stackoverflow.com/questions/1768567/how-does-one-start-a-thread-in-clojure/1768706#1768706 Comment by Dan on How does one start a thread in Clojure? Dan 2009-11-26T13:29:23Z 2009-11-26T13:29:23Z Dont forget the likes of pmap! http://stackoverflow.com/questions/393026/do-you-plan-on-using-the-factor-programming-language/634645#634645 Comment by Dan on Do you plan on using the factor programming language? Dan 2009-11-03T12:48:23Z 2009-11-03T12:48:23Z Interestingly enough, I took another look at Clojure since and... I love it! You were totally right, its a great language and theres a good chance I'll be suing it for my projects now. :-P http://stackoverflow.com/questions/1372823/c-explanation-uses-of-public-private-protected-inheritance/1372858#1372858 Comment by Dan on C++ explanation & uses of public, private & protected inheritance Dan 2009-09-03T11:44:27Z 2009-09-03T11:44:27Z Thats what I thought. Maybe I shoulda not said anything and not deleted my comment and vote whored :-D +1 anyway, for an easy to follow answer. http://stackoverflow.com/questions/1372682/is-c-showing-its-age-as-programmers-try-to-use-it-in-ways-it-was-never-designed/1372746#1372746 Comment by Dan on Is C++ showing its age as programmers try to use it in ways it was never designed to be used? Dan 2009-09-03T11:43:16Z 2009-09-03T11:43:16Z Dunno about call stack, but certainly a hierarchy of templated types to give a single type signature... http://stackoverflow.com/questions/1372823/c-explanation-uses-of-public-private-protected-inheritance/1372858#1372858 Comment by Dan on C++ explanation & uses of public, private & protected inheritance Dan 2009-09-03T11:35:30Z 2009-09-03T11:35:30Z Is private correct? Would the public members not be accessable from D, just not from outside D or D's derived classes? http://stackoverflow.com/questions/461796/dataflow-programming-languages/461925#461925 Comment by Dan on Dataflow Programming Languages Dan 2009-07-30T10:15:31Z 2009-07-30T10:15:31Z &quot;Spreadsheets propagate values, not constraints.&quot; Yes, the flow of values is what makes it &quot;dataflow&quot;. http://stackoverflow.com/questions/1199358/how-to-get-the-id-of-a-bean-from-inside-the-bean-in-spring/1199387#1199387 Comment by Dan on How to get the id of a bean from inside the bean in Spring? Dan 2009-07-30T10:08:58Z 2009-07-30T10:08:58Z I wanted this because each instance has a name parameter that I need for printing out statistics and since i had to set the bean name anyway, I wanted to be able to just set one. This lets me do that (and the name in Java code is not used to access Spring). I can see where this may introduce problems if the name is used to access the application context. http://stackoverflow.com/questions/295589/what-program-should-i-use-to-mock-up-guis/1201066#1201066 Comment by Dan on What program should I use to mock up GUIs? Dan 2009-07-30T10:06:37Z 2009-07-30T10:06:37Z That looks good. Pity its not free, but I'll check it out anyway. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406857#406857 Comment by Dan on What's your most controversial programming opinion? Dan 2009-07-29T11:18:26Z 2009-07-29T11:18:26Z @Daniel: Both solutions were correct and robust. The second solution used better data structures (one big win was replacing lists with tables so I went from O(n) to O(1) in that part of the code). This was, unfortunately, only possible because I could profile the code, so the first version wasn't a TOTAL waste of time and see which parts were inefficient. Would have been hard to do it that way from the start. But, yes, I do wish I wrote it that way in the first place. Would have saved me about a day... http://stackoverflow.com/questions/1199190/what-is-the-optimal-length-for-an-email-address-in-a-database Comment by Dan on What is the optimal length for an email address in a database? Dan 2009-07-29T11:05:40Z 2009-07-29T11:05:40Z Heres one that seems likely to be real and its 31 character: michael dot peterson at googlemail dot com (spaces, changed @ etc added cause this could be a real address). Basically, don't make assumptions, always code to the limits defined in whatever specification because you can never be completely sure otherwise. http://stackoverflow.com/questions/1199358/how-to-get-the-id-of-a-bean-from-inside-the-bean-in-spring/1199387#1199387 Comment by Dan on How to get the id of a bean from inside the bean in Spring? Dan 2009-07-29T10:54:35Z 2009-07-29T10:54:35Z Thank you! Exactly what I was looking for. http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic/347863#347863 Comment by Dan on Why is software quality so problematic? Dan 2009-07-27T09:33:23Z 2009-07-27T09:33:23Z @David: I disagree with your comment. Software and hardware are really not so different. Or rather, they needn't be. The problem here is the temporally sequential code used in MOST programming languages vs the routing of data through a flat hierarchial network. The former is difficult &amp; complex because you must keep the entire code in mind due to strict ordering, also, if you program concurrent systems, you have multiple &quot;streams&quot; of ordering to keep in mind. The software is also stacked; you cannot change one part without it affecting higher up parts. The latter do not have these issues. IMHO http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic/347601#347601 Comment by Dan on Why is software quality so problematic? Dan 2009-07-27T09:25:29Z 2009-07-27T09:25:29Z Agreed! People think that Software is somehow different. It really IS just engineering in the end and us software engineers need to be trained just like other engineers. http://stackoverflow.com/questions/1166992/returning-null-from-native-methods-using-jni/1170483#1170483 Comment by Dan on Returning null from native methods using JNI Dan 2009-07-23T10:37:48Z 2009-07-23T10:37:48Z No, using the Sun VM. Yeah, I'm assuming that theres additional error handling code being run when the return value is zero. Anyway, it would be nice to know what the deal here is, but I can fix it in other ways anyway.