User myplacedk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:59:22Z http://stackoverflow.com/feeds/user/28683 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1032180/saving-a-file-with-javascript-in-s60v3-mobile-browser/1063313#1063313 0 Answer by myplacedk for Saving a file with Javascript in S60v3 mobile browser myplacedk 2009-06-30T12:13:36Z 2009-06-30T12:13:36Z <p>On my E51 I am able do download files the old-fashion way: A simple link to a file with a fitting mimetype.</p> http://stackoverflow.com/questions/747802/integer-vs-string-in-database/747861#747861 11 Answer by myplacedk for Integer vs String in database myplacedk 2009-04-14T14:27:28Z 2009-04-14T14:27:28Z <p>In my country, post-codes are also always 4 digits. But the first digit can be zero.</p> <p>If you store "0700" as an integer, you can get a lot of problems:</p> <ul> <li>It may be read as an octal value</li> <li>If it is read correctly as a decimal value, it gets turned into "700"</li> <li>When you get the value "700", you must remember to add the zero</li> <li>I you don't add the zero, later on, how will you know if "700" is "0700", or someone mistyped "7100"?</li> </ul> <p>Technically, our post codes is actual strings, even if it is always 4 digits.</p> <p>You can store them as integers, to save space. But remember this is a simple DB-trick, and be careful about leading zeroes.</p> <blockquote> <p>But what about for storing how many files are in a torrent? Integer or string?</p> </blockquote> <p>That's clearly an integer.</p> http://stackoverflow.com/questions/747409/reformatting-input-fields 0 Reformatting input-fields myplacedk 2009-04-14T12:54:49Z 2009-04-14T13:31:58Z <p>I want to reformat the contents of an HTML form-field when submitting.</p> <p>For example: The user enters "<code>1.234,56</code>" (which is a valid format for numbers in this locale), but I want to submit the value "<code>1234.56</code>" to the server.</p> <p>I'd like to hear about other peoples experience with this. How do you do this?</p> <p>My first thought is an onSubmit-event, which reformats the contents. But does anyone has any experience with an implementation on this?</p> <p>Or maybe a better idea?</p> <p><hr /></p> <p>Javascript is ALWAYS available. If it's much easier with Dojo, I can use that.</p> <p>And by the way: It's actually a bit more complex, since I also want to reformat on "blur" too. So the user enters "<code>1234,56</code>" (input format). When focus changes, it should reformat to "<code>1.234,56</code>" (display format). But the actual value sent to the server should be "<code>1234.56</code>" (machine format).<br /> Converting between input format and display format should be easy, but maybe all this can be combined in some clever way.</p> <p><hr /></p> <p><strong>EDIT:</strong> This is not for a public website, so opinions about depending on Javascript and similar is not relevant.</p> http://stackoverflow.com/questions/487174/dojo-loading-message/501144#501144 0 Answer by myplacedk for Dojo "loading"-message myplacedk 2009-02-01T16:56:02Z 2009-02-01T16:56:02Z <p>pierdeux got me on track with this one. This is my code so far:</p> <pre><code>dojo.require("dijit.form.Button"); dojo.require("dijit.Dialog"); function displayWait(txtContent) { if (!txtContent) { txtContent = "Please wait..."; } txtContent = "&lt;img src=\"loading.gif\" alt=\"\" /&gt; " + txtContent; var thisdialog = new dijit.Dialog({ title: "", content: txtContent }); dojo.body().appendChild(thisdialog.domNode); //thisdialog.closeButtonNode.style.display='none'; thisdialog.titleBar.style.display='none'; thisdialog.startup(); thisdialog.show(); } </code></pre> <p>This is a modal message-box that cannot be closed, so the user cannot use other elements on the page. This is exactly what I asked for, so I'll accept pierdeux's answer.</p> http://stackoverflow.com/questions/487174/dojo-loading-message 0 Dojo "loading"-message myplacedk 2009-01-28T10:37:22Z 2009-02-01T16:56:02Z <p>I'm new to Dojo, so I need a little help.</p> <p>Some of my links takes a while (when the user clicks, it takes several seconds before the page starts loading), and I'd like to add a "loading"-message.</p> <p>I can do it the "old fashion way", but I want to learn the new, easier, smarter Dojo-way.</p> <p>Exactly how it works is not important right now, but I imagine something like this:</p> <p>A rectangle appears in the middle of the browser-windows. (Not the middle of the document.) It has an animated gif, and a message like "Please wait...".</p> <p>All other elements are disabled, maybe "faded out" a bit. Maybe a big white 50% transparent rectangle, which sits between the "loading"-message and the rest of the document.</p> http://stackoverflow.com/questions/482506/does-the-frequent-change-of-requirements-lead-to-spaghetti-code/483042#483042 0 Answer by myplacedk for Does the frequent change of requirements lead to spaghetti code? myplacedk 2009-01-27T11:25:37Z 2009-01-27T11:25:37Z <p>If you are leaving with one advice: <strong>Refactor, refactor, refactor! Often!</strong></p> <p>Everything else is details about making refactoring easier.</p> http://stackoverflow.com/questions/423878/when-coding-what-do-you-worry-about/423909#423909 4 Answer by myplacedk for When coding, what do you worry about? myplacedk 2009-01-08T11:09:34Z 2009-01-08T11:09:34Z <p>Does this feel right?</p> <p>Will this be embarrasing when someone else sees it?</p> http://stackoverflow.com/questions/423860/php-header-redirect-not-working/423894#423894 0 Answer by myplacedk for PHP Header redirect not working myplacedk 2009-01-08T11:05:00Z 2009-01-08T11:05:00Z <p>Don't include header.php. You should not output HTML when you are going to redirect.</p> <p>Make a new file, eg. "pre.php". Put this in it:</p> <pre><code>&lt;?php include('class.user.php'); include('class.Connection.php'); ?&gt; </code></pre> <p>Then in header.php, include that, in stead of including the two other files. In form.php, include pre.php in stead of header.php.</p> http://stackoverflow.com/questions/423860/php-header-redirect-not-working/423872#423872 1 Answer by myplacedk for PHP Header redirect not working myplacedk 2009-01-08T10:58:35Z 2009-01-08T10:58:35Z <p>Look at /Applications/MAMP/htdocs/testygubbins/OO/test/header.php line 15.</p> <p>At that position, it makes some output. Fix it. :)</p> http://stackoverflow.com/questions/423693/how-can-i-properly-display-german-characters-in-html/423853#423853 2 Answer by myplacedk for How can I properly display German characters in HTML? myplacedk 2009-01-08T10:53:18Z 2009-01-08T10:53:18Z <p>I don't like the use of HTML entities (like %uuml;), they are only needed when there is something wrong with your characterset.</p> <p>In short:</p> <p>The RIGHT way is to fix your characterset.</p> <p>The EASY way is to just use entities. You may not ever see any problems with this.</p> <p>Tracking down characterset error can be very difficult. If you give us an URL where we can see the problem, we can probably give you a good hint where to look.</p> http://stackoverflow.com/questions/215271/sort-arrays-of-primitive-types-in-descending-order/423686#423686 0 Answer by myplacedk for Sort arrays of primitive types in descending order myplacedk 2009-01-08T09:31:52Z 2009-01-08T09:31:52Z <p>If performance is important, and the list usually already is sorted quite well.</p> <p>Bubble sort should be one of the slowest ways of sorting, but I have seen cases where the best performance was a simple bi-directional bubble sort.</p> <p>So this may be one of the few cases where you can benefit from coding it yourself. But you really need to do it right (make sure at least somebody else confirms your code, make a proof that it works etc.)</p> <p>As somebody else pointed out, it may be even better to start with a sorted array, and keep it sorted while you change the contents. That may perform even better.</p> http://stackoverflow.com/questions/416231/how-do-you-persuade-others-to-write-unit-tests/416298#416298 5 Answer by myplacedk for How do you persuade others to write unit tests? myplacedk 2009-01-06T12:13:11Z 2009-01-06T12:13:11Z <p>Use a test-coverage tool. Make it very visible. That way everybody can easily see how much code in each area is passed, failed and untested.</p> <p>Then you may be able to start a culture where "untested" is a sign of bad coding, "failed" is a sign of work in progress and "passed" is a sign of finished code.</p> <p>This works best if you also do "test-first". Then "untested" becomes "you forgot step 1".</p> <p>Of course you don't need 100% test coverage. But of one area has 1% coverage and another has 30%, you have a metric for which area is most likely to fail in production.</p> http://stackoverflow.com/questions/368086/clearcase-time-and-query 1 ClearCase time and query myplacedk 2008-12-15T11:34:57Z 2008-12-16T11:56:38Z <p>This config-spec show the files I need:</p> <pre><code>element -dir * '{version(/main/LATEST) &amp;&amp; !version(SLT-T)}' element -file * '{version(/main/LATEST) &amp;&amp; !version(SLT)}' </code></pre> <p>Now I need to see how the source looked at some point in the future, so I do this:</p> <pre><code>time 01-Nov-2008 element -dir * '{version(/main/LATEST) &amp;&amp; !version(SLT-T)}' element -file * '{version(/main/LATEST) &amp;&amp; !version(SLT)}' </code></pre> <p>Unfortunately this still shows me "the present". The manual says:</p> <blockquote> <p>Time rules may be nested. They may not include any query language constructs.</p> </blockquote> <p>Okay, but what do I do then?</p> <p>How do I exclude files and directories with a certain label, without using query language? Or is there way to specify time in the query language?</p> <p>(No files has a SLT-T label, and no directories has a SLT label.)</p> http://stackoverflow.com/questions/295071/have-you-ever-noticed-some-jsp-incompatibilities-with-websphere/295355#295355 1 Answer by myplacedk for Have you ever noticed some JSP incompatibilities with WebSphere ? myplacedk 2008-11-17T11:26:29Z 2008-11-17T11:26:29Z <p>Your small code-sample looks like something we do without problems.</p> <p>Try creating a JSP that illustrates the problem, and nothing else. Either create a new from scratch, or remove everything not relevant to the problem.</p> <p>Chances are, you will find that the error is not in your code-sample. But if you can make a small JSP-file (a few lines) that illustrates the problem, please show it to us.</p> http://stackoverflow.com/questions/280127/how-to-get-rid-of-try-catch/280187#280187 2 Answer by myplacedk for How to get rid of try catch? myplacedk 2008-11-11T06:45:43Z 2008-11-11T06:45:43Z <p>It is not something you usually want to "get rid of".</p> <p>If you are just toying around, playing with some stuff, not really care about quality for one reason or another, you can just let every method throw every exception. Here's my latest example, from a mini-project I'm working on right now:</p> <pre><code>public static void main(String[] args) throws ParseException, IOException, InterruptedException { </code></pre> <p>Many other method also throws a lot of methods, for example the IOException "hides" a FileNotFoundException etc. This means that if anything goes wrong, the application crashes. But that's okay, I actually want this program to display a stacktrace and just stop.</p> <p>Later on I can copy the bits I'm actually going to use in the final product, and implement proper exception handling, which lead me to...</p> <p>If you DO care about the quality of your application, you do not want to "get rid of" the exceptions, you want to use them properly.</p> <p>Theres an introduction here: <a href="http://java.sun.com/docs/books/tutorial/essential/exceptions/" rel="nofollow">Lesson: Exceptions (The Java™ Tutorials > Essential Classes)</a> - but you should read more about it, good design-patterns etc.</p> http://stackoverflow.com/questions/276022/line-width-formatting-standard/276031#276031 1 Answer by myplacedk for Line width formatting standard myplacedk 2008-11-09T15:43:34Z 2008-11-09T15:43:34Z <p>You should not have to scroll horizontally to read the code. But larger screens does not mean longer lines! There is also a limit to how much there should go on in a single line.</p> <p>So I say: Keep it at 70-80 chars just as always. Larger screens just means that the IDE as more room.</p> http://stackoverflow.com/questions/271526/how-to-avoid-null-statements-in-java/271616#271616 10 Answer by myplacedk for How to avoid "!= null" statements in Java? myplacedk 2008-11-07T09:27:00Z 2008-11-07T09:27:00Z <h2>If null-values is not allowed</h2> <p>If your method called externally, start with something like this:</p> <pre><code>public void method(Object object) { if (object == null) { throw new IllegalArgumentException("..."); } </code></pre> <p>In the rest of that method, you know that it's not null.</p> <p>If it is an internal method (not part of an api), just document that it cannot be null, and that's it. Example:</p> <pre><code>public String getFirst3Chars(String text) { return text.subString(0, 3); } </code></pre> <p>However, if your method just passes the value on, and the next method passes on etc. it could get problematic. In that case you may want to check the argument as above.</p> <h2>If null is allowed</h2> <p>This really depends. If find that I often do something like this:</p> <pre><code>if (object == null) { // something } else { // something else } </code></pre> <p>So I branch, and do two completely different things. There is no ugly code snippet, because I really need to do two different things depending on the data. For example, should I work on the input, or should I calculate a good default value?</p> <p><hr /></p> <p>It's actually rare for me to use the idiom "<code>if (object != null &amp;&amp; ...</code>".</p> <p>It may be easier to give you examples, if you show examples of where you typically use the idiom.</p> http://stackoverflow.com/questions/51320/find-all-drive-letters-in-java/255980#255980 1 Answer by myplacedk for Find all drive letters in Java myplacedk 2008-11-01T19:17:38Z 2008-11-01T19:17:38Z <p>Looking "everywhere" can be very messy.</p> <p>Look at a CD-rom drive, and it spins up. That can be very noisy.</p> <p>Look at a network drive, and it may be very slow. Maybe the server is down, and you may need to wait for minutes until it times out.</p> <p>Maybe (for Windows-machines) you should just look in the start-menu. If nothing there points at OOo, it's probably not installed. If it is, the user is probably an advanced user, that will have no problems pointing out the location manually.</p> http://stackoverflow.com/questions/255019/scriptless-jsp/255103#255103 0 Answer by myplacedk for scriptless JSP myplacedk 2008-10-31T22:12:19Z 2008-10-31T22:12:19Z <p>A text/plain-response and a text/html-response sound like two very different responses with very little in common.</p> <p>Create 2 JPS's, and branch in the servlet in stead.</p> <p>If they do have common elements, you can still use includes.</p> http://stackoverflow.com/questions/232592/how-to-encourage-developer-to-write-more-documentation/232626#232626 0 Answer by myplacedk for How to encourage developer to write more documentation? myplacedk 2008-10-24T06:16:56Z 2008-10-28T07:38:33Z <p>The over-all system-documentation should be written BEFORE you start coding. It's much easier to talk about the design og the system when it's documented, it is easier to discover design-errors, and they are incredibly cheaper to fix. And if there is a written system-design, every developer will have the same goal. Well, closer to, anyway.</p> <p>And of course, if documentation is the first step (in stead of the last), you can't just drop it.</p> <p>When it comes to the details (classes, methods etc.) I rely very much on self-documenting code. If you can't describe what a method does with a short name, it's probably too complicated. If not, add a bit of inline-documentation. (Javadoc or similar) This forces good design a bit more, and it's much easier to have everything right there with code completion in your IDE, than long boring documents somewhere.</p> <p>As a developer, I do NOT want detailed documentation AT ALL! If it is needed, don't write it. Fix the code! (Refactor)</p> http://stackoverflow.com/questions/242407/how-to-convince-my-boss-to-do-refactoring/242431#242431 0 Answer by myplacedk for How to convince my boss to do refactoring? myplacedk 2008-10-28T07:03:03Z 2008-10-28T07:03:03Z <p>You almost answer it yourself. The code is so cluttered that it's very hard to work with.</p> <p>Refactoring code is not that much different from cleaning up your desk, reorganizing the stock etc. You can't work at a desk with so much paper that you can hardly find the keyboard. You need to organize the paper in binders or something, and throw out everything you don't need anymore. Until you do that, you can't find half the documents you need, and typing on the keyboard is awkward.</p> <p>You need to clean up the mess, the sooner the better. Just because the boss don't see piles of clutter, it doesn't mean it isn't there. It probably just means that he haven't looked at (and understood) the code.</p> <p>Refactoring feels like waste of time the first times you do it. But I have never spent time on refactoring, that I didn't get back, usually in a few days.</p> <p>My advise (once you've cleaned up the current mess): Spend an hour or two every week to refactor the mess you've made the past week. It's really worth it! It comes from sloppy coding (we all have deadlines), something you've learned since you wrote the code (it seemed like a good idea at the time), and changes in the world around the app.</p> http://stackoverflow.com/questions/235965/why-is-it-that-people-write-free-software-such-as-openoffice-spybot-etc/236394#236394 0 Answer by myplacedk for Why is it that people write free software, such as openoffice, spybot etc? myplacedk 2008-10-25T13:20:24Z 2008-10-27T18:40:34Z <p>There are lots of reasons to create software. Personally I create software because I need it, not to sell it. In that case, there's really no downside to give it away. But you gain a lot of testers, and some of them are "above user-level", and will send you bug-reports with juicy details. or even patches.</p> <p>Example A:</p> <p>You have developed a piece of software, and choose to give it away as open source. I download software, see that it fits my needs. This i discover a bug. I download the software, make a patch and send it to you. You include the patch in the next version.</p> <p>Example B:</p> <p>You have developed a piece of software, and choose to sell it. I don't get near it.</p> http://stackoverflow.com/questions/240743/keeping-work-personal-life-separate/240969#240969 1 Answer by myplacedk for Keeping Work/Personal Life Separate myplacedk 2008-10-27T18:31:26Z 2008-10-27T18:31:26Z <p>I totally agree, leave work at work.</p> <p>However, I find that complete separation is not good. I like taking some private time at the office, AND working a bit during off-time.</p> <p>But it don't want to let it slip so I end up thinking about work 24/7 again. The stress that may follow can actually give permanent brain-damage!</p> <p>These are my rules:</p> <ul> <li>When taking some private time during work it must be an actual break, somewhat work related, or maybe I just need to take my mind off something so my sub-consciousness can work it out. (Yes, it actually works.)</li> <li>When I'm not at work, I don't think about work. I do not check my email.</li> <li>If I get an idea during off-hours, I will spend a few minutes thinking about it and writing it down. But I do not develop the idea, I don't write any code, I don't talk to anyone about it.</li> <li>When I work from home (one day a week) I still have that mental separation, even if I spend the entire day (work and break) on the couch or at the desk. So it's not my physical location, it's a state of mind. That help me using the rules even during my work-from-home-day, or when I have some hours overtime at home in the weekend.</li> </ul> http://stackoverflow.com/questions/228863/jsp-tags-with-static-output/239624#239624 0 Answer by myplacedk for JSP-tags with static output myplacedk 2008-10-27T11:38:02Z 2008-10-27T11:38:02Z <p>I made a performance-test. There is very little difference in performace, so that is no problem.</p> <h2>How I made the test</h2> <p>I created 500 individual tags (programmatically) in one of our tag libraries. (So it is wrapped in a jar etc.) They all look like this, with the number as the only difference:</p> <pre><code>package XX.XX.XX.XX import java.io.IOException; import javax.servlet.jsp.JspException; import javax.servlet.jsp.tagext.TagSupport; public class Test0001Tag extends TagSupport { public Test0001Tag() { } public int doStartTag() throws JspException { try { pageContext.getOut().print("&lt;div class=\"Test0001\"&gt;"); } catch (IOException e) { throw new JspException(e); } return EVAL_BODY_INCLUDE; } public int doEndTag() throws JspException { try { pageContext.getOut().print("&lt;/div&gt;"); } catch (IOException e) { throw new JspException(e); } return EVAL_PAGE; } public void release() { super.release(); } } </code></pre> <p>And then 500 entries in the TLD like this:</p> <pre><code>&lt;tag&gt; &lt;name&gt;test0001&lt;/name&gt; &lt;tagclass&gt;XX.XX.XX.XX.Test0001Tag&lt;/tagclass&gt; &lt;bodycontent&gt;JSP&lt;/bodycontent&gt; &lt;/tag&gt; </code></pre> <p>Then I grabbed a JSP with a little code in it, and made two copies: One with static HTML, and one with tags.</p> <p>The one with static HTML:</p> <pre><code>&lt;!-- &lt;%long start = System.currentTimeMillis();%&gt; &lt;% for (int i = 0; i &lt; 1000; i++) { %&gt; &lt;div class="Test0001"&gt;X&lt;/div&gt; &lt;div class="Test0002"&gt;X&lt;/div&gt; &lt;div class="Test0003"&gt;X&lt;/div&gt; ... &lt;div class="Test0498"&gt;X&lt;/div&gt; &lt;div class="Test0499"&gt;X&lt;/div&gt; &lt;div class="Test0500"&gt;X&lt;/div&gt; &lt;% } %&gt; &lt;%System.out.println(System.currentTimeMillis()-start);%&gt; --&gt; </code></pre> <p>The one with tags:</p> <pre><code>&lt;!-- &lt;%long start = System.currentTimeMillis();%&gt; &lt;% for (int i = 0; i &lt; 1000; i++) { %&gt; &lt;bddesign:test0001&gt;X&lt;/bddesign:test0001&gt; &lt;bddesign:test0002&gt;X&lt;/bddesign:test0002&gt; &lt;bddesign:test0003&gt;X&lt;/bddesign:test0003&gt; ... &lt;bddesign:test0498&gt;X&lt;/bddesign:test0498&gt; &lt;bddesign:test0499&gt;X&lt;/bddesign:test0499&gt; &lt;bddesign:test0500&gt;X&lt;/bddesign:test0500&gt; &lt;% } %&gt; &lt;%System.out.println(System.currentTimeMillis()-start);%&gt; --&gt; </code></pre> <p>The loop was introduced because both came out with zero milliseconds. (Unfortunately I run Windows at work, so I don't get much precision here.) The fact that 500 tags didn't make a measure-able delay could be answer enough, but I wanted more, even if the repetition may allow for some optimization.</p> <p>The result for 500 000 tags:</p> <ul> <li>JSP-tags: 15-19 seconds</li> <li>HTML-tags: 12-16 seconds</li> </ul> <p>So there is a difference, but I think it's insignificant compared to everything else going on from the user clicks to the answer is rendered on the screen.</p> <h2>Other thoughts</h2> <p>As far as I know the granularity in Windows is about 15-16 milliseconds. So "0 milliseconds" actually means "&lt;16 milliseconds". A delay of less than 16/500 milliseconds pr. tag is quite acceptable.</p> <p>I tried with 1000 tags, but the JSP-compiler was very unhappy with that. I reduced to 500 tags because the alternative was to change the setup which would invalidate my results.</p> <p>I made the generated HTML a HTML-comment, because the browser is on the same physical machine as the test-server, and I was afraid that the browser would take too much CPU-time rendering, even with a dual-core CPU. The easy solution was to comment the HTML.</p> http://stackoverflow.com/questions/228863/jsp-tags-with-static-output 1 JSP-tags with static output myplacedk 2008-10-23T07:37:32Z 2008-10-27T11:38:02Z <p>I am considering creating some JSP-tags that will always give the same output. For example:</p> <pre><code>&lt;foo:bar&gt;baz&lt;/foo:bar&gt; </code></pre> <p>Will always output:</p> <pre><code>&lt;div class="bar"&gt;baz&lt;/div&gt; </code></pre> <p>Is there any way to get a JSP-tag to behave just like static output in the generated servlet?</p> <p>For example:</p> <pre><code>out.write("&lt;div class=\"bar\"&gt;"); ... out.write("&lt;/div&gt;"); </code></pre> <p>in stead of</p> <pre><code>x.y.z.foo.BarTag _jspx_th_foo_bar_0 = new x.y.z.foo.BarTag(); _jspx_th_foo_bar_0.setPageContext(pageContext); _jspx_th_foo_bar_0.setParent(null); _jspxTagObjects.push(_jspx_th_foo_bar_0); int _jspx_eval_foo_bar_0 = _jspx_th_foo_bar_0.doStartTag(); etc... etc... etc... </code></pre> <h2>Background</h2> <p>I'm worried about performance. I haven't tested this yet, but it looks like the generated servlet does a lot for something very simple, and performance is very important.</p> <p>But if the servlet behaves as if the output was written directly in the JSP, the cost in production will be zero.</p> <p>I see a few advantages by doing this. I can change the static HTML or even change to something more dynamic, without editing every portlet. In our setup it's easy to change a tag, but very time-consuming to change every JSP that uses a specific element.</p> <p>This also means I can force developers to not write something like</p> <pre><code>&lt;div class="bar" style="whatever"&gt;...&lt;/div&gt; </code></pre> <p>There is even more advantages, but if it costs performance on the production servers, it's probably not worth it.</p> http://stackoverflow.com/questions/239361/how-do-you-get-back-in-the-zone-after-losing-it/239374#239374 1 Answer by myplacedk for How do you get back in the zone after losing it? myplacedk 2008-10-27T09:03:38Z 2008-10-27T09:03:38Z <p>Usually I don't have big problems with getting back after being disturbed. But tasks that really need undisturbed focus will just have to wait until I can have some undisturbed time. For example after everybody else has left the office, during my once-a-week work-from-home-day, working from home in the weekend...</p> <p>If it really really must be done RIGHT NOW, I get a colleague to cover me. He'll answer my phone and talk to visitors. Email and IM is ignored.</p> http://stackoverflow.com/questions/239241/what-are-the-disadvantages-of-arrays/239249#239249 2 Answer by myplacedk for What are the disadvantages of arrays? myplacedk 2008-10-27T07:04:24Z 2008-10-27T07:04:24Z <p>That is very language-dependent.</p> <p>But generally they can't be resized. You need to know the final size when you create an empty array, or at least know the max-size and have a counter to keep track on how big it should have been. But then we get to the next problem: Generally, an empty array takes as much memory as a full array.</p> http://stackoverflow.com/questions/113923/is-there-a-drm-scheme-that-works/223122#223122 2 Answer by myplacedk for Is there a DRM scheme that works? myplacedk 2008-10-21T19:17:05Z 2008-10-21T19:17:05Z <p>With the hardware in use today, you cannot stop users from copying your media. And current (major) DRM-technologies is not even about that.</p> <p>DRM is about annoying users who wants to copy. Hopefully so much, that most of them won't make copies.</p> <p>The problem is that by annoying the users, you annoy all users.</p> <p>That is why I almost never buy anything DRM-protected. And when I do, it's ONLY after I've got a DRM-free copy, so I'm sure that I'm actually able to hear/see a copy of the product.</p> http://stackoverflow.com/questions/221730/bat-file-to-run-a-exe-at-the-command-prompt/221815#221815 3 Answer by myplacedk for Bat file to run a .exe at the command prompt myplacedk 2008-10-21T13:09:39Z 2008-10-21T13:09:39Z <p>Just stick in a file and call it "ServiceModelSamples.bat" or something.</p> <p>You could add "@echo off" as line one, so the command doesn't get printed to the screen:</p> <pre><code>@echo off svcutil.exe /language:cs /out:generatedProxy.cs /config:app.config http://localhost:8000/ServiceModelSamples/service </code></pre> http://stackoverflow.com/questions/221774/is-there-a-mysql-command-to-convert-a-string-to-lowercase/221788#221788 2 Answer by myplacedk for Is there a MySQL command to convert a string to lowercase? myplacedk 2008-10-21T13:03:30Z 2008-10-21T13:03:30Z <p>Did you try looking it up? Google, manual...</p> <p><a href="http://dev.mysql.com/doc/refman/5.1/en/string-functions.html#function_lower" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/string-functions.html#function_lower</a></p> <pre><code>mysql&gt; SELECT LOWER('QUADRATICALLY'); -&gt; 'quadratically' </code></pre> http://stackoverflow.com/questions/1082353/how-do-i-make-text-bold-in-html/1082360#1082360 Comment by myplacedk on How do I make text bold in HTML? myplacedk 2009-07-04T15:07:50Z 2009-07-04T15:07:50Z Exactly. If you don't know how to make bold text in HTML, and don't how to find out, you need to start with lesson 1. http://stackoverflow.com/questions/986244/how-to-encrypt-a-data-using-symbian-c-so-that-i-can-decrypt-the-same-data-usin/1005988#1005988 Comment by myplacedk on How to encrypt a data using symbian C++, so that i can decrypt the same data using java myplacedk 2009-06-30T13:09:22Z 2009-06-30T13:09:22Z Base64 is not encryption, it's encoding. It takes seconds to &quot;break&quot; it. http://stackoverflow.com/questions/747409/reformatting-input-fields/747428#747428 Comment by myplacedk on Reformatting input-fields myplacedk 2009-04-14T13:11:24Z 2009-04-14T13:11:24Z I thought of this too. But this can double the size of input data. This can also be handled, but it doesn't seem very practical. http://stackoverflow.com/questions/747409/reformatting-input-fields/747432#747432 Comment by myplacedk on Reformatting input-fields myplacedk 2009-04-14T13:09:12Z 2009-04-14T13:09:12Z I do not agree that clientside validation is a bad thing. Missing serverside validation is a bad thing, but that's another story. (And AJAX still contacts the server, what a waste.) And in this case it would be very practical to format it client-side. http://stackoverflow.com/questions/487174/dojo-loading-message/493885#493885 Comment by myplacedk on Dojo "loading"-message myplacedk 2009-02-01T17:17:49Z 2009-02-01T17:17:49Z The busy buttons looks interesting for other uses. But for this it is not visible enough (if you submit a form without using the button, you probably won't notice it), and it doesn't keep the user from working on a page that will disappear any time. But thanks for the links, I'll read it later. http://stackoverflow.com/questions/487174/dojo-loading-message/488655#488655 Comment by myplacedk on Dojo "loading"-message myplacedk 2009-01-28T20:25:30Z 2009-01-28T20:25:30Z You misunderstood a bit. It not for waiting while the current page loads. It takes a while before the next page starts loading, because a servlet needs to do some stuff that take a while. But dijit.Dialog looks nice. I'll check it out... http://stackoverflow.com/questions/427084/what-is-the-worst-comment-you-have-ever-read-in-code-and-why-and-what-should-ha/427194#427194 Comment by myplacedk on What is the worst comment you have ever read in code, and why, and what should have been written? myplacedk 2009-01-09T07:29:08Z 2009-01-09T07:29:08Z I use this sometimes. If I call a method that can throw a &quot;FileNotFoundException&quot;, and I know the file was there 2 lines above, and good errorhandling will take too much time to make, I just log the error at let it crash. Then this comment is needed. http://stackoverflow.com/questions/423638/stack-overflow-etiquette-for-thanking-users-who-answered-my-question/423648#423648 Comment by myplacedk on Stack Overflow etiquette for thanking users who answered my question myplacedk 2009-01-08T09:55:24Z 2009-01-08T09:55:24Z I'd prefer NOT to get a &quot;thanks&quot;. I don't like returning to a subject just to see a &quot;thanks&quot;. Vote me up, it says the same thing, without disturbing me at all. Even if the answer is not directly related to the question, the vote is about how &quot;helpful&quot; it is, so you can still vote up. http://stackoverflow.com/questions/380639/creating-xml-from-with-java/380652#380652 Comment by myplacedk on Creating xml from with java myplacedk 2008-12-19T11:16:00Z 2008-12-19T11:16:00Z Yes, but IF you don't have any library at hand, AND the XML is very simple, I'd rather not depend on yet another library. Often you will need such a library anyway, and in that case you should use it. http://stackoverflow.com/questions/368086/clearcase-time-and-query/370008#370008 Comment by myplacedk on ClearCase time and query myplacedk 2008-12-16T14:55:38Z 2008-12-16T14:55:38Z I checked the manual, but apparantly I misunderstood it. This is probably what I was searching for. My next problem is that I cannot see where labels was in the past. But I think that is just something I will have to live with. http://stackoverflow.com/questions/368086/clearcase-time-and-query/370008#370008 Comment by myplacedk on ClearCase time and query myplacedk 2008-12-16T10:13:27Z 2008-12-16T10:13:27Z I don't think this will work. Imagine a file created in January, end changed in March. If I say {!created_since(Feb)}, I will se the March-version, but I need the January-version. http://stackoverflow.com/questions/368086/clearcase-time-and-query/368112#368112 Comment by myplacedk on ClearCase time and query myplacedk 2008-12-15T19:59:20Z 2008-12-15T19:59:20Z It's closer now. ;-) But it's only about the time-part. There is nothing about excluding files with a certain label, or how to work around the query/time problem. http://stackoverflow.com/questions/368086/clearcase-time-and-query/368112#368112 Comment by myplacedk on ClearCase time and query myplacedk 2008-12-15T11:48:25Z 2008-12-15T11:48:25Z No, not really. I don't see anything about excluding certain labels, or selecting a time. http://stackoverflow.com/questions/341402/modifying-existing-code-whats-your-commenting-style/341506#341506 Comment by myplacedk on Modifying existing code, what's your commenting style? myplacedk 2008-12-04T18:14:07Z 2008-12-04T18:14:07Z I was about to write exactly the same points. In short: The code is about the present, the past is what version control is for. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237826#237826 Comment by myplacedk on What is your best programmer joke? myplacedk 2008-12-01T11:10:44Z 2008-12-01T11:10:44Z Source: <a href="http://xkcd.com/221/" rel="nofollow">xkcd.com/221</a>