active questions tagged bugs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T19:53:22Z http://stackoverflow.com/feeds/tag/bugs http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use 68 What bug tracking software do you use? Thomas Owens 2008-08-15T15:05:06Z 2009-12-04T18:30:05Z <p>I'm currently looking at Bugzilla and Trac, as they seem to be the most popular (and I'm hoping that also means if there are any problems, it will be easier to get help), but I'm curious what solutions you use or have used and what your thoughts are.</p> <p>I'm currently leaning toward Trac, as it's Wiki functionality can be used to support documentation. But that might not be a good enough reason to jump on Trac.</p> http://stackoverflow.com/questions/1848542/list-of-everything-that-doesnt-work-correclty-in-quirks-mode 0 List of everything that doesn't work correclty in quirks mode? Baa 2009-12-04T17:43:56Z 2009-12-04T17:43:56Z <p>Hi,</p> <p>Does anyone have a complete list of html, javascript, and css that is buggy in quirks mode (particularly IE quirks mode)?</p> <p>I have checked out the quirksmode.org list at <a href="http://www.quirksmode.org/css/quirksmode.html" rel="nofollow">http://www.quirksmode.org/css/quirksmode.html</a> but it does not seem to be comprehensive. For example, I've seen some browsers have problems with frames unless you use a frameset doctype.</p> <p>Thanks, b.a.a.</p> http://stackoverflow.com/questions/345737/your-most-common-programming-mistakes 10 Your most common programming mistakes? Bemmu 2008-12-06T01:49:46Z 2009-12-04T11:24:21Z <p>I find myself repeating some mistakes over and over again. Some language-dependent, some not. Here are some of mine I could think of right away.</p> <p>PHP:</p> <ul> <li><p>Inside a class method, forgetting that I have to say "$self->some_method()" or "$self->some_attribute" instead of "some_method()" or "$some_attribute" to refer to my instance.</p></li> <li><p>Having a deservedly global object like $db or $facebook, then trying to call it from inside a function and wondering why that doesn't work. Oh yeah, "global $facebook".</p></li> <li><p>Trying to return multiple values from a function by saying "return list($a, $b)" instead of "return array($a, $b)".</p></li> </ul> <p>Python:</p> <ul> <li>Getting wrong argument count errors because forgetting that "self" has to be first arg.</li> </ul> <p>Actionscript:</p> <ul> <li>Creating a MovieClip object, wondering why it doesn't appear at all. Oh yeah, forgot to do "addChild(obj)".</li> </ul> <p>Objective-C:</p> <ul> <li>After switching back after coding a while in some other language, I find myself trying to call methods using dot notation "object.method", instead of "[object method]".</li> </ul> <p>Javascript:</p> <ul> <li>Manipulating DOM styles but forgetting to say "style". For example "document.getElementById('thing').opacity = 0.5;" </li> </ul> <p>Perl:</p> <ul> <li>echo "hello world". Huh, what's wrong? ;)</li> </ul> <p>Any language:</p> <ul> <li><p>Adding a new argument to a method, but forgetting to add that to the place(s) calling it.</p></li> <li><p>Creating a method, but forgetting to call it at all.</p></li> </ul> <p>I could go on and on, but I would rather be reading about what your common little mistakes are :)</p> <h3>Related:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha">What is your (least) favorite syntax gotcha?</a></p> </blockquote> http://stackoverflow.com/questions/1843808/private-constructor-gets-empty-private-static-readonly-string 0 private constructor gets empty private static readonly string Nippysaurus 2009-12-03T23:24:55Z 2009-12-03T23:51:38Z <p>I have the following code. Is it not the exact code which I am using since it is internal to my place of work, but is a representation of the scenario which I am encountering.</p> <pre><code>public class Service : ServiceBase { private static readonly Service _instance = new Service(); private static readonly string a = @"D:\test.txt"; private Service () : base() { // the value stored in "a" is always blank. Console.Writeline(a); } static void Main(string[] args) { Run(_instance); } } </code></pre> <p>This code is a windows service (there is service specific code in the base class). For some reason the value stored in "a" is always blank in the constructor. Is there something obvious which is doing this, or is it a quirk in the .NET platform?</p> http://stackoverflow.com/questions/1204457/how-to-solve-hack-fading-semi-transparent-png-bug-in-ie8 1 How to solve/hack fading semi-transparent PNG bug in IE8? Soul_Master 2009-07-30T04:32:49Z 2009-12-03T22:24:26Z <p>As you know, IE6 has bug that can't display semi-transparent PNG file without using non-standard style like filter. In IE7, this problem is fixed. But It still has some bug about PNG file. It can't correctly display fading semi-transparent PNG file. You can clearly see it when you use show/hide function in jQuery with semi-transparent PNG file. The background of image is displayed with non-transparent black color.</p> <p>Do you have any idea for solve this question by using jQuery.</p> <p><strong>Update</strong></p> <p>Let's see my testing</p> <p><img src="http://rabu4g.bay.livefilestore.com/y1pGVXLwPdkxudYLmIdnMpWTP%5F9up-8isxbPKX945Ui4ITnYWnR0msaa2NmUF-qJ-Q4a2AAGaiGHwaFSgR1HeplDIO0bWbyRODI/bug.png" alt="alt text" /></p> <p>As you see, IE8 always incorrectly displays PNG-24 image. Moreover, IE8 still correctly display PNG-8 image when I fade(jQuery.fadeOut function) it only. But It incorrectly display PNG-8 image when I fade &amp; resize(jQuery.hide function) at the same time.</p> <p>PS. You can download my testing source code from <a href="http://rabu4g.bay.livefilestore.com/y1pHifuvCCjPoQouSe0iXe3RTISoeWiEAUZtQuioFoNH1UtNXX5LJ9j7HZwFwHshpmXS2xK3lOrAV71iFNwgK7eZ41CursHCSzr/PngTest.zip?download" rel="nofollow">here</a>.</p> <p><strong>Thanks,</strong></p> http://stackoverflow.com/questions/1840168/ie6-box-model-bug-spry-sub-menu-displays-over-my-normal-menu-in-ie6-wrong-posit 0 IE6 Box Model bug. Spry Sub-Menu displays over my Normal Menu in IE6. Wrong Positioning. mind 2009-12-03T14:24:39Z 2009-12-03T14:24:39Z <p>Hello, first of all im a beginner so any descriptive help i would really appreciate.</p> <p>so my spry menu looks fine in every browser except IE6...</p> <p>my website is ritztheatre.net (srry cant post more then one hyperlink)</p> <p><strong>here is a screenshot of what happens when you hover in IE6. any ideas?</strong></p> <p><a href="http://img130.imageshack.us/img130/1612/spryprob.jpg" rel="nofollow">http://img130.imageshack.us/img130/1612/spryprob.jpg</a></p> <p>(sorry i couldnt post the image directly since im a new member)</p> <p><strong>Here is my Spry CSS:</strong></p> <pre><code> @charset "UTF-8"; /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */ /******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************/ /* The outermost container of the Menu Bar, an auto width box with no margin or padding */ ul.MenuBarHorizontal { margin: 0; padding: 0; list-style-type: none; font-size: 100%; cursor: default; width: auto; } /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ ul.MenuBarActive { z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width */ ul.MenuBarHorizontal li { padding: 0; list-style-type: none; font-size: 100%; position: relative; text-align: left; cursor: pointer; width: 10em; float: left; border: 1px solid #CCC; right: 0px; margin-top: 0; margin-right: 5px; margin-bottom: 0; margin-left: 0; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ ul.MenuBarHorizontal ul { margin: 0; padding: 0; width: 10px; list-style-type: none; font-size: 100%; z-index: 1020; cursor: default; width: 1em; position: absolute; left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible { left: auto; } /* Menu item containers are same fixed width as parent */ ul.MenuBarHorizontal ul li { width: 8.2em; } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ ul.MenuBarHorizontal ul ul { position: absolute; margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible { left: auto; top: 0; } /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides */ ul.MenuBarHorizontal ul { border: 1px solid #CCC; } /* Menu items are a light gray block with padding and no text decoration */ ul.MenuBarHorizontal a { display: block; cursor: pointer; background-color: #0662a8; padding: 0.1em 0.1em; color: #FFF; text-decoration: none; font-family: Arial, Helvetica, sans-serif; font-size: 11px; text-align: center; } /* Menu items that have mouse over or focus have a blue background and white text */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus { background-color: #C00; color: #FFF; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible { background-color: #C00; color: #FFF; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenu { background-image: url(SpryMenuBarDown.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu { background-image: url(SpryMenuBarRight.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover { background-image: url(SpryMenuBarDownHover.gif); background-repeat: no-repeat; background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover { background-image: url(SpryMenuBarRightHover.gif); background-repeat: no-repeat; background-position: 95% 50%; } /******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************/ /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ ul.MenuBarHorizontal iframe { position: absolute; z-index: 1010; filter:alpha(opacity:0.1); } /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ @media screen, projection { ul.MenuBarHorizontal li.MenuBarItemIE { display: inline; f\loat: left; background: #FFF; } } </code></pre> <p><strong>Here is my HTML:</strong></p> <pre><code>&lt;ul id="MenuBar1" class="MenuBarHorizontal"&gt; &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;Get Tickets&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;VIP Seating&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Calender of Events&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="boxoffice.html"&gt;Box Office Info&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Group Sales&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;About the Ritz&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;History&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="directions.html"&gt;Directions&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Parking Facilities&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Area Hotels&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Bars &amp;amp; Restaurants&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;Seating&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Front Orchestra&lt;/a&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Orchestra&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;VIP Mezzanine&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Balcony&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Interior Photos&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Lobby&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Concession&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Main Bar&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Main Auditorium&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Front Orchestra&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Orchestra&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;VIP Mezzanine&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Balcony&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Dressing Rooms&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Office&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Venue Rental&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Rental Info.&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="comingsoon.html"&gt;Private Events&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="concerts.html"&gt;Concerts&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="videos.html"&gt;Videos&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;script type="text/javascript"&gt; &lt;!-- var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"}); //--&gt; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1775544/is-this-is-an-expressiontrees-bug-3 13 Is this is an ExpressionTrees bug? #3 ControlFlow 2009-11-21T13:51:28Z 2009-12-03T13:53:58Z <p>Expressions class should be more accurate while searching for user-defined operators?</p> <pre><code>sealed class Foo { // just the private static method! private static int op_Implicit() { return 1; } public static implicit operator int(Foo foo) { return 2; } } public class Program { private static void Main() { var param = Expression.Parameter(typeof(Foo), "x"); // IndexOutOfRangeException was unhandled! var lambda = Expression.Lambda&lt;Func&lt;Foo, int&gt;&gt;( Expression.Convert(param, typeof (int)), param); } } </code></pre> <p>Also it's possible to define static <code>op_Explicit</code> or <code>op_Implicit</code> method with more than one arguments and Expression class accepts this method as an user-defined operator!</p> <p>p.s. ExpressionTrees looking for operators with <code>BindingFlags.NonPublic</code> flag, it's allows to search operators in the user types, witch not directly visible for System.Core.dll, but it also allows the Expressions API to find private methods that "looks like" user-defined operators. But C# rules doesn't allows you to define and use non-public operators! I think the behavior of Expressions API should be the same...</p> http://stackoverflow.com/questions/1835026/visual-studio-freezes-when-switching-to-debug-mode 1 Visual Studio freezes when switching to debug mode cvb 2009-12-02T18:54:19Z 2009-12-03T07:39:15Z <p>Strange visual studio (TS 2008) problem: The IDE completely freezes whenever I switch from Release to Debug mode in a specific project. It happens right as I switch, before I try to build or do anything else.</p> <p>The whole thing started out of the blue, without any abnormal change I can think of. I tried to clean the solution, but it didn't help.</p> <p>Anyone ran into this before?</p> http://stackoverflow.com/questions/254733/how-to-cope-with-disk-full-scenarios 5 How to cope with "disk full" scenarios? Svante 2008-10-31T19:54:52Z 2009-12-02T17:37:53Z <p>The vast majority of applications does not handle "disk full" scenarios properly. </p> <p>Example: an installer doesn't see that the disk is full, ignores all errors, and finally happily announces "installation complete!", or an email program is unaware that the message it has just downloaded could not be saved, and tells the server to delete the original.</p> <p>What techniques are there to handle this situation gracefully? Do you use them? Do you test them?</p> http://stackoverflow.com/questions/1807855/software-project-management-systems 2 Software Project Management systems cornjuliox 2009-11-27T10:11:42Z 2009-12-02T03:56:21Z <p>Ok, so I've only recently started getting serious about learning how to program, and I've started using Mercurial to manage my projects. I chose Mercurial over SVN because of it's ability to commit changes to a repo while not connected to the internet (these days I find myself in areas without internet access). I'm looking for a piece of software (preferably free, because I'm on a really tight budget :-P) that will allow me to manage a bug database and TODO list for each of my projects without requiring an internet connection. Is there anything out there that'll allow me to do exactly that (maybe more)? I'd prefer something that can work alongside Mercurial, because it'd be a pain to switch source control systems at this point.</p> http://stackoverflow.com/questions/1821047/very-interesting-jquery-load-behavior-a-bug-or-solution 1 Very interesting jQuery load behavior, a bug or solution? fudgey 2009-11-30T16:59:53Z 2009-11-30T20:38:11Z <p>I was recently trying to find a bug in some scripting and I discovered this very interesting behavior when loading a page with jQuery.</p> <p>File #1: Test1.htm</p> <pre><code>&lt;div id="test"&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ $('#test').load('test2.htm #content',function(){ alert('done loading!'); }) }) &lt;/script&gt; </code></pre> <p>File #2: Test2.htm</p> <pre><code>&lt;div id="content"&gt; howdy &lt;script type="text/javascript"&gt; $(document).ready(function(){ alert('hello #1'); }) &lt;/script&gt; &lt;SCRIPT type="text/javascript"&gt; $(document).ready(function(){ alert('hello #2'); }) &lt;/SCRIPT&gt; &lt;/div&gt; </code></pre> <p>Now when I run Test1.htm, I get the following:</p> <ul> <li>hello #2 alert</li> <li>howdy from test2.htm displays</li> <li>done loading alert</li> </ul> <p>As you can see the only difference is the script tag is in upper case for the hello #2 alert. The script to show the hello #1 alert never gets exectued... </p> <p>So far, I've tested this in Firefox 3.55, IE 8.0.6001.18702 and Chrome 3.0.195.33 with similar results.</p> <p>In the past, I've wanted to execture javascript from the loaded content, similar to <a href="http://stackoverflow.com/questions/75943/how-do-you-execute-a-dynamically-loaded-javascript-block">this SO question</a>. So my question is, is this a bug or a solution?</p> <p><hr></p> <p>Update: As Jitter states below, the same thing happens if Test2.htm has the script outside the content I am loading.</p> <pre><code>&lt;div id="content"&gt; howdy from test2.htm &lt;/div&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ alert('hello #1'); }) &lt;/script&gt; &lt;SCRIPT type="text/javascript"&gt; $(document).ready(function(){ alert('hello #2'); }) &lt;/SCRIPT&gt; </code></pre> http://stackoverflow.com/questions/1820070/my-formula-or-excel -1 My formula, or excel? [closed] Oliver 2009-11-30T14:12:46Z 2009-11-30T14:51:29Z <p>I'm using excel 2007 on Vista</p> <p>I need some help to debug this:</p> <pre><code>= IF('C:\Users\Nath\Desktop\ekm eibach\[ebachcom_translated.xlsx]Sheet1'!$A1585 = "Pro-Kit" ,K1585-(K1585 *16%) , IF('C:\Users\Nath\Desktop\ekm eibach\[ebachcom_translated.xlsx]Sheet1'!$A1585 = "Anti-Roll-Kit" ,K1585-(K1585 *11%) , IF('C:\Users\Nath\Desktop\ekm eibach\[ebachcom_translated.xlsx]Sheet1'!$A1585 = "Sportline" ,K1585-(K1585 *16%) , IF('C:\Users\Nath\Desktop\ekm eibach\[ebachcom_translated.xlsx]Sheet1'!$A1585 = "Pro-Damper" ,K1585-(K1585 *10%) , IF('C:\Users\Nath\Desktop\ekm eibach\[ebachcom_translated.xlsx]Sheet1'!$A1585 = "Pro-Street-S" ,K1585-(K1585 *10%) , IF('C:\Users\Nath\Desktop\ekm eibach\[ebachcom_translated.xlsx]Sheet1'!$A1585 = "Pro-Tronic" ,K1585-(K1585 *10%) ,"") ) ) ) ) ) </code></pre> <p>It checks a product against a list of product types and uses that to apply a percentage reduction to a price. It has been failing at random, giving prices that are several pounds out.</p> <p>Some example data (type and pre-discount price)</p> <p>Pro-Kit 139.1304348</p> <p>Pro-Street-S 738.2608696</p> <p>Pro-Street-S 738.2608696</p> <p>Pro-Kit 182.6086957</p> <p>Anti-Roll-Kit 256.5217391</p> <p>Anti-Roll-Kit 265.2173913</p> <p>Pro-Kit 166.0869565</p> <p>Pro-Kit 202.6086957</p> <p>Anti-Roll-Kit 508.6956522</p> <p>Pro-Kit 157.3913043</p> <p>Not sure if any these will fail, but...</p> http://stackoverflow.com/questions/1816550/lisp-code-called-from-java 4 Lisp code called from Java theBlinker 2009-11-29T19:48:56Z 2009-11-30T08:18:11Z <p>Hello,</p> <p>Long story:</p> <p>I am doing a project for my functional programing class, and I thought of writing an AI controller in Lisp, for the <a href="http://julian.togelius.com/mariocompetition2009/" rel="nofollow">Mario AI competition</a>.</p> <p>I was looking over frameworks/libraries/ways of calling Lisp code from Java, or even better Lisp-Java intercommunication. </p> <p>I have looked at <a href="http://jacol.sourceforge.net/" rel="nofollow">Jacol</a>, but it is old, and it does not compile fine for me. </p> <p>My best choice so far is: <a href="http://jatha.sourceforge.net/" rel="nofollow">Jatha</a>. It is really neat, although some lisp constructs are not yet implemented, one can easily define his own constructs. For example <strong>mapcar</strong> and <strong>cond</strong> are not implemented. I have implemented my own <strong>mapcar</strong>, named <strong>mapp</strong> in Lisp like this:</p> <pre><code>(defun map* (f l r) (if (null l) r (map* f (rest l) (cons (funcall f (first l)) r)))) (defun mapp (f l) (reverse (map* f l nil))) </code></pre> <p>Now I have a simple function that uses this, for example, a function that numbers how many atoms there are in a non-linear list</p> <pre><code>(defun myfunc (l) (if (atom l) '1 (apply '+ (mapp 'myfunc l)))) (myfunc '(6 2)) </code></pre> <p>This all works fine in <strong>clisp</strong> Now to call Lisp code from Java I used <strong>Jatha</strong>. All one has to do is import the Jatha library in the java project and load a lisp file like this (ex):</p> <pre><code>import org.jatha.*; import org.jatha.dynatype.*; public class Main { public static void main(String[] args) { Jatha lisp = new Jatha(false, false); lisp.init(); lisp.start(); LispValue file = lisp.makeString("X:\\lispproject\\test1.lisp"); LispValue rez1 = lisp.load(file); } } </code></pre> <p>While that code works fine in clisp, and other implementations, this code produces a StackOverflow</p> <p><code> run: APPLY: fn = +, args = ((1 1)) S: ((+ (QUOTE 1) (QUOTE 1))) Exception in thread "main" java.lang.StackOverflowError at java.lang.Long.toString(Long.java:242) at java.lang.Long.toString(Long.java:100) at java.lang.String.valueOf(String.java:2946) at org.jatha.dynatype.StandardLispInteger.toString(StandardLispInteger.java:113) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:174) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:153) at org.jatha.dynatype.StandardLispCons.toString(StandardLispCons.java:152) at org.jatha.dynatype.StandardLispCons.toStringAsCdr_internal(StandardLispCons.java:17 </code></p> <p>So my question is, why does it do this? Is my code wrong? <br/> Is it a bug in Jatha? See for yourself, it doesn't take long to set up. <br/> Have you ever done something similar?<br/> Do you know any other better ways to do this? All I want is to call from Java some Lisp code, get it executed, and get back results computed by the Lisp code. <br/> Thanks.</p> <p>[Edit] Fixed code, pasted something wrong.</p> http://stackoverflow.com/questions/1818301/do-we-consider-this-as-a-bug 0 Do we consider this as a bug? Sri Kumar 2009-11-30T07:25:58Z 2009-11-30T07:56:34Z <p>Hello All,</p> <p>There is a table in the page which is pre-populated. The table has a check box to approve/reject each row item and there are buttons (SAVE, CANCEL) in the page to save the changes and to cancel the changes.</p> <p>A BUG saying "if there are no data in the table, then the SAVE and CANCEL button should be hidden" is raised.</p> <p>Is this really a BUG or a SUGGESTION? How should i consider it?</p> <p><strong>EDIT:</strong> No such thing(button hide/disable) is mentioned in the SPEC</p> http://stackoverflow.com/questions/207313/what-type-of-bug-species-has-typically-represented-a-programming-bug 0 What type of bug (species) has typically represented a programming bug? Anonymous Cow 2008-10-16T03:10:53Z 2009-11-30T05:47:06Z <p>What type of bug represents a programmer bug? </p> <p>i.e. is there a type or species of bug that best represents a programmers bug? Or has the programming community come to some sort of consensus?</p> http://stackoverflow.com/questions/1814716/going-live-with-a-project-with-no-bugs-generation 0 Going live with a project with no bugs generation unknown (google) 2009-11-29T05:11:10Z 2009-11-29T05:55:43Z <p>What are the ways to ensure that minimum or no bugs are found when a .net project goes live? Your tips can be generic. </p> <p>My first project is about to be hosted in a week's time and I am slightly intimidated by that fact, since I am a uni student and not an expert programmer.</p> http://stackoverflow.com/questions/550242/should-we-always-reproduce-the-bugs-to-verify-the-fixes 10 Should we always reproduce the bugs to verify the fixes ? webclimber 2009-02-15T03:18:16Z 2009-11-28T20:40:39Z <p>From time to time we get bugs on production that can be fixed by for example by changing a configuration, disabling some part of the logic, and such.</p> <p>I've argued with my manager that we should reproduce the bugs locally to ensure the fix works, and more importantly so developers and QA can include the check for these cases as part of the regular release.</p> <p>My manager thinks is a waste of time, as the solution works so there is no need to reproduce locally.</p> <p>So: Should we try to reproduce locally to verify the fixes ? Any pointers on how to sell this point to my manager if you agree with me ?</p> http://stackoverflow.com/questions/1790068/why-dont-people-just-stop-developing-sites-to-cater-to-ie6 8 Why don't people just stop developing sites to cater to IE6? Papuccino1 2009-11-24T13:28:48Z 2009-11-27T12:28:47Z <p>I don't understand why developers continue to program things to accommodate IE6. People should update the browser they use, right?</p> <p>I've already seen many firms completely stop developing for IE6, with a big article on their front page stating their update recommendations.</p> <p>What are <strong>your</strong> reasons to continue developing for this buggy old dinosaur? If you say you must for your work, state why your organization continues to develop for IE6.</p> <p>Of course, a community wiki, just because I'd like to see some reasons (if any).</p> http://stackoverflow.com/questions/1791214/online-issue-tracking-tool 0 Online Issue Tracking Tool? mike 2009-11-24T16:29:21Z 2009-11-27T10:47:57Z <p>im part of a dev team thats tired of being used as a crutch by the rest of the organization. I want to start to build a document repository of how-tos, work-arounds and other information that instead of doing the work for others, or having problems that users can resolve on their own being dropped on our laps i want to be able to send links to online content to users who post problems.</p> <p>i want the system to be searchable, online so that users can search and access the system over the web, it should also have an issue tracking/ management system so users can add issues and track their status as the ticket info changes.</p> <p>i am thinking of share point and ilient. (<a href="http://www.ilient.com/" rel="nofollow">http://www.ilient.com/</a>) i would prefer a free tool, but paid is fine too.</p> http://stackoverflow.com/questions/1707090/sharepoint-translating-links-for-me-and-its-unwanted 0 SharePoint : Translating links for me, and its unwanted JL 2009-11-10T10:51:53Z 2009-11-26T00:00:03Z <p>I am inserting a list item using sharepoint web services....</p> <p>Here is my code:</p> <pre><code>item += @"&lt;Field Name=""HyperLinkField""&gt;" + this.SharePointSiteAddressLinks + @"/lists/" + this.ListName + @"/" + this.ID + "_" + this.MessageID + ", " + this.MessageID + ".ext&lt;/Field&gt;"; </code></pre> <p>the value of SharePointSiteAddressLinks is <a href="http://machineName" rel="nofollow">http://machineName</a></p> <p>The list item gets inserted into the list, but the value of the hyperlink is set to <a href="http://localhost" rel="nofollow">http://localhost</a></p> <p>Firstly - why does SharePoint take it apon itself to (incorrect) my links, 2ndly what can I do to turn it off?</p> <p>Thank you</p> http://stackoverflow.com/questions/1796968/linux-shell-bug 1 Linux shell bug? ExpertNoob1 2009-11-25T13:39:29Z 2009-11-25T23:08:09Z <p>How come FILE_FOUND is 0 at the end of this bugger :</p> <pre><code>FILE_FOUND=0 touch /tmp/$$.txt ls -1 /tmp/$$.* 2&gt;/dev/null | while read item; do FILE_FOUND=1 echo "FILE_FOUND = $FILE_FOUND" done echo "FILE_FOUND = $FILE_FOUND" rm -f /tmp/$$.txt 2&gt;/dev/null </code></pre> <p>??!!</p> <p>On Unix FILE_FOUND stays at 1 (as it should), but on Linux (RedHat, Cygwin, ..) it jumps back to 0!!</p> <p>Is it a Linux shell feature, not a bug? :)</p> <p>Please help.</p> http://stackoverflow.com/questions/1798458/from-where-this-unexpected-bottom-margin-appears 0 from where this unexpected bottom margin appears ? Gilad 2009-11-25T17:14:24Z 2009-11-25T17:14:24Z <p>hi!</p> <p>if you'll look here <a href="http://clients.ventu.co.il/getapp/" rel="nofollow">http://clients.ventu.co.il/getapp/</a></p> <p>in IE7 there is a strange extra gap between the footer and the content above which isnt supposed to be there</p> <p>anyone can help me remove it?</p> http://stackoverflow.com/questions/1786456/selection-auto-cleared-in-c-net-datagridview 0 Selection Auto-cleared in C# .NET DataGridView Joshua Lowry 2009-11-23T22:19:29Z 2009-11-24T15:18:41Z <p>I have a data grid view and after running a separate popup window and coming back to the original the user's selected rows are no longer selected. I did a find all references on the variable for the data grid, but nowhere does it say anything about clearing. Is there some sort of autoclearing functionality I don't know about?</p> <p>I'm trying to prevent the selections from being cleared. </p> <p>The clearing appears to happen before the window closes.</p> http://stackoverflow.com/questions/1206951/flexbuilder-not-creating-swf-file-for-air-project 0 FlexBuilder not creating .swf file for AIR project Ian 2009-07-30T14:26:39Z 2009-11-24T06:00:19Z <p>This seems like a bug in Flex Builder, however the builder no longer creates the .swf file for any projects (I'm building an AIR app). It did previously however, for some reason it errors out with the message "Initial content not found" (referring to looking for the swf in bin-debug, and not being able to find it).</p> <p>There are many proposed solutions, such as change the version in the application descriptor from 1.0 to 1.5, however none of these work. I've even imported it into a new project and the swf file is not generated. </p> <p>Is there anyway to force Flex Builder to generate the swf file?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1775603/is-this-is-an-expressiontrees-bug-4 2 Is this is an ExpressionTrees bug? #4 ControlFlow 2009-11-21T14:17:55Z 2009-11-21T18:48:35Z <p>This is not "close to real" situation, but it shows that Expressions API doesn't look for operators in the destination type of conversion if it founds the suitable operator in the source type.</p> <pre><code>sealed class Foo { public static explicit operator Bar(Foo foo) { return null; } } sealed class Bar { public static implicit operator Bar(Foo foo) { return null; } } class Program { public static void Blah(Bar bar) { } private static void Main() { Expression&lt;Func&lt;Foo, Bar&gt;&gt; expr1 = x =&gt; x; // fine, used implicit operator from Bar var param = Expression.Parameter(typeof(Foo), "x"); var expr2 = Expression.Lambda&lt;Func&lt;Foo, Bar&gt;&gt;( Expression.Convert(param, typeof(Bar)), param); // fine, but used explicit operator from Foo! } } </code></pre> <p>Also if simulate ambiguity between user-defined operators in the two types, C# compiler doesn't compile conversion at all, but the Expressions API will use operator from the conversion source type.</p> http://stackoverflow.com/questions/1767003/oracle-pl-sql-bug-cant-putline-more-than-2000-characters 1 oracle pl/sql bug: can't put_line more than 2000 characters FrustratedWithFormsDesigner 2009-11-19T22:22:15Z 2009-11-20T14:36:00Z <p>Has anyone else noticed this phenomenon where <code>dbms_output.put_line</code> is unable to print more than 2000 characters at a time?</p> <p>Script is:</p> <pre><code>set serveroutput on size 100000; declare big_str varchar2(2009); begin for i in 1..2009 loop big_str := big_str||'x'; end loop; dbms_output.put_line(length(big_str)); dbms_output.put_line(big_str); end; / </code></pre> <p>I copied and pasted the output into an editor (Notepad++) which told me there were only 2000 characters, not 2009 which is what I think should have been pasted. This also happens with a few of my test scripts - only 2000 characters get printed.</p> <p>I have a workaround to print like this:</p> <pre><code>dbms_output.put_line(length(big_str)); dbms_output.put_line(substr(big_str,1,1999)); dbms_output.put_line(substr(big_str,2000)); </code></pre> <p>This adds new lines to the output, makes it hard to read when the text you're working with is preformatted.</p> <p>Has anyone else noticed this? Is it really a bug or some sort of obscure feature? Is there a better workaround? Is there any other information on this out there?</p> <p>Oracle version is: 10.2.0.3.0, using PL/SQL Developer (from Allround Automation).</p> http://stackoverflow.com/questions/1666291/graphical-bugs-while-programmatically-creating-uilabel-uitextfield-etc 0 Graphical Bugs while programmatically creating UILabel, UITextField, etc... Tomen 2009-11-03T09:44:54Z 2009-11-20T09:22:39Z <p>I programmatically created a login view and a table view.</p> <p>Under certain circumstances which i cannot reproduce there occur some strange visual bugs:</p> <ul> <li>Text with some letters having a different font size than others</li> <li>A button where the border is not initially shown but only if you click on it. In the same case, the border of the button can be shown in a UITextField instead of the place holder ( see screenshot )</li> <li>A label showing up not in the right place, but in the above mentioned textfield, upside down ( i did not manage to screenshot this one yet )</li> </ul> <p>Below, i added two screenshots with most of the app blacked out, only showing the bugs:</p> <p><a href="http://uppix.net/b/c/4/dd1e41acb94b7d0ad8eb173772e97.png" rel="nofollow"><img src="http://uppix.net/b/c/4/dd1e41acb94b7d0ad8eb173772e97.png" width="250"></a>&nbsp;&nbsp; <a href="http://uppix.net/b/f/2/a5993440c07753b851701068330be.png" rel="nofollow"><img src="http://uppix.net/b/f/2/a5993440c07753b851701068330be.png" width="250"></a></p> <p>Here you can see that text gets mixed with different font sizes.</p> <p>This errors occur not regularly or reproduce-able.</p> <p>I added the code of the login screen below:</p> <pre><code> // Implement loadView to create a view hierarchy programmatically, without // using a nib. - (void)loadView { UIView *myView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; UIFont* font = [UIFont systemFontOfSize:14]; float midLine = 100.0; float height = 30.0; float borderY = 70.0; float borderX = 10.0; float width = 320.0 - borderX * 2.0; float paddingX = 10.0; float paddingY = 5.0; CGRect usernameLabelRect = CGRectMake(borderX, borderY, midLine, height); CGRect usernameFieldRect = CGRectMake(borderX + midLine + paddingX, borderY, width - midLine - paddingX - 40 , height); CGRect passwordLabelRect = CGRectMake(borderX, borderY + height + paddingY, midLine, height); CGRect passwordFieldRect = CGRectMake(borderX + midLine + paddingX, borderY + height + paddingY, width - midLine - paddingX - 40, height); CGRect loginButtonRect = CGRectMake(borderX + 40, borderY + height*2 + paddingY*2, width - 80, height); //CGRect warningRect = CGRectMake(borderX, // borderY * height * 3.0 + paddingY *3.0, // width, height); CGRect warningRect = CGRectMake(borderX, 175, width, 40); UILabel* usernameLabel = [[UILabel alloc] initWithFrame:usernameLabelRect]; usernameLabel.textAlignment = UITextAlignmentRight; usernameLabel.font = font; usernameLabel.text = @"Username:"; UILabel* passwordLabel = [[UILabel alloc] initWithFrame:passwordLabelRect]; passwordLabel.textAlignment = UITextAlignmentRight; passwordLabel.font = font; passwordLabel.text = @"Password:"; usernameField = [[UITextField alloc] initWithFrame:usernameFieldRect]; [usernameField setBorderStyle:UITextBorderStyleRoundedRect]; //[usernameField setPlaceholder:@"&lt;Username&gt;"]; usernameField.font = font; usernameField.autocapitalizationType = UITextAutocapitalizationTypeNone; usernameField.autocorrectionType = UITextAutocorrectionTypeNo; passwordField = [[UITextField alloc] initWithFrame:passwordFieldRect]; passwordField.font = font; [passwordField setBorderStyle:UITextBorderStyleRoundedRect]; //[passwordField setPlaceholder:@"&lt;Password&gt;"]; passwordField.autocapitalizationType = UITextAutocapitalizationTypeNone; passwordField.autocorrectionType = UITextAutocorrectionTypeNo; passwordField.secureTextEntry = YES; loginButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; loginButton.frame = loginButtonRect; [loginButton setTitle: @"Einloggen" forState:UIControlStateNormal]; [loginButton setTitleColor:[UIColor blackColor] forState:UIControlEventTouchDown]; loginButton.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; loginButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter; [loginButton addTarget:self action:@selector(OnLoginClicked:) forControlEvents:UIControlEventTouchUpInside]; [loginButton setBackgroundColor:[UIColor clearColor]]; warningLabel = [[UILabel alloc] initWithFrame:warningRect]; warningLabel.font = font; warningLabel.numberOfLines = 3; warningLabel.text = @"Wenn Sie die Applikation jetzt schließen, so werden Ihre Logindaten verworfen."; [myView addSubview:usernameLabel]; [myView addSubview:passwordLabel]; [myView addSubview:usernameField]; [myView addSubview:passwordField]; [myView addSubview:loginButton]; [myView addSubview:warningLabel]; /* [usernameLabel release]; [passwordLabel release]; [usernameField release]; [passwordField release]; [loginButton release]; [warningLabel release]; */ self.view = myView; [myView release]; } </code></pre> <p>Any help is greatly appreciated =)</p> <p>Thank you!</p> http://stackoverflow.com/questions/1762088/common-reasons-for-bugs-in-release-version-not-present-in-debug-mode 5 Common reasons for bugs in release version not present in debug mode Benny 2009-11-19T09:46:42Z 2009-11-19T13:12:30Z <p>What are the typical reasons for bugs and abnormal program behavior that manifest themselves only in release compilation mode but which do not occur when in debug mode?</p> http://stackoverflow.com/questions/1761928/is-there-a-bug-calatog-classifying-the-bugs-with-general-descriptions 1 Is there a BUG Calatog, classifying the bugs with general descriptions? burak ozdogan 2009-11-19T09:14:56Z 2009-11-19T09:31:07Z <p>Hi,</p> <p>Is there any work done on classifying the bugs; practically categorizing and sub-grouping them based on their their occurrence place, side-effects, complexity and so on? With their brief descriptions included.</p> <p>Any suggestion where to find or check such a resource?</p> <p>Thanks</p> http://stackoverflow.com/questions/1754016/is-jwysiwyg-editor-too-buggy-for-production-use 1 Is jWYSIWYG editor too buggy for production use? alex 2009-11-18T06:19:48Z 2009-11-18T09:39:44Z <p>After reading the comments on this site:</p> <p><a href="http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/" rel="nofollow">http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/</a></p> <p>There is a bit of consensus that <a href="http://code.google.com/p/jwysiwyg/" rel="nofollow">jWYSIWYG</a> editor is <em>too buggy</em> (especially in the last few recent comments). Has anyone had experience with it in a large production site?</p> <p>I haven't run a huge sample of markup through it yet, but so far it has seemed to do the job fine.</p>