User Daddy Warbox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T11:25:04Z http://stackoverflow.com/feeds/user/19825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328976/thorough-use-of-if-statements-or-try-catch-blocks 2 Thorough use of 'if' statements or 'try/catch' blocks? Daddy Warbox 2008-11-30T15:53:35Z 2009-11-26T16:40:38Z <p>Give me some of your thoughts on which is a better coding practice/makes more efficient code/looks prettier/whatever: Increasing and improving your ability to use if statements to anticipate and catch potential problems? Or simply making good use of try/catch in general?</p> <p>Let's say this is for Java (if it matters).</p> <p><strong>Edit:</strong> I'm presently transitioning myself away from some admittedly out-dated and constrained current coding practices, but I'm a little torn on the necessity of doing so on a few points (such as this). I'm simply asking for some perspectives on this. Not a debate.</p> http://stackoverflow.com/questions/434374/another-sql-tutorial-question-field-0 1 Another SQL tutorial question: Field > 0? Daddy Warbox 2009-01-12T03:40:11Z 2009-10-20T17:09:43Z <p>Alright, <a href="http://sqlzoo.net/1a.htm" rel="nofollow">this one</a> (3a; sample problem with provided answer) has got me scratching my head:</p> <blockquote> <p><strong>bbc(name, region, area, population, gdp)</strong><br> <em>3a. Find the largest country in each region:</em></p> </blockquote> <pre><code>SELECT region, name, population FROM bbc x WHERE population &gt;= ALL (SELECT population FROM bbc y WHERE y.region = x.region AND population &gt; 0) </code></pre> <p>I understand the concept of '<code>WHERE y.region = x.region</code>' when I think about it in terms of the db engine looping over the table entries and matching each x.region with the current y.region (in the nested SELECT)... but wtf does '<code>AND population &gt; 0</code>' do? It isn't a right answer without it, but I don't see how not...</p> http://stackoverflow.com/questions/434013/sql-tutorial-question-listing-the-first-value-from-a-three-way-joined-table-quer 1 SQL tutorial question: Listing the first value from a three-way joined table query Daddy Warbox 2009-01-11T23:31:50Z 2009-10-20T17:09:01Z <p>Ugh ok I'm terrible at explaining things, so I'll just give you the quotes and links first:</p> <p><a href="http://sqlzoo.net/3.htm" rel="nofollow">Problem 4b</a> (near bottom):</p> <blockquote> <p>4b. List the film title and the leading actor for all of 'Julie Andrews' films.</p> <blockquote> <p>movie(id, title, yr, score, votes, director)<br /> actor(id, name)<br /> casting(movieid, actorid, ord)<br /> <em>(Note: movie.id = casting.movieid, actor.id = casting.actorid)</em></p> </blockquote> </blockquote> <p>My answer (doesn't work):<br /><code> &nbsp; &nbsp; SELECT title, name<br /> &nbsp; &nbsp; &nbsp; FROM casting JOIN movie<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ON casting.movieid = movie.id<br /> &nbsp; &nbsp; &nbsp; JOIN actor<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ON casting.actorid = actor.id<br /> &nbsp; &nbsp; &nbsp;WHERE name = 'Julie Andrews'<br /> &nbsp; &nbsp; &nbsp; &nbsp;AND ord = 1</code></p> <p>The problem here is that it wants the list of lead actors of movies with 'Julie Andrews' as an actor (who is not necessarily the lead actor), but all I'm doing with my answer is getting the movies where she is the lead (ord = 1).</p> <p>How do I specify the list of lead actors without 'Julie Andrews' being it? I suspect I have to do something with GROUP BY, but I can't figure out what at the moment...</p> <p><strong>Edit:</strong> Do I need to use a nested SELECT?</p> http://stackoverflow.com/questions/432977/quick-sql-question-sqlzoo-tutorial-problem 0 Quick SQL Question: SQLzoo tutorial problem Daddy Warbox 2009-01-11T14:05:33Z 2009-10-20T17:08:25Z <p><a href="http://sqlzoo.net/2b.htm" rel="nofollow">Problem 2b</a> goes as follows:</p> <blockquote> <p>2b. For each subject show the first year that the prize was awarded.</p> <blockquote> <p>nobel(yr, subject, winner)</p> </blockquote> </blockquote> <p>My solution was this:<br /> <code> SELECT DISTINCT subject, yr<br /> FROM nobel<br /> ORDER BY yr ASC;</code></p> <p>Why isn't this working?</p> http://stackoverflow.com/questions/139482/what-are-some-good-methods-to-hinder-screen-scrapers-from-grabbing-specific-piece 3 What are some good methods to hinder screen scrapers from grabbing specific pieces of content off my site? Daddy Warbox 2008-09-26T13:23:27Z 2009-08-26T18:39:15Z <p>Pretty sure this question counts as blasphemy to most web 2.0 proponents, but I do think there are times when you could possibly <em>not</em> want pieces of your site being easily ripped off into someone else's arbitrary web aggregator. At least enough so they'd need to be arsed to do it by hand if they really wanted it.</p> <p>My idea was to make a script that positioned text nodes by absolute coordinates in the order they'd appear normally within their respective paragraphs, but then stored those text nodes in a random, jumbled up order in the DOM. Of course, getting a system like that to work properly (proper text wrap, alignment, styling, etc.) seems almost akin to writing my own document renderer from scratch.</p> <p>I was also thinking of combining that with a CAPTCHA-like thing to muss up the text in subtle ways so as to hinder screen scrapers that could simply look at snapshots and discern letters or whatnot. But that's probably overthinking it.</p> <p>Hmm. Has anyone yet devised any good methods for doing something like this?</p> http://stackoverflow.com/questions/1113844/jquery-advice-how-can-i-improve-this-function-for-scrolling-elements-into-view 1 jQuery advice: How can I improve this function for scrolling elements into view? Daddy Warbox 2009-07-11T14:38:36Z 2009-08-06T21:37:00Z <p>I've created a function that scrolls a given child element into view within its parent. It goes as follows:</p> <pre><code>function keepScrolledOver( elem ) { frame = elem.parent(); var scrollPos = frame.scrollTop(); var offset = elem.attr( "offsetTop" ); // If the element is scrolled too high... if( offset &lt; scrollPos ) { frame.scrollTop( offset ); // frame.attr( "scrollTop", offset ); } // If the element is scrolled too low... else { var frameHeight = frame.height(); var offsetBottom = offset + elem.height(); var scrollBottom = scrollPos + frameHeight; if( offsetBottom &gt; scrollBottom ) { // frame.attr( "scrollTop", offsetBottom ); if( frameHeight &lt; offsetBottom ) frame.scrollTop( offsetBottom - frameHeight ); // frame.attr( "scrollTop", offsetBottom - frameHeight ); } } } </code></pre> <p>So far, for my Firefox web app (Firefox is all I've tested it on thus far, I mean), this works great. Only issue is that for elements scrolled too low it always tends to scroll just a tiny bit past the target element rather than right up to its end. I'm not sure if element padding has something to do with or else if my maths just suck.</p> <p>Anyone have any brilliant ideas on how to improve this?</p> http://stackoverflow.com/questions/1183870/javascript-question-problem-with-calling-an-objects-methods 0 Javascript question: Problem with calling an objects methods Daddy Warbox 2009-07-26T06:12:48Z 2009-07-26T06:37:02Z <p>Say I have an object called <code>FieldEdit</code>. I define the function constructor for this object, instantiate it via. <code>var obj = new FieldEdit()</code>, and define its methods by <code>FieldEdit.prototype.&lt;method name&gt; = function() { ... }</code>.</p> <p>Under what situations would calling this object's methods within the objects' other methods (via. <code>this.&lt;method name&gt;();</code>) fail?</p> <p>Note that I want to avoid posting a code sample for this if I can since I think this is simply a problem with my understanding of Javascript more than anything, really. I'm pretty sure my code is sound, to the best of my knowledge (and it's my knowledge that's the question here, besides).</p> http://stackoverflow.com/questions/1119976/simple-css-problem-title-text-on-upper-left-button-on-the-upper-right 1 Simple CSS problem: Title text on upper left, Button on the upper right Daddy Warbox 2009-07-13T15:02:11Z 2009-07-13T18:51:34Z <p>I have a page where I need a piece of text to appear aligned to the upper left of an absolutely positioned element (a span, if it matters), and a button to appear aligned to the upper right of the same element. <strong>edit:</strong> Problem with this is even when I use <code>float: right;</code> and <code>display: inline;</code> the button still likes to drop the next line.</p> <p>Currently my solution is to wrap the button with a span element, float the span to the right, and then set the button to absolute position. Problem with this is it doesn't appear unless I <em>manually</em> specify the width of the wrapper span to fit whatever size the browser renders the button. Which is kinda dumb.</p> <p>What's the proper way to do this?</p> <p><strong>edit 2:</strong> Here was my original code:</p> <pre><code>#header { position: absolute; top: 0; bottom: auto; left: 0; width: 100%; height: 24px; overflow: hidden; } /* Header's buttons. */ #header &gt; span { float: right; width: 100px; } #header &gt; span &gt; button { position: absolute; } </code></pre> <p>And the HTML:</p> <pre><code>&lt;span id="header"&gt; Trigger editor &lt;span&gt;&lt;button type="button" id="h_output"&gt;Output Triggers&lt;/button&gt;&lt;/span&gt; &lt;/span&gt; </code></pre> http://stackoverflow.com/questions/1113982/jquery-question-does-using-remove-also-properly-remove-children 0 jQuery question: Does using .remove() also properly remove children? Daddy Warbox 2009-07-11T15:44:12Z 2009-07-11T15:51:22Z <p>Not that it matters strictly, and maybe I just don't yet fully understand how the DOM works by asking this, but I'm just trying to anticipate if there is some kind of memory leak potential here. If I remove an element that has children, event listeners, etc., do those get cleaned up as well? Or would I be wise to implement some kind of recursive removal solution myself?</p> <p>To extend this question, I'll also ask: Does removing elements from the DOM <em>directly</em> (not via. jQuery, I mean) also have the same problem?</p> http://stackoverflow.com/questions/1083908/assorted-jquery-questions 5 Assorted jQuery questions Daddy Warbox 2009-07-05T11:44:03Z 2009-07-05T12:07:55Z <p>1.) What's the difference between these two queries, exactly?</p> <pre><code>$( "#orderedlist li" ) $( "#orderedlist&gt;li" ) </code></pre> <p>2.) In the jQuery file itself there is a function that returns the following:</p> <pre><code>function now(){ return +new Date; } </code></pre> <p>What does that mean? I've never seen +new before.</p> <p><strike>3.) In a brief skimming of a tutorial, I observed the following samples:</p> <pre><code>// use this to reset a single form $( "#reset" ).click( function() { $( "form" )[0].reset(); }); // use this to reset several forms at once $( "#reset" ).click( function() { $( "form" ).each( function() { this.reset(); }); }); </code></pre> <p>When I try to reference my own queries by array indexes, they don't seem to work. Yet this example clearly did when I tested it. What could I be doing wrong?</strike></p> <p><strong>Edit:</strong> I'll put this one into its own question soon. <strong>Edit 2:</strong> Actually I may be able to debug it myself. Hang on...</p> <p>I have guesses to each of these, but short of dissecting the jQuery file itself in full, I'm not completely certain what's at work here. Help appreciated.</p> http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected 2 Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T05:48:17Z 2009-07-01T09:59:17Z <p>How is this done?</p> http://stackoverflow.com/questions/1067218/quick-jquery-question-whats-the-way-to-get-all-elements-of-a-queried-set-except 1 Quick jQuery question: What's the way to get all elements of a queried set EXCEPT the first? Daddy Warbox 2009-07-01T04:01:17Z 2009-07-01T05:21:05Z <p>I forget offhand.</p> http://stackoverflow.com/questions/1067306/quick-jquery-question-stopping-event-propagation 1 Quick jQuery question: Stopping event propagation? Daddy Warbox 2009-07-01T04:42:55Z 2009-07-01T04:46:29Z <p>I have a set of elements that respond to mouseUp events, and inside of them are child elements that respond to mouseUp events as well (all via. jQuery). How do I make it so when a child's mouseUp event occurs from a user mouse click the child's parent's mouseUp event doesn't also occur in jQuery?</p> http://stackoverflow.com/questions/1056713/javascript-question-detecting-children-currently-in-view-within-an-overflow-au 1 Javascript question: Detecting children currently in view within an 'overflow: auto;' parent element? Daddy Warbox 2009-06-29T05:38:59Z 2009-06-29T22:37:42Z <p>See title. Additionally, how can I tell if a given child element is only partially or else wholly out of view (that is, not within the currently scrolled portion) of my 'overflow: auto;' parent element?</p> http://stackoverflow.com/questions/1056713/javascript-question-detecting-children-currently-in-view-within-an-overflow-au/1056867#1056867 0 Answer by Daddy Warbox for Javascript question: Detecting children currently in view within an 'overflow: auto;' parent element? Daddy Warbox 2009-06-29T06:38:22Z 2009-06-29T22:37:42Z <p>Well, I found <a href="http://stackoverflow.com/questions/810492/div-auto-scroll">this</a> for scrolling to elements in the page, which is related. Would using some maths with .scrollTop and .offsetTop allow me to do something like what I'm looking for?</p> <p>Edit: Apparently yes.</p> http://stackoverflow.com/questions/1056562/simple-javascript-question-how-do-i-prevent-scrolling-with-arrow-keys-but-not-th 0 Simple Javascript question: How do I prevent scrolling with arrow keys but NOT the mouse? Daddy Warbox 2009-06-29T04:32:54Z 2009-06-29T05:05:46Z <p>See title. Since I'm using jQuery, any solution via. that would work too. Ideally, I'd like to know both, though. I already have the arrow keys bound to another function on my page (via. jQuery), but having them cause the page to scroll in addition to that causes me problems.</p> <p>I may have known this at one time, but I don't remember it anymore. :P</p> http://stackoverflow.com/questions/1036345/html-css-question-element-between-two-absolute-positioned-elements-needs-to-re 1 HTML & CSS question: Element between two absolute-positioned elements needs to resize correctly Daddy Warbox 2009-06-24T04:07:04Z 2009-06-24T10:44:54Z <pre><code>#header { position: absolute; top: 0%; height: 24px; } #body { position: absolute; top: 24px; bottom: 20%; overflow: auto; } #footer { position: absolute; bottom: 0px; height: 17.2%; min-height: 80px; overflow: auto; } </code></pre> <p>My problem is that when I compress the browser window, the middle element (the 'body') starts to slip into the footer's area (when 20% from the bottom becomes larger than the minimum height of the footer). The footer can be larger in height than its minimum, but it cannot be smaller.</p> <p>Any good way to do this without Javascript code?</p> http://stackoverflow.com/questions/1036300/html-question-percentage-sized-elements-with-minimum-pixel-dimensions 0 HTML question: Percentage-sized elements with minimum pixel dimensions Daddy Warbox 2009-06-24T03:51:24Z 2009-06-24T04:28:46Z <p>I have a page with elements that I want to be dynamically resizeable with the browser window, but I don't want certain elements squishing shorter than certain dimensions. Without Javascript, is there a good way to do this?</p> <p><strong>Edit:</strong> Argh! Stupid question. I should've remembered that sooner. :P</p> http://stackoverflow.com/questions/292464/what-do-i-need-to-know-to-make-a-java-application-that-uses-a-database 2 What do I need to know to make a Java application that uses a database? Daddy Warbox 2008-11-15T12:08:11Z 2009-06-17T13:27:57Z <p>Since I've started using NetBeans, I've learned of some <a href="http://www.netbeans.org/kb/60/java/gui-db.html" rel="nofollow">powerful ways</a> to abstract away the process of creating Java database applications with automatically generated UI, beans bindings, and a bunch of other stuff I only vaguely understand the workings of at the moment (I hate being a newb). Problem is, <em>how do I do the basic stuff I actually want to do</em>? The tutorials I've read make a big deal about being able to connect to and mess around with a database from within the IDE, or how to create and bind some UI sliders and checkboxes to table columns, etc. But where can I learn about how to make my own code do that stuff? Abstraction is nice and all, but it's quite useless to me at the moment for what I need done.</p> <p>Can anyone refer me to some good resources or tutorials to learn this? The few I've found aren't proving as useful as I'd hoped to get my project underway...</p> http://stackoverflow.com/questions/942192/simple-regex-problem-replacing-words-with-s 0 Simple regex problem: Replacing words with '?'s Daddy Warbox 2009-06-02T22:19:12Z 2009-06-02T22:53:08Z <p>Alright, here's my current test function:</p> <pre><code>function make_void( str ) { var str_arr = str.split( /[\W]+/ ); var voidstr; var newstr = ""; for ( var i = 0; i &lt; str_arr.length; i++ ) { voidstr = str_arr[i]; // if ( Math.random() &lt;= 0.9 ) // { voidstr = voidstr.replace( /\w/gi, "?" ); // } newstr += voidstr + " "; } document.writeln( newstr ); } </code></pre> <p>The problem? Punctuations is lost.</p> <p>What's a good way to revise that such that they aren't?</p> http://stackoverflow.com/questions/887533/how-do-20-questions-ai-algorithms-work 20 How do 20 questions AI algorithms work? Daddy Warbox 2009-05-20T12:04:19Z 2009-05-22T17:35:30Z <p>Simple online games of 20 questions powered by an eerily accurate AI.</p> <p>How do they guess so well?</p> http://stackoverflow.com/questions/887533/how-do-20-questions-ai-algorithms-work/896406#896406 1 Answer by Daddy Warbox for How do 20 questions AI algorithms work? Daddy Warbox 2009-05-22T04:53:25Z 2009-05-22T04:53:25Z <p>Also, this appears to be a form of <a href="http://en.wikipedia.org/wiki/Expert%5Fsystem#End%5Fuser" rel="nofollow">expert system</a>.</p> http://stackoverflow.com/questions/884497/database-tables-for-entries-of-another-table 0 Database tables for entries of another table? Daddy Warbox 2009-05-19T19:07:56Z 2009-05-19T20:11:55Z <p>I'm designing a new revision of my Java application (using an embedded H2 database) around a redesign of the way I'll be handling my data. Here's how I have it planned:</p> <ul> <li>Entries table- <ul> <li>Entry ID</li> <li>Entry name</li> </ul></li> <li>Properties table- <ul> <li>Property ID</li> <li>Property name</li> </ul></li> <li>(Individual property) value table- <ul> <li>Value ID</li> <li>Entry ID</li> <li>(Value columns...)</li> </ul></li> <li>(Individual entry) value table- <ul> <li>Property name</li> <li>(Individual property) value ID</li> </ul></li> </ul> <p>Each entry can have multiple properties (including multiple properties of the same type). Each property has its own way of storing its values. I need to look up all properties defined for a given entry, and maybe all entries for each given property.</p> <p>Is this a good way to do it?</p> <p><strong>Edit:</strong> I'm not sure I explained it well...</p> http://stackoverflow.com/questions/860086/java-problem-need-a-sorted-jlist-to-represent-a-database-table 0 Java problem: Need a sorted JList to represent a database table Daddy Warbox 2009-05-13T19:57:31Z 2009-05-13T20:18:07Z <p>I've found a <a href="http://java.sun.com/developer/technicalArticles/J2SE/Desktop/sorted%5Fjlist/" rel="nofollow">sample</a> for a sorted JList, but my application is powered by an embedded H2 database so I'm wondering if there isn't a better way to implement this with that in mind. Especially considering the table in question could become enormously large, and duplicating all that data in a JList's list model seems to kinda defeat the point of having a database to manage it.</p> <p>Is there a good way to do this? Or am I forced to cobble together some clumsy hack to allow the JList to "scroll" through dynamically queried chunks of data or something?</p> http://stackoverflow.com/questions/749641/trying-to-wrap-my-wee-brain-around-how-threads-deadlock 1 Trying to wrap my wee brain around how threads deadlock... Daddy Warbox 2009-04-14T22:49:41Z 2009-04-15T01:59:59Z <p>First, <a href="http://java.sun.com/docs/books/tutorial/essential/concurrency/deadlock.html" rel="nofollow">here's a sample</a>:</p> <pre><code>public class Deadlock { static class Friend { private final String name; public Friend(String name) { this.name = name; } public String getName() { return this.name; } public synchronized void bow(Friend bower) { System.out.format("%s: %s has bowed to me!%n", this.name, bower.getName()); bower.bowBack(this); } public synchronized void bowBack(Friend bower) { System.out.format("%s: %s has bowed back to me!%n", this.name, bower.getName()); } } public static void main(String[] args) { final Friend alphonse = new Friend("Alphonse"); final Friend gaston = new Friend("Gaston"); new Thread(new Runnable() { public void run() { alphonse.bow(gaston); } }).start(); new Thread(new Runnable() { public void run() { gaston.bow(alphonse); } }).start(); } } </code></pre> <p>What I don't get is <em>how</em> the blockage occurs. The main function initiates two threads that each begin their own bows.</p> <p>What exactly does 'synchronized' block? The same function running for the same object (as I originally thought)? The same function for all objects of the same class? All synchronized functions for the same object? All synchronized functions for all objects of the same class?</p> <p>Help me out here.</p> http://stackoverflow.com/questions/696542/quick-swing-question-need-to-shut-down-my-database-on-close 1 Quick Swing question: Need to shut down my database on close Daddy Warbox 2009-03-30T09:21:29Z 2009-03-30T11:24:53Z <p>I've been building a test application that works with a database that up until recently has been without a UI. I'm adding one now. Problem is, the JFrame is launched in another thread and I need my database connection to close when that thread closes (when the UI closes, I should say). How do I do this?</p> <p>Also, what happens to the application's database connection (in this case an embedded database) if the application crashes or is forcefully closed? I hear that unclosed connections cause resource leaks. Anything I can do to clean up if this happens?</p> http://stackoverflow.com/questions/692363/quick-sql-question-correct-syntax-for-creating-a-table-with-a-primary-key-in-h2 0 Quick SQL question: Correct syntax for creating a table with a primary key in H2? Daddy Warbox 2009-03-28T06:59:04Z 2009-03-28T07:14:37Z <p>I'm currently starting a new Java application using the <a href="http://www.h2database.com/html/main.html" rel="nofollow">H2 database</a>, but I have some confusion about basic SQL use for creating tables. How do I make a table of entries (strings) each with unique, auto-incrementing, non-null, integer primary keys? One of the most basic things to do, but I'm not sure offhand what the correct way to do it with H2 is.</p> <p>I blame these for my confusion (specifies more than one way of doing the same thing between different databases; can't figure the right way for H2, though): <a href="http://www.w3schools.com/Sql/sql_primarykey.asp" rel="nofollow">http://www.w3schools.com/Sql/sql_primarykey.asp</a> <a href="http://www.w3schools.com/Sql/sql_autoincrement.asp" rel="nofollow">http://www.w3schools.com/Sql/sql_autoincrement.asp</a></p> http://stackoverflow.com/questions/672635/help-me-turn-these-data-structures-into-database-tables 0 Help me turn these data structures into database tables Daddy Warbox 2009-03-23T09:11:01Z 2009-03-23T09:36:22Z <p><strike>It's been a while since I've last tinkered with databases, and as usually my mind has slipped on what I need to do. Here's me problem:</p> <ol> <li>I have a list of entries (strings).</li> <li>Each entry has its own name and unique ID.</li> <li>Entries can share names, but not IDs.</li> <li>Entries can also have properties (strings).</li> <li>Entries can have more than one of the same property.</li> <li>Each property for each entry can have its own value (string).</li> </ol> <p>What's the best table layout for those requirements?</strike></p> <p>Okay dumb question. Thanks anyway for the help. :P</p> http://stackoverflow.com/questions/624186/what-can-i-do-to-prevent-write-write-conflicts-on-a-wiki-style-website/648649#648649 1 Answer by Daddy Warbox for What can I do to prevent write-write conflicts on a wiki-style website? Daddy Warbox 2009-03-15T22:12:50Z 2009-03-15T22:23:34Z <p>As Ravi (and others) have said, you could use an AJAX approach and inform the user when another change is in progress. When an edit is submitted, just indicate the textual differences and let the second user work out how to merge the two versions.</p> <p>However, I'd like to add on with something new you could try in addition to that: Open a chat dialog between the editors while they're doing their edits. You could use something like embedded <a href="http://www.gabbly.com/" rel="nofollow">Gabbly</a> for that, for instance. <br />&nbsp; <br />&nbsp; <br /> The best conflict resolution is direct dialog, I say.</p> http://stackoverflow.com/questions/572574/need-a-good-way-to-manage-my-projects-task-lists-and-information 2 Need a good way to manage my projects' task lists and information Daddy Warbox 2009-02-21T07:13:53Z 2009-02-21T08:28:03Z <p>My old system involved using Microsoft FrontPage and a frame page. The top frame contained a (tree) list of the tasks and sub-tasks I'd need to do, while the bottom frame contained any useful project information, notes, etc. I'd invariably need to jot down. I used bookmarks in the page to mark major tasks while highlighting current tasks with bold and marking off finished ones with italic. I would use a third frame for navigating between bookmarks via. a Table of Contents of hyperlinks linking to them. It was pretty clumsy, but it worked nicely.</p> <p>Obviously, I want to upgrade now. Any good ideas on how to get a new system in place that can do something similar to my old one (without the crudeness/clumsiness)? That is, a formal piece of software for that purpose?</p> http://stackoverflow.com/questions/1183870/javascript-question-problem-with-calling-an-objects-methods/1183880#1183880 Comment by Daddy Warbox on Javascript question: Problem with calling an objects methods Daddy Warbox 2009-07-26T06:27:08Z 2009-07-26T06:27:08Z Ah. Indeed it is happening in a callback function for a custom event handler I built. What a pain. http://stackoverflow.com/questions/1119976/simple-css-problem-title-text-on-upper-left-button-on-the-upper-right/1120036#1120036 Comment by Daddy Warbox on Simple CSS problem: Title text on upper left, Button on the upper right Daddy Warbox 2009-07-13T15:13:10Z 2009-07-13T15:13:10Z Ugh I feel dumb now. Okay for some reason this obvious method worked and my previous monkeying didn't. Go figure. http://stackoverflow.com/questions/1085090/javascript-question-reseting-mouse-hover-for-an-element Comment by Daddy Warbox on Javascript question: Reseting mouse hover for an element Daddy Warbox 2009-07-06T01:56:01Z 2009-07-06T01:56:01Z I might have worded it poorly, but I shouldn't think I need to provide code samples for this. I'm just asking if there's a function that resets hover for an element (since otherwise the event cannot reactivate until the mouse leaves the element). http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected/1067543#1067543 Comment by Daddy Warbox on Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T07:05:23Z 2009-07-01T07:05:23Z Oh wait you're right. This only blocks the second click. http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected/1067543#1067543 Comment by Daddy Warbox on Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T07:02:29Z 2009-07-01T07:02:29Z <a href="http://jsbin.com/iyoxe" rel="nofollow">jsbin.com/iyoxe</a> Is it? http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected/1067543#1067543 Comment by Daddy Warbox on Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T06:55:32Z 2009-07-01T06:55:32Z <a href="http://jsbin.com/efowa" rel="nofollow">jsbin.com/efowa</a> http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected/1067543#1067543 Comment by Daddy Warbox on Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T06:40:40Z 2009-07-01T06:40:40Z Well the only difference it isn't doesn't wait 500 milliseconds before each click like yours is. At least, supposedly. Still wrestling with my application getting mine to work properly (having to debug an unrelated problem, first). http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected/1067484#1067484 Comment by Daddy Warbox on Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T06:17:43Z 2009-07-01T06:17:43Z Actually, couldn't I simply block subsequent single click events during the double-click duration? I think that'd solve the delay problem. http://stackoverflow.com/questions/1067464/need-to-cancel-click-mouseup-events-when-double-click-event-detected/1067484#1067484 Comment by Daddy Warbox on Need to cancel click/mouseup events when double-click event detected Daddy Warbox 2009-07-01T06:11:19Z 2009-07-01T06:11:19Z Well it appears to work, but it has the distinct problem of not detecting regular clicks for .5 seconds. I could shorten the time, of course, but... oh well. I'll figure this out then myself. Thanks anyway. http://stackoverflow.com/questions/1067306/quick-jquery-question-stopping-event-propagation Comment by Daddy Warbox on Quick jQuery question: Stopping event propagation? Daddy Warbox 2009-07-01T05:42:13Z 2009-07-01T05:42:13Z Meh. Now it's available here too. :P http://stackoverflow.com/questions/1067306/quick-jquery-question-stopping-event-propagation/1067310#1067310 Comment by Daddy Warbox on Quick jQuery question: Stopping event propagation? Daddy Warbox 2009-07-01T04:47:41Z 2009-07-01T04:47:41Z Okay thanks. I'm just plowing through code here ATM so I'm getting lazy about looking stuff up in the docs. :P http://stackoverflow.com/questions/1067218/quick-jquery-question-whats-the-way-to-get-all-elements-of-a-queried-set-except/1067230#1067230 Comment by Daddy Warbox on Quick jQuery question: What's the way to get all elements of a queried set EXCEPT the first? Daddy Warbox 2009-07-01T04:11:24Z 2009-07-01T04:11:24Z Oh okay. I was thinking I recalled the .not function as inverting the selection or something... :P http://stackoverflow.com/questions/1056562/simple-javascript-question-how-do-i-prevent-scrolling-with-arrow-keys-but-not-th Comment by Daddy Warbox on Simple Javascript question: How do I prevent scrolling with arrow keys but NOT the mouse? Daddy Warbox 2009-06-29T22:33:34Z 2009-06-29T22:33:34Z It is. My web application is an editor; not a formal webpage. http://stackoverflow.com/questions/1056713/javascript-question-detecting-children-currently-in-view-within-an-overflow-au/1056750#1056750 Comment by Daddy Warbox on Javascript question: Detecting children currently in view within an 'overflow: auto;' parent element? Daddy Warbox 2009-06-29T06:19:33Z 2009-06-29T06:19:33Z Says it's depreciated, though. http://stackoverflow.com/questions/1056562/simple-javascript-question-how-do-i-prevent-scrolling-with-arrow-keys-but-not-th/1056631#1056631 Comment by Daddy Warbox on Simple Javascript question: How do I prevent scrolling with arrow keys but NOT the mouse? Daddy Warbox 2009-06-29T05:11:02Z 2009-06-29T05:11:02Z Yay! Thanks a lot.