User Dana - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:29:29Zhttp://stackoverflow.com/feeds/user/7856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1645673/how-convert-list-of-int-to-list-of-tuples/1645725#16457250Answer by Dana for how convert list of int to list of tuplesDana2009-10-29T18:37:35Z2009-10-29T18:37:35Z<p>You can do:</p>
<pre><code>l2 = []
for y in range(0, len(l1), 2):
l2.append((l1[y], l1[y+1]))
</code></pre>
<p>I'm not doing any checks to make sure l1 has an even number of entries and such-like.</p>
http://stackoverflow.com/questions/1645657/vb-net-index-out-of-range/1645690#16456901Answer by Dana for vb.net: index out of rangeDana2009-10-29T18:32:02Z2009-10-29T18:32:02Z<p>If I understand your code, you're trying to add elements to the ArrayList. I think you'd want to use the Add() method. So something like:</p>
<pre><code>For Each s In split2
extreme_foods.Add(s)
Next
</code></pre>
<p>I'm assuming that split2 is a Collection you've created somewhere else in your code.</p>
http://stackoverflow.com/questions/1645615/what-is-the-use-of-brainfuck/1645637#16456375Answer by Dana for What Is The Use Of BrainfuckDana2009-10-29T18:20:49Z2009-10-29T18:20:49Z<p>To challenge yourself!</p>
<p>There are a bunch of languages -- Malboge, Brainf*ck, Whitespace, Unlambda -- where the goal is to make even simple coding tasks a brain-stretching challenge.</p>
http://stackoverflow.com/questions/1643974/ironpython-compiler-version-at-runtime/1644066#16440664Answer by Dana for IronPython compiler version at runtimeDana2009-10-29T14:19:43Z2009-10-29T14:19:43Z<p>You can find out the current version via the <a href="http://docs.python.org/library/sys.html" rel="nofollow">sys</a> module:</p>
<pre><code>>>> import sys
>>> sys.version
'2.4.0 (IronPython 1.1.2 (1.1.2) on .NET 2.0.50727.3603)'
</code></pre>
http://stackoverflow.com/questions/489720/what-are-some-common-uses-for-python-decorators24What are some common uses for Python decorators?Dana2009-01-28T22:35:02Z2009-10-26T07:29:50Z
<p>While I like to think of myself as a reasonably competent Python coder, one aspect of the language I've never been able to grok is decorators.</p>
<p>I know what they are (superficially), I've read tutorials, examples, questions on Stack Overflow, and I understand the syntax, can write my own, occasionally use @classmethod and @staticmethod, but it never occurs to me to use a decorator to solve a problem in my own Python code. I never encounter a problem where I think, "Hmm...this looks like a job for a decorator!"</p>
<p>So, I'm wondering if you guys might offer some examples of where you've used decorators in your own programs, and hopefully I'll have an "A-ha!" moment and <em>get</em> them.</p>
<p><strong>Edit</strong> - lots of good answers guys, thanks! I accepted David Makcenzie's because Bruce Eckel's article kind of clicked for me.</p>
http://stackoverflow.com/questions/64599/net-system-web-mail-vs-system-net-mail5.net: System.Web.Mail vs System.Net.MailDana2008-09-15T16:47:26Z2009-10-20T20:34:09Z
<p>I am considering converting a project that I've inherited from .net 1.1 to .net 2.0. The main warning I'm concerned about is that it wants me to switch from System.Web.Mail to using System.Net.Mail.</p>
<p>I'm not ready to re-write all the components using the obsolete System.Web.Mail, so I'm curious to hear if any community members have had problems using it under .net 2.0?</p>
http://stackoverflow.com/questions/326233/multiple-datakeynames-in-a-gridview2Multiple DataKeyNames in a GridViewDana2008-11-28T17:07:17Z2009-10-16T15:43:33Z
<p>I have a GridView populated from an ObjectDataSource with two items in its DataKeyNames field. One is the primary key, ID, the other is a category field (the category field is used to add header rows to delineate categories).</p>
<p>Displaying works fine, but I'm trying to create a Delete action. The object's delete method only needs the ID field and in the ObjectDataSource even if I define the method as only needing an ID field, .net complains because it is looking for a method which has both the fields defined in DataKeyNames.</p>
<p>It works if I add a parameter for the category to the delete method, but it's annoying to have a parameter defined that isn't used for anything.</p>
<p>Can I configure the ObjectDataSource and GridView objects to have two values for DataKeyNames but specific which would should be passed to which methods?</p>
<p>The (simplified) definitions for the two objects are:</p>
<pre><code><asp:ObjectDataSource ID="ObjDS1" runat="server" SelectMethod="getAllItems"
TypeName="Items" DeleteMethod="deleteItem">
<DeleteParameters>
<asp:Parameter Name="ID" Type="Int32" />
<!-- This shouldn't be necessary: -->
<asp:Parameter Name="Category" Type="String" />
</DeleteParameters>
</asp:ObjectDataSource>
<asp:GridView ID="gvJItems" runat="server" AutoGenerateColumns="False" DataKeyNames="ID,Category"
DataSourceID="ObjDS1">
<Columns>
<asp:BoundField DataField="ID" Visible="false" HeaderText="ID" />
<asp:BoundField DataField="Name" HeaderText="Name" ItemStyle-Width="85%"/>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="lbDelete" Runat="server"
OnClientClick="return confirm('Are you sure you want to delete this?');"
CommandName="Delete">Delete</asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</code></pre>
http://stackoverflow.com/questions/1574912/is-it-possible-to-restrict-the-results-of-an-outer-join/1574938#15749381Answer by Dana for Is it possible to restrict the results of an outer join?Dana2009-10-15T20:45:04Z2009-10-15T20:45:04Z<p>May I suggest:</p>
<pre><code>SELECT columnList FROM Table1 WHERE UserID IN (SELECT UserID FROM Table2)
UNION
SELECT columnList FROM Table1 WHERE UserID IN (SELECT UserID FROM Table3)
</code></pre>
http://stackoverflow.com/questions/1570197/how-to-do-2-update-statements-at-a-time/1570207#15702073Answer by Dana for How to do 2 update statements at a time?Dana2009-10-15T03:54:39Z2009-10-15T03:54:39Z<p>At the same time? If you mean that you want to make sure no other queries affect the table before your queries are done, you're going to want to wrap them in a transaction.</p>
http://stackoverflow.com/questions/1566745/boolean-method-naming-readability/1566792#15667920Answer by Dana for Boolean method naming readabilityDana2009-10-14T14:48:04Z2009-10-14T14:48:04Z<p>In this particular case, the first example is such horrible English that it makes me wince. </p>
<p>I'd probably go for number three because of how it sounds when reading it in if statements. "If user exists" sounds better than "If does user exists".</p>
<p>This is assuming it's going to be to used in if statement tests of course...</p>
http://stackoverflow.com/questions/1540246/sql-join-puzzler/1540331#15403312Answer by Dana for SQL join puzzlerDana2009-10-08T20:44:26Z2009-10-08T20:44:26Z<pre><code> SELECT syms.sym, pt.pricedate, syms.price FROM
(SELECT DISTINCT sym, datestable.priceDate FROM priceTable, datestable) syms
LEFT JOIN priceTable pt on pt.priceDate = syms.priceDate
</code></pre>
<p>should do it.</p>
<p>At least it works under SQL Server.</p>
http://stackoverflow.com/questions/1513727/python-sort-not-working-as-expected/1513736#15137360Answer by Dana for Python .sort() not working as expectedDana2009-10-03T13:26:17Z2009-10-03T13:26:17Z<p>You have your numbers stored as strings, so python is sorting them accordingly. So: '101x' comes before '102x' (the same way that 'abcd' will come before 'az').</p>
http://stackoverflow.com/questions/168931/unit-testing-the-app-config-file-with-nunit5Unit testing the app.config file with NUnitDana2008-10-03T21:10:50Z2009-09-22T22:29:57Z
<p>When you guys are unit testing an application that relies on values from an app.config file? How do you test that those values are read in correctly and how your program reacts to incorrect values entered into a config file?</p>
<p>It would be ridiculous to have to modify the config file for the NUnit app, but I can't read in the values from the app.config I want to test.</p>
<p>Edit: I think I should clarify perhaps. I'm not worried about the ConfigurationManager failing to read the values, but I am concerned with testing how my program reacts to the values read in.</p>
http://stackoverflow.com/questions/174659/calculating-which-tiles-are-lit-in-a-tile-based-game-raytracing/174793#1747939Answer by Dana for Calculating which tiles are lit in a tile-based game ("raytracing")Dana2008-10-06T15:35:42Z2009-09-09T17:53:37Z<p>The roguelike development community has a bit of an obsession with line-of-sight, field-of-view algorithms.</p>
<p>Here's a link to a roguelike wiki article on the subject:
<a href="http://roguebasin.roguelikedevelopment.org/index.php?title=Field%5Fof%5FVision" rel="nofollow">http://roguebasin.roguelikedevelopment.org/index.php?title=Field%5Fof%5FVision</a></p>
<p>For my roguelike game, I implemented a shadow casting algorithm (<a href="http://roguebasin.roguelikedevelopment.org/index.php?title=Shadow%5Fcasting" rel="nofollow">http://roguebasin.roguelikedevelopment.org/index.php?title=Shadow%5Fcasting</a>) in Python. It was a bit complicated to put together, but ran reasonably efficiently (even in pure Python) and generated nice results.</p>
<p>The "Permissive Field of View" seems to be gaining popularity as well:
<a href="http://roguebasin.roguelikedevelopment.org/index.php?title=Permissive%5FField%5Fof%5FView" rel="nofollow">http://roguebasin.roguelikedevelopment.org/index.php?title=Permissive%5FField%5Fof%5FView</a></p>
http://stackoverflow.com/questions/1400078/t-sql-is-it-possible-to-specify-condition-in-count/1400089#14000890Answer by Dana for T-SQL: is it possible to specify condition in Count()?Dana2009-09-09T14:30:19Z2009-09-09T14:30:19Z<p>Do you mean just this:</p>
<pre><code>SELECT Count(*) FROM YourTable WHERE Position = 'Manager'
</code></pre>
<p>If so, then yup that works!</p>
http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha/163061#16306110Answer by Dana for What is your (least) favorite syntax gotcha?Dana2008-10-02T15:38:18Z2009-09-02T22:47:18Z<p>For me, when returning to C or C++ after lots of time in the Java/C# world, I always always forget that class and struct declarations end with a semicolon.</p>
<p>So I do a C# style</p>
<pre><code>class foo {
}
</code></pre>
<p>And scratch my head at the compiler errors.</p>
http://stackoverflow.com/questions/1313694/simple-noob-python-style-question/1313708#13137082Answer by Dana for Simple noob python style question.Dana2009-08-21T19:03:59Z2009-08-21T19:03:59Z<p>There's PEP 8 the Python Style Guide:</p>
<p><a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">http://www.python.org/dev/peps/pep-0008/</a></p>
<p>It suggests the former style, but note the introduction carefully.</p>
<p>I find the latter to be visual nails-on-chalkboard, personally.</p>
http://stackoverflow.com/questions/1300951/start-learning-c-without-knowing-c/1300971#130097113Answer by Dana for Start learning C# without knowing C ?Dana2009-08-19T16:04:49Z2009-08-19T16:04:49Z<p>Sure. C# borrows semantic conventions from C but there's certainly no requirement to learn it.</p>
<p>In fact, you'll skip the phase where you're trying to use C# as though it were C.</p>
http://stackoverflow.com/questions/1295702/setting-an-objective-c-class-property-without-using-a-self-reference1Setting an Objective-C class property without using a self referenceDana2009-08-18T18:35:48Z2009-08-18T18:50:36Z
<p>This morning I ran into a crash in an iPhone app I am working on and while I fixed the bug, I'm curious about syntactic reason it was a problem.</p>
<p>Here is my code reduced to simple elements. I am populating items in a TableView using an NSArray for the items. The NSArray is a property:</p>
<pre><code>@interface FooViewController : UITableViewController {
NSArray *stuff;
}
@property (nonatomic, retain) NSArray *stuff;
</code></pre>
<p>And in my implementation file:</p>
<pre><code>@synthesize stuff;
- (void)viewDidLoad {
NSArray *arr = [[NSArray alloc] initWithObjects:@"", @"Item 1", @"Item 2",
@"Lorem", @"Ipsum", nil];
self.stuff = arr;
[arr release];
}
</code></pre>
<p>Now, when I first wrote the method, I accidentally left off the "self." and that caused the bomb. Although while testing, it worked at first blush. I'd tried:</p>
<pre><code>stuff = arr;
NSLog(@"%d", [stuff count]);
</code></pre>
<p>But using <b>stuff</b> in other methods bombed. Now that I've fixed the problem, I can use [stuff count] in other places. </p>
<p>So why can I use <b>stuff</b> in some places but in others I must use <b>self.stuff</b>?</p>
http://stackoverflow.com/questions/1279451/program-to-corrupt-a-file/1279469#12794692Answer by Dana for Program to corrupt a file?Dana2009-08-14T18:38:00Z2009-08-14T18:38:00Z<p>Are you attempting to test for a partially degraded file?</p>
<p>If you want to test how your program reacts to bad data, why not just use any random text file as input?</p>
http://stackoverflow.com/questions/1274275/sql-value-does-not-populate-asp-dropdownlist-control/1274326#12743260Answer by Dana for SQL value does not populate ASP DropDownList controlDana2009-08-13T20:18:03Z2009-08-13T20:18:03Z<p>If you match the columns selected in your database query with the DataTextField and DataValueField in the definition for your DropDownList, you should just need to do:</p>
<pre><code>DropDownList1.DataSource = theReader;
DropDownList1.DataBind()
</code></pre>
<p>or even</p>
<pre><code>DropDownList1.DataSource = theCommand.ExecuteReader();
</code></pre>
http://stackoverflow.com/questions/1268104/what-is-algorithm-behind-the-recommendation-sites-like-last-fm-grooveshark-pand/1268156#12681563Answer by Dana for What is algorithm behind the recommendation sites like last.fm, grooveshark, pandora?Dana2009-08-12T19:16:28Z2009-08-12T19:16:28Z<p><a href="http://rads.stackoverflow.com/amzn/click/0596529325" rel="nofollow">Programming Collective Intelligence</a> is a nice, approachable introduction to this field.</p>
http://stackoverflow.com/questions/1267154/selecting-a-default-item-when-using-uitableviewcontroller-as-a-checkbox-list0Selecting a default item when using UITableViewController as a checkbox listDana2009-08-12T16:08:06Z2009-08-12T18:58:50Z
<p>In a lot of iPhone apps, I see a UITableViewController being used as a checkbox list. (See, for an example of what I mean, Auto-Lock under Settings)</p>
<p>While trying to implement this myself, I had to jump through a lot of hoops in order to have an item selected programmatically by default (ie., the current value for what the list represents). The best I've been able to come up with is by overriding the viewDidAppear method in my view controller class:</p>
<pre><code>- (void)viewDidAppear:(BOOL)animated {
NSInteger row = 0;
// loop through my list of items to determine the row matching the current setting
for (NSString *item in statusItems) {
if ([item isEqualToString:currentStatus]) {
break;
}
++row;
}
// fetch the array of visible cells, get cell matching my row and set the
// accessory type
NSArray *arr = [self.tableView visibleCells];
NSIndexPath *ip = [self.tableView indexPathForCell:[arr objectAtIndex:row]];
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:ip];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
self.lastIndexPath = ip;
[super viewDidAppear:animated];
}
</code></pre>
<p>Is this the best/only/easiest way to get a reference to a particular cell and indexPath if I want to mark a row by default?</p>
http://stackoverflow.com/questions/334753/darcs-amend-record-workflow1darcs amend-record workflowDana2008-12-02T17:26:37Z2009-07-23T20:33:34Z
<p>It's not uncommon for me to record a patch, pull it into my staging branch and then realize I've done something small and silly like a typo in a logging message, or something similarly trivial which doesn't require (to my mind) a whole new patch.</p>
<p>In these instances, I've been using:</p>
<pre><code>darcs amend-record
</code></pre>
<p>To update the patch. But when I re-pull darcs will treat the patches as conflicting, so I end up having to unrecord and revert the patch in the staging branch, and then pull it again.</p>
<p>Is there a darcs command or option that will allow me to more simply pull an amended patch?</p>
http://stackoverflow.com/questions/1127307/what-is-the-smallest-programming-bug-that-youve-had-and-spent-the-longest-time-o/1127345#11273451Answer by Dana for What is the smallest programming bug that you've had and spent the longest time on?Dana2009-07-14T19:02:03Z2009-07-14T19:02:03Z<p>Back in school, I once spent three days looking for a typo. We were implementing a formula of the form: blah blah blah + 0 and typo-ed capital O instead. Of course, the correct value for O was 0 about 3/4 of the time so I had what looked to me like an occasional, randomly occurring bug.</p>
<p>This is of course is why I now recoil in horror from programming fonts which don't clearly differentiate 0 and O.</p>
http://stackoverflow.com/questions/77172/stored-procedures-db-schema-in-source-control19Stored procedures/DB schema in source controlDana2008-09-16T21:12:35Z2009-06-05T04:51:45Z
<p>Do you guys keep track of stored procedures and database schema in your source control system of choice?</p>
<p>When you make a chance (add a table, update an stored proc, how do you get the changes into source control? </p>
<p>We use SQL Server at work, and I've begun using darcs for versioning, but I'd be curious about general strategies as well as any handy tools.</p>
<p><em>Edit:</em> Wow, thanks for all the great suggestions, guys! I wish I could select more than one "Accepted Answer"!</p>
http://stackoverflow.com/questions/656098/asp-net-requiredfieldvalidator-not-preventing-postback2ASP.net RequiredFieldValidator not preventing postbackDana2009-03-17T21:29:13Z2009-05-11T13:35:37Z
<p>I have a question about what could stop a RequiredFieldValidator from preventing a postback.</p>
<p>I began working on an older, but simple aspx form and my predecessor used manual, server-side form validation (checking to see if some form fields have a value and if not displaying an error message in a label). I thought I'd clean out some unneeded code and replace the manual checking with RequiredFieldValidator controls, but while they appear to be validating, they aren't preventing a postback. Ie., I get my error messages displayed but the postback still occurs. </p>
<p>The form is quite simple and there are no CausesValidation="false" attributes set. My controls look like:</p>
<pre><code> <asp:TextBox ID="txtPhone" Runat="server" Columns="20" MaxLength="20" />
<asp:RequiredFieldValidator ID="rfvPhone" runat="server" Display="Dynamic"
ErrorMessage="* Required" ControlToValidate="txtPhone" />
</code></pre>
<p>I created a brand new webform in the same project with just a single textbox, validator and submit button and it acts the same way. Error message displays but postback still occurs.</p>
<p>Is there a global or project-wide setting that would cause this behaviour? Something in the web.config or global.asax?</p>
http://stackoverflow.com/questions/656098/asp-net-requiredfieldvalidator-not-preventing-postback/656290#6562905Answer by Dana for ASP.net RequiredFieldValidator not preventing postbackDana2009-03-17T22:30:48Z2009-05-11T13:35:37Z<p>Whew. Okay, I found the problem, basically by creating a brand new project and comparing its web.config line-by-line with my old project. Turns out the culprit is this:</p>
<pre><code> <xhtmlConformance mode="Legacy"/>
</code></pre>
<p>If I remove the line, my validation works the way I expected it to. Googling that uncovered a bunch of blog posts about how VisualStudio adds that line to the web.config when upgrading web apps from .net 1.1 to .net 3.5. </p>
<p>The blog posts we remainly complaining about how that field interferes with .net's AJAX stuff, but I'm guessing it messes with the JavaScript emitted for the RequiredFieldValidator in a similar fashion.</p>
http://stackoverflow.com/questions/665012/pointer-type-mismatch-warning-in-example-from-kr-c3Pointer type mismatch warning in example from K&R CDana2009-03-20T04:45:28Z2009-05-08T07:00:10Z
<h3>Duplicate (or near duplicate):</h3>
<p><a href="http://stackoverflow.com/questions/616906/problem-compiling-kr-example/616929">Problem compiling K&R example</a></p>
<p>Lately I have been working my way through the C Programming Language by K&R.</p>
<p>In section 5.11 they cover pointers to functions and after typing in their example -- a quicksort implementation where we provide a pointer to the comparison function we want to use -- I'm getting a warning from the compiler: pointer type mismatch in conditional expression. (My compiler is gcc 4.0.1 on OS X 10.5.6)</p>
<p>The line from the example that triggers the warning is:</p>
<pre><code> qsort((void **) lineptr, 0, nlines-1,
(int (*)(void*, void*))(numeric ? numcmp : strcmp));
</code></pre>
<p>The program executes without segfaulting, but I like to smoosh every warning I can, or at least understand their causes.</p>
<p>The function declaration for numcmp looks like:</p>
<pre><code> int numcmp(char *, char *);
</code></pre>
<p>But according to the manpage, stcmp has this signature:</p>
<pre><code> int strcmp(const char *s1, const char *s2);
</code></pre>
<p>Is the warning simple because of the slightly different method signatures? What are the consequences of ignoring the warning?</p>
http://stackoverflow.com/questions/811400/c-stack-with-deletable-elements/811416#8114161Answer by Dana for C# Stack with deletable elementsDana2009-05-01T13:45:59Z2009-05-01T13:45:59Z<p>Well, any list-like structure can be used as a stack. You just push and pop items off the end. </p>
<p>If you need to delete items in the middle of the stack, you can use the built-in generic List's RemoveAt().</p>
http://stackoverflow.com/questions/1758229/remove-duplicates-from-fileComment by Dana on Remove Duplicates from FileDana2009-11-18T18:56:16Z2009-11-18T18:56:16ZVoted up simply because it's a Cobol questionhttp://stackoverflow.com/questions/1742370/how-to-create-a-symbol-table-in-c-without-hashingComment by Dana on How to create a symbol table in C without hashing?Dana2009-11-16T14:09:05Z2009-11-16T14:09:05ZThis is essentially the same as your other question.http://stackoverflow.com/questions/1701620/how-do-i-pop-up-an-alert-in-javascriptComment by Dana on How do I pop up an alert in Javascript?Dana2009-11-09T15:20:53Z2009-11-09T15:20:53ZI'm thinking deliberate troll?http://stackoverflow.com/questions/1676467/objective-c-simple-setting-property-example-erroring-with-request-for-in-sComment by Dana on Objective-C - simple setting property example erroring with 'request for ___ in something not a structure or union'Dana2009-11-04T20:53:13Z2009-11-04T20:53:13ZMaybe double check your AppDelegate.m? That's the error I get whenever I've forgotten to include the header file the class is defined in.http://stackoverflow.com/questions/1643974/ironpython-compiler-version-at-runtime/1644066#1644066Comment by Dana on IronPython compiler version at runtimeDana2009-10-30T14:00:23Z2009-10-30T14:00:23ZYou could thank me by accepting my answer :Phttp://stackoverflow.com/questions/1647695/best-security-suitComment by Dana on Best Security SuitDana2009-10-30T02:34:43Z2009-10-30T02:34:43ZYou asked the exact same question earlier this evening and it was closed.http://stackoverflow.com/questions/1647666/how-do-i-explain-that-if-xyz-null-checks-are-not-protectiveComment by Dana on how do i explain that if (xyz == null) checks are not "protective". Dana2009-10-30T02:31:40Z2009-10-30T02:31:40ZHmm, voted to reopen after the edits dialed down the tone.http://stackoverflow.com/questions/1645673/how-convert-list-of-int-to-list-of-tuples/1645711#1645711Comment by Dana on how convert list of int to list of tuplesDana2009-10-29T18:36:08Z2009-10-29T18:36:08ZHe asked for the answer in Python :Phttp://stackoverflow.com/questions/1575436/how-to-find-an-ignored-exceptionComment by Dana on How to find an ignored exceptionDana2009-10-15T22:28:41Z2009-10-15T22:28:41ZOh sweet, I didn't know you could do that. You should make that an answer, divo, so I can vote you up!http://stackoverflow.com/questions/1574911/single-dash-phone-number-regex-validationComment by Dana on Single dash phone number - regex validationDana2009-10-15T20:42:49Z2009-10-15T20:42:49ZMaybe post what have you so far?http://stackoverflow.com/questions/1568850/opening-large-24-gb-file-in-cComment by Dana on Opening Large (24 GB) File In CDana2009-10-14T20:54:46Z2009-10-14T20:54:46ZOff topic, but I'm a little surprised all of wikipedia is only 24gigs (including XML overhead)http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1565956#1565956Comment by Dana on Most horrifying line of code you have ever seen?Dana2009-10-14T14:41:38Z2009-10-14T14:41:38ZI recall back in my ColdFusion days, a development methodology called FuseBox was catching on, and they actually recommended this because you never know when you might switch your database to being one that didn't support Identity or Autoincrement columns. <i>sigh</i>http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556739#1556739Comment by Dana on Most horrifying line of code you have ever seen?Dana2009-10-14T14:35:07Z2009-10-14T14:35:07ZUgh. I made the semi-colon typo for the first time ever a couple weeks ago and I was nearly crying by the time I figured out what was wrong.http://stackoverflow.com/questions/1540246/sql-join-puzzler/1540331#1540331Comment by Dana on SQL join puzzlerDana2009-10-08T20:52:35Z2009-10-08T20:52:35ZEhh, it's how I think of cross joins in sql server.http://stackoverflow.com/questions/1540246/sql-join-puzzler/1540289#1540289Comment by Dana on SQL join puzzlerDana2009-10-08T20:42:16Z2009-10-08T20:42:16ZThat'll miss rows where there is no price data for a symbol, if I'm not mistaken.