User Mr. Shiny and New - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:00:11Zhttp://stackoverflow.com/feeds/user/7867http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848029/why-not-port-linux-kernel-to-common-lisp/1848316#18483166Answer by Mr. Shiny and New for Why not port Linux kernel to Common Lisp?Mr. Shiny and New2009-12-04T17:02:13Z2009-12-04T17:02:13Z<p>I strongly suspect you are a troll for using such inflamatory wording, but I'll answer nonetheless. </p>
<p>There are several things wrong with your premise:</p>
<ol>
<li>You claim SBCL is as performant as C. What does "as performant" mean? In the kernel world even a 1% or 2% performance regression is a major problem.</li>
<li>Lisp's readability is one of those things that is highly trumpted in lisp circles and otherwise disbelieved. I have a Computer Engineering degree and studied Lisp and C in school and can honestly tell you that I find Lisp harder to use. I'm sure millions of programmers agree with me. C is not the best language ever but neither is Lisp.</li>
<li>There is nothing that can't be done in C which can be done in Lisp. Some things may be easier to do in Lisp, but since you can write a Lisp engine in C then C can do anything Lisp can (and more).</li>
<li>Garbage Collection: GC is great but not well suited to applications which require specific deterministic performance. The Kernel falls into this category.</li>
<li>Rewriting code is hard and porting is harder. Changing code for the fun of it introduces bugs (this is a guarantee) and reduces features.</li>
<li>C lets the developer tweak even the tiniest detail. This is critical when you need to do things like ensure that a data-structure fits in a cache entry for your target processor. How do you do that in Lisp? Is it even possible? These are details that kernel developers have to deal with all the time. Kernel developers are still counting bytes.</li>
</ol>
<p>In short, porting the kernel to Lisp would bring: reduction in readibility, performance loss, reduction in available programming talent, fewer features, and more bugs. That's why nobody will do it.</p>
http://stackoverflow.com/questions/1808419/creating-new-tab-switching-between-tabs-in-firefox/1847205#18472050Answer by Mr. Shiny and New for Creating new tab / switching between Tabs in Firefox?Mr. Shiny and New2009-12-04T14:16:23Z2009-12-04T14:16:23Z<p>I second the answers that say you should do this in HTML using Javascript. Then it can work in all browsers that support JS.</p>
<p>I would put two divs on the page and show/hide each div depending on which tab is selected. If you are clever about this you could trap the click on the tab and determine if the user left-clicked or middle-clicked. If they left click you load that tab on the page. If they middle-click you let the browser open a new tab/window (according to the user's prefs, don't try to force it), and leave the current window unchanged (that is, don't switch to the new tab). The action for clicking on the tab would be to use AJAX to load the contents of the remote document and put it into the tab. Use Javascript to modify the URL before submitting the AJAX request so that the server knows to send a web page fragment instead of the whole page.</p>
<p>The advantage of this dual-natured solution is that the tabbed approach will work the way you want it to work for the majority of cases, but for users with, say, two screens, or who prefer switching between browser tabs, they will still have the flexibility to work in multi-window mode. This can all be done without any browser extensions and it should work equally well in IE as well as Firefox, Opera, etc. Avoid locking yourself into one browser, even one as excellent as Firefox. One day a customer will need to use Opera or Safari and you'll be stuck.</p>
http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1840670#18406701Answer by Mr. Shiny and New for Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar?Mr. Shiny and New2009-12-03T15:32:26Z2009-12-03T15:32:26Z<p>In CSS2.1 the padding, border, and margins are all outside the height and width of an element. This is what is causing your design to be too tall, because you are using all these elements together with 100% height. This means your elements are 100% of the window height <strong>plus</strong> the padding <strong>plus</strong> the margin <strong>plus</strong> the border.</p>
<p>I've adjusted your HTML and CSS as follows. The basic idea is to make the two columns fill the screen, while leaving space for the header, which is a fixed size. Note: I removed the red borders. If you are going to want borders on this page you will need to use a different approach. Some workarounds I can think of would be to put the borders on non-obvious elements. For example, if you need a border on the <code>#menu</code> or <code>#header</code> you can easily do so because they are fixed-size elements. For a border just around the <code>#text</code> you might want to set <code>border-bottom</code> on the <code>#header</code>, <code>border-right</code> on the <code>#text</code>, <code>border-right</code> on the <code>#menu</code>, etc.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>de titel</title>
<style type="text/css">
* {
color: #FFFFFF;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
background-color: #000000;
}
#wrapper {
width: 800px;
height: 100%;
margin: 0 auto;
}
#header {
background-color: lightblue;
position: relative;
height: 60px;
z-index: 1;
}
#content {
height: 100%;
margin: -60px 0 0 0;
}
#menu {
width: 200px;
height: 100%;
background-color: gray;
float: left;
}
#text {
background-color: orange;
height: 100%;
margin-left: 200px;
}
#text_inner, #menu_inner {
position: relative;
top: 65px;
margin: 0 5px;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
<br><center>[ hier moet een header image worden toegevoegd ]</center>
</div>
<div id="content">
<div id="menu">
<div id="menu_inner">
Link 1
</div>
</div>
<div id="text">
<div id="text_inner">
<h1>Titel</h1>
<p>Dit is de tekst van je pagina.</p>
</div>
</div>
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1839938/serve-jsp-stored-in-db/1840119#18401191Answer by Mr. Shiny and New for Serve JSP stored in DBMr. Shiny and New2009-12-03T14:17:12Z2009-12-03T14:17:12Z<p>JSP loading and compiling is implemented in the servlet container. There are two approaches I can think of using for making this feature possible:</p>
<ol>
<li>Modify the servlet container's JSP servlet. If you are using, say, Jetty or Tomcat which are open-source, you can easily look at their JSP servlet and change it so that it reads the JSPs from the DB. You may be able to adapt one of these for use in a proprietary container. This is the most direct way of solving the problem but you are stepping into a minefield of potential bugs. </li>
<li>Build the CMS in the database as planned, but copy the JSPs to the running application's filesystem while the application is running. Let the application server's normal JSP change detection notice that the changes are occurring. You could wrap all requests with a Filter which checks the DB for updated JSPs, copy the JSPs at modification time, or use a scheduled job to copy them at certain intervals.</li>
</ol>
<p>In both scenarios you have to worry about memory leaks for unloaded classes, especially if any of your code uses ThreadLocals or other static variables. The normal JSP loaders already suffer from problems if you unload WARs or recompile JSPs at runtime. This is due to limitations in Java and is not easily solved (depending on which JDK is used). I would recommend never, or very rarely, changing JSPs without restarting the server unless you can't avoid it.</p>
http://stackoverflow.com/questions/1826308/controling-tabbing-focus-within-popup-javascript-widget-context/1826532#18265321Answer by Mr. Shiny and New for Controling tabbing focus within popup javascript widget contextMr. Shiny and New2009-12-01T14:29:05Z2009-12-01T14:29:05Z<p>I tried doing the following when showing the popup window, it seems to work in Firefox 3. It may be enough to get you started:</p>
<pre><code>$('#nonpopup a').attr('disabled','true');
$('#nonpopup input').attr('disabled','true');
</code></pre>
<p>The JQuery selector finds all the <code>A</code> and <code>input</code> elements that are in the div with id <code>nonpopup</code> and sets the html attribute <code>disabled</code> to <code>true</code>. If you are not using JQuery you will need some other way to find all these elements but it may be as simple as <code>document.getElementsByTagName()</code>.</p>
<p>What this accomplishes is preventing the browser from tabbing to those elements. The tab order still leaves the page and goes all through the browser chrome, such as the URL bar.</p>
http://stackoverflow.com/questions/1821762/image-vertical-alignment-issue/1822225#18222250Answer by Mr. Shiny and New for image vertical alignment issueMr. Shiny and New2009-11-30T20:31:37Z2009-11-30T20:31:37Z<p>Try </p>
<pre><code>#Header {
vertical-align: middle;
}
</code></pre>
<p>Note I tested this in strict standards mode. It seemed to have no effect on IE6 but moved the image up on IE8 and FF3.</p>
http://stackoverflow.com/questions/1821714/jaxb-compiler-and-attribute-order/1821782#18217821Answer by Mr. Shiny and New for JAXB Compiler and Attribute OrderMr. Shiny and New2009-11-30T19:12:47Z2009-11-30T20:09:19Z<p>I'd recommend using an XML parser to validate the output instead of doing textual comparisons. If you're going to be parsing the xml to re-order it anyway, you may as well just do the comparison using XML tools.</p>
<p>Edit:
Attempting to control the generated XML by manipulating the Java source code order seems like a fragile way of doing things. Granted, this is for testing only, so if something breaks the code might still work properly. People change source code order all the time, sometimes by accident, and it will be annoying or a subtle source of problems if you have to rely on a certain ordering.</p>
<p>As for ways of comparing the XML data using XML tools, I've never personally done this on a large scale, but <a href="http://www.manageability.org/blog/stuff/open-source-xml-diff-in-java" rel="nofollow">this link mentions a few free tools</a>. For me the extension to JUnit that provides XML-related assertions would be my first step, as that could integrate well with my existing tests. Otherwise, since you're mainly looking for exact equivalence, you could just parse the two XML files, then iterate over the nodes in the 'expected' file and see if those nodes are present in the 'actual' file. Then just check for any other nodes that you don't expect to see.</p>
http://stackoverflow.com/questions/1808878/expected-illegal-start-of-expression/1808983#18089836Answer by Mr. Shiny and New for expected ), illegal start of expressionMr. Shiny and New2009-11-27T14:07:17Z2009-11-27T14:07:17Z<p>You are missing a curly brace here:</p>
<pre><code> displaycontact();
}}}); // <- HERE
</code></pre>
<p>This is nearly impossible to see with your code because it is formatted very poorly. You should use a text editor which highlights matching braces. This lets you see quickly what that closing brace closes.</p>
<p>I advise you to reformat the code so that there is proper indentation. You have quite a lot of indentation so you may want to consider using two spaces or a tab size with the tab width set to two. Proper indentation lets you scan the code veritcally to see where the braces are closing things.</p>
<p>I reformatted your code in Eclipse and the ActionListener which is causing your problem now looks like this:</p>
<pre><code>imp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
JFileChooser fileopen = new JFileChooser();
int ret = fileopen.showDialog(null, "Open file");
if (ret == JFileChooser.APPROVE_OPTION) {
try {
BufferedReader fileStream = new BufferedReader(new FileReader("src/contacts.buab"));
while (true) {
String fileInput = fileStream.readLine();
if (fileInput == null)
break;
Contact a = new Contact();
a.setname(fileInput);
a.setsurname(fileStream.readline());
a.setphone(fileStream.readLine());
a.setmobile(fileStream.readLine());
a.setaddress(fileStream.readLine());
a.setpostcode(fileStream.readline());
Contacts.add(a);
System.out.println(a.getname());
}
fileStream.close();
} catch (Exception ex) {
JOptionPane.showMessageDialog(null, ioe.getMessage());
}
displaycontact();
}
}
});
</code></pre>
<p>Notice that the last curly brace blob is now in three lines and that each line is less indented than the previous? This would make it immediately obvious where you were missing a curly brace.</p>
http://stackoverflow.com/questions/1808887/how-to-avoid-a-saxparseexception-using-xerces-when-html-file-includes-mdash/1808903#18089031Answer by Mr. Shiny and New for How to avoid a SAXParseException using Xerces when HTML file includes mdash?Mr. Shiny and New2009-11-27T13:52:12Z2009-11-27T13:52:12Z<p>Given that HTML is not XML I think you might find lots of problems with trying to parse HTML Transitional with an XML parser. But in case your HTML is actually well-formed XML, the mdash and other entities are usually defined in the DTD. Make sure your parser has the DTD for the document and it should be ok.</p>
http://stackoverflow.com/questions/1808635/why-is-this-javascript-not-working/1808889#18088892Answer by Mr. Shiny and New for Why is this javascript not working?Mr. Shiny and New2009-11-27T13:49:44Z2009-11-27T13:49:44Z<p>I'd try doing this:</p>
<pre><code>if (window.addEventListener){
window.addEventListener('load', function() {loadNewElements(); addDateFormatInfo()}, false);
} else if (window.attachEvent){
window.attachEvent('onload', function() {loadNewElements(); addDateFormatInfo()});
}
</code></pre>
http://stackoverflow.com/questions/1797485/png-tranparency-help-in-ie6/1797643#17976430Answer by Mr. Shiny and New for PNG tranparency help in ie6!!Mr. Shiny and New2009-11-25T15:21:43Z2009-11-25T15:21:43Z<p>I should point out that IE is very buggy when using transparent PNGs if you have the fix applied. This is because the AlphaImageLoader has a major flaw which can cause the browser to hang. <a href="http://blog.hackedbrain.com/archive/2007/05/21/6110.aspx" rel="nofollow">This link has more details about a fix that works around the lockukp.</a> However, in my testing, even that extensive fix was not sufficient. We still experienced IE6 browser lockups when viewing pages with PNGs on them.</p>
<p>You can work around the problem in a different way, with graceful degredation in IE, by using 8-bit alpha-channel PNGs. Not many tools can do this, but you can find information <a href="http://www.sitepoint.com/blogs/2007/09/18/png8-the-clear-winner/" rel="nofollow">here</a> and <a href="http://www.communitymx.com/content/article.cfm?cid=E4024" rel="nofollow">here</a>. The 8-bit images won't crash IE, and will look good in IE7+ and all other browsers. IE6 will see images without the transparent parts. This may be acceptable for your design. If not, I'd consider changing the design if you care about IE6 at all. It simply isn't stable.</p>
http://stackoverflow.com/questions/1797550/java-sort-an-unmodifiable-list/1797596#17975965Answer by Mr. Shiny and New for Java: Sort an unmodifiable listMr. Shiny and New2009-11-25T15:14:11Z2009-11-25T15:14:11Z<p>Are you creating an empty list using <code>Collections.emptyList()</code>? If so, that is an unmodifiable list too and that may be the source of your problem.</p>
<p>Create a new list using the constructor for your List implementation, such as <code>new ArrayList()</code>. You can pass the original list into the constructor or else use the <code>addAll()</code> method.</p>
http://stackoverflow.com/questions/508639/why-must-delegation-to-a-different-constructor-happen-first-in-a-java-constructor/1792054#17920541Answer by Mr. Shiny and New for Why must delegation to a different constructor happen first in a Java constructor?Mr. Shiny and New2009-11-24T18:40:46Z2009-11-24T18:40:46Z<p>I think several of the answers here are wrong because they assume encapsulation is somehow broken when calling super() after invoking some code. The fact is that the super can actually break encapsulation itself, because Java allows overriding methods in the constructor.</p>
<p>Consider these classes:</p>
<pre><code>class A {
protected int i;
public void print() { System.out.println("Hello"); }
public A() { i = 13; print(); }
}
class B extends A {
private String msg;
public void print() { System.out.println(msg); }
public B(String msg) { super(); this.msg = msg; }
}
</code></pre>
<p>If you do</p>
<pre><code>new B();
</code></pre>
<p>the message printed out is "null". That's because the constructor from A is accessing the uninitialized field from B. So frankly it seems that if someone wanted to do this:</p>
<pre><code>class C extends A {
public C() {
System.out.println(i); // i not yet initialized
super();
}
}
</code></pre>
<p>Then that's just as much their problem as if they make class B above. In both cases the programmer has to know how the variables are accessed during construction. And given that you can call <code>super()</code> or <code>this()</code> with all kinds of expressions in the parameter list, it seems like an artificial restriction that you can't compute any expressions before calling the other constructor. Not to mention that the restriction applies to both <code>super()</code> and <code>this()</code> when presumably you know how to not break your own encapsulation when calling <code>this()</code>.</p>
<p>My verdict: This feature is a bug in the compiler, perhaps originally motivated by a good reason, but in its current form it is an artifical limitation with no purpose.</p>
http://stackoverflow.com/questions/1790933/java-nullpointer-exception/1791008#17910080Answer by Mr. Shiny and New for java - nullpointer exceptionMr. Shiny and New2009-11-24T15:58:33Z2009-11-24T15:58:33Z<p>At what point do you initialize the data[][] array?</p>
<pre><code>String data[][] = new String [2000][5];
</code></pre>
<p>allocates the space but it appears that you never put any Strings in the array.</p>
<p>Also I feel I should point out that string.getBytes() is not character-encoding safe. You should always specify the character encoding, such as UTF-8 or UTF-16. Remember, the characters in the string are not equivalent to bytes; getBytes() transforms the data.</p>
http://stackoverflow.com/questions/1509849/are-addbatch-and-executebatch-thread-safe/1765580#17655801Answer by Mr. Shiny and New for Are addBatch() and executeBatch() thread-safe?Mr. Shiny and New2009-11-19T18:38:39Z2009-11-19T18:38:39Z<p>As jambjo pointed out, the spec requires thread safety. However, as Rakesh Juyal pointed out, there is no way to ensure such safety in practice. So if you want to be truly portable and robust, avoid multi-threaded access to the variables as much as possible, unless you are sure the drivers you are using are spec compliant.</p>
<p>As for addBatch and executeBatch, these methods are themselves unreliable in certain cases. I know that whenever I've tried to use these with Oracle drivers (single thread) I got unpredictable results. So maybe thread safety isn't your problem, but rather batches.</p>
http://stackoverflow.com/questions/1764918/cached-image-problem/1765401#17654010Answer by Mr. Shiny and New for Cached image problemMr. Shiny and New2009-11-19T18:15:44Z2009-11-19T18:15:44Z<p>The HTTP headers always apply to only one item. In the case of those set on the page itself they apply only to the page and not to the linked resources.</p>
<p>Browsers and HTTP caches in the wild will have cached copies of this image already. There is no way to force them to reload the image without changing the URL of the image (which you've stated you cannot do).</p>
<p>If this is the only time you are changing this image, or you expect such changes to be infrequent, then just change the image and eventually the web will cache the new image. Browsers that check for updated versions will be notified by the web server that the timestamp has changed.</p>
<p>For making a more permanent change, you need to investigate how IIS is setting headers for your static files. I suspect that it sets all the headers uniformly for all files, but there may be a way to override the headers for a specific file. If not, you should be able to wrap the request for that url in a script which sets the headers before delivering the content. What you want to do, in this case, is set the Expires or max-age header so that browsers know how long they should keep this item in the cache. Note that these headers will only apply to future requests for this file.</p>
<p>Putting these headers in the pages themselves will not affect requests for the file. Be careful when adding cache-control headers as your site may not function properly if the wrong things are being cached too aggressively; alternatively your bandwidth may spike as things are not being cached which should be.</p>
<p>For future consideration you should make it possible to change the paths of static resources when the content changes. This makes it clear to a browser that the file is new because there will be nothing with that url in the path. For example:</p>
<pre><code>www.yoursite.com/images/v1/logo.png
</code></pre>
<p>becomes</p>
<pre><code>www.yoursite.com/images/v2/logo.png
</code></pre>
<p>once logo.png changes to v2. Then, in the pages where logo.png is referenced, you have code to automatically write the correct url in the page. This way each revision of the file has a unique name and thus never conflicts with any previously cached versions.</p>
http://stackoverflow.com/questions/1750477/java-strong-code-mobility-how-to/1750609#17506090Answer by Mr. Shiny and New for Java: Strong Code mobility How to?Mr. Shiny and New2009-11-17T17:52:09Z2009-11-17T17:52:09Z<p>In normal Java you'd need some way to have App B load the Class for the object, then you need to serialize the object from App A to App B. You could do this, perhaps, if the classes are available in some central location such as an HTTP server. But in the general case where you want to transfer a completely new object to App B you'd need to implement your own classloader (or find a library that does this).</p>
<p>If all your objects are Serializable and you have a central location to store the classes, this should be fairly straightforward to implement. You could use the URLClassLoader to load classes from an http server, then normal Java Serialization to transfer over the serialized object. Some coordination between Apps A and B would be required so that B knows which class to load and A knows when to send the object, and B knows how to continue execution of the object's methods. With this approach there probably is no way for the object X to be in-progress of executing a method; it would have to stop and then restart its execution in cooperation with App A.</p>
http://stackoverflow.com/questions/1750504/prefix-is-in-method-name-for-verification-methods/1750554#17505540Answer by Mr. Shiny and New for Prefix "Is" in Method Name for Verification MethodsMr. Shiny and New2009-11-17T17:44:16Z2009-11-17T17:44:16Z<p>It's nice if your methods can contain a verb that helps describe what the method does. <code>VerifyCopyData</code> sounds like it verifies the data, whereas <code>isDataCopied</code> sounds like it tests the existence of the some fact. It's a subtle distinction. Nitpick: I'd call the first method <code>VerifyCopiedData</code>.</p>
http://stackoverflow.com/questions/1686440/why-is-one-installation-of-ie8-unexpectedly-loading-pages-from-cache-while-oth/1725890#17258902Answer by Mr. Shiny and New for Why is one installation of IE8 (unexpectedly) loading pages from cache, while others are not?Mr. Shiny and New2009-11-12T22:35:10Z2009-11-12T22:35:10Z<p>Try Internet Options->General->Browsing History Settings and make sure that "Check for new versions of stored pages" isn't set to "Never".</p>
http://stackoverflow.com/questions/1678738/how-to-play-video-flv-without-showing-the-loading-image-for-buffering-while-pl/1725861#17258610Answer by Mr. Shiny and New for How to play video (.flv) without showing the loading image for buffering while playing?Mr. Shiny and New2009-11-12T22:29:04Z2009-11-12T22:29:04Z<p>You can create custom buffering animations. If you don't want to show anything, I imagine you could create an animation that has nothing in it or that has no frames. See <a href="http://library.creativecow.net/articles/brimelow%5Flee/video%5Fbasics%5F6/video-tutorial.php" rel="nofollow">here for a video tutorial</a>.</p>
http://stackoverflow.com/questions/1687402/copypaste-from-eclipse-to-flash-does-not-work/1724841#17248410Answer by Mr. Shiny and New for copy+paste from eclipse to flash does not workMr. Shiny and New2009-11-12T19:41:40Z2009-11-12T19:41:40Z<p>I've seen similar problems in Eclipse on Windows; in certain Eclipse file-type editors the copy and paste don't work properly. If you are using the HTML or JSP editor in Eclipse try using the text editor and see if your problem goes away. On Windows copy/paste are CTRL-C/CTRL-V, but they are also CTRL-INS/SHIFT-INS. The latter keystrokes sometimes work for me when the others do not.</p>
http://stackoverflow.com/questions/1723997/how-to-use-the-cachegrind-output-to-optimize-the-application/1724171#17241711Answer by Mr. Shiny and New for How to use the cachegrind output to optimize the applicationMr. Shiny and New2009-11-12T17:57:29Z2009-11-12T17:57:29Z<p>According to <a href="http://valgrind.org/docs/manual/cg-manual.html#cg-manual.acting-on" rel="nofollow">the Cachegrind documentation</a>, the details given to you by cachegrind are the number of cache misses for a given part of your code. You need to know about how caches work on the architecture you are targetting so that you know how to fix the code. In practice this means making data smaller or changing the access pattern of some data so that cached data is still in the cache. However you need to understand your program's data and data access before you can act on the information. As it says in the manual, </p>
<blockquote>
<p>In short, Cachegrind can tell you where some of the bottlenecks in your code are, but it can't tell you how to fix them. You have to work that out for yourself. But at least you have the information! </p>
</blockquote>
http://stackoverflow.com/questions/1723979/html-table-using-colspans-not-displaying-as-expected/1724098#17240980Answer by Mr. Shiny and New for HTML table using colSpans not displaying as expectedMr. Shiny and New2009-11-12T17:49:06Z2009-11-12T17:49:06Z<p>What about the code is not working as expected? I tried your sample code and it works as it should: there are 4 columns in the table; the first row is empty, the second has two columns, one large and one short, the third row has one column that spans the whole table, and the fourth row has 2 columns. </p>
<p>I should point out that the divs inside the table don't necessarily match the widths of the columns they are in. That is because of the way table column widths are computed: The table has a fixed width (1000px). The columns are distributed within these 1000 px to best fit the containing data. </p>
<ul>
<li>Row 1 says nothing about the column widths.</li>
<li>Row 2 says column1 must be at least 180px and column 2+3+4 must be at least 770px.</li>
<li>Row 3 says columns 1+2+3+4 must be at least 960px.</li>
<li>Row 4 says columns 1+2 must be at least 475px and columns 3+4 must be at least 475px.</li>
</ul>
<p>Since nothing is said about column2, and column2 contains no data, it is being sized to the minimum width, and column1 is being sized to a larger width than you expect.</p>
<p>You can fix this problem by specifying the widths in the columns themselves, either using the <code><col></code> syntax, a CSS rule, or specifying the size in the first row of the table (using <code><td width=""></code>.</p>
http://stackoverflow.com/questions/1710520/which-multilingual-web-design-solution-is-fastest-for-the-user-if-this-is-indeed/1710741#17107411Answer by Mr. Shiny and New for Which multilingual web design solution is fastest for the user, if this is indeed an issue?Mr. Shiny and New2009-11-10T19:55:18Z2009-11-12T16:00:05Z<p>Whether you use a database or a filesystem to store the translations, you should be loading the text all at once and then serving it from memory. Most applications will typically not have so much text that this becomes a problem. In Java or .Net this could be accomplished by storing the text in a singleton or static object. Then all the strings are in RAM and do not need to be loaded or parsed. If your platform does not have a convenient way to store data in ram, you could run a separate caching application such as memcached.</p>
<p>The rest of your concerns can be mitigated by hiding the details. Build or find a framework that lets you load your translations and then look them up by some key. If you decide to switch to files or a database later, the rest of your code is unaffected. In the short term do whichever is easier for you. I've found that it's best to have a mix: it's easier to manage application text along with the source code in a version control system. But some text changes often, or needs to change without requiring a build+deployment cycle, and that text should be in the DB.</p>
<p>Finally, don't build strings with substitutions in them. Use some kind of format string, because otherwise your translators will go crazy trying to translate sentence fragments.</p>
<p>(Warning: Java code sample)</p>
<pre><code>//WRONG
String msg = "Hello, " + username + ", welcome back.";
//RIGHT
String fmt = "Hello, %s, welcome back."; // in real code: load this string from a file or the db
String msg = fmt.format(username);
</code></pre>
<p>Another person mentioned encoding the language in the URL. This is the preferred way to do it if you care what a search engine thinks of your site. Google recommends using different hostnames or a different subdirectory. This means that the language headers sent by the user can't be used for anything, except perhaps initially sending them to one landing page or another. You will need to determine the language for each request based on the incoming URL (this actually simplifies your code a lot later on). In Java I'd store the language code in the Request and just grab it whenever I need it.</p>
<p>The easiest way to handle language codes in the URL is to use re-writing. A client sends a request for <code>www.yoursite.com/de/somepage</code> and internally you re-write the request to <code>www.yoursite.com/somepage</code> and store the language identifier somewhere. In Java each request has an <code>HttpServletRequest</code> object where you can store attributes for the lifecycle of the request. If your framework doesn't have anything like that you can just add a parameter to the url: <code>www.yoursite.com/de/somepage => www.yoursite.com/somepage?lang=de</code>. If you are using hostname-based languages you can use hostnames such as de.yoursite.com or www.yoursite.de. There are pros and cons to using this approach. For one thing, using country-code TLDs means registering new TLDs and trying to figure out whether a country code is appropriate to represent a language (it's often not). Using differnet hostnames/domains means you have to consider under what domains cookies are stored. If you want a cookie-free subdomain you need to plan this carefully. But from the coding side a language-based hostname doesn't need any additional re-writing; you can read the hostname (it's the Host header in the HTTP request) and parse that to determine the language.</p>
http://stackoverflow.com/questions/651772/how-to-redirect-from-https-to-http-without-annoying-error-messages4How to redirect from HTTPS to HTTP without annoying error messagesMr. Shiny and New2009-03-16T19:15:25Z2009-11-11T18:05:22Z
<p>I want to redirect users, after HTTPS login, to the HTTP pages on the site. Using HTTPS for the whole site is not going to happen.</p>
<p>What I have so far is the following: </p>
<ol>
<li>User posts the login form to the secure site</li>
<li>The secure server validates the credentials</li>
<li>The secure server sends a 302 redirect to the client</li>
</ol>
<p>This works, except on my machine in IE6 the user gets an error message because the default is to warn when exiting a secure page. These errors are a usability killer for me and thus a showstopper. I changed it so that step 3 is</p>
<ul>
<li>Server sends html code with a meta refresh</li>
</ul>
<p>But this is very slow; even on my local machine it's noticeably slower than doing the 302 redirect. </p>
<p>Is there a better way to accomplish the goal of a hassle-free redirection on standard settings that people use? IE6 represents 20%-25% of our traffic. Also, does anyone have any good info about which browsers will warn and which won't warn for the 302 redirect? I am considering black-listing IE6 so that only it gets the slow meta refresh and everyone else gets the fast 302.</p>
http://stackoverflow.com/questions/1703183/css-do-not-wrap-contents-of-div/1703385#17033850Answer by Mr. Shiny and New for CSS: Do not wrap contents of divMr. Shiny and New2009-11-09T20:02:24Z2009-11-09T20:02:24Z<p>If your div has a fixed-width it shouldn't expand, because you've fixed its width. However, modern browsers support a <code>min-width</code> CSS property.</p>
<p>You can emulate the min-width property in old IE browsers by using CSS expressions or by using auto width and having a spacer object in the container. This solution isn't elegant but may do the trick:</p>
<pre><code><div id="container" style="float: left">
<div id="spacer" style="height: 1px; width: 300px"></div>
<button>Button 1 text</button>
<button>Button 2 text</button>
</div>
</code></pre>
http://stackoverflow.com/questions/1667278/parsing-query-strings-in-java/1667790#16677901Answer by Mr. Shiny and New for Parsing query strings in JavaMr. Shiny and New2009-11-03T14:47:17Z2009-11-03T14:47:17Z<p>Parsing the query string is a bit more complicated than it seems, depending on how forgiving you want to be.</p>
<p>First, the query string is ascii bytes. You read in these bytes one at a time and convert them to characters. If the character is ? or & then it signals the start of a parameter name. If the character is = then it signals the start of a paramter value. If the character is % then it signals the start of an encoded byte. Here is where it gets tricky.</p>
<p>When you read in a % char you have to read the next two bytes and interpret them as hex digits. That means the next two bytes will be 0-9, a-f or A-F. Glue these two hex digits together to get your byte value. But remember, <strong>bytes are not characters</strong>. You have to know what encoding was used to encode the characters. The character é does not encode the same in UTF-8 as it does in ISO-8859-1. In general it's impossible to know what encoding was used for a given character set. I always use UTF-8 because my web site is configured to always serve everything using UTF-8 but in practice you can't be certain. Some user-agents will tell you the character encoding in the request; you can try to read that if you have a full HTTP request. If you just have a url in isolation, good luck.</p>
<p>Anyway, assuming you are using UTF-8 or some other multi-byte character encoding, now that you've decoded one encoded byte you have to set it aside until you capture the next byte. You need all the encoded bytes that are together because you can't url-decode properly one byte at a time. Set aside all the bytes that are together then decode them all at once to reconstruct your character.</p>
<p>Plus it gets more fun if you want to be lenient and account for user-agents that mangle urls. For example, some webmail clients double-encode things. Or double up the ?&= chars (for example: <code>http://yoursite.com/blah??p1==v1&&p2==v2</code>). If you want to try to gracefully deal with this, you will need to add more logic to your parser.</p>
http://stackoverflow.com/questions/1442463/implications-of-not-including-null-in-a-language/1663368#16633680Answer by Mr. Shiny and New for Implications of not including NULL in a language?Mr. Shiny and New2009-11-02T20:04:40Z2009-11-02T20:04:40Z<p>We use nulls all the time in our application to represent the "nothing" case. For example, if you are asked to look up some data in the database given an id, and no record matches that id: return null. This is very handy because we can store nulls in our cache, which means we don't have to go back to the database if someone asks for that id again in a few seconds.</p>
<p>The cache itself has two different kinds of responses: null, meaning there was no such entry in the cache, or an entry object. The entry object might have a null value, which is the case when we cached a null db lookup.</p>
<p>Our app is written in Java, but even with unchecked exceptions doing this with exceptions would be incredibly annoying.</p>
http://stackoverflow.com/questions/1638579/how-to-determine-the-localtime-of-a-timestamp-for-different-timezones/1663037#16630371Answer by Mr. Shiny and New for How to determine the localtime of a timestamp for different timezones?Mr. Shiny and New2009-11-02T19:05:44Z2009-11-02T19:05:44Z<p>I should point out that DST time rules change constantly and in some countries they change on a yearly basis. I would try to solve this approach server-side but if that isn't possible I would consider using Ajax to call back to the server to get the current time or DST offset for the user. Maintaining your own list of timezones and zone rule changes is going to be a hassle, especially if you have to deploy it. But if you have a zone rule database actually implementing the library should be trivial.</p>
http://stackoverflow.com/questions/1596518/automated-link-checker-for-system-testing/1663019#16630191Answer by Mr. Shiny and New for Automated link-checker for system testingMr. Shiny and New2009-11-02T19:01:27Z2009-11-02T19:01:27Z<p>You might want to try using wget for this. It can spider a site including the "page requisites" (i.e. files) and can be configured to log errors. I don't know if it will have enough information for you but it's Free and available on Windows (cygwin) as well as unix.</p>
http://stackoverflow.com/questions/1848029/why-not-port-linux-kernel-to-common-lisp/1848221#1848221Comment by Mr. Shiny and New on Why not port Linux kernel to Common Lisp?Mr. Shiny and New2009-12-04T20:02:57Z2009-12-04T20:02:57Z@Svante: I guess I'm confused by your use of the word "run time environment". What is the runtime used for the Linux kernel?http://stackoverflow.com/questions/1848029/why-not-port-linux-kernel-to-common-lisp/1848316#1848316Comment by Mr. Shiny and New on Why not port Linux kernel to Common Lisp?Mr. Shiny and New2009-12-04T19:55:26Z2009-12-04T19:55:26Z@David Thornley: 1. It's not up to the Linux devs to prove that Lisp isn't as fast as C, it's up to the Lisp folks to prove that it IS as fast. 2. Maybe true, but not that relevant; the more obscure the language the harder to get programmers. That's pragmatism. 3. The question claimed that Lisp could do things C cannot. False. 4. Fine, but then isn't one of Lisp's advantages lost? 5. Glad we agree on one thing :) 6. I'd love to be educated on how to control the precise size of data structures in memory in Lisp. This is one thing I know the kernel devs actually do frequently. A link would do.http://stackoverflow.com/questions/1848029/why-not-port-linux-kernel-to-common-lisp/1848221#1848221Comment by Mr. Shiny and New on Why not port Linux kernel to Common Lisp?Mr. Shiny and New2009-12-04T17:03:38Z2009-12-04T17:03:38Z@Savante: That statement makes no sense. We are talking about writing the kernel in C (or Lisp). The kernel does not have a runtime environment, it runs directly on the CPU.http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1840670#1840670Comment by Mr. Shiny and New on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar?Mr. Shiny and New2009-12-04T14:27:25Z2009-12-04T14:27:25Z@Tom: You may want to google css layouts and see if you can find something specific that meets your needs. The <a href="http://layouts.ironmyers.com/" rel="nofollow">layouts.ironmyers.com</a> site can generate layouts that you can then customize. Not sure if their code or licensing terms are suitable for your purposes. http://stackoverflow.com/questions/1808318/simple-html-css-block-structure-cant-use-headerheight-bottom-margin-for-conten/1840670#1840670Comment by Mr. Shiny and New on Simple html css block structure, can't use -headerHeight bottom-margin for content div to avoid scrollbar?Mr. Shiny and New2009-12-04T14:20:29Z2009-12-04T14:20:29Z@Tom: Unfortunately CSS2 is broken, IMO, with regards to its layout model, because it's extremely difficult to make things like equally-sized columns or to account for borders and padding with relative heights. CSS3 promises some improvement in that area but for now we are stuck with this imperfect tool. As for the long text, I suspect that's because you have the html, body, and text heights set to 100% height. This means they are fixed in size. If you need flexible size and want the whole page to scroll, you need a different way of doing this. Perhaps google faux-columns.http://stackoverflow.com/questions/1839938/serve-jsp-stored-in-dbComment by Mr. Shiny and New on Serve JSP stored in DBMr. Shiny and New2009-12-03T14:09:47Z2009-12-03T14:09:47ZPeople would do it because a JSP stored in a DB is different than a JSP stored in a disk. With a DB you have lots of features that disks don't have, such as transactions, the ability to store abitrary metadata, permissions, etc. If you are storing all of these things in the DB but storing the JSP on disk you increase the complexity of the CMS part. If you are storing the JSP in the DB you increase the complexity of the JSP loader. As for performance, initial loading and compiling of the JSP would be slower but once it's compiled the performance should be the same.http://stackoverflow.com/questions/1826120/sql-count-and-distinct/1826140#1826140Comment by Mr. Shiny and New on SQL count(*) and distinctMr. Shiny and New2009-12-01T13:27:48Z2009-12-01T13:27:48ZOn Oracle DISTINCT and GROUP BY have the same execution plan because DISTINCT in implemented using GROUP BY. So there should be no difference.http://stackoverflow.com/questions/1821714/jaxb-compiler-and-attribute-order/1821782#1821782Comment by Mr. Shiny and New on JAXB Compiler and Attribute OrderMr. Shiny and New2009-11-30T20:09:32Z2009-11-30T20:09:32ZI edited my answer to address your two points.http://stackoverflow.com/questions/1808878/expected-illegal-start-of-expression/1808983#1808983Comment by Mr. Shiny and New on expected ), illegal start of expressionMr. Shiny and New2009-11-30T13:58:18Z2009-11-30T13:58:18ZThe beauty of using Eclipse (or any decent IDE) is that I didn't have to read the code to find the compilation error. Paste it in, go to the line where the compiler indicates the error, and you can see right away that the brackets aren't lining up because of the matching bracket highlight. Add one brace where indicated, remove the last brace (I guess it was the misplaced one?) and CTRL-SHIFT-F, and you're done. IDEs add so much productivity.http://stackoverflow.com/questions/1808878/expected-illegal-start-of-expression/1808921#1808921Comment by Mr. Shiny and New on expected ), illegal start of expressionMr. Shiny and New2009-11-27T14:09:17Z2009-11-27T14:09:17Z@dtsazza: I second your point about sorting out these errors yourself. However I wanted to point out that the curly brace in front of <code>public void actionPerformed</code> is needed because that is a function declaration. addiosamigo was actually missing the closing brace for that opening one.http://stackoverflow.com/questions/1808878/expected-illegal-start-of-expressionComment by Mr. Shiny and New on expected ), illegal start of expressionMr. Shiny and New2009-11-27T13:54:54Z2009-11-27T13:54:54ZIs the formatting of your code in this question anything like the formatting in your file? If so you might try cleaning it up so that the indentation is consistent, that can help you spot errors.http://stackoverflow.com/questions/1804081/why-does-the-link-pseudo-selector-break-expected-css-specificity-rules/1804120#1804120Comment by Mr. Shiny and New on Why does the :link pseudo selector break expected CSS specificity rules?Mr. Shiny and New2009-11-26T15:00:29Z2009-11-26T15:00:29Zthey both specify the colour, that would make them mutually exclusive IMO.http://stackoverflow.com/questions/508639/why-must-delegation-to-a-different-constructor-happen-first-in-a-java-constructor/1792054#1792054Comment by Mr. Shiny and New on Why must delegation to a different constructor happen first in a Java constructor?Mr. Shiny and New2009-11-25T15:12:12Z2009-11-25T15:12:12Z@Kip: No problem. I was hoping, when I found this question, to get some good answers but it seems there isn't one.http://stackoverflow.com/questions/1765235/checking-a-local-tcp-port-is-not-open-in-java/1765251#1765251Comment by Mr. Shiny and New on Checking a local TCP port is not open in JavaMr. Shiny and New2009-11-19T18:19:36Z2009-11-19T18:19:36ZJust a note: If you try to connect to a port and fail, it might be because you are firewalled from connecting to that port. Just because YOU can't connect doesn't mean it's not in use.http://stackoverflow.com/questions/466437/minifying-htmlComment by Mr. Shiny and New on Minifying HTMLMr. Shiny and New2009-11-13T20:06:13Z2009-11-13T20:06:13Z@Lance Fisher: In my tests minified JS/CSS was smaller after Gzip than non-minified. However there are potential pitfalls if you minify HTML; I'd say it's not worth doing for existing pages.