User Jonathan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:38:22Zhttp://stackoverflow.com/feeds/user/12502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795531/raising-an-event-thread-safely/1795568#17955681Answer by Jonathan for Raising an event thread safelyJonathan2009-11-25T09:04:39Z2009-11-25T09:04:39Z<p>The latter structure will make sure you won't get a null reference exception calling the handler on non-Itanium architectures.</p>
<p>However, it leads to another possible issue -- it's possible for a client that registered an event handler to have the handler called <em>after</em> it's been removed. The only way to prevent that is to serialize raising the event and registering the handler. However, if you do that, you have a potential deadlock situation.</p>
<p>In short, there are three potential classes of ways this can break -- I go with the way you've done it here (and MS recommends) and accept that it is possible for an event handler to get called after it is unregistered.</p>
http://stackoverflow.com/questions/1794964/sql-server-login-failed-for-user-sa-clinet-xxxxxxxxxxxx/1795001#17950011Answer by Jonathan for Sql Server Login failed for user 'sa'. [CLINET: XXX:XXX:XXX:XXX]Jonathan2009-11-25T06:19:40Z2009-11-25T06:19:40Z<p>If those IPs aren't from computers you're expecting to be connecting to SQL Server, you may have accidentally opened the server up to the internet without meaning to (which is likely a security problem).</p>
<p>Make sure you have a firewall of some kind in place to protect the internet at large from connecting to your database server.</p>
http://stackoverflow.com/questions/1767253/log4net-with-net-4-02log4net with .NET 4.0Jonathan2009-11-19T23:13:18Z2009-11-19T23:13:18Z
<p>I've thrown together some code to tinker with the new .Net 4.0/VS 2010 pieces, but I can't seem to find a build of my logging framework of choice (log4net) for 4.0, and I'm getting reference errors with the 2.0 version. Is there a 4.0 version available somewhere? I'm not asking for new features, just a version that's already been rebuilt against the new assemblies. Anyone know where I can find a build of 1.2.10 built for the 4.0 framework?</p>
http://stackoverflow.com/questions/1582593/how-insecure-is-web/1582611#15826111Answer by Jonathan for How insecure is web ?Jonathan2009-10-17T16:34:54Z2009-10-17T16:34:54Z<p>Yes, anyone can create packets with whatever data they want and send them out over the internet. Especially with UDP, you can pretend to be anyone you want (unless your ISP does egress filtering). Source addresses for UDP <em>cannot</em> be trusted. Source addresses for TCP can to an extent (you know the data has to be coming from the IP address in question, or someone along the route).</p>
<p>Welcome to the internet :)</p>
<p>Edit: just to clarify egress filtering is something the <em>sending</em> ISP would have to do. As a reciever, there's not really anything you can do to verify the address on a UDP packet without communicating back to the sender. The only reason you can at least partially trust an incoming TCP connection is that TCP requires certain control data flow back to the sender (and hence needs a valid IP address/port to set the connection up and maintain it).</p>
http://stackoverflow.com/questions/1501091/idictionary-and-connection-retrievestatistics-net-c/1501110#15011102Answer by Jonathan for IDictionary and Connection.RetrieveStatistics .NET/C#Jonathan2009-09-30T23:03:32Z2009-09-30T23:03:32Z<p>Right-click on RetrieveStatistics in your code block in VS and pick 'go to definition' to see how it is defined. My guess is it's a System.Collections.IDictionary, not a System.Collections.Generic.IDictionary<K,V>.</p>
<p>Or, if you're using .NET 3.5 or higher, use var:</p>
<pre><code>var statistics = connection.RetrieveStatistics();
</code></pre>
http://stackoverflow.com/questions/1484478/using-structs-in-c-for-simple-domain-values/1484491#14844914Answer by Jonathan for Using structs in C# for simple domain valuesJonathan2009-09-27T21:10:17Z2009-09-27T21:10:17Z<p><strong>Please</strong> don't use double for money. You'll have to remember to round it for display <em>everywhere</em> you use it at, and you have potential accuracy issues if you divide or multiply by large numbers. Decimal will give overflow errors, double will just lose accuracy. I'm not sure about you, but with money, I'd prefer an error and aborted operation to silently proceeding with a loss of accuracy.</p>
<p>If anything, based on projects I've been on, you may want to consider using a struct that has a decimal and some indication of what currency it is.</p>
http://stackoverflow.com/questions/1403371/dealing-with-multiple-javascript-if-statements/1403380#14033803Answer by Jonathan for Dealing with multiple Javascript IF statements.Jonathan2009-09-10T04:37:01Z2009-09-10T04:37:01Z<p>is this what you're looking for?</p>
<pre><code>if(data == 'valid') {
// block 1
} else if (data == 'concept') {
// block 2
} else {
// block 3
}
</code></pre>
http://stackoverflow.com/questions/1378924/why-am-i-losing-object-references-on-the-postback/1378999#13789990Answer by Jonathan for Why am I losing object references on the postback?Jonathan2009-09-04T12:42:50Z2009-09-04T12:42:50Z<p>Your problem is that 'ProfileField' isn't available on the Postback, right?</p>
<p>The solution is to store the value for that in ViewState (instead of an auto-implemented property). Without that, it won't be available on the postback.</p>
http://stackoverflow.com/questions/1354723/linq-to-entities-why-cant-i-use-split-method-as-condition/1354737#13547377Answer by Jonathan for LINQ to Entities: Why can't I use Split method as condition?Jonathan2009-08-30T19:45:20Z2009-08-30T19:45:20Z<p>Your problem is that LINQ-to-Entites has to translate everything you give it into SQL to send to the database.</p>
<p>If that is really what you need to do, you'll have to force LINQ-to-Entities to pull back all the data and LINQ-to-Objects to evaluate the condition.</p>
<p>Ex:</p>
<pre><code>var aKeyword = "ACT";
var results = from a in db.Activities.ToList()
where a.Keywords.Split(',').Contains(aKeyword) == true
select a;
</code></pre>
<p>Be aware though, that this will pull back all the objects from the Activities table. An alternative may be to let the DB do a bit of an initial filter, and filter down the rest of the way afterwards:</p>
<pre><code>var aKeyword = "ACT";
var results = (from a in db.Activities
where a.Keywords.Contains(aKeyword)
select a).ToList().Where(a => a.KeyWords.Split(',').Contains(aKeyword));
</code></pre>
<p>That will let LINQ-to-Entities do the filter it understands (string.Contains becomes a like query) that will filter down some of the data, then apply the real filter you want via LINQ-to-Objects once you have the objects back. The ToList() call forces LINQ-to-Entities to run the query and build the objects, allowing LINQ-to-Objects to be the engine that does the second part of the query.</p>
http://stackoverflow.com/questions/1332354/an-architecture-question/1332377#13323770Answer by Jonathan for An architecture questionJonathan2009-08-26T04:49:15Z2009-08-26T04:49:15Z<p>One thing I would make sure you look at before you start digging too deep into the optimization process is identifying your bottlenecks. Is it client-side processing, client bandwidth, server bandwidth, or server-side processing. Assuming you're not shipping massive amounts of data around, it's likely server-side processing, but making assumptions like that can get you into trouble on these kinds of things.</p>
http://stackoverflow.com/questions/1315749/changing-the-language-for-subversion-error-messages2Changing the language for Subversion error messagesJonathan2009-08-22T10:56:34Z2009-08-25T21:05:14Z
<p>For some reason, subversion is returning me error messages in what I think is German:</p>
<pre><code># svn up .
svn: Zielpfad existiert nicht
</code></pre>
<p>Unfortunately, I don't know that language... Before I resort to using a online translation engine to work with this, I figured I'd try to fix it. I figure I'm just doing something very simple wrong. I'm running subversion 1.6.4 installed via yum on centos (upgraded from 1.4.something that was having the same problem). This is on a VPS admined with CPanel.</p>
<p>From what I can tell, it's trying to load english messages and failing. I see this in the strace output:</p>
<pre><code>open("/usr/share/locale/en_US/LC_MESSAGES/subversion.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en/LC_MESSAGES/subversion.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
brk(0x4106d000) = 0x4106d000
open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
</code></pre>
<p>Normal SVN commands are in english (svn help, svn help up, etc), just the error messages are in german. For all I know, it's been this way the whole time I've used the machine and I've just never gotten an error message from Subversion...</p>
<pre><code>:: locale
LANG=en_US
LC_CTYPE="en_US"
LC_NUMERIC="en_US"
LC_TIME="en_US"
LC_COLLATE="en_US"
LC_MONETARY="en_US"
LC_MESSAGES=en_US
LC_PAPER="en_US"
LC_NAME="en_US"
LC_ADDRESS="en_US"
LC_TELEPHONE="en_US"
LC_MEASUREMENT="en_US"
LC_IDENTIFICATION="en_US"
LC_ALL=
</code></pre>
<p>I've also run:</p>
<pre><code>export LC_MESSAGES=en_US
export LANG=en_US
</code></pre>
<p>Any ideas what I should be looking at next?</p>
<p>Update:
Based on Phil's suggestion, I've run </p>
<pre><code>export LANG=C
export LC_MESSAGES=C
</code></pre>
<p>and now locale outputs:</p>
<pre><code>LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES=C
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=
</code></pre>
<p>And it still is giving german messages... I'm beginning to think the version of subversion I have was compiled with German messages, and since it's not finding any language-specific message files, I'm getting the built-in German messages. Now to figure out how that happened....</p>
http://stackoverflow.com/questions/1300133/why-cant-you-edit-and-continue-debugging-when-theres-a-lambda-expression-in-the/1300178#13001780Answer by Jonathan for Why can't you edit and continue debugging when there's a Lambda expression in the method?Jonathan2009-08-19T14:05:45Z2009-08-19T14:05:45Z<p>I don't know for sure, but my guess is the complexity around figuring out what needs to change when there are local variables involved that are lifted to classes. I'm guessing that figuring out what changes would be safe and what wouldn't was deemed to complex and error-prone to get right at this point. The tooling in 2010 focused around threading and the new UI -- maybe we'll get it in the next version.</p>
http://stackoverflow.com/questions/1296683/curiosity-why-does-expression-when-compiled-run-faster-than-a-minimal-dynam/1296744#12967440Answer by Jonathan for Curiosity: Why does Expression<...> when compiled run faster than a minimal DynamicMethod?Jonathan2009-08-18T21:51:09Z2009-08-18T21:51:09Z<p>I'm seeing DynamicMethod, Lambda, and Method at very similar times.</p>
<pre><code>DynamicMethod: 870 ms
Lambda: 900 ms
Method: 871 ms
Expression: 522 ms
</code></pre>
<p>Try changing the Debug.WriteLine to Console.WriteLine and running a release build outside of the debugger. That's where you should do anything you care about perf for. Also, you may need to bump up the number of loops so you get to a few seconds of runtime each.</p>
http://stackoverflow.com/questions/1273473/implementing-an-abstract-class-based-on-some-generic-parameters-in-c/1273491#12734911Answer by Jonathan for Implementing an abstract class based on some generic parameters in C#Jonathan2009-08-13T17:39:07Z2009-08-13T17:39:07Z<p>Is it maybe complaining (indirectly) about the missing 'class' keyword in the abstract class declaration?</p>
http://stackoverflow.com/questions/1272339/httpwebrequest-to-server-that-does-not-allow-chunking-does-not-work/1272384#12723840Answer by Jonathan for HttpWebRequest to server that does not allow chunking does not workJonathan2009-08-13T14:40:34Z2009-08-13T14:40:34Z<p>Ah, the classic "changing the behavior by observing it". The problem is that, as you point out, Fiddler does a bunch of buffering and the like itself. One option may be turning HTTPS off (temporarily), and using a passive network sniffing tool like <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a> to see if .NET is obeying the settings you're setting.</p>
http://stackoverflow.com/questions/1269222/redirect-traffic-from-nic-to-another-nic-on-separate-networks-while-using-remotin/1269243#12692430Answer by Jonathan for Redirect Traffic from NIC to Another NIC On Separate Networks While Using RemotingJonathan2009-08-12T23:18:16Z2009-08-12T23:18:16Z<p>So long as the computer's routing table is properly configured, you shouldn't have to worry about this from your application. So long as you're using the proper IP addresses, the networking stack should take care of delivering things to the right place.</p>
<p>You might want to check the output of "route print" (at least I think that was available on WinXp -- if not, someone else will likely post the correct command for XP soon). In any way, you should see what network destinations are configured for which interfaces. You'll need to make sure that the server's IP on the 15 network will properly route via the interface you want (ie. the lowest-cost matching destination/netmask lists your 15 interface).</p>
http://stackoverflow.com/questions/1257825/tinyurl-style-unique-code-potential-algorithm-to-prevent-collisions/1257835#12578350Answer by Jonathan for Tinyurl-style unique code: potential algorithm to prevent collisionsJonathan2009-08-10T23:50:02Z2009-08-10T23:50:02Z<p>My math is a bit rusty, but I think you just need to ensure that the GCF of N and 64 million is 1. I'd go with a prime number (that doesn't divide evenly into 64 million) just in case though.</p>
http://stackoverflow.com/questions/1204599/noticeable-increase-in-programming-ability-or-understanding/1204622#12046225Answer by Jonathan for Noticeable increase in programming ability or understandingJonathan2009-07-30T05:33:05Z2009-07-30T05:33:05Z<p>For me, it was an open-source development class in college. The primary developer of an open-source C web application server came in to talk about some changes he wanted to make to the project, and the class of 6 of us poured a number of hours into it over the semester with some rough guidance from our professor. </p>
<p>Between the 'magic' code the primary developer had written (which lost it's magic qualities as I started to understand it), and the other developers I was working with on the project (yes, I'm looking at you Luke) who pushed at my competitive spirit, that experience is what pushed me from hacking at scripts to actually understanding and writing real, usable applications. That was the time I realized this is what I should be doing.</p>
http://stackoverflow.com/questions/1192004/specific-down-sides-to-many-small-assemblies/1192024#11920243Answer by Jonathan for Specific down-sides to many-'small'-assemblies?Jonathan2009-07-28T05:08:30Z2009-07-28T05:08:30Z<p>There is a slight performance hit to loading each assembly (even more if they are signed), so that's one reason to tend to cluster commonly-used things together in the same assembly. I don't believe there's a big overhead once things are loaded (though there may be some static optimization stuff that the JIT may have a harder time performing when crossing an assembly boundary).</p>
<p>The approach I try to take is this: Namespaces are for the logical organization. Assemblies are to group classes/namespaces that should be physically used together. Ie. if you don't expect to want ClassA and not ClassB (or vice versa), they belong in the same assembly.</p>
http://stackoverflow.com/questions/1185209/do-linq-queries-have-a-lot-of-overhead/1185218#11852181Answer by Jonathan for Do LINQ queries have a lot of overhead?Jonathan2009-07-26T18:34:52Z2009-07-26T18:34:52Z<p>About the only real performance overhead of LINQ-to-objects over doing it yourself are the few extra objects created to help with the enumeration and the function calls. In short, unless you use it in a way it wasn't designed to, it won't hurt your performance unless you're doing very high-perf stuff.</p>
<p>In that case, I'd implement it the LINQ way first, and let your performance testing tell you in which specific places you may need to consider doing it differently. For quite a bit of code, ease of maintenance trumps pure performance.</p>
http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153193#11531933Answer by Jonathan for Fast string comparison with listJonathan2009-07-20T12:10:05Z2009-07-20T12:10:05Z<p>Check out these:</p>
<p><a href="http://blogs.msdn.com/jomo%5Ffisher/archive/2007/03/28/fast-switching-with-linq.aspx" rel="nofollow">Jomo Fisher - Fast Switching with LINQ</a></p>
<p><a href="http://blog.codebeside.org/archive/2008/08/28/staticstringdictionary-fast-switching-with-linq-revisited.aspx" rel="nofollow">Gustavo Guerra - StaticStringDictionary - Fast Switching with LINQ revisited</a></p>
http://stackoverflow.com/questions/1101913/is-there-a-more-efficient-way-to-reconcile-large-data-sets/1101984#11019841Answer by Jonathan for Is there a more efficient way to reconcile large data sets?Jonathan2009-07-09T05:34:22Z2009-07-09T05:34:22Z<p>One option may be to change the in-memory format of your data. If your data is a series of numbers stored as text, storing them as integers in memory may lower your memory footprint.</p>
<p>Another option may be use some kind of external program to sort the rows -- then you can do a simple scan of the two files in-order looking for differences.</p>
<p>Back to your question though, 280mb sounds high for comparing a pair of 100mb files though -- you are only loading one into memory (the smaller one) and just scrolling through the other one, right? As you describe it, I don't think you'll need to have the full contents of both in memory at once.</p>
http://stackoverflow.com/questions/1095599/looking-for-a-net-disk-buffered-stream2Looking for a .Net disk-buffered streamJonathan2009-07-08T00:53:40Z2009-07-08T14:23:02Z
<p>I have an .NET 2.0 web application that is only used as the back-end for a client application that will send it a request with 1-500KB of data, and the server will do some processing on that data, then query a database to build a set of data to return the client -- anywhere from 200KB to 200MB of data. The data may take up to 15 minutes to fully load from the database, and up to an hour to fully transfer to the client (though typical times are quite a bit lower -- 20s query, 10s transmit). However, for some combinations of database query and client, sometimes the DB is faster, sometimes the link to the client is faster.</p>
<p>Clients connect over varying quality of links -- some over a 10MB LAN, some over a shared 64kbps ISDN link. I have four things I want to ensure:</p>
<ol>
<li>Database connection must be held open as short of a period as possible.</li>
<li>Minimal server memory must be used.</li>
<li>Data must be streamed to the client as quickly as possible.</li>
<li>Total duration of the process should be as close to the maximum of the two processes (DB wait time, network transmission time) as possible, rather than the sum of the time of the two processes.</li>
</ol>
<p>So far, we have three modes we can run the code in:</p>
<ol>
<li>As data is fetched from the DB, write it to the response stream.</li>
<li>As data is fetched from the DB, save it in memory. When the DB read is complete, close the DB connection and write the data from memory to the response stream.</li>
<li>As data is fetched from the DB, write it to a temporary file. When the read from the DB is complete, close the DB connection and read from the temp file and write to the response stream.</li>
</ol>
<p>As you could imagine, none of these fully meet our requirements for all the scenarios. We've talked about implementing some code to guess based on some variables which of the three codepaths we should use, but I think there's a more general solution here, and I'm looking for some code/a library that can take care of this for us.</p>
<p>What I'm looking for is something I can wrap around a .NET stream (the output stream) that I can write to from our HttpHandler, and it will handle writing it the data to the underlying stream. If the underlying stream has too much pending data, it is stored in memory and sent later, when it can. Once that in-memory buffer gets too big, it falls back to a temporary file as a buffer. When I try to close the stream, it blocks until all the data has been written to the stream.</p>
<p>Do you know of any code like this I could use as a starting point, or a library that has something like this, or any guidance on things I should watch out for? Or, am I trying to completely over-engineer this solution?</p>
http://stackoverflow.com/questions/1087318/linq-specified-cast-is-not-valid/1087368#10873680Answer by Jonathan for LINQ: Specified Cast is not validJonathan2009-07-06T14:45:31Z2009-07-06T14:45:31Z<p>I've gotten this when I generated the LINQ-to-SQL wrapper with one version of a DB and tried to use it against a different version of the DB. In my case, a column that was defined as short was changed to long, and a value came out of the DB that's not convertible to a long. Make sure your LINQ-to-SQL wrapper and database tables are in sync.</p>
http://stackoverflow.com/questions/1075363/running-an-anycpu-application-as-32bit-on-64-bit-os/1075378#10753784Answer by Jonathan for Running an AnyCPU application as 32bit on 64 bit osJonathan2009-07-02T16:30:50Z2009-07-02T16:30:50Z<p>You can use <a href="http://msdn.microsoft.com/en-us/library/ms164699%28VS.80%29.aspx" rel="nofollow">corflags</a> with the /32bit+ option.</p>
http://stackoverflow.com/questions/1056390/how-to-use-sql-user-defined-functions-in-net/1056402#10564022Answer by Jonathan for How to use SQL user defined functions in .NET?Jonathan2009-06-29T03:07:55Z2009-06-29T04:32:04Z<p>It sounds like the <em>right</em> way in this case is to use the functionality of the entity framework to define a .NET function and map that to your UDF, but I think I see why you don't get the result you expect when you use ADO.NET to do it -- you're telling it you're calling a stored procedure, but you're really calling a function. </p>
<p>Try this:</p>
<pre><code>public int GetUserIdByUsername(string username)
{
EntityConnection connection = (EntityConnection)Connection;
DbCommand com = connection.StoreConnection.CreateCommand();
com.CommandText = "select dbo.fn_GetUserId_Username(@Username)";
com.CommandType = CommandType.Text;
com.Parameters.Add(new SqlParameter("@Username", username));
if (com.Connection.State == ConnectionState.Closed) com.Connection.Open();
try
{
var result = com.ExecuteScalar(); // should properly get your value
return (int)result;
}
catch (Exception e)
{
// either put some exception-handling code here or remove the catch
// block and let the exception bubble out
}
}
</code></pre>
http://stackoverflow.com/questions/1047218/benchmarking-small-code-samples-in-c-can-this-implementation-be-improved/1047301#10473014Answer by Jonathan for Benchmarking small code samples in C#, can this implementation be improved? Jonathan2009-06-26T04:18:52Z2009-06-26T04:18:52Z<p>If you want to take GC interactions out of the equation, you may want to run your 'warm up' call <em>after</em> the GC.Collect call, not before. That way you know .NET will already have enough memory allocated from the OS for the working set of your function.</p>
<p>Keep in mind that you're making a non-inlined method call for each iteration, so make sure you compare the things you're testing to an empty body. You'll also have to accept that you can only reliably time things that are several times longer than a method call.</p>
<p>Also, depending on what kind of stuff you're profiling, you may want to do your timing based running for a certain amount of time rather than for a certain number of iterations -- it can tend to lead to more easily-comparable numbers without having to have a very short run for the best implementation and/or a very long one for the worst.</p>
http://stackoverflow.com/questions/1047167/is-there-a-way-i-can-inline-a-function-to-an-action-delegate-and-referenced-it-at/1047171#10471711Answer by Jonathan for Is there a way I can inline a function to an Action delegate and referenced it at the same time?Jonathan2009-06-26T03:31:19Z2009-06-26T03:31:19Z<p>I think this will work:</p>
<pre><code>private void ofdAttachment_FileOk(object sender, CancelEventArgs e)
{
Action attach = null;
attach = delegate
{
if (this.InvokeRequired)
{
// since we assigned null, we'll be ok, and the automatic
// closure generated by the compiler will make sure the value is here when
// we need it.
this.Invoke(new Action(attach));
}
else
{
// attaching routine here
}
};
System.Threading.ThreadPool.QueueUserWorkItem((o) => attach());
}
</code></pre>
<p>All you need to do is assign a value to 'attach' (null works) before the line that declares the anonymous method. I do think the former is a bit easier to understand though.</p>
http://stackoverflow.com/questions/1042219/how-do-you-concatenate-lists-in-c/1042223#10422235Answer by Jonathan for How do you concatenate Lists in C#?Jonathan2009-06-25T04:44:59Z2009-06-25T04:44:59Z<p>Try this:</p>
<pre><code>myList1 = myList1.Concat(myList2).ToList();
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/bb302894.aspx" rel="nofollow">Concat</a> returns an IEnumerable<T> that is the two lists put together, it doesn't modify either existing list. Also, since it returns an IEnumerable, if you want to assign it to a variable that is List<T>, you'll have to call ToList() on the IEnumerable<T> that is returned.</p>
http://stackoverflow.com/questions/1040235/what-is-the-recommended-way-of-writing-anonymous-functions-in-c/1040253#10402532Answer by Jonathan for What is the recommended way of writing anonymous functions in C#?Jonathan2009-06-24T18:57:20Z2009-06-24T18:57:20Z<p>I much prefer the lambda syntax (sort1) where possible. I only use the more verbose syntaxes where they are required. I consider the extra stuff non-productive code that just gets in the way of understanding what I'm writing.</p>
<p>Edit: Unless of course I'm working on a .NET 2.0 app, where you can't use the lambda syntax. Then, I'm just glad I at least have anonymous methods.</p>
http://stackoverflow.com/questions/1794964/sql-server-login-failed-for-user-sa-clinet-xxxxxxxxxxxx/1795001#1795001Comment by Jonathan on Sql Server Login failed for user 'sa'. [CLINET: XXX:XXX:XXX:XXX]Jonathan2009-11-25T07:08:06Z2009-11-25T07:08:06ZAlso, until you get it secured, I'd recommend stopping the SQL Server service (or taking the whole machine offline). If that machine doesn't have recent patches installed, running W2K3 on the open internet is <i>not</i> a good idea.http://stackoverflow.com/questions/1794964/sql-server-login-failed-for-user-sa-clinet-xxxxxxxxxxxx/1795001#1795001Comment by Jonathan on Sql Server Login failed for user 'sa'. [CLINET: XXX:XXX:XXX:XXX]Jonathan2009-11-25T07:07:11Z2009-11-25T07:07:11ZUse a firewall of some kind. Preferably a hardware firewall at the network perimeter (since I don't think the Windows Firewall was in Windows 2003), though a third-party software firewall should be able to do it too.http://stackoverflow.com/questions/1777097/setting-headless-property-in-netComment by Jonathan on Setting headless property in .netJonathan2009-11-21T23:13:32Z2009-11-21T23:13:32ZI doubt it's the compiler that complains -- it's probably the runtime...http://stackoverflow.com/questions/1767253/log4net-with-net-4-0Comment by Jonathan on log4net with .NET 4.0Jonathan2009-11-20T01:31:06Z2009-11-20T01:31:06ZI have pulled the source for 1.2.10 from the SVN server and run it through the upgrade process. It looks like so long as I define the _NET_2_0 symbol and add attribute to get the Level1 security-enforcement rules, things work. Obviously, there's more work involved for the complete 4.0 update, so I'm hoping someone has already started on that work.http://stackoverflow.com/questions/1767253/log4net-with-net-4-0Comment by Jonathan on log4net with .NET 4.0Jonathan2009-11-19T23:13:38Z2009-11-19T23:13:38ZI think I remember seeing in-proc side-by-side for 2.0/4.0-compat, but that doesn't appear to allow my 4.0 code to reference the 2.0 log4net library.http://stackoverflow.com/questions/1598213/c-clr-stored-proc-wont-deploy-to-sql-server-2005Comment by Jonathan on C# CLR Stored Proc won't Deploy to SQL Server 2005Jonathan2009-10-21T01:16:18Z2009-10-21T01:16:18ZYou know that String.Empty and "" are the same thing, right? Did you maybe mean for one of those to be null?http://stackoverflow.com/questions/1558058/bad-compile-constant-value/1558061#1558061Comment by Jonathan on Bad Compile constant valueJonathan2009-10-13T03:36:41Z2009-10-13T03:36:41Z@pasasik - yes, \d has special meaning to the regex engine, but you have to get that string to the regex engine first. Without doubling it or using @, the C# compiler thinks you mean \d as a 'special' character (like \t or \n) and tries (and fails) to handle it.http://stackoverflow.com/questions/1555856/strange-unhandled-exceptionComment by Jonathan on Strange unhandled exceptionJonathan2009-10-12T17:32:27Z2009-10-12T17:32:27ZIt may be helpful if you could add a quick translation of what the non-english part of the error message says. That info may be useful, and unfortunately, too many of us who speak English as a primary language can't understand any other :(http://stackoverflow.com/questions/1399261/c-list-order-by-group-by-removeComment by Jonathan on C# List<> Order by/Group by/Remove Jonathan2009-09-09T12:13:02Z2009-09-09T12:13:02ZJust to make sure you get an answer that solves your porblem -- do you really need to maintain that progressively smaller ordered list (which is potentially at least slightly expensive), or do you just need to process the items in groups of matching customerid/productid in order? The former requires constantly constructing new lists (or removing from the beginning, both relatively expensive operations), while the latter can use a rather straight-forward grouping operation.http://stackoverflow.com/questions/1378924/why-am-i-losing-object-references-on-the-postback/1378999#1378999Comment by Jonathan on Why am I losing object references on the postback?Jonathan2009-09-04T12:44:45Z2009-09-04T12:44:45ZFor the code for using ViewState, check David's edit.http://stackoverflow.com/questions/1378924/why-am-i-losing-object-references-on-the-postback/1378977#1378977Comment by Jonathan on Why am I losing object references on the postback?Jonathan2009-09-04T12:44:00Z2009-09-04T12:44:00ZEven in the newer versions of the framework, I don't think it magically persists property values. If it does, I've been writing way more code than I have to :) Do you have a reference for that?http://stackoverflow.com/questions/1357257/image-resizing-efficiency-in-c-and-net-3-5Comment by Jonathan on Image resizing efficiency in C# and .NET 3.5Jonathan2009-08-31T12:53:48Z2009-08-31T12:53:48ZIf you run this in a tight loop, how many images/sec can you process at what input/output image sizes?http://stackoverflow.com/questions/1354723/linq-to-entities-why-cant-i-use-split-method-as-condition/1354737#1354737Comment by Jonathan on LINQ to Entities: Why can't I use Split method as condition?Jonathan2009-08-31T12:42:22Z2009-08-31T12:42:22Z@Yannick - that won't take care of everything -- it'll still match keywords that begin with/end with the keyword in question, and you'll want to also add || a.Keywords == aKeyword. You'll still need the post-filter. Still, a separate table is the real way to go.http://stackoverflow.com/questions/1354723/linq-to-entities-why-cant-i-use-split-method-as-condition/1354737#1354737Comment by Jonathan on LINQ to Entities: Why can't I use Split method as condition?Jonathan2009-08-31T01:05:19Z2009-08-31T01:05:19Z@James - yes, the former will cost you quite a bit of performance. The latter less so (it'll require a table/index scan, but will only return candidate rows). If this is something you'll be running a lot of, I'd recommend storing the keywords in the DB pre-split (ie. a table with one row per keyword per activity -- Yannick's suggestion). Then, you can write it as a query the DB can handle well.http://stackoverflow.com/questions/1315749/changing-the-language-for-subversion-error-messagesComment by Jonathan on Changing the language for Subversion error messagesJonathan2009-08-23T14:26:02Z2009-08-23T14:26:02ZAccording to strace, it's not trying to load german messages (when LANG=C, there's no attempts to load anything from /usr/share/locale).