User Greg Dean - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:38:28Z http://stackoverflow.com/feeds/user/4430 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/717690/asp-net-mvc-pass-array-object-as-a-route-value-within-html-actionlink/717724#717724 -2 Answer by Greg Dean for ASP.NET MVC - Pass array object as a route value within Html.ActionLink(...) Greg Dean 2009-04-04T20:07:37Z 2009-12-06T18:07:26Z <p>I'd use POST for an array. Aside from being ugly and an abuse of GET, you risk running out of URL space (believe it or not).</p> <p>Assuming a <a href="http://www.boutell.com/newfaq/misc/urllength.html" rel="nofollow">2000 byte limit</a>. The query string overhead (&amp;str=) reduces you to ~300 bytes of actual data (assuming the rest of the url is 0 bytes).</p> http://stackoverflow.com/questions/205830/c-windows-automatic-software-updates/205842#205842 8 Answer by Greg Dean for C#: windows automatic software updates Greg Dean 2008-10-15T18:20:43Z 2009-12-03T19:12:59Z <p>ClickOnce is good for cookie cutter stuff, but has some limitations around security (i.e. can't create a desktop icon, no access to COM, etc)</p> <p>Assuming you are using MSI to install your application. Use WIX (<a href="http://wix.sourceforge.net/" rel="nofollow">http://wix.sourceforge.net/</a>) to create a patch (.msp). You will want to look into Least Privileged User Account (LUA) Patching for Vista as UAC will screw you if you don't.</p> <p>Then your application does the follows:</p> <ol> <li>Check for a new version via HTTP</li> <li>Download the MSP (be careful of where you DL it to in Vista because of UAC) </li> <li>Start a Shim exe that</li> <li>waits for your app to close</li> <li>launches the msp (in non-interactive mode)</li> <li>restarts your app</li> </ol> <p>This can all happen automatically behind the scenes with zero user interaction on both XP and Vista.</p> <p>A good place to start with this, and with WIX in general is:</p> <p><a href="http://www.tramontana.co.hu/wix/index.php" rel="nofollow">http://www.tramontana.co.hu/wix/index.php</a> (Lesson 4 is on Updates)</p> http://stackoverflow.com/questions/213445/outsourcing-and-your-job 13 Outsourcing and your job. Greg Dean 2008-10-17T19:02:58Z 2009-10-27T10:50:12Z <p>Has outsourcing had an impact on your job? Good or bad. I for one have had terrible experiences with having to maintain code that was outsourced. On things that are less than trivial, does it really save money in the long run? </p> http://stackoverflow.com/questions/710863/log4net-vs-nlog 4 log4net vs. Nlog Greg Dean 2009-04-02T17:53:42Z 2009-10-22T10:19:24Z <p>Anyone have experience for both? How do they stack up against each other?</p> <p>We are planning on using one of them for logging in an enterprise application.</p> <p>References:</p> <p><a href="http://logging.apache.org/log4net/index.html" rel="nofollow">log4net</a></p> <p><a href="http://www.nlog-project.org/" rel="nofollow">nlog</a></p> <p>EDIT: We have no existing dependencies to either nlog or log4net.</p> http://stackoverflow.com/questions/633614/svn-hooks-for-windows 5 SVN hooks for windows Greg Dean 2009-03-11T07:09:49Z 2009-10-20T15:52:53Z <p>I did a little googling and found that there isn't really a resource of SVN hooks for Windows. So I figured I'd start a wiki here to centralize it.</p> <p>If you contribute. Please be sure to indicate:</p> <ol> <li>The name of the hook</li> <li>What the script does</li> <li>The actual script</li> </ol> <p>NOTE: I suspect posting an epic script will not be useful.</p> http://stackoverflow.com/questions/381701/do-you-precompile-your-website-and-why-why-not 7 Do you precompile your website and why/why not? Greg Dean 2008-12-19T17:59:23Z 2009-10-15T09:10:27Z <p>I'd like to get the pulse of the community on whether to precompile or not. I know its cold start time is faster, and it hides code. However, there is something <em>dirty</em> about it, IMO. Maybe its the name, compiling a website sounds incorrect.</p> <p>In general how are you deploying web apps?</p> http://stackoverflow.com/questions/1495025/stuck-on-serialization-in-c/1495044#1495044 4 Answer by Greg Dean for Stuck on Serialization in C# Greg Dean 2009-09-29T21:27:50Z 2009-10-02T11:27:00Z <p>RulesManager probably has a reference to MainForm. If so, mark it as not serialized with the <a href="http://msdn.microsoft.com/en-us/library/system.nonserializedattribute.aspx" rel="nofollow">NonSerializedAttrbibute</a></p> http://stackoverflow.com/questions/562558/protocol-buffers-in-c-how-are-boxed-value-types-handled 3 Protocol Buffers In C#: How Are Boxed Value Types Handled Greg Dean 2009-02-18T19:55:36Z 2009-08-17T23:37:08Z <p>In the following examples:</p> <pre><code>public class RowData { public object[] Values; } public class FieldData { public object Value; } </code></pre> <p>I am curious as how either protobuf-net or dotnet-protobufs would handle such classes. I am more familiar with protobuf-net, so what I actually have is:</p> <pre><code>[ProtoContract] public class RowData { [ProtoMember(1)] public object[] Values; } [ProtoContract] public class FieldData { [ProtoMember(1)] public object Value; } </code></pre> <p>However I get an error saying "No suitable Default Object encoding found". Is there an easy way to treat these classes, that I am just not aware of?</p> <p>To elaborate more on the use case:</p> <p>This is a scaled down version of a data class used in remoting. So essentially it looks like this:</p> <pre><code>FieldData data = new FieldData(); data.Value = 8; remoteObject.DoSomething(data); </code></pre> <p>Note: I've omitted the ISerializable implementation for simplicity, but it is as you'd expect.</p> http://stackoverflow.com/questions/534274/optimal-serialization-of-primitive-types 3 Optimal Serialization of Primitive Types Greg Dean 2009-02-10T21:24:45Z 2009-08-10T19:07:12Z <p>We are beginning to roll out more and more WAN deployments of our product (.Net fat client w/ IIS hosted Remoting backend). Because of this we are trying to reduce the size of the data on the wire. </p> <p>We have overridden the default serialization by implementing ISerializable (similar to <a href="http://www.codeproject.com/KB/cs/FastSerialization.aspx" rel="nofollow">this</a>), we are seeing anywhere from 12% to 50% gains. Most of our efforts focus on optimizing arrays of primitive types. <strong>I would like to know if anyone knows of any fancy way of serializing primitive types, beyond the obvious?</strong> </p> <p>For example today we serialize an array of ints as follows:</p> <blockquote> <p>[4-bytes (array length)][4-bytes][4-bytes]</p> </blockquote> <p>Can anyone do significantly better?</p> <p>The most obvious example of a significant improvement, for boolean arrays, is putting 8 bools in each byte, which we already do.</p> <p>Note: <em>Saving 7 bits per bool may seem like a waste of time, but when you are dealing with large magnitudes of data (which we are), it adds up very fast.</em></p> <p>Note: We want to avoid general compression algorithms because of the latency associated with it. Remoting only supports buffered requests/responses(no chunked encoding). I realize there is a fine line between compression and optimal serialization, but our tests indicate we can afford very specific serialization optimizations at very little cost in latency. Whereas reprocessing the entire buffered response into new compressed buffer is too expensive.</p> http://stackoverflow.com/questions/1103693/c-how-to-model-a-many-to-many-relationship-in-code/1103746#1103746 0 Answer by Greg Dean for C#: How to model a Many to many-relationship in code? Greg Dean 2009-07-09T13:03:18Z 2009-07-09T13:03:18Z <p>I guess am missing something. Why is many to many not allowed?</p> <pre><code>public class Boss { Dog[] dogs; } public class Dog { Boss[] bosses; } </code></pre> http://stackoverflow.com/questions/978445/how-do-you-handle-a-thread-that-has-a-hung-call/978471#978471 0 Answer by Greg Dean for How do you handle a thread that has a hung call? Greg Dean 2009-06-10T22:35:16Z 2009-06-10T22:35:16Z <p>Not sure if this will do it or be acceptable, but its worth a shot.</p> <pre><code>[DllImport("kernel32.dll")] private static extern bool TerminateThread (Int32 id, Int32 dwexit); </code></pre> <p>From the <a href="http://msdn.microsoft.com/en-us/library/ms686717%28VS.85%29.aspx" rel="nofollow">documentation</a></p> <p>TerminateThread is a dangerous function that should only be used in the most extreme cases. You should call TerminateThread only if you know exactly what the target thread is doing, and you control all of the code that the target thread could possibly be running at the time of the termination. For example, TerminateThread can result in the following problems:</p> <ul> <li>If the target thread owns a critical section, the critical section will not be released.</li> <li>If the target thread is allocating memory from the heap, the heap lock will not be - released.</li> <li>If the target thread is executing certain kernel32 calls when it is terminated, the kernel32 state for the thread's process could be inconsistent.</li> <li>If the target thread is manipulating the global state of a shared DLL, the state of the DLL could be destroyed, affecting other users of the DLL.</li> </ul> http://stackoverflow.com/questions/618054/algorithm-for-clustering-pictures-based-on-date-taken 2 Algorithm for clustering pictures based on date taken Greg Dean 2009-03-06T08:26:45Z 2009-06-05T18:15:56Z <p>Anyone know of an algorithm that will group pictures into events based on the date the picture was taken. Obviously I can group by the date, but I'd like something a little more sophisticated that would(might) be able to group pictures spanning multiple days based on the frequency over a certain timespan. Consider the following groupings:</p> <ul> <li>1/2/2009 15 photos </li> <li>1/3/2009 20 photos</li> <li>1/4/2009 13 photos</li> <li>1/5/2009 19 photos</li> <li>1/15/2009 5 photos</li> </ul> <p>Potentially these would be grouped into two groups:</p> <ol> <li>1/2/2009 -> 1/5/2009 </li> <li>1/15/2009</li> </ol> <p>Obviously there will be some tolerance(s) that need to be established. </p> <p>Is there any well established way of doing this, other then inventing my own top/down approach?</p> http://stackoverflow.com/questions/917024/multiple-subdomains-with-ssl-under-iis/917039#917039 3 Answer by Greg Dean for Multiple subdomains with SSL under IIS Greg Dean 2009-05-27T17:32:58Z 2009-05-27T17:32:58Z <blockquote> <p>"I'm guessing the problem lies in the fact that I can't specify a host header value for SSL"</p> </blockquote> <p>You guessed right. You will need two IP addresses.</p> http://stackoverflow.com/questions/789231/is-the-sql-where-clause-short-circuit-evaluated 11 Is the SQL WHERE clause short-circuit evaluated? Greg Dean 2009-04-25T16:11:12Z 2009-05-26T09:23:41Z <p>For example:</p> <pre><code>SELECT * FROM Table t WHERE @key IS NULL OR (@key IS NOT NULL AND @key = t.Key) </code></pre> <p>If <em>@key IS NULL</em> evaluates to true, is <em>@key IS NOT NULL AND @key = t.Key</em> evaluated?</p> <p>If No, why not?</p> <p>If Yes, is it guaranteed? Is it part of ANSI SQL or is it database specific?</p> <p>If database specific, SqlServer? Oracle? MySQL?</p> <p>Reference: <a href="http://en.wikipedia.org/wiki/Short-circuit%5Fevaluation" rel="nofollow">Short Circuit Evaluation</a></p> http://stackoverflow.com/questions/904920/how-short-can-a-guid-id-be/904927#904927 2 Answer by Greg Dean for How short can a GUID id be? Greg Dean 2009-05-25T00:11:05Z 2009-05-25T01:11:29Z <p>They are exactly 16 bytes.</p> <p>Technically speaking the effect of shortening them will vary based on the algorithm used to generate them. Considering, the API you used (probably) doesn't guarantee a particular version or implementation, it's a bad idea to shorten them. Even if it did, it's a bad idea. If you require less than 16 bytes of entropy, you should prob not be using a GUID.</p> <p>For more information: <a href="http://en.wikipedia.org/wiki/Globally%5FUnique%5FIdentifier" rel="nofollow">http://en.wikipedia.org/wiki/Globally_Unique_Identifier</a></p> http://stackoverflow.com/questions/196949/how-to-run-not-elevated-in-vista-net/196959#196959 5 Answer by Greg Dean for How to run NOT elevated in Vista (.NET) Greg Dean 2008-10-13T07:55:11Z 2009-05-21T12:47:26Z <p>From: <a href="http://go.microsoft.com/fwlink/?LinkId=81232" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=81232</a></p> <blockquote> <p>A frequently asked question is how to launch an un-elevated application from an elevated process, or more fundamentally, how to I launch a process using my un-elevated token once I’m running elevated. Since there is no direct way to do this, the situation can usually be avoided by launching the original application as standard user and only elevating those portions of the application that require administrative rights. This way there is always a non-elevated process that can be used to launch additional applications as the currently logged on desktop user. Sometimes, however, an elevated process needs to get another application running un-elevated. This can be accomplished by using the task scheduler within Windows Vista. The elevated process can register a task to run as the currently logged on desktop user.</p> </blockquote> <p>Here is an example of how to schedule the un-elevated process (again from the same link)</p> <pre><code>//--------------------------------------------------------------------- // This file is part of the Microsoft .NET Framework SDK Code Samples. // // Copyright (C) Microsoft Corporation. All rights reserved. // //This source code is intended only as a supplement to Microsoft //Development Tools and/or on-line documentation. See these other //materials for detailed information regarding Microsoft code samples. // //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A //PARTICULAR PURPOSE. //--------------------------------------------------------------------- /**************************************************************************** * Main.cpp - Sample application for Task Scheduler V2 COMAPI * Component: Task Scheduler * Copyright (c) 2002 - 2003, Microsoft Corporation * This sample creates a task to that launches as the currently logged on deskup user. The task launches as soon as it is registered. * ****************************************************************************/ #include "stdafx.h" #include &lt;windows.h&gt; #include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;comdef.h&gt; #include &lt;comutil.h&gt; //Include Task header files - Included in Windows Vista Beta-2 SDK from MSDN #include &lt;taskschd.h&gt; #include &lt;conio.h&gt; #include &lt;iostream&gt; #include &lt;time.h&gt; using namespace std; #define CLEANUP \ pRootFolder-&gt;Release();\ pTask-&gt;Release();\ CoUninitialize(); HRESULT CreateMyTask(LPCWSTR, wstring); void __cdecl wmain(int argc, wchar_t** argv) { wstring wstrExecutablePath; WCHAR taskName[20]; HRESULT result; if( argc &lt; 2 ) { printf("\nUsage: LaunchApp yourapp.exe" ); return; } // Pick random number for task name srand((unsigned int) time(NULL)); wsprintf((LPWSTR)taskName, L"Launch %d", rand()); wstrExecutablePath = argv[1]; result = CreateMyTask(taskName, wstrExecutablePath); printf("\nReturn status:%d\n", result); } HRESULT CreateMyTask(LPCWSTR wszTaskName, wstring wstrExecutablePath) { // ------------------------------------------------------ // Initialize COM. TASK_STATE taskState; int i; HRESULT hr = CoInitializeEx(NULL, COINIT_MULTITHREADED); if( FAILED(hr) ) { printf("\nCoInitializeEx failed: %x", hr ); return 1; } // Set general COM security levels. hr = CoInitializeSecurity( NULL, -1, NULL, NULL, RPC_C_AUTHN_LEVEL_PKT_PRIVACY, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, 0, NULL); if( FAILED(hr) ) { printf("\nCoInitializeSecurity failed: %x", hr ); CoUninitialize(); return 1; } // ------------------------------------------------------ // Create an instance of the Task Service. ITaskService *pService = NULL; hr = CoCreateInstance( CLSID_TaskScheduler, NULL, CLSCTX_INPROC_SERVER, IID_ITaskService, (void**)&amp;pService ); if (FAILED(hr)) { printf("Failed to CoCreate an instance of the TaskService class: %x", hr); CoUninitialize(); return 1; } // Connect to the task service. hr = pService-&gt;Connect(_variant_t(), _variant_t(), _variant_t(), _variant_t()); if( FAILED(hr) ) { printf("ITaskService::Connect failed: %x", hr ); pService-&gt;Release(); CoUninitialize(); return 1; } // ------------------------------------------------------ // Get the pointer to the root task folder. This folder will hold the // new task that is registered. ITaskFolder *pRootFolder = NULL; hr = pService-&gt;GetFolder( _bstr_t( L"\\") , &amp;pRootFolder ); if( FAILED(hr) ) { printf("Cannot get Root Folder pointer: %x", hr ); pService-&gt;Release(); CoUninitialize(); return 1; } // Check if the same task already exists. If the same task exists, remove it. hr = pRootFolder-&gt;DeleteTask( _bstr_t( wszTaskName), 0 ); // Create the task builder object to create the task. ITaskDefinition *pTask = NULL; hr = pService-&gt;NewTask( 0, &amp;pTask ); pService-&gt;Release(); // COM clean up. Pointer is no longer used. if (FAILED(hr)) { printf("Failed to CoCreate an instance of the TaskService class: %x", hr); pRootFolder-&gt;Release(); CoUninitialize(); return 1; } // ------------------------------------------------------ // Get the trigger collection to insert the registration trigger. ITriggerCollection *pTriggerCollection = NULL; hr = pTask-&gt;get_Triggers( &amp;pTriggerCollection ); if( FAILED(hr) ) { printf("\nCannot get trigger collection: %x", hr ); CLEANUP return 1; } // Add the registration trigger to the task. ITrigger *pTrigger = NULL; hr = pTriggerCollection-&gt;Create( TASK_TRIGGER_REGISTRATION, &amp;pTrigger ); pTriggerCollection-&gt;Release(); // COM clean up. Pointer is no longer used. if( FAILED(hr) ) { printf("\nCannot add registration trigger to the Task %x", hr ); CLEANUP return 1; } pTrigger-&gt;Release(); // ------------------------------------------------------ // Add an Action to the task. IExecAction *pExecAction = NULL; IActionCollection *pActionCollection = NULL; // Get the task action collection pointer. hr = pTask-&gt;get_Actions( &amp;pActionCollection ); if( FAILED(hr) ) { printf("\nCannot get Task collection pointer: %x", hr ); CLEANUP return 1; } // Create the action, specifying that it is an executable action. IAction *pAction = NULL; hr = pActionCollection-&gt;Create( TASK_ACTION_EXEC, &amp;pAction ); pActionCollection-&gt;Release(); // COM clean up. Pointer is no longer used. if( FAILED(hr) ) { printf("\npActionCollection-&gt;Create failed: %x", hr ); CLEANUP return 1; } hr = pAction-&gt;QueryInterface( IID_IExecAction, (void**) &amp;pExecAction ); pAction-&gt;Release(); if( FAILED(hr) ) { printf("\npAction-&gt;QueryInterface failed: %x", hr ); CLEANUP return 1; } // Set the path of the executable to the user supplied executable. hr = pExecAction-&gt;put_Path( _bstr_t( wstrExecutablePath.c_str() ) ); if( FAILED(hr) ) { printf("\nCannot set path of executable: %x", hr ); pExecAction-&gt;Release(); CLEANUP return 1; } hr = pExecAction-&gt;put_Arguments( _bstr_t( L"" ) ); if( FAILED(hr) ) { printf("\nCannot set arguments of executable: %x", hr ); pExecAction-&gt;Release(); CLEANUP return 1; } // ------------------------------------------------------ // Save the task in the root folder. IRegisteredTask *pRegisteredTask = NULL; hr = pRootFolder-&gt;RegisterTaskDefinition( _bstr_t( wszTaskName ), pTask, TASK_CREATE, _variant_t(_bstr_t( L"S-1-5-32-545")),//Well Known SID for \\Builtin\Users group _variant_t(), TASK_LOGON_GROUP, _variant_t(L""), &amp;pRegisteredTask); if( FAILED(hr) ) { printf("\nError saving the Task : %x", hr ); CLEANUP return 1; } printf("\n Success! Task successfully registered. " ); for (i=0; i&lt;100; i++)//give 10 seconds for the task to start { pRegisteredTask-&gt;get_State(&amp;taskState); if (taskState == TASK_STATE_RUNNING) { printf("\nTask is running\n"); break; } Sleep(100); } if (i&gt;= 100) printf("Task didn't start\n"); //Delete the task when done hr = pRootFolder-&gt;DeleteTask( _bstr_t( wszTaskName ), NULL); if( FAILED(hr) ) { printf("\nError deleting the Task : %x", hr ); CLEANUP return 1; } printf("\n Success! Task successfully deleted. " ); // Clean up. CLEANUP CoUninitialize(); return 0; } </code></pre> http://stackoverflow.com/questions/171301/whats-the-fastest-way-to-divide-an-integer-by-3 2 What's the fastest way to divide an integer by 3? Greg Dean 2008-10-05T01:13:19Z 2009-05-13T18:15:16Z <pre><code>int x = n / 3; // &lt;-- make this faster // for instance int a = n * 3; // &lt;-- normal integer multiplication int b = (n &lt;&lt; 1) + n; // &lt;-- potentially faster multiplication </code></pre> http://stackoverflow.com/questions/807993/aggregate-objects/808031#808031 1 Answer by Greg Dean for Aggregate Objects Greg Dean 2009-04-30T17:07:29Z 2009-04-30T17:07:29Z <p>It depends, </p> <p>If B and C are heavy and expense to load and construct, it might be worthwhile to defer the loading of them until you are sure they are needed (Lazy Initialize).</p> <p>If they are simple and lightweight maybe you just want to construct them whenever, you get the Ids.</p> http://stackoverflow.com/questions/782796/how-do-i-safely-use-an-obfuscator/782812#782812 4 Answer by Greg Dean for How do I safely use an obfuscator? Greg Dean 2009-04-23T17:41:04Z 2009-04-23T17:53:40Z <p>Most of the problem I have encountered with obfuscation revolve around types that can't have their name changed, because something needs to reflect on them (your code or the runtime). </p> <p>for example if you have a class that is being used as a web service proxy, you can't safely obfuscate the class name:</p> <pre><code>public class MyWebServiceProxy : SoapHttpClientProtocol { } </code></pre> <p>Also some obfuscators can not handle generic methods and classes.</p> <p>The trick is you need to find these types and prevent the obfuscater from renaming them. This is done with the Obfuscation attribute:</p> <pre><code>[global::System.Reflection.Obfuscation(Exclude=true, Feature="renaming")] </code></pre> http://stackoverflow.com/questions/781828/how-to-deal-with-requests-for-ridiculous-functionality-in-your-software/781953#781953 8 Answer by Greg Dean for How to deal with requests for ridiculous functionality in your software? Greg Dean 2009-04-23T14:17:10Z 2009-04-23T14:17:10Z <p>Your weapon of choice should be the <strong>estimate</strong>. Ridiculous functionality, usually comes with a ridiculous estimate. When <em>must have feature X</em> gets a 3 man year estimate, it magically turns into, <em>nice to have feature X</em>.</p> http://stackoverflow.com/questions/759664/anyone-know-of-a-good-net-chess-engine 4 Anyone know of a good .Net Chess Engine Greg Dean 2009-04-17T09:05:36Z 2009-04-22T01:29:59Z <p>I'm looking for a decent .Net chess engine. If there is a good chess existing one, any recommendation as to a good candidate to port to .Net?</p> http://stackoverflow.com/questions/762465/problem-with-remoting-when-different-domains-are-used/762525#762525 -1 Answer by Greg Dean for Problem with remoting when different domains are used Greg Dean 2009-04-17T23:08:34Z 2009-04-18T09:02:41Z <blockquote> <p>then pass the proxy of remote object to the server</p> </blockquote> <p>Can you explain this? This doesn't sound like a good idea. Typically a proxy is used to invoke remote methods (RPC). Passing the proxy back to the server, doesn't make sense. Sure it may work in some scenarios, but it just adds unnecessary complication. </p> <p>If you want to pass an object, create a separate data class and pass that as a parameter to the remote method.</p> <p>Common.dll</p> <pre><code>[Serializable] public class Data { int a; int b; } [Serializable] public class ResultData { int c; } public interface IServerInterface { ResultData DoSomething(Data data); } </code></pre> <p>Server.dll</p> <pre><code>public class ServerObject : MarshalByRefObject, IServerInterface { public ResultData DoSomething(Data data) { // do some work on the server return new ResultData(); } } </code></pre> <p>Client.exe</p> <pre><code>class Program { static void Main(string[] args) { IServerInterface proxy = CreateProxy(); ResultData result = proxy.DoSomething(new Data()); } } </code></pre> http://stackoverflow.com/questions/759425/currency-format-string-in-asp-net/759431#759431 1 Answer by Greg Dean for Currency format string in asp.net Greg Dean 2009-04-17T07:50:21Z 2009-04-17T07:55:39Z <pre><code>decimal moneyvalue = 1921.39m; string s = String.Format("{0:C}", moneyvalue); </code></pre> <p>The current culture will be used.</p> <p>Make sure you have the following in your web.config:</p> <pre><code>&lt;system.web&gt; &lt;globalization culture="auto" uiCulture="auto"/&gt; &lt;/system.web&gt; </code></pre> <p>or as ck suggests, declare the equivalent, in your page</p> http://stackoverflow.com/questions/717613/make-visualstudio-c-have-files-folders-outside-of-the-project-directory/717619#717619 2 Answer by Greg Dean for Make VisualStudio C# have files/folders outside of the project directory. Greg Dean 2009-04-04T19:12:05Z 2009-04-04T19:15:15Z <p>Add As Link</p> <p><a href="http://msdn.microsoft.com/en-us/library/9f4t9t92%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/9f4t9t92(VS.80).aspx</a></p> http://stackoverflow.com/questions/682970/what-is-the-different-between-hide-and-visible-false/682987#682987 0 Answer by Greg Dean for What is the different between Hide() and Visible = false? Greg Dean 2009-03-25T19:01:34Z 2009-03-25T19:01:34Z <p>Nothing, Hide() is implemented as follows:</p> <pre><code>public void Hide() { this.Visible = false; } </code></pre> http://stackoverflow.com/questions/674303/how-do-i-create-a-temp-file-in-a-directory-other-than-temp/674316#674316 5 Answer by Greg Dean for How do I create a temp file in a directory other than temp? Greg Dean 2009-03-23T17:14:56Z 2009-03-23T17:14:56Z <pre><code>Path.Combine(directoryYouWantTheRandomFile, Path.GetRandomFileName()) </code></pre> http://stackoverflow.com/questions/674113/how-can-i-generate-unique-random-numbers-in-php/674133#674133 6 Answer by Greg Dean for How can I generate unique random numbers in PHP? Greg Dean 2009-03-23T16:36:53Z 2009-03-23T16:36:53Z <p>Sounds like you want to shuffle the questions, not randomize access to them. So your algorithm would be something like this.</p> <ol> <li>Get the all question (or question keys) you want to display.</li> <li>Shuffle them</li> <li>Retrieve/ display in them in the shuffled order</li> </ol> <p>for shuffling check out: <a href="http://en.wikipedia.org/wiki/Fisher-Yates%5Fshuffle" rel="nofollow">Fisher-Yates shuffle algorithm</a></p> http://stackoverflow.com/questions/672203/anyone-have-experience-with-slide-show2 1 Anyone have experience with slide.show2? Greg Dean 2009-03-23T04:03:25Z 2009-03-23T09:26:19Z <p>I'm looking to use <a href="http://slideshow2.codeplex.com/" rel="nofollow">Slide.Show2</a> on a website, however I have run into a few problems, and I am wondering if they are worth fighting through or not?</p> <p>Problems Thus Far:</p> <ol> <li>XmlDataProvider does not support query string parameters in the Path argument. While I've managed to hack around it, this raises some serious warning flags to me about the maturity/quality of the source.</li> <li>Right now the app appears to be crashing, Not sure if it's worth troubleshooting or not.</li> </ol> <p>If not Slide.Show2 can you suggest an alternative?</p> http://stackoverflow.com/questions/648939/open-file-without-really-locking-it 4 Open file without (really) locking it? Greg Dean 2009-03-16T01:15:11Z 2009-03-21T03:02:21Z <p>Is it possible to open a file in a way that allows subsequent deletion/renaming of its parent folder?</p> <p>I know you can do this:</p> <pre><code>File.Open("foo.bar", FileMode.Open, FileAccess.Read, FileShare.Read | FileShare.Delete) </code></pre> <p>Which will allow for the file to be deleted when the file handle is closed. However, if it does not allow the parent folder to be deleted without error.</p> <p>I couldn't find anything in the framework. Have I overlooked something, or is there a native API I can interop to.</p> <p>Note: I don't care if I get an exception when using the stream of the deleted file. In fact that would be ideal.</p> <p><strong>UPDATE:</strong></p> <p>So the most promising idea was the <a href="http://stackoverflow.com/questions/648939/open-file-without-really-locking-it/649372#649372">Hardlink</a>, however I just can't make it work. I still end up with Access Denied when i try to delete the parent directory. Here is my code:</p> <pre><code>class Program { [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)] static extern bool CreateHardLink(string lpFileName, string lpExistingFileName, IntPtr lpSecurityAttributes); static void Main(string[] args) { string hardLinkPath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName()); string realPath = @"C:\foo\bar.txt"; if (CreateHardLink(hardLinkPath, realPath, IntPtr.Zero)) { using (FileStream stream = File.Open(hardLinkPath, FileMode.Open, FileAccess.Read, FileShare.Delete | FileShare.ReadWrite)) { Console.Write("File locked"); Console.ReadLine(); } File.Delete(hardLinkPath); } else Console.WriteLine("LastError:{0}", Marshal.GetLastWin32Error()); } } </code></pre> http://stackoverflow.com/questions/660000/c-how-can-i-cut-a-string-at-its-end-to-fit-in-a-div/660012#660012 1 Answer by Greg Dean for C# - How can I cut a string at its end to fit in a div? Greg Dean 2009-03-18T20:41:27Z 2009-03-18T20:41:27Z <p>I think you want to use css for this. </p> <pre><code>word-wrap:break-word; </code></pre> <p>should do it</p> http://stackoverflow.com/questions/1703377/how-do-you-make-a-property-truly-read-only/1703410#1703410 Comment by Greg Dean on How do you make a property truly read only? Greg Dean 2009-11-09T20:36:35Z 2009-11-09T20:36:35Z [ReflectionPermission(SecurityAction.Deny, Flags = ReflectionPermissionFlag.AllFlags)] is about all i can think of, but it may not really help http://stackoverflow.com/questions/1703541/what-should-i-load-into-memory-when-my-app-loads Comment by Greg Dean on What should I load into memory when my app loads? Greg Dean 2009-11-09T20:30:49Z 2009-11-09T20:30:49Z how big is each record? http://stackoverflow.com/questions/1619483/how-to-echo-a-class/1619493#1619493 Comment by Greg Dean on How to "echo" a class? Greg Dean 2009-10-25T00:57:09Z 2009-10-25T00:57:09Z -1 for slowness .. jk http://stackoverflow.com/questions/1495025/stuck-on-serialization-in-c Comment by Greg Dean on Stuck on Serialization in C# Greg Dean 2009-09-29T21:28:28Z 2009-09-29T21:28:28Z can you share the implementation of RulesManager http://stackoverflow.com/questions/459375/customizing-the-treeview-to-allow-multi-select/459399#459399 Comment by Greg Dean on Customizing the TreeView to allow multi select. Greg Dean 2009-08-31T10:12:27Z 2009-08-31T10:12:27Z that's not WPF... http://stackoverflow.com/questions/1103693/c-how-to-model-a-many-to-many-relationship-in-code Comment by Greg Dean on C#: How to model a Many to many-relationship in code? Greg Dean 2009-07-09T13:04:58Z 2009-07-09T13:04:58Z so it's tagged wrong? http://stackoverflow.com/questions/1103693/c-how-to-model-a-many-to-many-relationship-in-code Comment by Greg Dean on C#: How to model a Many to many-relationship in code? Greg Dean 2009-07-09T13:00:20Z 2009-07-09T13:00:20Z &quot;But many to many is not allowed&quot; Why? http://stackoverflow.com/questions/196949/how-to-run-not-elevated-in-vista-net/196959#196959 Comment by Greg Dean on How to run NOT elevated in Vista (.NET) Greg Dean 2009-06-29T23:55:10Z 2009-06-29T23:55:10Z Tell Jeff Atwood http://stackoverflow.com/questions/1029485/use-composite-keys-or-always-use-surrogate-keys Comment by Greg Dean on Use composite keys? Or always use surrogate keys? Greg Dean 2009-06-23T01:38:51Z 2009-06-23T01:38:51Z The link that was indicated as a duplicate has an accepted answer that doesn't really answer this question. http://stackoverflow.com/questions/953212/lfu-cache-in-c Comment by Greg Dean on LFU Cache in C#? Greg Dean 2009-06-19T01:23:07Z 2009-06-19T01:23:07Z @Sam are you saying that until now there has never been a LFU cache written in C#? lol http://stackoverflow.com/questions/143760/what-books-should-i-read-to-have-an-undergraduate-education-in-computer-science/143770#143770 Comment by Greg Dean on What books should I read to have an undergraduate education in Computer Science? Greg Dean 2009-06-17T05:29:14Z 2009-06-17T05:29:14Z -1 TAOCP would be too overwhelming to self learn at this level http://stackoverflow.com/questions/978445/how-do-you-handle-a-thread-that-has-a-hung-call/978999#978999 Comment by Greg Dean on How do you handle a thread that has a hung call? Greg Dean 2009-06-11T18:14:07Z 2009-06-11T18:14:07Z did you even read the question http://stackoverflow.com/questions/973721/c-detecting-if-the-shift-key-is-held-when-opening-a-context-menu/973768#973768 Comment by Greg Dean on C# - Detecting if the SHIFT key is held when opening a context menu Greg Dean 2009-06-10T05:20:46Z 2009-06-10T05:20:46Z +1 should help you get the rep you need http://stackoverflow.com/questions/973721/c-detecting-if-the-shift-key-is-held-when-opening-a-context-menu/973733#973733 Comment by Greg Dean on C# - Detecting if the SHIFT key is held when opening a context menu Greg Dean 2009-06-10T05:20:10Z 2009-06-10T05:20:10Z @Chris - As Jared says it's static. I updated his answer with a link to msdn http://stackoverflow.com/questions/950786/book-recommendations-about-the-business-of-software/950814#950814 Comment by Greg Dean on Book recommendations about the business of software Greg Dean 2009-06-04T19:58:29Z 2009-06-04T19:58:29Z yea same experience here. Ironically the chasm in the book is fairly tough to cross...