User cdeszaq - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:54:15Z http://stackoverflow.com/feeds/user/20770 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1268373/how-do-you-fix-a-bug-you-cant-replicate 9 How do you fix a bug you can't replicate? cdeszaq 2009-08-12T19:56:50Z 2009-11-02T01:50:18Z <p>The question says it all. If you have a bug that multiple users report, but there is no record of the bug occurring in the log, nor can the bug be repeated, no matter how hard you try, how do you fix it? Or even can you?</p> <p>I am sure this has happened to many of you out there. What did you do in this situation, and what was the final outcome?</p> <p><hr /></p> <p>Edit: I am more interested in what was done about an <em>unfindable</em> bug, not an unresolvable bug. Unresolvable bugs are such that you at least know that there is a problem and have a starting point, in most cases, for searching for it. In the case of an unfindable one, what do you do? Can you even do anything at all?</p> http://stackoverflow.com/questions/1500611/when-to-use-a-key-value-data-store-vs-a-more-traditional-relational-db 4 When to use a key-value data store vs. a more traditional relational DB? cdeszaq 2009-09-30T20:55:23Z 2009-10-01T06:02:03Z <p>When would one choose a key-value data store over a relational DB? What considerations go into deciding one or the other? When is mix of both the best route? Please provide examples if you can.</p> http://stackoverflow.com/questions/1487821/how-can-i-get-an-image-to-stick-to-the-bottom-of-a-div-as-the-height-of-the-div-c 2 How can I get an image to stick to the bottom of a div as the height of the div changes? cdeszaq 2009-09-28T15:52:29Z 2009-09-28T20:03:28Z <p>I have a div, with an image that needs to be stuck to the bottom-right corner. This is easily done with:</p> <pre><code>#div1 { position: relative; } #div1 img { position: absolute; bottom: 0; right: 0; } </code></pre> <p>However, the height of the div changes dynamically as pieces of a series of nested lists show and hide themselves on hover events. When the height of the div changes, the image remains where it was placed when the page loaded. How can I get the image to move with the bottom of the div as it shifts up and down?</p> http://stackoverflow.com/questions/1379340/what-is-the-resource-impact-from-normalizing-a-database 3 What is the resource impact from normalizing a database? cdeszaq 2009-09-04T13:39:47Z 2009-09-22T14:27:45Z <p>When taking a database from a relatively un-normalized form and normalizing it, what, if any, <em>changes</em> in resource utilization might one expect?</p> <p>For example, normalization often means more tables get created from fewer which means the database now has a higher number of tables, but many of them are quite small, allowing the often used ones to fit into memory better.</p> <p>The higher number of tables also means that more joins are needed (potentially) to get at the data that was abstracted out, so one would expect some sort of impact from the higher number of joins the system needs to do.</p> <p>So, what impact on resource usage (ie. what will change) does normalizing an un-normalized database have?</p> <p><hr /></p> <p>Edit: To add a bit of context, I have an existing (ie. legacy) database with over 300 horrible tables. About 1/2 of the data is TEXT and the other half is either char fields or integers. There are no constraints of any kind. The reason I ask is primarily to get more information for convincing others that things need to change and that there won't be a decrease in performance or maintainability. Unfortunately, those I have to convince know just enough about the performance benefits of a de-normalized database to want to avoid normalization as much as possible.</p> http://stackoverflow.com/questions/1454489/how-do-i-indent-multiple-lines-at-once-in-notepad 0 How do I indent multiple lines at once in Notepad++? cdeszaq 2009-09-21T13:23:29Z 2009-09-21T13:58:11Z <p>In many text editors that are aimed at programmers, if the user has a selection that spans more than 1 line and presses the TAB key, those lines are indented by 1 TAB (or a number of spaces, depending on how the editor is configured).</p> <p>However, this does not seem to be the default behavior of Notepad++. Is there a way I can do this in Notepad++, or is there a plugin that I can get to allow me to do this?</p> <p>Edit: Upon additional testing, shift-tab correctly un-indents the lines as expected, but only a tab simply inserts a tab wherever the carat is. This is in version 5.4.5 Unicode</p> http://stackoverflow.com/questions/1454489/how-do-i-indent-multiple-lines-at-once-in-notepad/1454638#1454638 0 Answer by cdeszaq for How do I indent multiple lines at once in Notepad++? cdeszaq 2009-09-21T13:55:34Z 2009-09-21T13:55:34Z <p>The problem was with the QuickText plugin. After removing it, indent worked as normal.</p> http://stackoverflow.com/questions/230997/how-can-i-convert-an-existing-website-deployed-to-multiple-servers-to-be-svn-ma 0 How can I convert an existing website, deployed to multiple servers, to be SVN managed and not blow away user files? cdeszaq 2008-10-23T19:01:12Z 2009-09-21T13:31:11Z <p>I have an existing website that uses the same code base, but is deployed in a number of different configurations on different servers. Each configuration has a set of users, and they can upload personal files. The files are stored in an "uploaded files" directory on each server, and this directory is stuck in right next to the code that runs the site.</p> <p>I am trying to bring the codebase into Subversion so we can manage things better, and also use SVN to make deployment easier as well, however, on each server the user files will be different. I understand that the best way to handle this would be to store the user files elsewhere, but at this point, that isn't an option. </p> <p>So, with that in mind, how can I use Subversion in light of this situation?</p> http://stackoverflow.com/questions/230997/how-can-i-convert-an-existing-website-deployed-to-multiple-servers-to-be-svn-ma/1454521#1454521 0 Answer by cdeszaq for How can I convert an existing website, deployed to multiple servers, to be SVN managed and not blow away user files? cdeszaq 2009-09-21T13:31:11Z 2009-09-21T13:31:11Z <p>Here is the method I eventually used:</p> <p>I checked everything in on the development server, including the user files there. This allows for the entire dev server to be checked out so everyone has the same batch of code.</p> <p>Then, for servers other than the dev server, I copy away the user files that were on the server, do a clean checkout, "un-check out" the directory with the user files by updating that directory to revision and removing it from the Working copy, and then copying the original files from that server back in.</p> <p>This seems to work well, and while it isn't ideal, it hasn't caused any problems yet because Subversion just sees those files as unversioned.</p> <p>Also, for config files, we did go with appending .template to those small number of files.</p> http://stackoverflow.com/questions/638700/how-scaleable-really-is-a-web-services-based-architecture 1 How scaleable really is a web-services based architecture? cdeszaq 2009-03-12T13:51:18Z 2009-09-21T13:25:07Z <p>Whenever someone talks about a services-based architecture, they often mention scalability, often in the same breath. However, it seems that using services adds more overhead, rather than reducing it, since there is now a protocol, like SOAP or REST, involved. So, does a web services based architecture really add performance benefits as the number of users of, say, a web application, scales by perhaps an order of magnitude? Or are the scalability requirements simply offloaded onto the services, rather than the core application?</p> http://stackoverflow.com/questions/1367658/is-merging-a-merge-back-a-problem-in-subversion 4 Is merging a merge back a problem in subversion? cdeszaq 2009-09-02T13:20:29Z 2009-09-02T19:54:17Z <p>Here's the situation: On a particular branch, some changes have been merged in <em>from</em> the trunk, and also changes to the branch have been merged back <em>into</em> the trunk.</p> <p>The question I have is this: What, if anything, does the merge management in Subversion do if I try to merge back <em>into</em> the trunk from the branch a revision that was in itself just a merge <em>from</em> the trunk to the branch?</p> <p>Will this cause problems? If so, what sorts? Or should this be a perfectly fine thing to do?</p> <p>Or does the new merge just treat those changes like any other and simply try to apply them?</p> http://stackoverflow.com/questions/1289142/is-there-a-tool-to-view-merged-revisions-in-subversion 4 Is there a tool to view merged revisions in Subversion? cdeszaq 2009-08-17T16:54:56Z 2009-08-19T07:50:35Z <p>Are there any tools out there, free or otherwise, that will show, in a graphical fashion, merges from one branch into another? What I have in mind would be similar to TortoiseSVN's revision graph, but with additional notation and lines to indicate merges from one line of development into another. </p> <p>If such tools exist, which do you prefer and why?</p> http://stackoverflow.com/questions/1267799/how-would-you-interpret-these-dates/1267816#1267816 0 Answer by cdeszaq for How would you interpret these dates? cdeszaq 2009-08-12T18:16:11Z 2009-08-12T18:16:11Z <p>This tuesday is the next tuesday after today, so on a tuesday, the next tuesday is 1 week away</p> <p>Similarly, "Next Wednesday" works the same way.</p> http://stackoverflow.com/questions/798896/performance-differences-running-php-under-windows-iis-7-vs-linux-apache 0 Performance differences running PHP under Windows/IIS 7 vs. Linux/Apache? cdeszaq 2009-04-28T16:55:15Z 2009-07-16T13:01:46Z <p>There is a PHP application right now on a Linux box running under Apache with MySQL. Since we are a windows shop, management wants to get rid of the Linux box and move everything over to windows. Is there a performance difference between the two platforms? Or, is there any significant difference at all, in terms of performance or management?</p> http://stackoverflow.com/questions/440892/how-to-output-an-excel-xls-file-from-classic-asp 2 How to output an Excel *.xls file from classic ASP cdeszaq 2009-01-13T21:38:40Z 2009-07-15T01:51:15Z <p>I have a number of generated html tables that I need to output as an Excel file. The site is codded in classic ASP. Is this possible? Could it be done by somehow using the Open Office libraries?</p> <p><hr /></p> <p>EDIT: Thus far, I have tried some of the suggestions, but it seems to fail. Ideally, I want the user to be able to click a link that will begin the download of a .xls file. This code:</p> <pre><code>&lt;%@ Language=VBScript %&gt; &lt;% option explicit Response.ContentType = "application/vnd.ms-excel" Response.AppendHeader "content-disposition", " filename=excelTest.xls" %&gt; &lt;table&gt; &lt;tr&gt; &lt;th&gt;Test Col 1&lt;/th&gt; &lt;th&gt;Test Col 2&lt;/th&gt; &lt;th&gt;Test Col 3&lt;/th&gt; &lt;th colspan="2"&gt;Test Col 4&lt;/th&gt; &lt;th&gt;Test Col 6&lt;/th&gt; &lt;th&gt;Test Col 7&lt;/th&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Data&lt;/td&gt; &lt;td&gt;Data&lt;/td&gt; &lt;td&gt;Data&lt;/td&gt; &lt;td&gt;Data&lt;/td&gt; &lt;td&gt;Data&lt;/td&gt; &lt;td&gt;Data&lt;/td&gt; &lt;td&gt;Data&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>seems to fail when IE7 is used to get the page. IE says that it "cannot download excelTest.asp" and that "The requested site is either unavailable or cannot be found."</p> http://stackoverflow.com/questions/1014884/how-can-i-determine-the-bottle-neck-on-page-load 1 How can I determine the bottle neck on page load? cdeszaq 2009-06-18T20:03:30Z 2009-06-19T13:12:50Z <p>I have a page that uses jQuery UI, and calls the datepicker on 2 different text boxes. Without the calls, ie. just loading the page without attaching any datepickers, the page loads in 1.20 seconds. With the datepickers attached, the page loads in 3.92 seconds. (this is in firefox)</p> <p>How can I get this speed up? Based on the network graph in Firebug, it isn't a network problem, but it seems to line in the datepicker attachments. Is there a way to speed this up?</p> <p>Also, the behavior is only seen in Firefox 3.0.11. Chrome is quick and zippy, and so is IE7.</p> http://stackoverflow.com/questions/1014884/how-can-i-determine-the-bottle-neck-on-page-load/1017899#1017899 1 Answer by cdeszaq for How can I determine the bottle neck on page load? cdeszaq 2009-06-19T13:12:50Z 2009-06-19T13:12:50Z <p>dfa had it correct in the comments to my main post. The problem was Firebug. I guess it just didn't play nicely with the datepicker loading. Once firebug got turned off, page load times were around .5 seconds, right where they should be.</p> http://stackoverflow.com/questions/387685/can-an-old-exported-set-of-files-be-compared-to-a-subversion-repository 1 Can an old exported set of files be compared to a subversion repository? cdeszaq 2008-12-22T22:58:22Z 2009-05-22T16:37:37Z <p>Here is the problem: We have all of our development under subversion, but our beta versions are just mish-mashed bits of exported files that were not all put there at the same time. Or, to put it another way, we make our changes to versioned files, and then when we think we are happy, we manually export them by simply copying them to a different directory.</p> <p>Well, we would like to have the whole works managed by Subversion, with the beta version as a simple working copy of the head of the trunk. I know that I can start with the trunk head, and simply roll back specific areas until I reach the same files, but it would be nice to know what revision each file needs to get rolled back to.</p> <p>Does such a tool, that will take a set of files/directories and compare it to a repository, giving revision numbers for each file/directory, exist? If not, how would I go about putting a script together to do this?</p> http://stackoverflow.com/questions/650654/what-are-some-good-resources-for-designing-a-web-services-based-architecture-that 3 What are some good resources for designing a web-services based architecture that can scale well? cdeszaq 2009-03-16T14:27:12Z 2009-05-13T16:41:35Z <p>I have a web application that currently has about 500,000 users, averaging about 500 page views per hour, and we are expecting to have to scale up to 20,000,000 users within the next year. </p> <p>Our current system cannot handle that scale, and so we need to move to one that can. </p> <p>I was thinking a services-based architecture would be more robust and allow for the component services to be scaled independently of each other and the main application. </p> <p>But I have been warned that one can easily design a services architecture that doesn't scale well, and since I have little to no experience designing such a system, going through some recommended resources is probably better than just "taking a stab at it."</p> <p>So, what resources are recommended for architecting a well-scaling system? The platform is .Net, but I would imagine that the same information applies to any service-based architecture, regardless of platform.</p> http://stackoverflow.com/questions/830814/sql-server-non-standard-date-based-histogram 2 SQL Server Non-Standard Date Based Histogram cdeszaq 2009-05-06T17:42:10Z 2009-05-06T19:00:20Z <p>I have user login data with timestamps and what I would like to do is get a histogram of logins by year, but with the year starting at an arbitrary date. For example, I want the following sort of information:</p> <pre><code>1 May 2005 - 30 Apr 2006 | 525 1 May 2006 - 30 Apr 2007 | 673 1 May 2007 - 30 Apr 2008 | 892 1 May 2006 - 30 Apr 2009 | 1047 </code></pre> <p>The labels in the first column are not important, but the date ranges are. I know I can break it down by strait years with:</p> <pre><code>SELECT YEAR([date]) AS [year], COUNT(*) AS cnt FROM logins GROUP BY YEAR([date]) ORDER BY [year] </code></pre> <p>But that doesn't give me the data ranges I want. How can this be done?</p> http://stackoverflow.com/questions/826033/which-should-one-code-first-functionality-or-validity-checks 4 Which should one code first, functionality or validity checks? cdeszaq 2009-05-05T17:28:11Z 2009-05-05T22:10:10Z <p>When coding up, say, a registration form from scratch, does it make sense to get it functioning with the expected inputs first, and then go back and catch/handle the unexpected inputs and deal with errors?</p> <p>The alternative would be to process the input, checking any constraints and insuring that they are handled properly, and then dealing with getting the typical use case functioning correctly.</p> <p>Is one way preferable to the other, and if so why? Also, is there an alternate way to go about this sort of 2-part task?</p> <p><strong>To clarify</strong>, by validity, I mean more than just data validation, including business rules, such as "No more than X people can register for this event"</p> http://stackoverflow.com/questions/825661/prevent-form-spam-with-the-session/825736#825736 0 Answer by cdeszaq for Prevent Form spam with the session cdeszaq 2009-05-05T16:25:42Z 2009-05-05T16:25:42Z <p>Session objects can, depending on implementation, be relatively heavy in terms of resource usage, as well as somewhat slow. Additionally, the spammer, if they realize how you are blocking them, can simply start a new session every time they hit the form by not sending back the session cookie.</p> <p>So, because that technique relies on the client to behave nicely, and the expected behavior is fairly easy to prevent, it is possibly less useful than some other ways to solve the problem.</p> http://stackoverflow.com/questions/821399/use-css-to-make-an-image-scale-up-and-down/821408#821408 -1 Answer by cdeszaq for Use CSS to make an image scale up and down cdeszaq 2009-05-04T18:58:21Z 2009-05-04T19:05:05Z <p>No. Css cannot be used to scale an images at this point. An tag can do it, so you could emulate whatever css effect you are looking for with some img tags and a bit of javascript, but CSS alone cannot do it.</p> http://stackoverflow.com/questions/769804/what-tools-are-available-for-producing-graphical-representation-of-models-and-con/821435#821435 0 Answer by cdeszaq for What tools are available for producing graphical representation of models and concepts? cdeszaq 2009-05-04T19:02:37Z 2009-05-04T19:02:37Z <p>Since you didn't specify the medium of use or delivery, I've always found white board diagrams to be the most effective at getting concepts across. They are quite cheap, with no licencing costs, and are highly flexible.</p> http://stackoverflow.com/questions/821204/best-books-blogs-link-reading-about-ai-and-machine-learning/821296#821296 3 Answer by cdeszaq for Best books, blogs, link, reading about AI and machine learning. cdeszaq 2009-05-04T18:26:40Z 2009-05-04T18:26:40Z <p><a href="http://www.cs.cmu.edu/~tom/mlbook.html" rel="nofollow">Machine Learning by Tom Mitchell</a> is a bit on the older side, but almost everything in there is still just as applicable now as it was in the 80's. AI is the sort of field where a good, broad understanding of core concepts is needed in order to be able to work with the more advanced/cutting edge things.</p> <p>The book also goes over a bunch of good experimental methodology stuff as it relates to AI so you can test how well your algorithms work.</p> http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/821282#821282 0 Answer by cdeszaq for Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? cdeszaq 2009-05-04T18:21:45Z 2009-05-04T18:21:45Z <p>Bugzilla has the notion of dependent bugs, which isn't exactly the sub-task paradigm you are looking for, but can be viewed as close. Unfortunately, the interface for this is quite clunky, as is the rest of the Bugzilla interface, but it does get the job done.</p> <p>On the positive side, the relationships among bugs can be presented as a graph as well as a fairly easy-to-traverse tree structure to allow for exploring related issues. Additionally, as sub-issues are completed or change, those changes get percolated up the dependency tree so that those responsible for the higher-level tasks are easily notified that things they may have been waiting on are completed.</p> http://stackoverflow.com/questions/794577/possible-to-implement-a-manual-increment-with-just-simple-sql-insert 0 Possible to implement a manual increment with just simple SQL INSERT? cdeszaq 2009-04-27T18:04:20Z 2009-04-27T19:00:55Z <p>I have a primary key that I don't want to auto increment (for various reasons) and so I'm looking for a way to simply increment that field when I INSERT. By simply, I mean without stored procedures and without triggers, so just a series of SQL commands (preferably one command).</p> <p>Here is what I have tried thus far:</p> <pre><code>BEGIN TRAN INSERT INTO Table1(id, data_field) VALUES ( (SELECT (MAX(id) + 1) FROM Table1), '[blob of data]'); COMMIT TRAN; * Data abstracted to use generic names and identifiers </code></pre> <p>However, when executed, the command errors, saying that </p> <blockquote> <p>"Subqueries are not allowed in this context. only scalar expressions are allowed"</p> </blockquote> <p>So, how can I do this/what am I doing wrong?</p> <p><hr /></p> <p>EDIT: Since it was pointed out as a consideration, the table to be inserted into is guaranteed to have at least 1 row already.</p> http://stackoverflow.com/questions/278914/semantic-value-of-span 3 Semantic value of span cdeszaq 2008-11-10T19:38:17Z 2009-04-07T16:23:46Z <p>The span element would seem to be exactly like a div, but at the in-line level rather than at the block level, however I can't seem to think of any beneficial logical divisions that the span element can provide. A single sentence, or word if not contained in a sentence, seems to be the smallest logical part. Ignoring CSS, since that will give the semantic meaning, when does span provide additional semantic value by chopping up a sentence or string of words? It seems that in all cases, other elements are better suited to adding semantic value, making span a purely layout element. Is this true?</p> http://stackoverflow.com/questions/710179/how-can-i-select-distinct-rows-when-a-text-field-is-part-of-the-returned-fields-i 0 How can I select distinct rows when a text field is part of the returned fields in MS SQL Server 2000? cdeszaq 2009-04-02T15:21:12Z 2009-04-02T16:07:39Z <p>I have a database-driven FAQ that is organised into sections and I am trying to get the section data for only those sections who have a question/answer associated with them.</p> <p>Here is the schema:</p> <pre><code>|---------------------| |----------------------| | Section | | Quest-Ans | |---------------------| |----------------------| | PK | id(int) |&lt;--| | PK | id(int) | | | title(varchar) | |--| FK | Sec_id(int) | | | desc(text) | | | body(text) | |---------------------| |----------------------| </code></pre> <p>When I try this query:</p> <pre><code>SELECT DISTINCT s.id, s.title, s.desc FROM Section as s INNER JOIN Quest-Ans as q ON s.id = q.Sec_id </code></pre> <p>I get an error saying that DISCRETE cannot be applied to a text field. How can I get the data I want?</p> <p>If it matters, this is an SQL2000 database.</p> <p>EDIT:</p> <p><hr /></p> <p>Ok, so it seems like there are two ways to go about this. Either with EXISTS and a subquery in the where clause, or with the subquery in the inner join. Which is faster?</p> http://stackoverflow.com/questions/706858/what-information-is-ok-to-store-in-cookies 3 What information is OK to store in cookies? cdeszaq 2009-04-01T18:42:14Z 2009-04-01T20:38:17Z <p>When thinking about security and user experience, what information id OK, acceptable, or even a <strong>good idea</strong> to store in a cookie?</p> <p>EDIT:</p> <p><hr /></p> <p>With the understanding that sensitive info, like user names, passwords, SSN, credit card numbers don't belong there, what <strong>does</strong>?</p> http://stackoverflow.com/questions/706712/what-is-the-speed-difference-between-database-and-web-service-calls 1 What is the Speed Difference Between Database and Web Service Calls? cdeszaq 2009-04-01T18:04:26Z 2009-04-01T19:08:40Z <p>All things being equal, and in the most simple form, which is faster? <br /> 1.) A call to a web service method <br /> 2.) A call to a database</p> <p>For example, assume that you have a simple web service that just returns an integer that is calculated in X time. You also have a database that, when queried in th right way, also takes X time to calculate the answer. (So the <strong>compute time is the same in both cases</strong>) In both cases, assume the amount of data both directions is the same, say, a single 32-bit integer, for simplicity.</p> <p>Thus far, the calculation times of both the web service and the database are exactly the same.</p> <p>The environment is 1 application server, where the app resides, and 1 other server that is holding both the web service and the database. There is nothing else going on in the environment other than the application calling either the web service or database repeatedly. <strong>This all within one single LAN</strong>, so any network latency is equal.</p> <p>From an application, which will be faster, the call to the database, or the call to the web service?</p> <p>What I am trying to isolate, I guess, is which is more heavy-weight. Does the set up, open, close, tear down of a database connection end up slower than that for a web service, or is it the same? Additionally, if there are other things, such as parsing the result from a web service, how do they affect the speed?</p> http://stackoverflow.com/questions/848296/i-have-a-database-diagram-in-microsoft-visio-how-can-i-import-it-to-sql-server-20/848353#848353 Comment by cdeszaq on I have a database diagram in Microsoft Visio how can i import it to Sql Server 2005? cdeszaq 2009-10-26T13:20:00Z 2009-10-26T13:20:00Z @netadictos - <a href="http://office.microsoft.com/en-us/visio/HA011496961033.aspx" rel="nofollow">office.microsoft.com/en-us/visio/&hellip;</a> should provide you the info you need about the Enterprise Architect version http://stackoverflow.com/questions/168831/using-database-entries-to-dynamically-create-a-visio-diagram Comment by cdeszaq on Using Database entries to dynamically create a visio diagram cdeszaq 2009-10-26T13:17:05Z 2009-10-26T13:17:05Z Perhaps it would be useful to post the relevant parts of the database schema? http://stackoverflow.com/questions/1487821/how-can-i-get-an-image-to-stick-to-the-bottom-of-a-div-as-the-height-of-the-div-c/1487885#1487885 Comment by cdeszaq on How can I get an image to stick to the bottom of a div as the height of the div changes? cdeszaq 2009-09-28T16:26:55Z 2009-09-28T16:26:55Z You are correct sir, the div that was actually changing was the parent of the div I had the image in, which didn't actually change. When I moved the images out a level, things work as expected. http://stackoverflow.com/questions/4110/what-program-can-i-use-to-generate-diagrams-of-sql-view-table-structure/4126#4126 Comment by cdeszaq on What program can I use to generate diagrams of SQL view/table structure? cdeszaq 2009-09-09T14:02:25Z 2009-09-09T14:02:25Z Link is broken. Can now be found here: <a href="http://www.embarcadero.com/products/er-studio" rel="nofollow">embarcadero.com/products/er-studio</a> http://stackoverflow.com/questions/1379340/what-is-the-resource-impact-from-normalizing-a-database Comment by cdeszaq on What is the resource impact from normalizing a database? cdeszaq 2009-09-04T14:37:39Z 2009-09-04T14:37:39Z @GmonC - Yes, that is a great post, but I want to know how the resource usage will <i>change</i> from an unnormalized to a normalized version of the same database. http://stackoverflow.com/questions/1379340/what-is-the-resource-impact-from-normalizing-a-database/1379557#1379557 Comment by cdeszaq on What is the resource impact from normalizing a database? cdeszaq 2009-09-04T14:36:35Z 2009-09-04T14:36:35Z I can indeed think of other names for this database, and yes, it is an <i>unnormalized</i> database, as you say. Thank you for the clarification. http://stackoverflow.com/questions/1289142/is-there-a-tool-to-view-merged-revisions-in-subversion/1298380#1298380 Comment by cdeszaq on Is there a tool to view merged revisions in Subversion? cdeszaq 2009-08-19T15:24:24Z 2009-08-19T15:24:24Z Is there a free version of your tool? I could not determine that from the site. http://stackoverflow.com/questions/1289142/is-there-a-tool-to-view-merged-revisions-in-subversion/1297472#1297472 Comment by cdeszaq on Is there a tool to view merged revisions in Subversion? cdeszaq 2009-08-19T15:23:50Z 2009-08-19T15:23:50Z This looks like what I am after, with a bit of tweaking, I think I can get it to work. If you have any more info on it, please share! I will post my results once I have some, good or bad. http://stackoverflow.com/questions/1014884/how-can-i-determine-the-bottle-neck-on-page-load Comment by cdeszaq on How can I determine the bottle neck on page load? cdeszaq 2009-06-19T13:11:31Z 2009-06-19T13:11:31Z That was exactly it! If only I could accept a comment as the answer! http://stackoverflow.com/questions/1014884/how-can-i-determine-the-bottle-neck-on-page-load/1015068#1015068 Comment by cdeszaq on How can I determine the bottle neck on page load? cdeszaq 2009-06-18T20:41:44Z 2009-06-18T20:41:44Z YSlow doesn't profile the code execution, only the stuff being loaded. The load isn't the problem, it is something that the datepicker attachment is doing, because the slowdown is only there after DOMLoad. http://stackoverflow.com/questions/839145/php4-on-linux-dev-on-windows-subversion-problem/839235#839235 Comment by cdeszaq on PHP4 on Linux, Dev on Windows... Subversion problem cdeszaq 2009-05-18T13:01:54Z 2009-05-18T13:01:54Z I think the working copy is what is being shared via samba, not the repo itself http://stackoverflow.com/questions/835648/all-possible-values-of-int-from-the-smallest-to-the-largest-using-java/835724#835724 Comment by cdeszaq on All possible values of int from the smallest to the largest, using Java. cdeszaq 2009-05-07T17:00:55Z 2009-05-07T17:00:55Z Way too much work, and includes additional libraries. http://stackoverflow.com/questions/835648/all-possible-values-of-int-from-the-smallest-to-the-largest-using-java/835841#835841 Comment by cdeszaq on All possible values of int from the smallest to the largest, using Java. cdeszaq 2009-05-07T17:00:08Z 2009-05-07T17:00:08Z How would that loop forever? A long will not overflow with Integer.MAX_VALUE + 1. Its a long, not an int. http://stackoverflow.com/questions/835648/all-possible-values-of-int-from-the-smallest-to-the-largest-using-java/835841#835841 Comment by cdeszaq on All possible values of int from the smallest to the largest, using Java. cdeszaq 2009-05-07T16:58:59Z 2009-05-07T16:58:59Z Nicely done. 32 bits is nothing, especially on a 64bit architecture where, depending on the VM, you would just waste more memory. http://stackoverflow.com/questions/830814/sql-server-non-standard-date-based-histogram/830837#830837 Comment by cdeszaq on SQL Server Non-Standard Date Based Histogram cdeszaq 2009-05-06T18:43:18Z 2009-05-06T18:43:18Z The interval was being incorrectly applied in the 2008 leap year, missing by 1 day, putting the ending interval 1 day short. I am guessing that the '+' operator on dates does not correctly handle leap years. The DATEADD function does seem to though.