User spoon16 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T23:10:39Z http://stackoverflow.com/feeds/user/3957 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1205559/how-can-i-measure-the-overhead-of-a-mocking-framework-typemock 1 How can I measure the overhead of a mocking framework (TypeMock)? spoon16 2009-07-30T09:44:32Z 2009-11-22T20:36:36Z <p>I'm just beginning to evaluate mocking frameworks for my team and am wondering if anyone has any pointers to reference documentation or experience that you can share regarding the cost of mocking when doing performance tests.</p> <p>Links? Personal experience? Details appreciated.</p> http://stackoverflow.com/questions/112660/do-you-leverage-semantic-web-technologies-why-or-why-not 5 Do you leverage Semantic Web technologies? Why or why not? spoon16 2008-09-22T00:29:53Z 2009-11-16T12:26:52Z <p>I'm interested in understanding why people choose to leverage technology built on the W3C Semantic Web standards. How did you make the decision to use the technology you chose and what does it enable you to do that you identify as being unique to the Semantic Web effort?</p> <p>If you have specifically made the decision not to use Semantic Web technologies what are your reasons for that decision? What would have to change to cause you to revisit your decision?</p> <p>Note: I know there are many different types of semantic computing technologies besides those specified by the W3C but please keep answers to this subjective question focused on the W3C technologies (RDF, OWL, SPARQL).</p> <p><em>Disclaimer: I focus on semantic computing incubation's at Microsoft.</em></p> http://stackoverflow.com/questions/1739568/bind-wpf-datagrid-itemssource-to-method-ienumerabletablerow-getrows-of-cust 0 Bind WPF DataGrid ItemsSource to method, IEnumerable<TableRow> GetRows(), of custom Table object? spoon16 2009-11-16T01:09:51Z 2009-11-16T04:59:31Z <p>I am struggling with the learning curve on WPF data binding and could use an example. Bonus points for those that answer the question and link to an article that helped them "get" WPF data binding.</p> <p>I am trying to bind a custom Table object with a WPF DataGrid.</p> <p>Here is my objects (I do not have the ability to change them, signatures truncated a bit):</p> <pre><code>public class MyTable { public int ColumnCount { get; } public string GetColumnName(int columnIndex); public IEnumerable&lt;MyTableRow&gt; GetRows(); } public class MyTableRow { public MyTableCell [] Cells { get; } } public class MyTableCell { public string Value { get; } } </code></pre> <p>So the <code>DataContext</code> on the current <code>Window</code> is an instance of <code>MyTable</code>. I could not see any clear way to auto generate the columns from my <code>MyTable</code> object so I generated them in code:</p> <pre><code>private void dg_Table_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e) { MyTable tbl = e.NewValue as MyTable; if (tbl != null) { //setup data grid columns dg_Table.Columns.Clear(); for (int i = 0; i &lt; tbl.ColumnCount; i++) { var column = new DataGridTextColumn() { Header = tbl.GetColumnName(i), Binding = new Binding(string.Format("Cells[{0}]", i)) }; dg_Table.Columns.Add(column); } //end setup data grid columns } } </code></pre> <p>I think the next step would be to bind the <code>ItemsSource</code> property of the <code>DataGrid</code> to the <code>GetRows</code> method on the <code>MyTable</code> object but I'm not sure how to do that. I thought maybe this could be done using an <code>ObjectDataProvider</code> resource but I can't figure out how to reference a method on the DataContext object.</p> <p>Can someone help me with the XAML and code behind for this scenario?</p> http://stackoverflow.com/questions/1586050/need-example-of-using-counterdelta32-performancecounter 0 Need example of using CounterDelta32 PerformanceCounter spoon16 2009-10-18T21:11:18Z 2009-11-16T02:50:34Z <p>I'm trying to show the number of times an operation occurred since the last performance iteration. I have created a performance counter using the following:</p> <pre><code>var clearStateCounterData = new CounterCreationData() { CounterName = ClearStateName, CounterHelp = "The number of times the service state has been cleared since the last performance iteration", CounterType = PerformanceCounterType.CounterDelta32 }; </code></pre> <p>Then I call <code>counter.Increment()</code> in my application but I never see the performance counter value move. Even if I run it multiple times per second.</p> <p>Is there something special I need or a specific value I need to increment by to get the PerformanceCounter to show something?</p> <p><strong>Figured it out</strong></p> <p>I put an example of using this counter in an answer below. Thanks for the help guys.</p> http://stackoverflow.com/questions/1727828/start-a-program-in-active-user-session-with-powershell-remoting 0 Start a program in active user session with PowerShell remoting spoon16 2009-11-13T08:11:10Z 2009-11-13T23:15:32Z <p>Is it possible to detect that a specific user has an open session on a computer and to open a process in that session so that the application can be interacted with by the user using PowerShell remoting?</p> <p>How would I go around detecting which users have sessions open on the machine and what their state is (active, idle, disconnected, etc...)? How would I launch an application within one of those sessions?</p> <p><strong>UPDATE</strong><br> I have found that you can identify the session ID a process is running in:</p> <pre><code>PS &gt; ( Get-Process notepad ).SessionId 1 </code></pre> <p>I can't seem to find anyway to specify the session ID for a process when you start it though.</p> http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service 0 Start a program in an active user session from a service? spoon16 2009-11-13T16:08:58Z 2009-11-13T18:57:23Z <p>How can I start a program in an active user session from a running .NET background process. Basically I have a .NET application running as a service and I want that application to launch a specific windowed application on the users desktop when certain events happen.</p> <p>How can I do this?</p> <p>This question is related to this one: <a href="http://stackoverflow.com/questions/1727828/start-a-program-in-active-user-session-with-powershell-remoting">http://stackoverflow.com/questions/1727828/start-a-program-in-active-user-session-with-powershell-remoting</a></p> <p><strong>Update</strong><br> Using <code>Process.Start</code> alone will not work here since it launches the application in the current application session. It doesn't launch the application in a specific users active desktop session.</p> http://stackoverflow.com/questions/1281218/why-is-the-create-a-performance-session-for-this-test-grayed-out-on-my-load-tes 0 Why is the "Create a performance session for this test" grayed out on my load test? spoon16 2009-08-15T05:13:54Z 2009-11-13T16:11:42Z <p>In Visual Studio 2008 SP1 I have created a load test and am trying to create a performance profiling session that will profile the execution of the load test.</p> <p>According to this post <a href="http://blogs.msdn.com/tess/archive/2008/10/01/using-visual-studio-team-system-test-and-profilers-to-troubleshoot-performance-issues-part-1.aspx" rel="nofollow">Using VSTS Test and Profilers to troubleshoot performance issues (low cpu hang)</a> it's a very simple matter of clicking the "Create a performance session for this test" button which will launch a wizard and create the performance session. </p> <p>Unfortunately this button is grayed out. Anyone know why? The load test is executing unit tests only (no web tests).</p> <p><img src="http://friendfeed-media.com/75b170a3b8aa18f43cd31dfb3ed28c025c74e0ce" alt="grayed out create a performance session for this test" /></p> <p><strong>Update</strong><br /> Alternatively, how can I add a load test to a performance profiling session without using the "Create a performance session for this test" button?</p> http://stackoverflow.com/questions/1704594/creating-a-powershell-job-that-executes-a-sql-command-every-5-minutes 0 Creating a PowerShell job that executes a SQL command every 5 minutes spoon16 2009-11-09T23:10:40Z 2009-11-09T23:21:34Z <p>I'm creating a PowerShell script that I'm going to execute using <code>Start-Job</code>. The job should continuously run in the background until I tell it to stop using <code>Stop-Job</code>. It should execute a SQL command on a timer with a specified duration and output the results to the jobs pipeline so I can retrieve them using <code>Receive-Job</code>.</p> <p>Right now the job runs properly but I don't have it setup to continue running after initial SQL command execution (I don't have the timer implemented).</p> <p>What is the proper way to implement a timer in a PowerShell job so that the job runs continuously?</p> http://stackoverflow.com/questions/1703061/powershell-match-operator-and-multiple-groups 1 PowerShell -match operator and multiple groups spoon16 2009-11-09T19:07:04Z 2009-11-09T20:15:17Z <p>I have the following log entry that I am processing in PowerShell I'm trying to extract all the activity names and durations using the <code>-match</code> operator but I am only getting one match group back. I'm not getting all of the matches that I see when I do the same thing in C# using the <code>Regex</code> object. Can someone explain what I am doing wrong?</p> <p>Relevant PowerShell Script</p> <pre><code>$formattedMessage -match "(Get\sClient\sModel|Parse\sExpression|Get\sAbstract\sQuery|Compile\sQuery|Execute\sQuery|Get\sQuery\sPlan\sComplexity|Async\sTotal|Total)\s-\sduration\(([0-9]*)" | out-null $matches </code></pre> <p>Output</p> <pre><code>Name Value ---- ----- 0 Get Client Model - duration(0 1 Get Client Model 2 0 </code></pre> <p>Log Entry Example:</p> <pre><code>Timestamp: 11/9/2009 6:48:41 PM Message: Category: QueryService Priority: 3 EventId: 1001 Severity: Information Title: SPARQL Query Response Machine: SPOON16-SERVER App Domain: KnowledgeBaseHost.exe ProcessId: 2040 Process Name: D:\QueryService\QSHost.exe Thread Name: Win32 ThreadId:8092 Extended Properties: Key - Workflow_cbbdd58b-e574-4054-88d4-1dd7a56dc9d9 Timeout - 1800 Result Format - WireTable Result from Registry - False Compiled Query from Cache - True Result Count - 28332 Query Plan Complexity - 661622 Get Client Model - duration(0) start(0) Parse Expression - duration(0) start(0) Get Abstract Query - duration(0) start(0) Compile Query - duration(0) start(0) Get Query Plan - duration(0) start(1) Execute Query - duration(63695) start(1) Get Query Plan Complexity - duration(0) start(63696) Get Executed Operations - duration(0) start(63696) Total - duration(63696) start(0) Async Total - duration(63696) start(0) </code></pre> http://stackoverflow.com/questions/1703061/powershell-match-operator-and-multiple-groups/1703176#1703176 0 Answer by spoon16 for PowerShell -match operator and multiple groups spoon16 2009-11-09T19:23:58Z 2009-11-09T19:23:58Z <p>I was able to get all of the groups by defining a Regex and then calling .Matches on that Regex. Still curious to know if this can be done with the -match operator in PowerShell.</p> <pre><code>$detailRegex = [regex]"(Get\sClient\sModel|Parse\sExpression|Get\sAbstract\sQuery|Compile\sQuery|Execute\sQuery|Get\sQuery\sPlan\sComplexity|Async\sTotal|Total)\s-\sduration\(([0-9]*)" $detailRegex.Matches($formattedMessage) </code></pre> http://stackoverflow.com/questions/1676512/enterprise-grade-databases-that-can-handle-large-rdf-datasets/1677881#1677881 0 Answer by spoon16 for Enterprise grade databases that can handle large RDF datasets? spoon16 2009-11-05T02:00:55Z 2009-11-05T02:00:55Z <p><a href="http://www.intellidimension.com/" rel="nofollow">Intellidimension</a> provides a solution called <a href="http://www.intellidimension.com/products/semantics-server/" rel="nofollow">Semantic Server</a> that is developed on top of Microsoft's SQL Server 2005 or 2008. It easily scales to the hundreds of millions of triples and I know they have at least one customer happily running an enterprise deployment with over a billion statements.</p> <p>I am one of their customers working with datasets > 100 million. Our plans are to move towards the 10s of billions of statements.</p> http://stackoverflow.com/questions/1628127/difference-between-cmdlet-endprocessing-and-cmdlet-stopprocessing/1628457#1628457 1 Answer by spoon16 for Difference between Cmdlet.EndProcessing and Cmdlet.StopProcessing spoon16 2009-10-27T02:25:12Z 2009-10-27T02:25:12Z <p>StopProcessing is called if the execution of the CmdLet is cancelled (pressing CNTRL-C will cause StopProcessing to be executed).</p> <p>EndProcessing is called if the execution of the CmdLet ends normally.</p> <p>I typically use StopProcessing and EndProcessing to do the same thing... that is to clean up resources that were provisioned during BeginProcessing or ProcessRecord, in some cases though there is some difference between what actions each provides.</p> <p>It seems like a mistake that it is not shown in the life cycle documentation.</p> http://stackoverflow.com/questions/1611545/visual-studio-2010-and-2008-mixed-development-environment-possible 2 Visual Studio 2010 and 2008 mixed development environment possible? spoon16 2009-10-23T05:32:50Z 2009-10-26T12:53:55Z <p>We are looking at migrating to Visual Studio 2010. Is it possible for some developers to use Visual Studio 2010 and other to use 2008 on the same solution/projects? How will it affect our VSTF builds (VSTF Server 2008)?</p> http://stackoverflow.com/questions/1586050/need-example-of-using-counterdelta32-performancecounter/1587096#1587096 0 Answer by spoon16 for Need example of using CounterDelta32 PerformanceCounter spoon16 2009-10-19T05:28:18Z 2009-10-19T05:28:18Z <p>Here is an example that worked for me.</p> <pre><code>class Program { const string CategoryName = "____Test Category"; const string CounterName = "Clear State Operations"; static void Main(string[] args) { if (PerformanceCounterCategory.Exists(CategoryName)) PerformanceCounterCategory.Delete(CategoryName); var counterDataCollection = new CounterCreationDataCollection(); var clearStateCounterData = new CounterCreationData() { CounterName = CounterName, CounterHelp = "The number of times the service state has been cleared since the last performance iteration", CounterType = PerformanceCounterType.CounterDelta32 }; counterDataCollection.Add(clearStateCounterData); PerformanceCounterCategory.Create(CategoryName, "Test Perf Counters", PerformanceCounterCategoryType.SingleInstance, counterDataCollection); var counter = new PerformanceCounter(CategoryName, CounterName, false); for (int i = 0; i &lt; 5000; i++) { var sw = Stopwatch.StartNew(); Thread.Sleep(10300); sw.Stop(); counter.Increment(); } Console.Read(); } } </code></pre> http://stackoverflow.com/questions/1582572/is-httpclient-from-wcf-rest-starter-kit-silverlight-compatible 0 Is HttpClient from WCF REST Starter Kit Silverlight compatible? spoon16 2009-10-17T16:21:04Z 2009-10-18T08:44:03Z <p>I know in earlier versions of the WCF REST Starter Kit the <code>HttpClient</code> class was not usable from Silverlight. Has that changed? I did a couple of quick searches and didn't find anything that gave a clear answer.</p> http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script 1 Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 script spoon16 2009-10-14T15:32:31Z 2009-10-16T06:07:16Z <p>I'd like to convert Keith Hill's C# implementation of Get-Clipboard and Set-Clipboard into pure PowerShell as a .PSM1 file.</p> <p>Is there a way to spin up an STA thread in PowerShell as he does in his Cmdlet when working with the clipboard?</p> <p><a href="http://keithhill.spaces.live.com/blog/cns!5A8D2641E0963A97!193.entry?wa=wsignin1.0&amp;sa=136851024" rel="nofollow">The Blog Post</a><br /> <a href="http://home.comcast.net/~rkeithhill/MSH/Clipboard.cs" rel="nofollow">The Code</a></p> http://stackoverflow.com/questions/1568276/what-is-the-appropriate-initial-value-for-a-elapsedtime-performance-counter 1 What is the appropriate initial value for a ElapsedTime Performance Counter? spoon16 2009-10-14T18:54:00Z 2009-10-14T19:10:49Z <p>What is the proper initial value for an <code>ElapsedTime</code> performance counter? When my app starts up I am setting the <code>.RawValue</code> of the performance counter instance to 0 but that is not correct. It looks like it needs to be based on the current time but I'm not sure what is the actual value I should be using.</p> http://stackoverflow.com/questions/1331873/are-there-good-references-for-moving-from-perl-to-powershell/1331907#1331907 2 Answer by spoon16 for Are there good references for moving from Perl to Powershell? spoon16 2009-08-26T01:31:05Z 2009-10-11T03:57:41Z <p>I don't know of any good Perl to Powershell comparisons but I can answer your secondary question.</p> <pre><code>$files = get-childitem "c:\test\" -filter *.dll foreach ($file in $files) { $file.Name } </code></pre> <p>There are two different ways you can express a <a href="http://www.computerperformance.co.uk/powershell/powershell%5Floops.htm" rel="nofollow"><code>foreach</code></a> loop in Powershell.</p> <p>You can pipe an array of objects into <code>foreach</code> and <code>$_</code> becomes the current object on each iteration.</p> <pre><code>0,1,2,3 | foreach { $_ } </code></pre> <p>Alternatively, you can pass a variable to iterate over.</p> <pre><code>foreach ($num in 0,1,2,3) { $num } </code></pre> <p>Output in both cases.</p> <pre><code>0 1 2 3 </code></pre> http://stackoverflow.com/questions/1547179/how-to-use-averagetimer32-and-averagebase-performance-counters-with-system-diagno 1 How to use AverageTimer32 and AverageBase performance counters with System.Diagnostics.Stopwatch? spoon16 2009-10-10T06:00:09Z 2009-10-10T06:37:42Z <p>When I execute the following program and look at the performance counter the results don't make sense to me. The average value is zero and the min/max values are ~0.4 when I would expect ~0.1 or ~100.</p> <p>What is my problem?</p> <p><strong>Code</strong></p> <pre><code>class Program { const string CategoryName = "____Test Category"; const string CounterName = "Average Operation Time"; const string BaseCounterName = "Average Operation Time Base"; static void Main(string[] args) { if (PerformanceCounterCategory.Exists(CategoryName)) PerformanceCounterCategory.Delete(CategoryName); var counterDataCollection = new CounterCreationDataCollection(); var avgOpTimeCounter = new CounterCreationData() { CounterName = CounterName, CounterHelp = "Average Operation Time Help", CounterType = PerformanceCounterType.AverageTimer32 }; counterDataCollection.Add(avgOpTimeCounter); var avgOpTimeBaseCounter = new CounterCreationData() { CounterName = BaseCounterName, CounterHelp = "Average Operation Time Base Help", CounterType = PerformanceCounterType.AverageBase }; counterDataCollection.Add(avgOpTimeBaseCounter); PerformanceCounterCategory.Create(CategoryName, "Test Perf Counters", PerformanceCounterCategoryType.SingleInstance, counterDataCollection); var counter = new PerformanceCounter(CategoryName, CounterName, false); var baseCounter = new PerformanceCounter(CategoryName, BaseCounterName, false); for (int i = 0; i &lt; 500; i++) { var sw = Stopwatch.StartNew(); Thread.Sleep(100); sw.Stop(); Console.WriteLine(string.Format("t({0}) ms({1})", sw.Elapsed.Ticks, sw.Elapsed.TotalMilliseconds)); counter.IncrementBy(sw.Elapsed.Ticks); baseCounter.Increment(); } Console.Read(); } } </code></pre> <p><strong>Performance Counter Screenshot</strong> <img src="http://friendfeed-media.com/50028bb6a0016931a3af5122774b56f93741bb5c" alt="Performance Counter Screenshot" /></p> http://stackoverflow.com/questions/1508157/finally-block-in-iterators/1508181#1508181 0 Answer by spoon16 for 'Finally' Block in Iterators spoon16 2009-10-02T07:39:26Z 2009-10-02T07:39:26Z <p><code>try/finally</code> works in this case.</p> <pre><code>public static IEnumerable&lt;string&gt; ReadLines(this Stream stream) { StreamReader rdr = new StreamReader(stream); try { string txt = rdr.ReadLine(); while (txt != null) { yield return txt; txt = rdr.ReadLine(); } rdr.Close(); } finally { rdr.Dispose(); } } </code></pre> http://stackoverflow.com/questions/766918/convert-1-79769313486232e308-to-double-without-overflowexception 0 Convert "1.79769313486232E+308" to double without OverflowException? spoon16 2009-04-20T04:43:13Z 2009-09-28T23:11:19Z <p>I have this string "1.79769313486232E+308" and am trying to convert it to a .NET numeric value (double?) but am getting the below exception. I am using <code>Convert.ToDouble()</code>. What is the proper way to do this conversion?</p> <blockquote> <p>OverflowException: Value was either too large or too small for a Double</p> </blockquote> http://stackoverflow.com/questions/1478545/handling-events-with-powershell 2 Handling events with PowerShell? spoon16 2009-09-25T17:16:38Z 2009-09-26T01:44:24Z <p>How can you handle events thrown by .NET object using PowerShell v2? Can someone point me to a simple code sample?</p> http://stackoverflow.com/questions/138133/is-there-a-standard-framework-for-net-parameter-validation-that-uses-attributes 1 Is there a standard framework for .NET parameter validation that uses attributes? spoon16 2008-09-26T07:23:39Z 2009-09-21T11:31:04Z <p>Is there a standard framework (maybe part of Enterprise Library... or .NET itself) that allows you to do common parameter validation in method attributes?</p> http://stackoverflow.com/questions/622897/how-can-i-set-headers-with-silverlight-get-httpwebrequest 0 How can I set Headers with Silverlight GET HttpWebRequest? spoon16 2009-03-08T02:14:34Z 2009-09-18T08:53:56Z <p>Making a request to a RESTful service in Silverlight with HttpWebRequest works well so long as I don't add any headers to the request.</p> <p>As soon as I add a header using code like this</p> <pre><code>var webReq = (HttpWebRequest)WebRequest.Create(new Uri(_RemoteAddress, "GetProviderMetadata")); webReq.Method = HttpMethodType.Get; webReq.Headers["SomeToken"] = "someTokenValue"; </code></pre> <p>I get the exception pasted at the bottom of this question as soon as <code>EndGetResponse()</code> is called. Anyone know why this is? Adding headers to get requests seems to work fine in normal .NET so I'm guessing it's some sort of Silverlight limitation but I can't find any documentation that clarifies.</p> <pre><code> {System.NotSupportedException ---&gt; System.NotSupportedException: Specified method is not supported. at System.Net.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClass5.&lt;EndGetResponse&gt;b__4(Object sendState) at System.Net.AsyncHelper.&lt;&gt;c__DisplayClass2.&lt;BeginOnUI&gt;b__0(Object sendState) --- End of inner exception stack trace --- at System.Net.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state) at System.Net.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClassd.&lt;InvokeGetResponseCallback&gt;b__b(Object state2) at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack) at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)} [System.NotSupportedException]: {System.NotSupportedException ---&gt; System.NotSupportedException: Specified method is not supported. at System.Net.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClass5.&lt;EndGetResponse&gt;b__4(Object sendState) at System.Net.AsyncHelper.&lt;&gt;c__DisplayClass2.&lt;BeginOnUI&gt;b__0(Object sendState) --- End of inner exception stack trace --- at System.Net.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state) at System.Net.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClassd.&lt;InvokeGetResponseCallback&gt;b__b(Object state2) at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack) at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)} _className: "System.NotSupportedException" _data: {System.Collections.ListDictionaryInternal} _dynamicMethods: null _exceptionMethod: null _exceptionMethodString: null _helpURL: null _HResult: -2146233067 _innerException: {System.NotSupportedException: Specified method is not supported. at System.Net.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClass5.&lt;EndGetResponse&gt;b__4(Object sendState) at System.Net.AsyncHelper.&lt;&gt;c__DisplayClass2.&lt;BeginOnUI&gt;b__0(Object sendState)} _message: "" _remoteStackIndex: 0 _remoteStackTraceString: null _source: "System.Windows" _stackTrace: {sbyte[192]} _stackTraceString: null _xcode: -532462766 _xptrs: 0 Data: {System.Collections.ListDictionaryInternal} HelpLink: null HResult: -2146233067 InnerException: {System.NotSupportedException: Specified method is not supported. at System.Net.BrowserHttpWebRequest.InternalEndGetResponse(IAsyncResult asyncResult) at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClass5.&lt;EndGetResponse&gt;b__4(Object sendState) at System.Net.AsyncHelper.&lt;&gt;c__DisplayClass2.&lt;BeginOnUI&gt;b__0(Object sendState)} Message: "" Source: "System.Windows" StackTrace: " at System.Net.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)\r\n at System.Net.BrowserHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)\r\n at Intellidimension.RdfEntity.Service.RemoteEntityServiceProviderClient.getProviderMetadataResponse(IAsyncResult result)\r\n at System.Net.BrowserHttpWebRequest.&lt;&gt;c__DisplayClassd.&lt;InvokeGetResponseCallback&gt;b__b(Object state2)\r\n at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state)\r\n at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)\r\n at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)\r\n at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)" System.Runtime.InteropServices._Exception.HelpLink: null System.Runtime.InteropServices._Exception.Source: "System.Windows" </code></pre> http://stackoverflow.com/questions/1434928/batch-file-copy-does-destination-file-already-exist 0 Batch file copy does destination file already exist? spoon16 2009-09-16T19:12:56Z 2009-09-16T19:27:22Z <p>Here is the snippet. %%X is the source path. I want to replace the source path with destination path or just remove the source path.</p> <p>%_DEST%\%%X is not working in this snippet... where it checks to see if the destination file already exists. What is the proper way to check to see if the destination file exists?</p> <pre><code>call :LOGMSG Copying new jpeg image files for %%X in (%_SRC%\*.jpeg) do if not exist %_DEST%\%%X ( xcopy %_SRC%\%%X %_DEST% /defy &gt;&gt;"%run_log%" call sd.exe add %%X &gt;&gt;"%run_log%" ) </code></pre> http://stackoverflow.com/questions/308019/jquery-slideup-remove-doesnt-seem-to-show-the-slideup-animation-before-remov 2 jQuery slideUp().remove() doesn't seem to show the slideUp animation before remove occurs spoon16 2008-11-21T06:11:07Z 2009-09-16T12:00:22Z <p>I have this line of JavaScript and the behavior I am seeing is that the <code>selectedLi</code> instantly disappears without "sliding up". This is not the behavior that I expected.</p> <p>What should I be doing so that the <code>selectedLi</code> slides up before it is removed?</p> <pre><code>selectedLi.slideUp("normal").remove(); </code></pre> http://stackoverflow.com/questions/1338453/custom-powershell-prompts 4 Custom PowerShell prompts spoon16 2009-08-27T01:43:47Z 2009-09-15T13:48:39Z <p>I'm looking for different examples of custom Powershell <code>prompt</code> function implementations. If you have a custom implementation of your own please post the script. Links to existing resources are good as well.</p> <p>Bonus points for posting a screenshot of what your prompt actually looks like (a preview).</p> http://stackoverflow.com/questions/86333/what-design-pattern-do-you-use-the-most 8 What design pattern do you use the most? spoon16 2008-09-17T18:51:32Z 2009-09-14T17:28:35Z <p>I'm interested in understanding what design patterns people find themselves using often. Hopefully this list will help other recognize common scenarios and the associated design pattern that can be used to solve them.</p> <p>Please describe a common problem you find yourself solving and the design pattern(s) you use to solve it. Links to blogs or documentation describing the pattern are also appreciated.</p> <p><strong>Edit:</strong> Please expand on your answers a bit, I would like this to be a useful reference for someone who wants to learn more about design patterns and is curious on what situations a specific design pattern might be used. Nobody has linked to any "more learning" resources.</p> http://stackoverflow.com/questions/1392699/powershell-job-progress-monitoring 0 PowerShell Job Progress Monitoring spoon16 2009-09-08T08:26:08Z 2009-09-14T16:27:36Z <p>Is there a way for a PowerShell job to report progress or to trigger events before it is complete? I just started playing around with executing background jobs in PowerShell and am wondering how far I can push the capability.</p> http://stackoverflow.com/questions/1338969/how-can-i-open-a-ps1-script-in-powershell-ise-from-the-command-line 0 How can I open a ps1 script in Powershell ISE from the command line? spoon16 2009-08-27T05:09:58Z 2009-09-09T18:11:04Z <p>I'm trying to figure out how I can open a ps1 script (or any file) in PS ISE by using the $psISE object.</p> <p>How can I open a document tab in PS ISE from the command line in PS ISE itself (without using File > Open)?</p> http://stackoverflow.com/questions/1739568/bind-wpf-datagrid-itemssource-to-method-ienumerabletablerow-getrows-of-cust/1740039#1740039 Comment by spoon16 on Bind WPF DataGrid ItemsSource to method, IEnumerable<TableRow> GetRows(), of custom Table object? spoon16 2009-11-16T05:29:57Z 2009-11-16T05:29:57Z It is strange that you can't bind to the return value of a method on an object that was not created via XAML. http://stackoverflow.com/questions/1733738/who-blogs-on-software Comment by spoon16 on Who blogs on software? spoon16 2009-11-14T09:00:54Z 2009-11-14T09:00:54Z not programming related http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service/1731124#1731124 Comment by spoon16 on Start a program in an active user session from a service? spoon16 2009-11-13T20:33:17Z 2009-11-13T20:33:17Z I believe this only works on the /CONSOLE session though and doesn't allow you to target a specific active user session. http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service/1730444#1730444 Comment by spoon16 on Start a program in an active user session from a service? spoon16 2009-11-13T17:37:05Z 2009-11-13T17:37:05Z Definitely a possible approach. Not very interesting to me though. I am just looking for a quick way to recycle an application on my own session across multiple machines using Windows Remoting (.NET). If I can't do it easily, than the best thing to do is just make the app run as a service and I can restart the service and not worry about it being run on a specific sessions desktop. http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service Comment by spoon16 on Start a program in an active user session from a service? spoon16 2009-11-13T17:34:53Z 2009-11-13T17:34:53Z I want to be able to target it at a specific user on a specific machine and I want to be able to detect the state of the session. It's not really that big of a deal if the user is not active or doesn't see it right away just so long as the next time they connect to the server the dialog is up. If they get logged off or their session gets killed it's ok if the message doesn't appear next time they login. http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service/1730362#1730362 Comment by spoon16 on Start a program in an active user session from a service? spoon16 2009-11-13T16:37:54Z 2009-11-13T16:37:54Z &quot;Run As&quot; is not the same as what I am trying to do here. It just runs an application in the current session using a specific users credentials. http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service Comment by spoon16 on Start a program in an active user session from a service? spoon16 2009-11-13T16:36:39Z 2009-11-13T16:36:39Z No worries Chris, I appreciate your time. http://stackoverflow.com/questions/1730196/start-a-program-in-an-active-user-session-from-a-service/1730262#1730262 Comment by spoon16 on Start a program in an active user session from a service? spoon16 2009-11-13T16:22:51Z 2009-11-13T16:22:51Z This will run the process using the target users credentials but it will not start it on the active desktop (in the session of) the target user. So a simple Process.Start isn't going to work. I need the solution to be able to interact with any user desktop session that is active and I need to be able to identify which of those active sessions I am interacting with. http://stackoverflow.com/questions/627557/enterprise-library-logging-block-and-email/1730202#1730202 Comment by spoon16 on Enterprise Library: Logging Block and Email spoon16 2009-11-13T16:11:26Z 2009-11-13T16:11:26Z Use the EntLibConfig.exe tool for a friendly UI that will simplify the configuration of the EmailTraceListener (and the rest of Enterprise Library). http://stackoverflow.com/questions/78716/is-xslt-worth-it/78736#78736 Comment by spoon16 on Is XSLT worth it? spoon16 2009-11-11T23:05:37Z 2009-11-11T23:05:37Z Fair, that doesn't mean it's not useful sometimes http://stackoverflow.com/questions/1704594/creating-a-powershell-job-that-executes-a-sql-command-every-5-minutes/1704649#1704649 Comment by spoon16 on Creating a PowerShell job that executes a SQL command every 5 minutes spoon16 2009-11-09T23:26:34Z 2009-11-09T23:26:34Z is Thread.Sleep the best way to wait in PowerShell? http://stackoverflow.com/questions/1703061/powershell-match-operator-and-multiple-groups/1703464#1703464 Comment by spoon16 on PowerShell -match operator and multiple groups spoon16 2009-11-09T23:02:37Z 2009-11-09T23:02:37Z I tried simplifying the regex as you described (previous to creating the nasty one I have there) and powershell doesn't generate any matches. http://stackoverflow.com/questions/1586050/need-example-of-using-counterdelta32-performancecounter/1586080#1586080 Comment by spoon16 on Need example of using CounterDelta32 PerformanceCounter spoon16 2009-10-18T23:17:06Z 2009-10-18T23:17:06Z Yeah, I did all that. The counter is showing up in my category. I just can't seem to get any values to display by incrementing the counter. I am guessing that counter.Increment is not the right thing or the only thing that I need to call in this case but I don't see any examples for this counter type available. http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1573295#1573295 Comment by spoon16 on Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 script spoon16 2009-10-16T06:06:49Z 2009-10-16T06:06:49Z worked... just had to add one line to your script to make sure System.Windows.Forms was loaded http://stackoverflow.com/questions/1567112/convert-keith-hills-powershell-get-clipboard-and-set-clipboard-to-a-psm1-script/1573295#1573295 Comment by spoon16 on Convert Keith Hill's PowerShell Get-Clipboard and Set-Clipboard to a PSM1 script spoon16 2009-10-15T16:16:48Z 2009-10-15T16:16:48Z I'll give this a shot when I get to work. Great idea though.