Jonathan
|
Registered User
|
|
13h |
answered | Visual Studio 2010 + .Net Framework 1.1 + Click Once Deployment |
|
Dec 14 |
answered | Usefulness of asp.net MVC framework as opposed to coding MVC style with regular asp.net? |
|
Dec 9 |
accepted | How to deserialize xml when root declare namespaces? |
|
Dec 9 |
answered | How to deserialize xml when root declare namespaces? |
|
Dec 9 |
accepted | LINQ and XML…need help debugging this… |
|
Dec 9 |
answered | LINQ and XML…need help debugging this… |
|
Dec 7 |
comment |
How to create own dotnet obfuscator Doug R has a good point -- if it's that important to protect, what's 3k or so to do it? |
|
Dec 7 |
answered | How to create own dotnet obfuscator |
|
Dec 7 |
comment |
Protecting a high value C# application with only one user Also, a mention of how much technical sophistication you're expecting out of your attacker (and anyone they'd enlist) would be helpful too. Are you trying to stop someone willing to run a tool like reflector against your app, strip out the protections, and rebuild it? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
comment |
Why are my program’s colors ugly in Windows 7? Screenshots or some example code might be helpful. Most programs don't look any different under Windows 7 than they did in XP/Vista. |
|
Nov 30 |
comment |
Raising an event thread safely The issue with the code you added via edit is a possible deadlock. Consider this: an object subscribes to your handler. On thread A, a lock is acquired. On thread B, something happens that requires the event to be raised. In the handler for that, it tries to acquire the lock held by thread A, blocking. Thread A then tries to register a handler on the event, leading to a deadlock (each thread holds a lock the other is waiting on). IMHO, this is worse than either of the other issues (the NullRef from doing nothing, or the phantom event from the MS-recommended way). |
|
Nov 25 |
accepted | Raising an event thread safely |
|
Nov 25 |
answered | Raising an event thread safely |
|
Nov 25 |
comment |
Sql Server Login failed for user ‘sa’. [CLINET: XXX:XXX:XXX:XXX] Also, 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 not a good idea. |
|
Nov 25 |
comment |
Sql Server Login failed for user ‘sa’. [CLINET: XXX:XXX:XXX:XXX] Use 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. |
|
Nov 25 |
answered | Sql Server Login failed for user ‘sa’. [CLINET: XXX:XXX:XXX:XXX] |
|
Nov 21 |
comment |
Setting headless property in .net I doubt it's the compiler that complains -- it's probably the runtime... |
|
Nov 20 |
comment |
log4net with .NET 4.0 I 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. |
|
Nov 19 |
comment |
log4net with .NET 4.0 I 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. |
|
Nov 19 |
asked | log4net with .NET 4.0 |
|
Nov 15 |
revised |
IE doesn’t wait for result of $.post( fixed up formatting |
|
Nov 6 |
accepted | Fast string comparison with list |
|
Oct 21 |
comment |
C# CLR Stored Proc won’t Deploy to SQL Server 2005 You know that String.Empty and "" are the same thing, right? Did you maybe mean for one of those to be null? |
|
Oct 17 |
answered | How insecure is web ? |
|
Oct 13 |
comment |
Bad Compile constant value @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. |
|
Oct 12 |
comment |
Strange unhandled exception It 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 :( |
|
Oct 1 |
accepted | IDictionary and Connection.RetrieveStatistics .NET/C# |
|
Sep 30 |
answered | IDictionary and Connection.RetrieveStatistics .NET/C# |
|
Sep 27 |
answered | Using structs in C# for simple domain values |
|
Sep 24 |
accepted | Optimal buffer size for response stream of HttpWebResponse |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 10 |
accepted | Dealing with multiple Javascript IF statements. |
|
Sep 10 |
answered | Dealing with multiple Javascript IF statements. |
|
Sep 9 |
comment |
C# List<> Order by/Group by/Remove Just 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. |
|
Sep 4 |
comment |
Why am I losing object references on the postback? For the code for using ViewState, check David's edit. |
|
Sep 4 |
comment |
Why am I losing object references on the postback? Even 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? |
|
Sep 4 |
answered | Why am I losing object references on the postback? |
|
Sep 4 |
awarded | ● Fanatic |
|
Aug 31 |
comment |
Image resizing efficiency in C# and .NET 3.5 If you run this in a tight loop, how many images/sec can you process at what input/output image sizes? |
|
Aug 31 |
comment |
LINQ to Entities: Why can’t I use Split method as condition? @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. |
|
Aug 31 |
comment |
LINQ to Entities: Why can’t I use Split method as condition? @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. |
|
Aug 30 |
answered | LINQ to Entities: Why can’t I use Split method as condition? |
|
Aug 26 |
answered | An architecture question |
|
Aug 24 |
accepted | Persisting Enums in database tables |
|
Aug 23 |
comment |
Changing the language for Subversion error messages According to strace, it's not trying to load german messages (when LANG=C, there's no attempts to load anything from /usr/share/locale). |
|
Aug 22 |
comment |
Changing the language for Subversion error messages This is getting annoying -- I've run strings/grep on every file strace says was loaded looking for "Zielpfad", and I'm getting nothing... |
|
Aug 22 |
revised |
Changing the language for Subversion error messages added 633 characters in body; added 43 characters in body |
|
Aug 22 |
asked | Changing the language for Subversion error messages |
|
Aug 19 |
answered | Why can’t you edit and continue debugging when there’s a Lambda expression in the method? |
