User Sandor Davidhazi - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:28:11Zhttp://stackoverflow.com/feeds/user/23209http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1748011/supporting-outlook-2003-and-2007-at-the-same-time-with-interop0Supporting Outlook 2003 and 2007 at the same time with interopSandor Davidhazi2009-11-17T10:46:31Z2009-11-17T10:58:18Z
<p>Is it possible to access Outlook 2003 and 2007 from the same application, using the <a href="http://msdn.microsoft.com/en-us/library/aa159923%28office.11%29.aspx" rel="nofollow">primary interop assemblies</a> provided by Microsoft?</p>
<p>I have read that it is very difficult (if possible at all) to develop for different versions of Outlook on the same machine, because of the way COM versioning is handled.
Are we better off using <a href="http://www.dimastr.com/redemption/" rel="nofollow">Outlook Redemption</a> if we want to support multiple versions?</p>
http://stackoverflow.com/questions/1631936/cast-collation-of-nvarchar-variables-in-t-sql0Cast collation of nvarchar variables in t-sqlSandor Davidhazi2009-10-27T16:12:41Z2009-10-27T16:14:56Z
<p>I need to change the collation of an nvarchar variable. <a href="http://msdn.microsoft.com/en-us/library/ms184391.aspx" rel="nofollow">By documentation</a>:</p>
<blockquote>
<p>(...)
3. The COLLATE clause can be specified
at several levels. These include the
following:</p>
<p>Casting the collation of an
expression. You can use the COLLATE
clause to apply a character expression
to a certain collation. Character
literals and variables are assigned
the default collation of the current
database. Column references are
assigned the definition collation of
the column. For the collation of an
expression, see <a href="http://doc.ddart.net/mssql/sql2000/html/tsqlref/ts%5Fda-db%5F7ory.htm" rel="nofollow">Collation Precedence</a>
(Transact-SQL).</p>
</blockquote>
<p>However I can't figure out the correct syntax for the usage of CAST(), CONVERT() or variable declaration with DECLARE for this purpose.</p>
http://stackoverflow.com/questions/1298471/importing-an-html-table-as-excel-file-into-sap0Importing an HTML table as excel file into SAPSandor Davidhazi2009-08-19T08:18:21Z2009-08-29T03:05:20Z
<p>We need to create an .xls file in asp.net which will be imported into SAP. Currently we're writing an HTML table into the response object. I'd like to know if SAP can import .xls files that are in fact HTML tables.</p>
http://stackoverflow.com/questions/1349255/c-structs-real-life-examples/1349803#13498030Answer by Sandor Davidhazi for C# Structs - real life examples?Sandor Davidhazi2009-08-28T23:02:33Z2009-08-28T23:02:33Z<p>I think the .Net Framework is quite real life. See the list under "Structures":</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.aspx" rel="nofollow">System Namespace</a></p>
http://stackoverflow.com/questions/616454/authentication-options-in-a-scenario-where-a-silverlight-application-is-calling0Authentication options in a scenario, where a silverlight application is calling a self-hosted wcf service.Sandor Davidhazi2009-03-05T20:19:57Z2009-08-27T11:13:37Z
<p>Our system consists of a self-hosted (non-IIS) WCF service and an Asp.net website which hosts a Silverlight application. The application is supposed to do pretty much everything, the website is just a "shell" in this case.</p>
<p>We have a hard time figuring out how to solve user authentication securely.</p>
<p>To my knowledge, Silverlight can not handle windows authentication, does not have any kind of credentials object. The best we can think of, is to authenticate the user when he requests the page, which hosts the app. Then we can pass the user name to the app in its' init parameters.</p>
<p>That way we have a username which can be sent to the wcf service, and can serve as a base for handling roles. The problem is, anyone can call our service without a silverlight client, and pass in a user name. Also, sending unencrypted sensitive data between the WCF service and the Silverlight app is a bad idea. So, my question is:</p>
<p><strong>How to authenticate the client in this scenario securely?</strong></p>
http://stackoverflow.com/questions/939704/silverlight-assembly-codebase-problem0Silverlight Assembly.CodeBase problemSandor Davidhazi2009-06-02T13:54:23Z2009-08-26T07:45:29Z
<p>"This member has a SecurityCriticalAttribute attribute, which restricts it to internal use by the .NET Framework for Silverlight class library."</p>
<p>Is there a way to access this information? (The original location of the Silverlight assembly).</p>
http://stackoverflow.com/questions/166226/cant-merge-undo-disks-on-virtual-server-20050Can't merge undo disks on Virtual Server 2005Sandor Davidhazi2008-10-03T10:24:42Z2009-08-02T05:00:03Z
<p>Error message: "Virtual Server was unable to commit the changes made during the current session of "". A likely cause of this problem is the parent virtual hard disk cannot be opened for read/write or it might be in use or the user has no read/write/modify permissions. The data in the undo disk is retained."</p>
<p>I can start up that virtual machine, do work on it, it gets saved, but when I try to overwrite the undo disk, I get this message. <strong>How can I check if I have the required permission to overwrite the undo disk?</strong> Of course I turned off the virtual machine first, and tried to initiate a "Merge Undo Disks" operation that way, so I don't think that the virtual hard disk is locked.</p>
<p>UPDATE: the virtual hard disk file could be renamed, so there is nothing locking that file.</p>
http://stackoverflow.com/questions/665973/how-to-notify-the-user-about-binding-errors-in-silverlight0How to notify the user about binding errors in silverlight?Sandor Davidhazi2009-03-20T12:41:53Z2009-07-24T00:00:01Z
<p>To my understanding, binding errors are displayed only during debug mode in Visual Studio's Output window. However, I want to know about broken bindings when the user runs my app, and I want to notify him that something is not working quite right.</p>
<p>Is there a way to handle binding exceptions from code, when the datacontext is set, and some bindings are broken?</p>
http://stackoverflow.com/questions/1016594/problem-when-sending-images-through-wcf-from-silverlight/1016600#10166000Answer by Sandor Davidhazi for problem when sending images through wcf from silverlightSandor Davidhazi2009-06-19T06:27:57Z2009-06-19T06:27:57Z<p>Please catch the exception on the wcf side in the interface implementation and post that.</p>
<p>The error may be related to this problem:
"<a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/bc717eb1-f0a6-4932-868b-8d63b44f598d" rel="nofollow">WCF Message Size Issue</a>"</p>
http://stackoverflow.com/questions/905982/how-to-auto-generate-logger-calls-into-source-code-in-c0How to auto-generate logger calls into source code in C#?Sandor Davidhazi2009-05-25T09:07:23Z2009-05-25T09:14:50Z
<p>What i'd like to generate into method bodies:</p>
<pre><code>private void SomeMethod()
{
Logger.Log("Entering SomeMethod.");
// do stuff here
Logger.Log("Exiting SomeMethod.")
}
</code></pre>
<p>Is there a tool which can generate that for me?
If there isn't, and I'd like to implement one myself, then where do I start, which library should I look into for recognizing methods in c# source code? Simple regexes should be enough?</p>
http://stackoverflow.com/questions/881141/how-to-create-addin-for-vs2005/881468#8814680Answer by Sandor Davidhazi for How to create addin for VS2005.?Sandor Davidhazi2009-05-19T07:54:50Z2009-05-19T07:54:50Z<p>I wanted to create one myself, but i didn't have yet time to process the information required:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-gb/vsx/bb507746.aspx" rel="nofollow">"How Do I?" Visual Studio extensibility videos</a></li>
<li>Article series detailing extending visual studio from the beginning:
<a href="http://www.codeplex.com/LearnVSXNow/Wiki/View.aspx?title=LearnVSXNowOld&referringTitle=Home" rel="nofollow">LearnVSXNow!</a> </li>
<li>Microsofts's <a href="http://code.msdn.microsoft.com/vsx" rel="nofollow">VSX
Home on Code Gallery</a></li>
<li><a href="http://blogs.msdn.com/quanto/archive/2008/01/22/building-your-own-visual-studio-source-code-outliner-extension.aspx" rel="nofollow">Building your own Visual Studio Source Code Outliner extension</a> (and Quan's whole blog)</li>
</ul>
<p>Overall I'd recommend waiting for Visual Studio 2010 (or start working with the <a href="http://blogs.msdn.com/mikeormond/archive/2009/05/18/visual-studio-2010-beta-1-available-today-to-msdn-subscribers.aspx" rel="nofollow">fresh beta 1</a>), because there will be many changes and many more possibilities on extending Visual Studio. (Think WPF.) The code gallery I linked already contains content regarding to this.</p>
http://stackoverflow.com/questions/850296/silverlight-smart-client-operations-in-one-service/852728#8527282Answer by Sandor Davidhazi for Silverlight + smart client operations in one service?Sandor Davidhazi2009-05-12T13:17:45Z2009-05-12T13:48:45Z<p>I very strongly recommend you read this thoroughly:</p>
<p><strong>"Silverlight and WCF Feature Comparison"</strong></p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc896571%28VS.95%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc896571(VS.95).aspx</a></p>
<p>There are quite a few gotchas when developing a web service for silverlight usage, especially if you already have a wsHttpBinding solution. Good luck!</p>
<p>EDIT: also I found this article useful: </p>
<p><strong>WCF : BasicHttpBinding compared to WSHttpBinding at SOAP packet level</strong>
<a href="http://geekswithblogs.net/claeyskurt/archive/2008/04/22/121508.aspx" rel="nofollow">http://geekswithblogs.net/claeyskurt/archive/2008/04/22/121508.aspx</a></p>
http://stackoverflow.com/questions/775924/c-encryption-and-decryption/775930#7759301Answer by Sandor Davidhazi for c# encryption and decryptionSandor Davidhazi2009-04-22T06:27:28Z2009-04-22T06:27:28Z<p>Have you tried setting the encoding explicitly on both sides? Maybe the default is different.</p>
http://stackoverflow.com/questions/768087/sharing-constants-across-a-wcf-service0Sharing constants across a WCF serviceSandor Davidhazi2009-04-20T12:41:55Z2009-04-20T12:49:40Z
<p>I have certain strings which contain special characters so they can not be shared as enum members across a WCF service. (Actually, they are keys for configuration values.)</p>
<p>I want to be able to pass in the keys at client side and get back the config values. If there is a change, I only want to change the config keys at one place.</p>
<p>Constants would be ideal, because they can be changed as strong references across the entire solution, and the underlaying value could be updated with a service reference update.</p>
<p>Currently I can think of two possible solutions:</p>
<ol>
<li>Create a shared assembly and place the constants there </li>
<li>Share the constants across the service.</li>
</ol>
<p>The problem is, I can't get the datacontractserializer to serialize the constants. Is that possible at all? Is the shared assembly the only option I have?</p>
http://stackoverflow.com/questions/709776/are-wpf-and-silverlight-command-implementations-useless-for-the-m-v-vm-m-v-p-pa1Are WPF and Silverlight command implementations useless for the M-V-VM (M-V-P) pattern?Sandor Davidhazi2009-04-02T13:44:47Z2009-04-03T04:55:00Z
<p>Please excuse my ignorance, I only started coding in Silverlight recently.</p>
<p>I tried implementing the command pattern in Silverlight and hit a wall.
They say commands are great, because you can write them into xaml, so you can keep your code-behind clean, also you have loose coupling between your view and your viewmodel because there is no direct reference to the viewmodel in the view.</p>
<p><strong>You can not keep your code-behind clean</strong>, because you can bind only one command to a control, and you have to decide which event will fire your command when you bind it. If a control has 30 events, you have to choose one for commanding. The other 29 will execute the other commands from event handlers from the code behind.</p>
<p><strong>Loose coupling can be achieved more simply by dependency injection</strong>, commands add a useless layer of indirection that gives nothing extra, they only make it a bit harder to maintain your code. It is easier to maintain your code, when you are programming against an interface and see exactly what method gets called, then when you have to keep jumping between your command definitions and your viewmodel.</p>
<p>Did I miss anything, or commands are really not meant to be used for view and viewmodel interaction?</p>
<p>Please see the following question. This is why I don't get all the hype with commands:</p>
<p><a href="http://stackoverflow.com/questions/567672/how-should-i-handle-multiple-events-per-control-w-command-pattern-using-mvvm-in-s">http://stackoverflow.com/questions/567672/how-should-i-handle-multiple-events-per-control-w-command-pattern-using-mvvm-in-s</a></p>
http://stackoverflow.com/questions/700343/whats-a-good-laptop-table/700390#7003901Answer by Sandor Davidhazi for What's a good laptop table?Sandor Davidhazi2009-03-31T07:20:02Z2009-03-31T07:20:02Z<p>Consider buying a docking station if they are available for your laptop. Those can have special fans and such for cooling.</p>
http://stackoverflow.com/questions/628403/dealing-with-sqlcmd-r-in-a-post-deployment-script/629882#6298821Answer by Sandor Davidhazi for Dealing with SQLCMD :r in a post-deployment scriptSandor Davidhazi2009-03-10T12:18:13Z2009-03-10T12:18:13Z<p>Well, it turns out, that simply specifying the relative path to the script file is enough. I got misled by Visual Studio's Validate SQL Syntax feature, which evaluated the path after :r by using devenv.exe's location as a starting directory.</p>
<p>However, when Deploy is executed on the project, the :r command uses the script's directory as the starting directory, so the file's location can be given easily using a relative path.</p>
http://stackoverflow.com/questions/628403/dealing-with-sqlcmd-r-in-a-post-deployment-script0Dealing with SQLCMD :r in a post-deployment scriptSandor Davidhazi2009-03-09T23:14:06Z2009-03-10T12:18:13Z
<p>We use a Visual Studio Database Project for the source control of the schema of our database. We also want to script certain data (configuration values etc.) from the database, so we use a custom command line utility for dumping data into insert scripts. One file represents one table's scripted data.</p>
<p>There is a certain SQL script, called post-deployment script, which automatically gets executed after the Deploy command on the project. It is recommended to link other script files here, and we'd like to link our data insert scripts. </p>
<p>Instructions say to use this command to parse from arbitrary files</p>
<pre><code>SQLCMD :r <filename>
</code></pre>
<p>The problem is, I don't see how my colleagues will be able to use it when they download it from source control, because the start directory for the :r command is where devenv.exe (the VS dev. env.) is located.</p>
<p>Are we approaching the problem of scripting data from the right angle with the right tools? And if it is so, then how can I get the executing post-deployment script file's path, or how can I parse the insert scripts without hard coding their path into the post-deployment script?</p>
http://stackoverflow.com/questions/616454/authentication-options-in-a-scenario-where-a-silverlight-application-is-calling/623597#6235971Answer by Sandor Davidhazi for Authentication options in a scenario, where a silverlight application is calling a self-hosted wcf service.Sandor Davidhazi2009-03-08T13:42:58Z2009-03-08T13:42:58Z<p>I found the answer in this article:</p>
<p><a href="http://www.silverlightshow.net/items/Building-a-Silverlight-Line-Of-Business-Application-Part-3.aspx" rel="nofollow">http://www.silverlightshow.net/items/Building-a-Silverlight-Line-Of-Business-Application-Part-3.aspx</a></p>
http://stackoverflow.com/questions/623492/silverlight-toolkit-where-do-you-put-the-binaries/623564#6235640Answer by Sandor Davidhazi for Silverlight Toolkit, Where do you put the binaries.Sandor Davidhazi2009-03-08T13:21:23Z2009-03-08T13:21:23Z<p>Download and install the toolkit.</p>
<p>With every different solution you have, create folders "Foreign/[Name]" ("Foreign/Silverlight Toolkit" in this case) in your root solution directory. Copy the required dll-s there and then reference them from the project in question.</p>
<p>If you want to modify the toolkit, then you can add part of the source code as a project to your solution, and reference that in the other projects that use it. </p>
<p>Adding the modified toolkit to a separate solution might be a good idea for easier reuse.</p>
http://stackoverflow.com/questions/561636/navigating-trees-with-linq-to-entities0Navigating trees with LINQ to entitiesSandor Davidhazi2009-02-18T15:48:52Z2009-02-19T14:00:12Z
<p>I have a table called Area, that stores areas in a hierarchical manner. There is an Id and a ParentId column in the table. The ParentId is linked with a foreign key to the table's Id column.</p>
<p>When I generate the EDM, I get two navigation properties, Area1 and Area2.
How am I supposed to get back a tree structure of my areas, and navigate in the tree using LINQ to entities?</p>
<p>I may be asking the wrong question entirely, please bear with me. :)</p>
http://stackoverflow.com/questions/477683/how-to-make-visual-studio-take-automatic-actions-on-check-in0How to make Visual Studio take automatic actions on check-in?Sandor Davidhazi2009-01-25T13:27:55Z2009-01-25T14:53:10Z
<p>I'd like Visual Studio 2008 to do a get latest on the solution when I'm checking in, compile the code, run my tests, and if any of these fail, abort check-in.</p>
<p>Is it possible to do it, and how?</p>
<p>edit: We are using TFS for source control and nunit for testing.</p>
http://stackoverflow.com/questions/312378/debug-levels/312477#3124770Answer by Sandor Davidhazi for Debug LevelsSandor Davidhazi2008-11-23T12:56:51Z2008-11-23T12:56:51Z<p>0: no logging</p>
<p>1: exception logging: log every thrown error. For example in c#: logging in catch blocks. When these log operations are triggered, you know you have an error. You can also log in switch statements if there is a case which should never be hit and the like.</p>
<p>2: operation logging: logging operations, which are not in catch blocks (normal operations), should be set to high debugging. This way you can see which method starts executing and then ends up in a catch block.</p>
<p>Also, think about logging switches, for example packet logging (true: log network packets/messages, false: don't). Just don't overdo with switches.</p>
<p>At exception handling, every method body should be at least in a try-catch block, at least with a general Exception catch at the end. Put logging in the catch block, add optional information besides the system message and the stack trace to indicate what caused the error, then throw the error.
Stop throwing errors further only when the user has been notified about the error, or you are at the top level of an application, which has no active user interface. (Server side logging for example.) Then you need to indicate in a message to the client app that an error has happened server side.</p>
http://stackoverflow.com/questions/75529/what-are-the-best-anti-code-sites/257062#2570620Answer by Sandor Davidhazi for What are the best anti-code sites?Sandor Davidhazi2008-11-02T17:08:47Z2008-11-02T17:08:47Z<p>There is a long list of anti-patterns on Wikipedia.</p>
<p><a href="http://en.wikipedia.org/wiki/Anti-pattern" rel="nofollow">http://en.wikipedia.org/wiki/Anti-pattern</a></p>
<p>Don't forget to check out "References" and "External links" at the bottom of this page.</p>
http://stackoverflow.com/questions/92257/programmers-food/195650#1956501Answer by Sandor Davidhazi for programmer's foodSandor Davidhazi2008-10-12T16:18:24Z2008-10-12T16:18:24Z<p>Although this question is strange, it is on-topic.
It helps very much to chew bubble gum. Chewing is scientifically proved to help with thinking. Products with sugar in them also give a temporary boost. Sipping carbonated mineral water keeps you awake like sipping coffe, except you can do it all day.
Also, eating too much makes your blood go from your brain to your stomach for digestion, and it is very hard to think after a good meal, but you know that. :)</p>
http://stackoverflow.com/questions/194516/what-is-the-best-way-to-discover-an-existing-project3What is the best way to discover an existing project?Sandor Davidhazi2008-10-11T19:48:48Z2008-10-12T10:57:19Z
<p>Hi,</p>
<p>recently I was given the task to discover a C# solution I have never seen before, and give suggestions on refactoring it. I think I will use NDepend (for the first time ever) to see the overall picture, and also to check a lot of code metrics to figure out what could be refactored. NDepend is pretty good at showing the structure of a project, I think.</p>
<p>My question is a more general one: what do you think is the best way to discover code that you are seeing the first time, and need to understand it's structure?
(Unfortunately there is no logical design documentation and the code is poorly commented.)</p>
http://stackoverflow.com/questions/145683/burnt-out/146274#1462741Answer by Sandor Davidhazi for burnt out?Sandor Davidhazi2008-09-28T17:13:35Z2008-09-28T17:13:35Z<p>The key to have one's life energy and happiness back is to find what makes you feel successful. If you're burnt out you need to take a break as others already suggested, and think through what work makes you feel you've done something great. Get to really know yourself in this area, and in orther to do that, you need to experience a lot of different things (travelling is a good way to do that). For me, I feel successful in software development when a project finishes, and everybody is satisfied with what we have created. Maybe you find success in creating art, healing people etc. </p>
<p>Once you find what motivates you, go and tirelessly pursue it. It will pretty much suck to get there, but if you were correct about yourself before, you'll realize that it totally worth it. Enjoy happiness for the rest of your life. :)</p>
http://stackoverflow.com/questions/146134/how-to-trim-illegal-characters-from-path-and-filenames/146171#1461711Answer by Sandor Davidhazi for How to trim illegal characters from path and filenames?Sandor Davidhazi2008-09-28T16:07:56Z2008-09-28T16:07:56Z<p>I think it is much easier to validate using a regex and specifiing which characters are allowed, instead of trying to check for all bad characters.
See these links:
<a href="http://www.c-sharpcorner.com/UploadFile/prasad_1/RegExpPSD12062005021717AM/RegExpPSD.aspx" rel="nofollow">http://www.c-sharpcorner.com/UploadFile/prasad_1/RegExpPSD12062005021717AM/RegExpPSD.aspx</a>
<a href="http://www.windowsdevcenter.com/pub/a/oreilly/windows/news/csharp_0101.html" rel="nofollow">http://www.windowsdevcenter.com/pub/a/oreilly/windows/news/csharp_0101.html</a></p>
<p>Also, do a search for "regular expression editor"s, they help a lot. There are some around which even output the code in c# for you.</p>
http://stackoverflow.com/questions/1631936/cast-collation-of-nvarchar-variables-in-t-sql/1631954#1631954Comment by Sandor Davidhazi on Cast collation of nvarchar variables in t-sqlSandor Davidhazi2009-10-27T16:18:01Z2009-10-27T16:18:01ZThank you! :) 15thankshttp://stackoverflow.com/questions/1349718/what-will-this-method-return-true-or-false/1349733#1349733Comment by Sandor Davidhazi on What will this method return, true or false?Sandor Davidhazi2009-08-28T22:56:38Z2009-08-28T22:56:38Z"IndexOf is >= 0" - not quite, indexof can also be -1.
"The zero-based index position of value if that string is found, or -1 if it is not."http://stackoverflow.com/questions/1349255/c-structs-real-life-examples/1349270#1349270Comment by Sandor Davidhazi on C# Structs - real life examples?Sandor Davidhazi2009-08-28T22:35:10Z2009-08-28T22:35:10Z@Stan <a href="http://msdn.microsoft.com/en-us/library/system.drawing.point.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1019573/save-icon-still-a-floppy-disk/1019698#1019698Comment by Sandor Davidhazi on Save icon: Still a floppy disk?Sandor Davidhazi2009-06-23T16:23:20Z2009-06-23T16:23:20ZI like the analogy.http://stackoverflow.com/questions/1002100/what-non-programming-things-do-you-do-that-help-you-become-a-better-programmer/1002490#1002490Comment by Sandor Davidhazi on What non-programming things do you do that help you become a better programmer?Sandor Davidhazi2009-06-18T20:37:54Z2009-06-18T20:37:54Z"exercise" is a replace by the word filter? ;)http://stackoverflow.com/questions/881141/how-to-create-addin-for-vs2005/881468#881468Comment by Sandor Davidhazi on How to create addin for VS2005.?Sandor Davidhazi2009-05-20T13:35:36Z2009-05-20T13:35:36ZThanks, good to know that!http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/615681#615681Comment by Sandor Davidhazi on Hidden .NET Base Class Library Classes?Sandor Davidhazi2009-05-14T20:39:16Z2009-05-14T20:39:16ZSounds like fun! :)http://stackoverflow.com/questions/148908/which-dependency-injection-tool-should-i-use/346403#346403Comment by Sandor Davidhazi on Which Dependency Injection Tool Should I Use?Sandor Davidhazi2009-05-07T07:30:16Z2009-05-07T07:30:16ZNice and intelligent reasoning.http://stackoverflow.com/questions/811246/how-to-hide-thinking-at-work-so-that-the-non-programmers-dont-suspect-slacking/811371#811371Comment by Sandor Davidhazi on How to hide Thinking at Work so that the Non-Programmers don't suspect Slacking?Sandor Davidhazi2009-05-06T22:35:41Z2009-05-06T22:35:41ZI really like this explanation. I'm going to use it when needed.http://stackoverflow.com/questions/248273/count-number-of-mondays-in-a-given-date-range/248369#248369Comment by Sandor Davidhazi on Count number of Mondays in a given date rangeSandor Davidhazi2009-05-05T08:27:30Z2009-05-05T08:27:30ZI really like how you use a DateTime for the iterator.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/176816#176816Comment by Sandor Davidhazi on What's the most egregious pop culture perversion of programming?Sandor Davidhazi2009-05-03T09:06:02Z2009-05-03T09:06:02Zthis has been bugging me for ages!http://stackoverflow.com/questions/775457/job-offer-dilemmaComment by Sandor Davidhazi on job offer dilemmaSandor Davidhazi2009-04-28T09:11:48Z2009-04-28T09:11:48ZI love the ending.http://stackoverflow.com/questions/779511/when-should-server-maintenance-affect-implementation-descisionsComment by Sandor Davidhazi on When should server maintenance affect implementation descisions?Sandor Davidhazi2009-04-22T22:55:28Z2009-04-22T22:55:28Zthere is a typo in the last tag: 'programming-descisions'http://stackoverflow.com/questions/776169/where-do-i-find-the-seaside-trollComment by Sandor Davidhazi on Where do I find the Seaside troll?Sandor Davidhazi2009-04-22T08:23:08Z2009-04-22T08:23:08Z+1 for the introduction of "troll" tag :)http://stackoverflow.com/questions/755465/do-you-say-no-to-c-regions/755482#755482Comment by Sandor Davidhazi on Do you say No to C# Regions?Sandor Davidhazi2009-04-22T08:14:24Z2009-04-22T08:14:24ZDo you really want to scroll through 30 private members + 30 properties for them when you look through a class, instead of grouping them into a region which describes their function, so they take up only one line instead of about 300?
Structuring every class with regions unnecessarily can be annoying though.