User recursive - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T15:51:11Zhttp://stackoverflow.com/feeds/user/44743http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1896819/linq-comparison-updating-values/1896851#18968511Answer by recursive for LINQ- comparison & updating valuesrecursive2009-12-13T15:39:02Z2009-12-13T15:39:02Z<p>The <code>GetHashCode()</code> method should use the the <code>obj</code> passed instance, not its own parent.</p>
http://stackoverflow.com/questions/1896811/c-strange-problem-with-stopwatch-and-a-foreach-loop/1896824#18968240Answer by recursive for C# *Strange* problem with StopWatch and a foreach looprecursive2009-12-13T15:29:51Z2009-12-13T15:29:51Z<p>The first code example doesn't output anything until all the options have been iterated while the second one outputs a time after the first option has been processed. If there are multiple options, you would expect to see such a difference.</p>
http://stackoverflow.com/questions/1888702/are-there-problems-that-cannot-be-written-using-tail-recursion/1888899#18888990Answer by recursive for Are there problems that cannot be written using tail recursion?recursive2009-12-11T15:41:28Z2009-12-11T15:41:28Z<p>I don't think something like <a href="http://en.wikipedia.org/wiki/Tak%5F%28function%29" rel="nofollow">tak</a> could be implemented using only tail calls. (not allowing continuations)</p>
http://stackoverflow.com/questions/1888220/which-hash-function-is-currently-a-good-choice-for-passwords/1888243#18882430Answer by recursive for Which hash function is currently a good choice for passwords?recursive2009-12-11T13:58:43Z2009-12-11T13:58:43Z<p>A keyed hash such as SHA256 HMAC would be a good option to prevent brute force attacks if your data store is compromised.</p>
http://stackoverflow.com/questions/1883648/is-it-reasonable-to-catch-an-exception-based-on-the-message/1883682#18836820Answer by recursive for Is it reasonable to catch an exception based on the message?recursive2009-12-10T20:12:35Z2009-12-10T20:12:35Z<p>You'll probably have to do it this way. But I would really suggest thinking about your design. This seems like a symptom of a questionable design.</p>
<pre><code>try {
// your code
}
catch (ArgumentException ex) {
if (ex.Message != "An item with the same key has already been added") throw;
// handle your case
}
</code></pre>
http://stackoverflow.com/questions/1883328/linq-working-with-datacontext/1883387#18833876Answer by recursive for Linq Working with DataContextrecursive2009-12-10T19:30:11Z2009-12-10T19:30:11Z<h2>1.</h2>
<ul>
<li><p><a href="http://msdn.microsoft.com/en-us/library/9eekhta0.aspx" rel="nofollow"><code>IEnumerable<></code></a> is an interface that
applies to any collection whose
members can be enumerated or iterated
over.</p></li>
<li><p><a href="http://msdn.microsoft.com/en-us/library/bb351562.aspx" rel="nofollow"><code>IQueryable<></code></a> is a LINQ interface
that applies to any collection whose
members can be lazily queried.
(queried without materializing the
result set until its members are
accessed)</p></li>
<li><p><a href="http://msdn.microsoft.com/en-us/library/bb358844.aspx" rel="nofollow"><code>Table<></code></a> is a class that I've
not used before but "represents a
table for a particular type in the
underlying database."</p></li>
</ul>
<p>Which one you choose depends on what your needs are, but <code>IEnumerable<></code> is the most general, so I would use that in my type declarations if it's sufficient.</p>
<h2>2.</h2>
<p>To insert a person use <code>InsertOnSubmit()</code>:</p>
<pre><code>Person person = new Person() { ... };
PersonDB.Persons.InsertOnSubmit(person);
PersonDB.SubmitChanges();
</code></pre>
http://stackoverflow.com/questions/1874592/pep8-80-characters-big-strings/1874620#18746203Answer by recursive for PEP8 - 80 Characters - Big Stringsrecursive2009-12-09T15:24:01Z2009-12-09T15:24:01Z<p>Backslash:</p>
<pre><code>s = "this is my really, really, really, really, really, really" + \
"really long string that I'd like to shorten."
</code></pre>
<p>or wrap in parens:</p>
<pre><code>s = ("this is my really, really, really, really, really, really" +
"really long string that I'd like to shorten.")
</code></pre>
http://stackoverflow.com/questions/1862945/running-a-method-within-another-method-python/1862972#18629721Answer by recursive for running a method within another method. pythonrecursive2009-12-07T21:21:56Z2009-12-07T21:21:56Z<p><code>mnDialog</code> is a local variable in <code>mnProgRun</code>. It is not accessible outside the function scope. If you want it to be, define it at the appropriate scope.</p>
<blockquote>
<p>(i didn't have the impression that python has a global and local variable declaration.)</p>
</blockquote>
<p>You have the wrong impression.</p>
http://stackoverflow.com/questions/1862598/what-is-the-definition-of-in-vb/1862616#186261612Answer by recursive for What is the definition of ":=" in vbrecursive2009-12-07T20:19:08Z2009-12-07T20:19:08Z<p>They are <a href="http://www.dreamincode.net/forums/showtopic92202.htm" rel="nofollow">named parameters</a>. They let you specify values for arguments in function calls by name rather than order.</p>
http://stackoverflow.com/questions/1817656/compiling-time-of-first-page-load/1817664#18176640Answer by recursive for Compiling time of first page loadrecursive2009-11-30T03:08:43Z2009-11-30T03:08:43Z<p>You can precompile your app by deploying from VS Professional, or using the command line asp.net <a href="http://msdn.microsoft.com/en-us/library/ms229863%28VS.80%29.aspx" rel="nofollow">compiler</a>. </p>
http://stackoverflow.com/questions/1794506/c-switch-statement-question/1794524#17945240Answer by recursive for c# switch statement questionrecursive2009-11-25T03:59:30Z2009-11-25T03:59:30Z<p>It's possible to do both. The syntax is this: (you're close)</p>
<pre><code>switch(someInt)
{
case 1:
// some code
break;
case 2:
// some code
break;
case 3:
// some code
break;
default:
// code for "else" case
break;
}
or is it possible to do something like the following:
switch(someInt)
{
case 1:
case 3:
case 5:
// some code
break;
}
</code></pre>
<p>Note the colons and <code>break</code>s.</p>
<p>As for the use of magic numbers, in general, I prefer to put literals in constants, but I make exceptions for glaringly obvious numbers such as the lowest number to check for factor divisibility is 2.</p>
http://stackoverflow.com/questions/1791174/sql-with-table-name-as-parameter-and-query-longer-than-4000-characters/1791183#17911832Answer by recursive for SQL with table name as parameter and query longer than 4000 charactersrecursive2009-11-24T16:25:56Z2009-11-24T16:25:56Z<p>Extract some of your logic into views or user defined functions.</p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/1784368#17843680Answer by recursive for Interview question: f(f(n)) == -nrecursive2009-11-23T16:41:25Z2009-11-23T16:41:25Z<p>Python 2.6:</p>
<pre><code>f = lambda n: (n % 2 * n or -n) + (n > 0) - (n < 0)
</code></pre>
<p>I realize this adds nothing to the discussion, but I can't resist.</p>
http://stackoverflow.com/questions/523194/parallel-iteration-in-c0Parallel iteration in C#?recursive2009-02-07T05:19:02Z2009-11-22T07:27:37Z
<p>Is there a way to do <code>foreach</code> style iteration over parallel enumerables in C#? For subscriptable lists, I know one could use a regular <code>for</code> loop iterating an int over the index range, but I really prefer <code>foreach</code> to <code>for</code> for a number of reasons.</p>
<p>Bonus points if it works in C# 2.0</p>
http://stackoverflow.com/questions/1777800/in-c-is-it-possible-to-cast-a-listchild-to-listparent/1777802#17778028Answer by recursive for In C#, is it possible to cast a List<Child> to List<Parent>?recursive2009-11-22T04:23:43Z2009-11-22T04:23:43Z<p>Using LINQ:</p>
<pre><code>List<Parent> parentList = childList.Cast<Parent>().ToList();
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/bb341406.aspx" rel="nofollow">Documentation for <code>Cast<>()</code></a></p>
http://stackoverflow.com/questions/1767114/linqtosql-insertonsubmit-memory-leak0LinqToSql InsertOnSubmit memory leak?recursive2009-11-19T22:44:52Z2009-11-20T16:25:22Z
<p>I am trying to isolate the source of a "memory leak" in my C# application. This application copies a large number of potentially large files into records in a database using the <code>image</code> column type in SQL Server. I am using a <code>LinqToSql</code> and associated objects for all database access.</p>
<p>The main loop iterates over a list of files and inserts. After removing much boilerplate and error handling, it looks like this:</p>
<pre><code>foreach (Document doc in ImportDocs) {
using (var dc = new DocumentClassesDataContext(connection)) {
byte[] contents = File.ReadAllBytes(doc.FileName);
DocumentSubmission submission = new DocumentSubmission() {
Content = contents,
// other fields
};
dc.DocumentSubmissions.InsertOnSubmit(submission); // (A)
dc.SubmitChanges(); // (B)
}
}
</code></pre>
<p>Running this program over the entire input results in an eventual <code>OutOfMemoryException</code>. CLR Profiler reveals that 99% of the heap consists of large <code>byte[]</code> objects corresponding to the sizes of the files.</p>
<p>If I comment both lines A and B, this leak goes away. If I uncomment only line A, the leak comes back. I don't understand how this is possible, as <code>dc</code> is disposed for every iteration of the loop. </p>
<p>Has anyone encountered this before? I suspect directly calling stored procedures or doing inserts will avoid this leak, but I'd like to understand this before trying something else. What is going on?</p>
<h2>Update</h2>
<p>Including <code>GC.Collect();</code> after line (B) appears to make no significant change to any case. This does not surprise me much, as CLR Profiler was showing a good number of GC events without explicitly inducing them.</p>
http://stackoverflow.com/questions/1767114/linqtosql-insertonsubmit-memory-leak/1771628#17716280Answer by recursive for LinqToSql InsertOnSubmit memory leak?recursive2009-11-20T16:25:22Z2009-11-20T16:25:22Z<p>I don't entirely understand why, but making a copy of the iterating variable fixed it. As near as I can tell, LinqToSql was somehow making a copy of the DocumentSubmission inside each Document.</p>
<pre><code>foreach (Document doc in ImportDocs) {
// make copy of doc that lives inside loop scope
Document copydoc = new Document() {
field1 = doc.field1,
field2 = doc.field2,
// complete copy
};
using (var dc = new DocumentClassesDataContext(connection)) {
byte[] contents = File.ReadAllBytes(copydoc.FileName);
DocumentSubmission submission = new DocumentSubmission() {
Content = contents,
// other fields
};
dc.DocumentSubmissions.InsertOnSubmit(submission); // (A)
dc.SubmitChanges(); // (B)
}
}
</code></pre>
http://stackoverflow.com/questions/1759154/c-string-parsing-to-variable-types/1759174#17591740Answer by recursive for C# string Parsing to variable typesrecursive2009-11-18T21:22:46Z2009-11-18T21:22:46Z<p>You can do this with a series of <code>.TryParse()</code> if blocks, but you won't be able to do much with it, since this method will have to return type <code>object</code>. So at the call site, you'll just have to attempt to cast it before doing any arithmetic or anything anyway.</p>
http://stackoverflow.com/questions/1752350/generally-a-good-idea-to-always-hash-unique-identifiers-in-url/1752386#17523861Answer by recursive for Generally a Good Idea to Always Hash Unique Identifiers in URL?recursive2009-11-17T22:40:03Z2009-11-17T22:40:03Z<p>My opinion is that if something is on the web, and is served without requiring authorization, it was put with the intention that it should be publicly accessible. Actively trying to make it more difficult to access seems counter-intuitive.</p>
http://stackoverflow.com/questions/1745048/is-there-a-simple-way-to-create-a-unique-integer-key-from-a-two-integer-composite/1745064#174506414Answer by recursive for Is there a simple way to create a unique integer key from a two-integer composite key?recursive2009-11-16T21:46:08Z2009-11-16T21:46:08Z<p>You can mathematically prove this is impossible if you want the resulting key to comprise the same number of bits as its two components. However, if you start with two 32 bit ints, and can use a 64 bit int for the result, you could obviously do something like this:</p>
<pre><code>key1 << 32 | key2
</code></pre>
http://stackoverflow.com/questions/1701222/overusing-cint/1701230#17012304Answer by recursive for Overusing CInt?recursive2009-11-09T14:19:41Z2009-11-09T14:19:41Z<p>Integer literals are already integer type, as are arithmetic operations on integers. The two expressions are equivalent.</p>
http://stackoverflow.com/questions/1700936/sql-join-optimalization-get-rid-of-union/1701019#17010191Answer by recursive for SQL join optimalization (get rid of UNION) recursive2009-11-09T13:34:44Z2009-11-09T13:51:31Z<p>Could you post a rough description of what this is supposed to to do? This query is very difficult to work with without knowing what it's supposed to be doing though. The basic approach to combining these will be to use explicit joins in the from clause like so:</p>
<pre><code> from
linc.systwodb_ptico a
INNER JOIN linc.systwodb_ptlfo b ON a.int_tabno = b.int_tabno
LEFT OUTER JOIN linc.systwodb_baso c ON -- some kind of horrible mess here
</code></pre>
<p>Note the left outer join for <code>systwodb_baso</code>. That's the key point for eliminating the other query. That will ensure there is a row in the result set even if there is no matching record from <code>systwodb_baso</code>.</p>
<h2>Update:</h2>
<p>In order to eliminate null values from the outer join, use the <code>COALESCE</code> function:</p>
<pre><code>select a.prodt_cde,
b.ccy,
a.int_tabno,
b.start_dn,
b.end_dn,
b.frte_term,
b.base_id,
b.ptvar,
COALESCE(c.base_rate, 0) AS base_rate,
COALESCE(c.desc_shnm, ' ') AS desc_shnm,
COALESCE(c.rel_day, 0) AS rel_day
</code></pre>
http://stackoverflow.com/questions/1694295/jquery-background-color-animate-not-working/1694304#16943042Answer by recursive for JQuery background color animate not workingrecursive2009-11-07T20:27:44Z2009-11-07T20:27:44Z<p>I believe you also need <a href="http://plugins.jquery.com/project/color" rel="nofollow">JQuery Color Animations</a>.</p>
http://stackoverflow.com/questions/1668532/what-does-mean-in-tsql/1668540#16685401Answer by recursive for What does =+ mean in (T)SQL?recursive2009-11-03T16:39:34Z2009-11-03T16:39:34Z<p>What type is <code>@parameter</code>? This probably just a unary plus, (as opposed to minus). For numeric types this has no effect.</p>
http://stackoverflow.com/questions/1667557/is-there-an-easy-way-to-populate-an-html-table-with-sql-in-asp-net-2-0/1667572#16675720Answer by recursive for Is there an easy way to populate an HTML table with SQL in ASP.NET 2.0?recursive2009-11-03T14:15:45Z2009-11-03T14:15:45Z<p>It's not clear whether your data series are in rows or columns, but the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater.aspx" rel="nofollow"><code>Repeater</code></a> is close to what you want, if your records are in rows.</p>
http://stackoverflow.com/questions/1658871/pretending-net-strings-are-value-type/1658886#16588863Answer by recursive for Pretending .NET strings are value typerecursive2009-11-02T00:20:55Z2009-11-02T00:20:55Z<p>The only distinction that really matters for most code is the fact that <code>null</code> can be assigned to string variables.</p>
http://stackoverflow.com/questions/1652800/does-codegolf-make-a-better-programmer-or-is-it-even-useful/1652832#16528323Answer by recursive for Does codegolf make a better programmer - or is it even useful?recursive2009-10-30T23:47:48Z2009-10-30T23:47:48Z<p>It can be useful to learn new unorthodox techniques. Other than that, it's just for fun. It might actually make you a worse programmer.</p>
http://stackoverflow.com/questions/1636379/why-db-indexes-use-balanced-trees-not-hashtables/1644184#16441842Answer by recursive for Why DB indexes use balanced trees, not hashtables?recursive2009-10-29T14:36:17Z2009-10-29T14:36:17Z<p>Hash tables provide no benefit for this case:</p>
<pre><code>SELECT * FROM MyTable WHERE Val BETWEEN 10000 AND 12000
</code></pre>
http://stackoverflow.com/questions/1637628/create-database-using-file-in-default-path0CREATE DATABASE using file in default pathrecursive2009-10-28T14:31:25Z2009-10-28T14:52:56Z
<p>I want to create an SQL script that creates a database. Right now, I have this:</p>
<pre><code>CREATE DATABASE [Documents] ON PRIMARY
( NAME = N'Documents', FILENAME = N'Documents.mdf')
LOG ON
( NAME = N'Documents_log', FILENAME = N'Documents_log.ldf')
COLLATE SQL_Latin1_General_CP1_CI_AS
</code></pre>
<p>However, this generates the following error:</p>
<pre><code>Msg 5105, Level 16, State 2, Line 2
A file activation error occurred. The physical file name 'Documents.mdf' may be incorrect. Diagnose and correct additional errors, and retry the operation.
Msg 1802, Level 16, State 1, Line 2
CREATE DATABASE failed. Some file names listed could not be created. Check related errors.
</code></pre>
<p>I know the problem is that I did not specify fully qualified path for the filenames. But I want to be able to run this script regardless of the directory structure of the database server. Is there some way to use a default path?</p>
http://stackoverflow.com/questions/1637036/why-if-hashcode-method-is-implemented-equals-methods-must-also-be-implemented-in/1637047#16370474Answer by recursive for Why if hashCode method is implemented, equals methods must also be implemented in case of keys in Dictionary the datatype?recursive2009-10-28T12:45:30Z2009-10-28T12:45:30Z<p>Just because hash codes are equal does not mean that the underlying objects are equal. There are a limited number of possible hash codes, so there are bound to be collisions. You should implement a robust <code>.Equals()</code> so that you can actually test for equality.</p>
http://stackoverflow.com/questions/1896819/linq-comparison-updating-values/1896851#1896851Comment by recursive on LINQ- comparison & updating valuesrecursive2009-12-13T17:26:34Z2009-12-13T17:26:34Zerr, probably return obj.GetHashCode();
http://stackoverflow.com/questions/1897099/ruby-on-rails-page-header-going-as-text-javascript-when-it-is-not-supposed-toComment by recursive on (Ruby on Rails) Page header going as text/javascript, when it is not supposed torecursive2009-12-13T17:25:43Z2009-12-13T17:25:43ZIs it accessible online anywhere? Sounds like it may be a MIME type issue, but I don't have enough info to say.http://stackoverflow.com/questions/1896811/c-strange-problem-with-stopwatch-and-a-foreach-loop/1896824#1896824Comment by recursive on C# *Strange* problem with StopWatch and a foreach looprecursive2009-12-13T15:42:31Z2009-12-13T15:42:31ZWhat type is options? foreach will create an enumerator that will need to be disposed. The disposal may burn some cpu cycles.http://stackoverflow.com/questions/1890227/concept-check-any-lossless-data-compression-can-be-defeated-right/1890252#1890252Comment by recursive on Concept check: any lossless data compression can be "defeated', right?recursive2009-12-11T19:15:41Z2009-12-11T19:15:41ZTheoretically it's not necessary for anything to be larger. But we can guarantee that there are inputs that are at least as large.http://stackoverflow.com/questions/1888910/how-to-sort-arrays-in-dictionary/1889092#1889092Comment by recursive on How to Sort Arrays in Dictionary?recursive2009-12-11T17:15:00Z2009-12-11T17:15:00ZDatabases incur much overhead.http://stackoverflow.com/questions/1884845/does-subversion-really-require-activepythonComment by recursive on Does Subversion *Really* Require ActivePython?recursive2009-12-10T23:33:56Z2009-12-10T23:33:56ZWhere do you see this listed?http://stackoverflow.com/questions/58640/great-programming-quotes/151182#151182Comment by recursive on Great programming quotesrecursive2009-12-10T23:04:31Z2009-12-10T23:04:31Z... define knowinghttp://stackoverflow.com/questions/1884269/css-list-strange-behaviourComment by recursive on CSS List strange behaviourrecursive2009-12-10T21:47:18Z2009-12-10T21:47:18ZI fixed the indentation level, but the images are broken.http://stackoverflow.com/questions/1884222/algorithm-to-swim-like-a-fish-in-cComment by recursive on Algorithm to swim like a fish in c#recursive2009-12-10T21:41:03Z2009-12-10T21:41:03ZI don't have an answer, but I doubt this question has much to do with artificial intelligence.http://stackoverflow.com/questions/1883852/classic-ado-and-table-valued-parameters-in-stored-procedure/1883891#1883891Comment by recursive on Classic ADO and Table-Valued Parameters in Stored Procedurerecursive2009-12-10T20:46:40Z2009-12-10T20:46:40ZQuestion asked for classic ADO. I think this is pre-.NET.http://stackoverflow.com/questions/1883648/is-it-reasonable-to-catch-an-exception-based-on-the-message/1883682#1883682Comment by recursive on Is it reasonable to catch an exception based on the message?recursive2009-12-10T20:17:00Z2009-12-10T20:17:00ZI agree. I wouldn't use this approach.http://stackoverflow.com/questions/101174/is-there-a-zip-like-method-in-netComment by recursive on Is there a zip-like method in .Net?recursive2009-12-09T15:21:18Z2009-12-09T15:21:18ZAllen: zip() is an expression. Your alternative is a block of code.http://stackoverflow.com/questions/1862778/how-to-create-components-labels-on-the-fly-or-how-to-create-facebook-hotmail/1862793#1862793Comment by recursive on How to create components (labels) on the fly? (or how to create facebook/hotmail-style to add contacts to message)recursive2009-12-07T21:18:20Z2009-12-07T21:18:20ZThen you should probably use a BulletedList control.http://stackoverflow.com/questions/1862593/constant-abuse/1862619#1862619Comment by recursive on Constant abuse?recursive2009-12-07T20:26:31Z2009-12-07T20:26:31ZI use == instead of .Equals for strings. For maximum readability.http://stackoverflow.com/questions/1862598/what-is-the-definition-of-in-vb/1862615#1862615Comment by recursive on What is the definition of ":=" in vbrecursive2009-12-07T20:19:50Z2009-12-07T20:19:50ZThis doesn't declare a variable in the current scope. The only place the value is accessible is in the called method.