User myplacedk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T02:59:22Zhttp://stackoverflow.com/feeds/user/28683http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1032180/saving-a-file-with-javascript-in-s60v3-mobile-browser/1063313#10633130Answer by myplacedk for Saving a file with Javascript in S60v3 mobile browsermyplacedk2009-06-30T12:13:36Z2009-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#74786111Answer by myplacedk for Integer vs String in databasemyplacedk2009-04-14T14:27:28Z2009-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-fields0Reformatting input-fieldsmyplacedk2009-04-14T12:54:49Z2009-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#5011440Answer by myplacedk for Dojo "loading"-messagemyplacedk2009-02-01T16:56:02Z2009-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 = "<img src=\"loading.gif\" alt=\"\" /> " + 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-message0Dojo "loading"-messagemyplacedk2009-01-28T10:37:22Z2009-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#4830420Answer by myplacedk for Does the frequent change of requirements lead to spaghetti code?myplacedk2009-01-27T11:25:37Z2009-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#4239094Answer by myplacedk for When coding, what do you worry about?myplacedk2009-01-08T11:09:34Z2009-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#4238940Answer by myplacedk for PHP Header redirect not workingmyplacedk2009-01-08T11:05:00Z2009-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><?php
include('class.user.php');
include('class.Connection.php');
?>
</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#4238721Answer by myplacedk for PHP Header redirect not workingmyplacedk2009-01-08T10:58:35Z2009-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#4238532Answer by myplacedk for How can I properly display German characters in HTML?myplacedk2009-01-08T10:53:18Z2009-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#4236860Answer by myplacedk for Sort arrays of primitive types in descending ordermyplacedk2009-01-08T09:31:52Z2009-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#4162985Answer by myplacedk for How do you persuade others to write unit tests?myplacedk2009-01-06T12:13:11Z2009-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-query1ClearCase time and querymyplacedk2008-12-15T11:34:57Z2008-12-16T11:56:38Z
<p>This config-spec show the files I need:</p>
<pre><code>element -dir * '{version(/main/LATEST) && !version(SLT-T)}'
element -file * '{version(/main/LATEST) && !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) && !version(SLT-T)}'
element -file * '{version(/main/LATEST) && !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#2953551Answer by myplacedk for Have you ever noticed some JSP incompatibilities with WebSphere ?myplacedk2008-11-17T11:26:29Z2008-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#2801872Answer by myplacedk for How to get rid of try catch?myplacedk2008-11-11T06:45:43Z2008-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#2760311Answer by myplacedk for Line width formatting standardmyplacedk2008-11-09T15:43:34Z2008-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#27161610Answer by myplacedk for How to avoid "!= null" statements in Java?myplacedk2008-11-07T09:27:00Z2008-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 && ...</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#2559801Answer by myplacedk for Find all drive letters in Javamyplacedk2008-11-01T19:17:38Z2008-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#2551030Answer by myplacedk for scriptless JSPmyplacedk2008-10-31T22:12:19Z2008-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#2326260Answer by myplacedk for How to encourage developer to write more documentation?myplacedk2008-10-24T06:16:56Z2008-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#2424310Answer by myplacedk for How to convince my boss to do refactoring?myplacedk2008-10-28T07:03:03Z2008-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#2363940Answer by myplacedk for Why is it that people write free software, such as openoffice, spybot etc?myplacedk2008-10-25T13:20:24Z2008-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#2409691Answer by myplacedk for Keeping Work/Personal Life Separatemyplacedk2008-10-27T18:31:26Z2008-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#2396240Answer by myplacedk for JSP-tags with static outputmyplacedk2008-10-27T11:38:02Z2008-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("<div class=\"Test0001\">");
} catch (IOException e) {
throw new JspException(e);
}
return EVAL_BODY_INCLUDE;
}
public int doEndTag() throws JspException {
try {
pageContext.getOut().print("</div>");
} 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><tag>
<name>test0001</name>
<tagclass>XX.XX.XX.XX.Test0001Tag</tagclass>
<bodycontent>JSP</bodycontent>
</tag>
</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><!--
<%long start = System.currentTimeMillis();%>
<% for (int i = 0; i < 1000; i++) { %>
<div class="Test0001">X</div>
<div class="Test0002">X</div>
<div class="Test0003">X</div>
...
<div class="Test0498">X</div>
<div class="Test0499">X</div>
<div class="Test0500">X</div>
<% } %>
<%System.out.println(System.currentTimeMillis()-start);%>
-->
</code></pre>
<p>The one with tags:</p>
<pre><code><!--
<%long start = System.currentTimeMillis();%>
<% for (int i = 0; i < 1000; i++) { %>
<bddesign:test0001>X</bddesign:test0001>
<bddesign:test0002>X</bddesign:test0002>
<bddesign:test0003>X</bddesign:test0003>
...
<bddesign:test0498>X</bddesign:test0498>
<bddesign:test0499>X</bddesign:test0499>
<bddesign:test0500>X</bddesign:test0500>
<% } %>
<%System.out.println(System.currentTimeMillis()-start);%>
-->
</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 "<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-output1JSP-tags with static outputmyplacedk2008-10-23T07:37:32Z2008-10-27T11:38:02Z
<p>I am considering creating some JSP-tags that will always give the same output. For example:</p>
<pre><code><foo:bar>baz</foo:bar>
</code></pre>
<p>Will always output:</p>
<pre><code><div class="bar">baz</div>
</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("<div class=\"bar\">");
...
out.write("</div>");
</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><div class="bar" style="whatever">...</div>
</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#2393741Answer by myplacedk for How do you get back in the zone after losing it?myplacedk2008-10-27T09:03:38Z2008-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#2392492Answer by myplacedk for What are the disadvantages of arrays?myplacedk2008-10-27T07:04:24Z2008-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#2231222Answer by myplacedk for Is there a DRM scheme that works?myplacedk2008-10-21T19:17:05Z2008-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#2218153Answer by myplacedk for Bat file to run a .exe at the command promptmyplacedk2008-10-21T13:09:39Z2008-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#2217882Answer by myplacedk for Is there a MySQL command to convert a string to lowercase?myplacedk2008-10-21T13:03:30Z2008-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> SELECT LOWER('QUADRATICALLY');
-> 'quadratically'
</code></pre>
http://stackoverflow.com/questions/1082353/how-do-i-make-text-bold-in-html/1082360#1082360Comment by myplacedk on How do I make text bold in HTML?myplacedk2009-07-04T15:07:50Z2009-07-04T15:07:50ZExactly. 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#1005988Comment by myplacedk on How to encrypt a data using symbian C++, so that i can decrypt the same data using javamyplacedk2009-06-30T13:09:22Z2009-06-30T13:09:22ZBase64 is not encryption, it's encoding. It takes seconds to "break" it.http://stackoverflow.com/questions/747409/reformatting-input-fields/747428#747428Comment by myplacedk on Reformatting input-fieldsmyplacedk2009-04-14T13:11:24Z2009-04-14T13:11:24ZI 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#747432Comment by myplacedk on Reformatting input-fieldsmyplacedk2009-04-14T13:09:12Z2009-04-14T13:09:12ZI 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#493885Comment by myplacedk on Dojo "loading"-messagemyplacedk2009-02-01T17:17:49Z2009-02-01T17:17:49ZThe 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#488655Comment by myplacedk on Dojo "loading"-messagemyplacedk2009-01-28T20:25:30Z2009-01-28T20:25:30ZYou 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#427194Comment by myplacedk on What is the worst comment you have ever read in code, and why, and what should have been written?myplacedk2009-01-09T07:29:08Z2009-01-09T07:29:08ZI use this sometimes. If I call a method that can throw a "FileNotFoundException", 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#423648Comment by myplacedk on Stack Overflow etiquette for thanking users who answered my questionmyplacedk2009-01-08T09:55:24Z2009-01-08T09:55:24ZI'd prefer NOT to get a "thanks". I don't like returning to a subject just to see a "thanks". 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 "helpful" it is, so you can still vote up.http://stackoverflow.com/questions/380639/creating-xml-from-with-java/380652#380652Comment by myplacedk on Creating xml from with javamyplacedk2008-12-19T11:16:00Z2008-12-19T11:16:00ZYes, 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#370008Comment by myplacedk on ClearCase time and querymyplacedk2008-12-16T14:55:38Z2008-12-16T14:55:38ZI 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#370008Comment by myplacedk on ClearCase time and querymyplacedk2008-12-16T10:13:27Z2008-12-16T10:13:27ZI 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#368112Comment by myplacedk on ClearCase time and querymyplacedk2008-12-15T19:59:20Z2008-12-15T19:59:20ZIt'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#368112Comment by myplacedk on ClearCase time and querymyplacedk2008-12-15T11:48:25Z2008-12-15T11:48:25ZNo, 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#341506Comment by myplacedk on Modifying existing code, what's your commenting style?myplacedk2008-12-04T18:14:07Z2008-12-04T18:14:07ZI 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#237826Comment by myplacedk on What is your best programmer joke?myplacedk2008-12-01T11:10:44Z2008-12-01T11:10:44ZSource: <a href="http://xkcd.com/221/" rel="nofollow">xkcd.com/221</a>