User Stein Gauslaa Strindhaug - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T17:27:18Z http://stackoverflow.com/feeds/user/26115 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1358827/gwt-dnd-is-it-possible-to-drag-disabled-widgets/1542431#1542431 0 Answer by Stein Gauslaa Strindhaug for GWT DnD: Is it possible to drag disabled widgets? Stein Gauslaa Strindhaug 2009-10-09T07:53:36Z 2009-10-09T07:53:36Z <p>If you want to drag a composite widget, you need to have a reference to the "drag handle" wich is one of the elements in the composite widget that implements <code>HasAllMouseHandlers</code>. The easiest (and in my mind, cleanest) way to do this is to have the composite widget extend the interface <code>HasDragHandle</code> wich requires the composite to have the method: <code>Widget getDragHandle();</code> the interface does not explicitly tell you so but the returned widget must be a widget implementing the <code>HasAllMouseHandlers</code> interface (or you'll get a runtime error). </p> <p>(Non-composite widgets implementing <code>HasAllMouseHandlers</code> can be used directly)</p> <p>I'd reccomend using a Label as a drag handle (it doesn't need to contain any text it could just be styled so the user understands it can be used for dragging), and not a form element because then you're overloading it's behaviour in a way the user most likely won't expect. I'm not really sure how a disabled element would work as a drag handle, quite possibly disabling an element will stop any mouse listners from working to so it won't work as a drag handle (haven't tried it though).</p> http://stackoverflow.com/questions/1440564/gwt-listbox-pre-selecting-an-item/1542354#1542354 0 Answer by Stein Gauslaa Strindhaug for GWT - ListBox - pre-selecting an item Stein Gauslaa Strindhaug 2009-10-09T07:36:12Z 2009-10-09T07:36:12Z <p>I really think you <em>can</em> set the selection before it's attached and displayed, but you have to have added the data before you can select an index. If this is a single select box you could write something like this:</p> <pre><code>void updateListContent(MyDataObject selected, List&lt;MyDataObject&gt; list){ for(MyDataObject anObject : list){ theListBox.addItem(anObject.getTextToDisplay(), anObjec.getKeyValueForList()); } theListBox.setSelectedIndex(list.indexOf(selected)); } </code></pre> <p>if this is a multiple select box something like this may work:</p> <pre><code>void updateListContent(List&lt;MyDataObject&gt; allSelected, List&lt;MyDataObject&gt; list){ for(MyDataObject anObject : list){ theMultipleListBox.addItem(anObject.getTextToDisplay(), anObjec.getKeyValueForList()); } for(MyDataObject selected : allSelected){ theMultipleListBox.setItemSelected(list.indexOf(selected), true); } } </code></pre> <p>(Note I haven't actually compiled this, so there might be typos. And this assumes that the selected element(s) is really present in the list of possible values, so if you cant be sure of this you'll need to add some bounds checking.)</p> http://stackoverflow.com/questions/897085/trouble-upgrading-from-gwt-1-5-to-1-6-what-to-change-in-maven-setup 0 Trouble upgrading from GWT 1.5 to 1.6; What to change in maven setup? Stein Gauslaa Strindhaug 2009-05-22T09:36:50Z 2009-05-25T08:58:55Z <p>I've tried to upgrade a working GWT 1.5.2 application to 1.6.4 using maven to build. After fixing all errors and updating all deprecated calls, it compiles nicely. </p> <p>But when I try to start the application nothing happens, because (according to Firebug) the files I try to download is </p> <pre><code>http://localhost:8080/softwarename/com.myCompany.WorkSpace/undefined </code></pre> <p>obviously the file loaded right before this (<code>http://localhost:8080/softwarename/com.myCompany.WorkSpace/com.myCompany.WorkSpace.nocache.js</code>) is trying to GET a file definied in a <code>null</code> string.</p> <p>What do I need to change in the setup (pom.xml, structure etc.) to make it work? Google hasn't helped...</p> <p>UPDATE: I've seem to have found the solution. The migration instructions worked with a few modifications. I had to create the directory in the war directory with the name from the <code>rename-to</code> attribute. </p> <p>Beacause maven didn't get the WorkSpace.html from the war directory but got it from the public directory i had to remove the folder from the path of the script block. I allso had to change the spring security filter paths because the url has changed from <code>http://localhost:8080/softwarename/com.myCompany.WorkSpace/WorkSpace.html</code> to <code>http://localhost:8080/softwarename/workspace/WorkSpace.html</code> (where <code>workspace</code> is the rename-to value).</p> <p>Now I just have to get the RPC calls to work again...</p> http://stackoverflow.com/questions/897157/phone-style-password-entry-with-javascript/897193#897193 8 Answer by Stein Gauslaa Strindhaug for 'Phone' style password entry with javascript Stein Gauslaa Strindhaug 2009-05-22T10:09:27Z 2009-05-22T10:09:27Z <p>If a child (or an adult for that matter) have too poor typing skills to be able to use a password field, do you really think showing the letter they typed a few seconds really helps? Wouldn't a poor typist focus on their keyboard not the screen?</p> <p>The easiest solution is probably to do something like the network password field in Vista: have a check box that toggle between a normal input field and a password field (and choose a sensible default), or if the login is not sensitive anyway just use a plain inputfield.</p> http://stackoverflow.com/questions/552524/onload-from-external-js-file/552598#552598 0 Answer by Stein Gauslaa Strindhaug for onload from external js file Stein Gauslaa Strindhaug 2009-02-16T08:24:33Z 2009-02-16T08:24:33Z <p>The <a href="http://www.w3schools.com/jsref/jsref_onload.asp" rel="nofollow">onLoad</a> event is supposed to be run when the element it is attached to is loaded. But some browsers* misinpret this as "beforeload" or "sometime during load" so the safest option to be sure something is run after all html is loaded, is to add a call to the function on the bottom of the HTML source, like this:</p> <pre><code> ... &lt;script type="text/javascript"&gt; c_onload(); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>(* at least some versions of Safari for Windows I do beleave have this issue)</p> http://stackoverflow.com/questions/297315/manipulating-the-hash-anchor-part-of-the-url-in-actionscript 2 Manipulating the hash/anchor part of the URL in Actionscript Stein Gauslaa Strindhaug 2008-11-17T23:15:29Z 2009-02-05T17:56:51Z <p>How can you get and set the hash or anchor part of an URL in pure Actionscript? When googling for a solution I've found explainations for doing it using JavaScript, but is it possible to get it without using JavaScript? (I'm using Actionscript 2, I may consider updating the code to AS 3, but it doesn't seem to be a quite straight forward process.)</p> http://stackoverflow.com/questions/411877/how-to-keep-track-of-the-most-popular-products/412574#412574 0 Answer by Stein Gauslaa Strindhaug for How to keep track of the most popular products Stein Gauslaa Strindhaug 2009-01-05T08:28:32Z 2009-01-05T08:28:32Z <p>A views field like eelco.lempsink.nl suggested should probably work. And to get the most popular items you add something like:</p> <pre><code>:sort =&gt; "views DESC", </code></pre> <p>But make really sure that only views of the item by humans is counted. If the count is encreased each time the item is displayed in the list of popular items, you'll get a feedback loop messing up the popularity system. Allso make sure that webcrawlers is not allowed to change the view status. </p> <p>Allso you really should consider what you want to measure, the amount of people interested in a product, or the amount fooled by a misleading thumbnail and high popularity ranking into clicking on a product. </p> <p>If this is a webshop or similar, you're probably better off counting the number of buyers instead of views. That would more correctly measure real interest in the product (because they were actually interested enough to spend money on it), and allso I think <em>writing</em> to the database for a view sounds a little unwise (there's massively more views than buys). You'll get better data than a <code>views</code> field wich may suffer from feedback problems anyway, because you can have popularity history by selecting the count of <code>order</code> rows for a product with timestamp within a certain timeframe. Getting the orders from the last week or so would probably not be so expensive (for very long timespans the result should probably be cached).</p> http://stackoverflow.com/questions/381224/sql-server-query-short-circuiting/381279#381279 1 Answer by Stein Gauslaa Strindhaug for SQL Server - Query Short-Circuiting? Stein Gauslaa Strindhaug 2008-12-19T15:27:53Z 2008-12-19T15:27:53Z <p>If the ID is purely numeric (as your example), I would reccomend (if possible) changing that field to a number type instead. If the database is allready in use it might be hard to change the type though. </p> http://stackoverflow.com/questions/358718/storing-lookup-double-array/358729#358729 1 Answer by Stein Gauslaa Strindhaug for Storing & lookup double array Stein Gauslaa Strindhaug 2008-12-11T09:03:53Z 2008-12-11T09:03:53Z <p>You probably should use an array type (an actual array, like Vector, ArrayList), not Linked lists. Linked lists is best for stack or queue operation, not indexing (since you have to traverse it from one end). Vector is a auto resizing array, wich has less overhead in accessing inexes.</p> http://stackoverflow.com/questions/355848/what-is-the-best-way-to-emulate-classes-in-javascript-with-or-without-a-frame/357063#357063 1 Answer by Stein Gauslaa Strindhaug for What is the best way to emulate "classes" in Javascript? (with or without a framework) Stein Gauslaa Strindhaug 2008-12-10T18:28:01Z 2008-12-10T18:28:01Z <p>If you (and your team) is used to Java but need to make some JavaScript for a web site, perhaps you should consider <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a>. It lets you code JavaScript using Java, wich is converted to JavaScript. I haven't tried it, though. </p> <p>JavaScript is actually a quite cool language, it has a few flaws (including allowing you to do very stupid stuff), but with a little self dicipline you can make great stuff. JavaScript is actually <em>Object</em> oriented, not so much <em>class</em> oriented, but you can do much of the same stuff. You don't have (AFAIK) inheritance, but it's not strict at all (one of it's powerful but allso dangerous features) with typing so you'll find it's not limiting.</p> http://stackoverflow.com/questions/356551/what-are-best-practices-for-preventing-stale-css-and-javascript/357030#357030 0 Answer by Stein Gauslaa Strindhaug for What are best practices for preventing stale CSS and JavaScript Stein Gauslaa Strindhaug 2008-12-10T18:12:36Z 2008-12-10T18:12:36Z <p>If you get the "modified time" of the file as a timestamp it will be cached until the file is modified. Just use a helper function (or whatever it is called in other frameworks) to add script/css/image tags that get the timestamp from the file. On a unix like system (wich most survers are) you could simply <code>touch</code> the files to force the modified time to change if necessary. </p> <p>Ruby on Rails uses this strategy in production mode (by default I beleave), and uses a normal timestamp in development mode (to be really sure something isn't cached).</p> http://stackoverflow.com/questions/356807/java-double-comparison-epsilon/356881#356881 0 Answer by Stein Gauslaa Strindhaug for java double comparison epsilon Stein Gauslaa Strindhaug 2008-12-10T17:27:41Z 2008-12-10T17:27:41Z <p>Cents? If you're calculationg money values you really shouldn't use float values. Money is actually countable values. The cents or pennys etc. could be considered the two (or whatever) least significant digits of an integer. You could store, and calculate money values as integers and divide by 100 (e.g. place dot or comma two before the two last digits). Using float's can lead to strange rounding errors...</p> <p>Anyway, if your epsilon is supposed to define the accuracy, it looks a bit too small (too accurate)...</p> http://stackoverflow.com/questions/356759/a-mnemonic-for-the-order-of-css-margin-and-padding-shorthand-properties/356810#356810 0 Answer by Stein Gauslaa Strindhaug for A mnemonic for the order of CSS margin and padding shorthand properties Stein Gauslaa Strindhaug 2008-12-10T17:12:10Z 2008-12-10T17:12:10Z <p>Think that you're reading Arabii or Hebrew: read from the top of the page, right to left to the bottom. ;P The good thing about this "rule" is that it works for the 3 value version too: <code>top right-and-left bottom</code></p> <p>Actually, i allso thought it was hard to remember, but as soon as I discovered it was the direction of the clock it was easier.</p> http://stackoverflow.com/questions/356726/is-bool-a-basic-datatype-in-c/356768#356768 0 Answer by Stein Gauslaa Strindhaug for Is 'bool' a basic datatype in C++ ? Stein Gauslaa Strindhaug 2008-12-10T17:00:46Z 2008-12-10T17:00:46Z <p>Allthough it's now a native type, it's still defined behind the scenes as an integer (int I think) where the literal <code>false</code> is 0 and <code>true</code> is 1. But I think all logic still consider anything but 0 as true, so strictly speaking the true literal is probably a keyword for the compiler to test if something is not false. </p> <pre><code>if(someval == true){ </code></pre> <p>probably translates to:</p> <pre><code>if(someval !== false){ // e.g. someval !== 0 </code></pre> <p>by the compiler</p> http://stackoverflow.com/questions/355343/acessing-a-url-from-windows-application/355380#355380 0 Answer by Stein Gauslaa Strindhaug for Acessing a url from windows application Stein Gauslaa Strindhaug 2008-12-10T07:53:28Z 2008-12-10T07:53:28Z <p>I'm not sure what you're asking for,so I just give the answer to yet another way to interpret the question. </p> <p>If you simply want to launch the default browser (to display a local or online html manual etc.), in windows (and probably similar in other OS'es) you can use some kind of "execute interface" to execute a correctly formatted url as the command, this will usually launch the default browser:</p> <p>According to <a href="http://support.microsoft.com/kb/305703" rel="nofollow">this page</a> this code should launch a browser:</p> <pre><code>string targeturl= "http://stackoverflow.com"; try { System.Diagnostics.Process.Start(targeturl); } catch ( System.ComponentModel.Win32Exception noBrowser) { if (noBrowser.ErrorCode==-2147467259) MessageBox.Show(noBrowser.Message); } catch (System.Exception other) { MessageBox.Show(other.Message); } </code></pre> <p>(It looks pretty ugly with magic numbers for error codes, though...)</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/347435#347435 0 Answer by Stein Gauslaa Strindhaug for What's the difference between JavaScript and Java? Stein Gauslaa Strindhaug 2008-12-07T09:49:48Z 2008-12-07T09:49:48Z <p>In addittion to being entirely different languages, in my experience:</p> <ul> <li>Java looks nice at first, later it gets annoying.</li> <li>JavaScript looks awful and hopeless at first, then gradually you really start to like it.</li> </ul> <p>(But this may just have more to do with my preference of functional programming over OO programming... ;)</p> http://stackoverflow.com/questions/305320/from-as2-to-as3-what-is-the-equvalent-of-root 0 From AS2 to AS3 what is the equvalent of _root ? Stein Gauslaa Strindhaug 2008-11-20T13:39:30Z 2008-12-05T10:08:19Z <p>I'm trying to learn Actionscript 2 or 3, with AS2 I eventually figured by trial and error that I could get any named instance and modify it using a string with its name using</p> <pre><code>var theinstance = "titletext"; // actually exctracted from an array _root[theinstance].htmlText = "New text with &lt;b&gt;HTML!&lt;/b&gt;"; </code></pre> <p>but when trying to convert the code to AS3 <code>_root</code> doesn't exist anymore. According to the <a href="http://livedocs.adobe.com/flex/3/langref/migration.html" rel="nofollow">migration doc</a> it is somehow replaced by <code>flash.display.DisplayObject.stage</code> but apparently this is not how to do it:</p> <pre><code>flash.display.DisplayObject.stage[theinstance].htmlText = "New text with &lt;b&gt;HTML!&lt;/b&gt;"; </code></pre> <p>and neither is this:</p> <pre><code>flash.display.DisplayObject.stage.getChildByName(theinstance).htmlText = "New text with &lt;b&gt;HTML!&lt;/b&gt;"; </code></pre> <p>How <em>do</em> I get a child by name in actionscript 3?</p> http://stackoverflow.com/questions/343162/is-scrum-evil/343287#343287 14 Answer by Stein Gauslaa Strindhaug for Is Scrum Evil? Stein Gauslaa Strindhaug 2008-12-05T09:18:30Z 2008-12-05T09:18:30Z <p>I don't know much about Scrum, and definitely not enough to tell if it's "evil" (I allso think "evil" is overused and misleading term anyway, but that's probably another discussion). But as with allmost anything, I think fanatism and fundamentalism is bad even though the intentin may have been good. </p> <p>I know a little about XP and other "agile" methodologies, and there's a lot of good ideas in many of these, but I've always regarded it as suggestions not a formula to follow methodically. My main concern about all development model, is that require skilled, intelligent and self-motivated developers to work perfectly, and since many of the best ideas really is common sense for intelligent people, it seems a bit overhyped. You can even get cowboy style, "code and fix" to work if all the developers are good and disciplined. But any methodology will fail with a mostly incompetent crew, and blindly following some "manifesto" without common sense will not make it better.</p> <p>The oposite of "agile", heavy bureacratic systems, may actually work better for mediocre developers, than a system that recuire self-driven participants; though it may drive away many creative and intelligent developers. The main problem is finding good people, not so much how to run the project...</p> <p>BTW: I personally like the agile ideas, and use the ones that suits me, but I allso see that it would not work if I and my co-workers weren't good at managing ourself.</p> http://stackoverflow.com/questions/341571/rails-restful-controller-and-rendering-after-custom-action/341642#341642 0 Answer by Stein Gauslaa Strindhaug for Rails RESTful controller and rendering after custom action. Stein Gauslaa Strindhaug 2008-12-04T18:38:21Z 2008-12-04T18:38:21Z <p>Create a new data object and add the values from the form, before you rerender, think it would work then. If you still get problems, try setting a boolean for editing new vs. existing rows, or create two different views entirely.</p> <p>I've done it before but I don't quite remember how. Sometimes when I used the very typical use of the MVC pattern, it was allmost "automagical", othertimes (as I had to use an old quirky database) I had to code all the magic myself; sometimes usin the <code>.new?</code> function (or what it was called) on the ActiveRecord object, othertimes I used temporary "magic values" for ID (typically alphabetic strings for invalid id values.</p> <p>(I appologize if I made some mistakes, it's a while since I coded Rails code...) </p> http://stackoverflow.com/questions/341450/bmp-loader-library/341538#341538 0 Answer by Stein Gauslaa Strindhaug for bmp loader library Stein Gauslaa Strindhaug 2008-12-04T17:55:48Z 2008-12-04T17:55:48Z <p>It should probably not be too hard to rewrite some of this C++ code to C: <a href="http://www.kalytta.com/bitmap.h" rel="nofollow">http://www.kalytta.com/bitmap.h</a> (link from the BMP article at Wikipedia). (Haven't tested it.)</p> http://stackoverflow.com/questions/341241/are-closed-source-applications-welcomed-in-the-linux-community/341311#341311 0 Answer by Stein Gauslaa Strindhaug for Are closed source applications "welcomed" in the Linux community? Stein Gauslaa Strindhaug 2008-12-04T16:55:49Z 2008-12-04T16:55:49Z <p>I would probably guess that to most regular users of Linux, being able to run an application natively under Linux, is better than having to use dual-boot/virtual computer/wine (wich some of your customers may allready be doing).</p> <p>(Of course we would love to have it opensourced too, remember opensource doesn't mean you can't make money.)</p> http://stackoverflow.com/questions/341143/can-rails-routing-helpers-i-e-mymodelpathmodel-be-used-in-models/341172#341172 -1 Answer by Stein Gauslaa Strindhaug for Can Rails Routing Helpers (i.e. mymodel_path(model)) be Used in Models? Stein Gauslaa Strindhaug 2008-12-04T16:15:28Z 2008-12-04T16:47:23Z <p><em>(Edit: Forget my previous babble...)</em></p> <p>Ok, there might be situations where you would go either to the model or to some other url... But I don't really think this belongs in the model, the view (or maybe the model) sounds more apropriate.</p> <p>About the routes, as far as I know the routes is for the actions in controllers (wich usually "magically" uses a view), not directly to views. The controller should handle all requests, the view should present the results and the model should handle the data and serve it to the view or controller. I've heard a lot of people here talking about routes to models (to the point I'm allmost starting to beleave it), but as I understand it: routes goes to controllers. Of course a lot of controllers are controllers for one model and is often called <code>&lt;modelname&gt;sController</code> (e.g. "UsersController" is the controller of the model "User"). </p> <p>If you find yourself writing nasty amounts of logic in a view, try to move the logic somewhere more appropriate; request and internal communication logic probably belongs in the controller, data related logic may be placed in the model (but not display logic, which includes link tags etc.) and logic that is purely display related would be placed in a helper.</p> http://stackoverflow.com/questions/341059/which-is-the-better-method-allowing-the-thread-to-sleep-for-a-while-or-deleting/341105#341105 1 Answer by Stein Gauslaa Strindhaug for Which is the better method? Allowing the thread to sleep for a while or deleting it and recreating it later? Stein Gauslaa Strindhaug 2008-12-04T15:59:47Z 2008-12-04T15:59:47Z <p>I guess actually putting the thread to sleep is most effective, ending it and recreating it would "cost" some resources, while putting it to sleep would just fill a little space in the sceduler while it's data could be paged by the operationg system if needed. </p> <p>But anyway it's probably not a very big difference, and the difference would probably depend on how good the OS' sceduler is, etc...</p> http://stackoverflow.com/questions/340911/what-do-you-use-free-to-format-c-code/341079#341079 0 Answer by Stein Gauslaa Strindhaug for What do you use (free) to format C# code? Stein Gauslaa Strindhaug 2008-12-04T15:52:05Z 2008-12-04T15:52:05Z <p>Use some kind of tabs-to-spaces function, and make sure the print or email uses a <code>monospaced</code> (aka. typewriter or console) font.</p> <p>I'm pretty sure VisualStudio had a (little well hidden) function to convert indenting from tabs to spaces and vice versa.</p> <p>I'm normally using <a href="http://www.vim.org/" rel="nofollow">vim</a> where you can use:</p> <pre><code>:set expandtab :%retab </code></pre> <p>to replace tabs with spaces and:</p> <pre><code>:set noexpandtab :%retab </code></pre> <p>to replace spaces to tabs.</p> <p>Spaces is better for emailing etc. because noone can agree on the length (in spaces) of a tab.</p> http://stackoverflow.com/questions/340825/convert-text-from-english-characters-to-hebrew-characters/341006#341006 1 Answer by Stein Gauslaa Strindhaug for Convert text from English characters to Hebrew characters Stein Gauslaa Strindhaug 2008-12-04T15:35:50Z 2008-12-04T15:35:50Z <p>I'll guess that's next to impossible, I don't know hebrew, but I do know from other languages that the pronounciation (and thus the transliteration) peoples names often (actually more often than not) differs a lot from the general pronounciation of the letters. This is because names change slower than the writing system, wich allso changes slower than the verbal language. </p> <p>When transliterating you <em>must</em> base the transliteration on phonetics not the quirks of the other writing system, so the transliterator must essentially know both languages to some degree, and teaching a computer to understand languages <em>verbally</em> is still probably <em>far</em> into the future. You could of course just arbitarily select one of the symbols that could represent a sound in both languages, but this wil (undoubtedly) yeld hillarius results, and will probably not be much helpful.</p> <p>Many languages (especially English) have very complicated and irregular pronounciation rules (in the case of English; apparently totally random*) and there is never an exact one-to-one relationship between writing systems (if it is you're probably talking about a symbol font not an actual writing system), so unless you have tought your computer to speak both languages fluently there's not much chance of automatic transliteration.</p> http://stackoverflow.com/questions/340298/why-are-so-many-web-languages-interpreted-rather-than-compiled/340327#340327 8 Answer by Stein Gauslaa Strindhaug for Why are so many web languages interpreted rather than compiled? Stein Gauslaa Strindhaug 2008-12-04T11:50:18Z 2008-12-04T14:18:48Z <p>Another good reason is that on a big server execution speed is not so much an issue as the connection speed anyway. Most of the time is spent sending and receiving data, not number crunching. And actually in certain web services which <em>do</em> a lot of computations, the hard crunching <em>is</em> probably run as a compiled program.</p> <p>Plus interpreted languages don't need compiling (which on a large project can take time), thus it's more suited for the typically agile development of web solutions. </p> http://stackoverflow.com/questions/340318/is-rewriting-a-php-app-into-python-a-productive-step/340342#340342 2 Answer by Stein Gauslaa Strindhaug for Is rewriting a PHP app into Python a productive step? Stein Gauslaa Strindhaug 2008-12-04T11:57:32Z 2008-12-04T11:57:32Z <p>Well, it depends... ;) If you're going to use the old code together with new Python code, it might be useful, not so much for speed but for easier integration. But usually: "If it ain't broke, don't fix it". Allso rewriting can result in better code, but only do it if you need to.</p> <p>As a hobby project of course it's worth it, cause the process is the goal.</p> http://stackoverflow.com/questions/340270/should-i-use-decimal-float-or-double-for-this-simple-math-result/340301#340301 0 Answer by Stein Gauslaa Strindhaug for Should I use decimal, float or double for this simple math result? Stein Gauslaa Strindhaug 2008-12-04T11:43:32Z 2008-12-04T11:43:32Z <p>If you want store the results using as little space as possible you could probably do something like this (pseudocode):</p> <pre><code>integer = ( sum(all_values) / all_values.count().float ) * 100; </code></pre> <p>This will give you the value 352 for an average of 3.52 so you can store it as an integer (byte would be big enough I guess), and just divide it by 100 when you want to display it.</p> <p>On the other hand if you don't care about the storage of the average value, using float values is maybe faster. (Test both to see what's actually fastest on your system.)</p> http://stackoverflow.com/questions/340217/mysql-join-question/340247#340247 4 Answer by Stein Gauslaa Strindhaug for mysql join question Stein Gauslaa Strindhaug 2008-12-04T11:16:49Z 2008-12-04T11:27:01Z <p>I don't quite understand your question... Only table2 have a department, the only thing they have in common is agent_name.</p> <p>I do suspect what you really mean is: that you want all rows from Table1 where the agent is from a certain department, is that what you want? In that case, something like this should do it (haven't tested it though):</p> <pre><code>SELECT * FROM Table1 INNER JOIN Table2 ON Table1.agent_name = Table2.agent_name WHERE Table2.department = 'somespecific value'; </code></pre> <p>BTW: (Inspired by what someone else said) <code>agent_name</code> sounds like it's a string value, you really should consider using the id from table2 as a key in table1 (let's call it <code>agent_id</code> perhaps) to link them together. The foreign keys (the link between tables) should be a real unique id. The department should pobably allso be a id key. Then it would be:</p> <pre><code>SELECT * FROM Table1 INNER JOIN Table2 ON Table1.agent_id = Table2.id WHERE Table2.department = 'somespecific value'; </code></pre> http://stackoverflow.com/questions/340217/mysql-join-question/340230#340230 1 Answer by Stein Gauslaa Strindhaug for mysql join question Stein Gauslaa Strindhaug 2008-12-04T11:08:38Z 2008-12-04T11:08:38Z <p>Check this out, it's the best explaination of sql joins I've ever found: <a href="http://www.codinghorror.com/blog/archives/000976.html" rel="nofollow">A Visual Explanation of SQL Joins</a> (it's written by someone a SO user probably have heard of ;)</p> http://stackoverflow.com/questions/1358827/gwt-dnd-is-it-possible-to-drag-disabled-widgets/1542431#1542431 Comment by Stein Gauslaa Strindhaug on GWT DnD: Is it possible to drag disabled widgets? Stein Gauslaa Strindhaug 2009-10-13T07:28:23Z 2009-10-13T07:28:23Z BTW: the transparent element probably should be an element with 0.01 opacity to be sure it is clickable. http://stackoverflow.com/questions/1358827/gwt-dnd-is-it-possible-to-drag-disabled-widgets/1542431#1542431 Comment by Stein Gauslaa Strindhaug on GWT DnD: Is it possible to drag disabled widgets? Stein Gauslaa Strindhaug 2009-10-13T07:27:03Z 2009-10-13T07:27:03Z Then the answer is probably: no, you can't drag and drop disabled elements. If it's really important to (apparently) move disabled elements you could make an transparent absolutely positioned element above the form element and use that as a &quot;click catcher&quot; (wrapping this as a composite) http://stackoverflow.com/questions/140270/humor-in-code/140445#140445 Comment by Stein Gauslaa Strindhaug on Humor in code Stein Gauslaa Strindhaug 2009-08-10T06:34:54Z 2009-08-10T06:34:54Z Very often when I'm typing &quot;add&quot; I miss by one button so it ends up as &quot;ass&quot; so i try to call strange methods like assItem() etc... http://stackoverflow.com/questions/897085/trouble-upgrading-from-gwt-1-5-to-1-6-what-to-change-in-maven-setup/897222#897222 Comment by Stein Gauslaa Strindhaug on Trouble upgrading from GWT 1.5 to 1.6; What to change in maven setup? Stein Gauslaa Strindhaug 2009-05-22T10:49:33Z 2009-05-22T10:49:33Z Yeah, I figured the changes to the file hierarchy was a possible cause, but I'm not sure how to implement the changes so that maven &quot;understands&quot; it. http://stackoverflow.com/questions/340104/best-way-to-include-unobtrusive-information-on-a-web-page/340131#340131 Comment by Stein Gauslaa Strindhaug on Best way to include unobtrusive information on a web page Stein Gauslaa Strindhaug 2009-03-09T08:23:08Z 2009-03-09T08:23:08Z If you need the values inside a form you're actually submitting, then place the hidden values there. If you don't need to submit them, just read and write them through JS place them in a separate form. (The form is just there to make the input tags validate anyway..) http://stackoverflow.com/questions/381042/what-malicious-things-has-javascript-done-to-you/381105#381105 Comment by Stein Gauslaa Strindhaug on What Malicious Things has Javascript Done To You? Stein Gauslaa Strindhaug 2008-12-19T15:58:03Z 2008-12-19T15:58:03Z Apparently I've visited only google.com so I'm undetermined. What sites is actually tested? All the pages on the top 10 list? I don't even recognize most of them. http://stackoverflow.com/questions/358718/storing-lookup-double-array/358729#358729 Comment by Stein Gauslaa Strindhaug on Storing & lookup double array Stein Gauslaa Strindhaug 2008-12-11T09:17:19Z 2008-12-11T09:17:19Z Yeah, I remembered it was a difference but not what... http://stackoverflow.com/questions/342048/when-is-it-ok-to-intentionally-obfuscate-urls Comment by Stein Gauslaa Strindhaug on When is it OK to intentionally obfuscate URLs? Stein Gauslaa Strindhaug 2008-12-04T21:13:01Z 2008-12-04T21:13:01Z BTW, please use &quot;www.example.com&quot; instead, it's registered for the purpose of examples, and it's actually more obvious then that it's an example. http://stackoverflow.com/questions/325648/textfield-umlauts-are-not-shown-on-linux/325755#325755 Comment by Stein Gauslaa Strindhaug on TextField "umlauts" are not shown on linux Stein Gauslaa Strindhaug 2008-12-04T11:34:56Z 2008-12-04T11:34:56Z Just curious: what did turn out to be the problem? I suggested a lot of stuff you should check, so I don't really know what fixed it. http://stackoverflow.com/questions/340217/mysql-join-question Comment by Stein Gauslaa Strindhaug on mysql join question Stein Gauslaa Strindhaug 2008-12-04T11:19:17Z 2008-12-04T11:19:17Z +1 to reset to 0; I don't understand why someone downvoted this? http://stackoverflow.com/questions/324332/how-do-you-impress-non-programmers-in-an-interview Comment by Stein Gauslaa Strindhaug on How do you impress non-programmers in an interview? Stein Gauslaa Strindhaug 2008-12-01T19:56:21Z 2008-12-01T19:56:21Z Accidentally reopened the question (that's why I apparently closed my own question..) http://stackoverflow.com/questions/331658/have-cobol-compiled-program-missing-source/331697#331697 Comment by Stein Gauslaa Strindhaug on Have COBOL compiled Program -- Missing Source Stein Gauslaa Strindhaug 2008-12-01T18:23:45Z 2008-12-01T18:23:45Z But if you disassemble you get a (little) more readable diff... A few minor statements could probably give a massive binary difference. http://stackoverflow.com/questions/331394/can-i-set-up-cascade-deleting-in-rails/331408#331408 Comment by Stein Gauslaa Strindhaug on Can I set up Cascade deleting in Rails? Stein Gauslaa Strindhaug 2008-12-01T17:19:05Z 2008-12-01T17:19:05Z Yes, it's handled by rails. (Do make sure you really always need to delete every related rows, though.) http://stackoverflow.com/questions/311051/from-as2-to-as3-loading-external-images/311157#311157 Comment by Stein Gauslaa Strindhaug on From AS2 to AS3 loading external images Stein Gauslaa Strindhaug 2008-12-01T16:58:18Z 2008-12-01T16:58:18Z Yeah, I've got it to work now. :) http://stackoverflow.com/questions/326492/what-is-the-colorized-version-of-the-linux-top-program-as-seen-in-this-photo/326504#326504 Comment by Stein Gauslaa Strindhaug on What is the colorized version of the Linux "top" program as seen in this photo? Stein Gauslaa Strindhaug 2008-11-28T19:42:47Z 2008-11-28T19:42:47Z What ZZ top? <a href="http://en.wikipedia.org/wiki/ZZ_Top" rel="nofollow">en.wikipedia.org/wiki/ZZ_Top</a>