User secretGeek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T15:44:52Zhttp://stackoverflow.com/feeds/user/241http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/249222/can-i-add-extension-methods-to-an-existing-static-class6Can I add extension methods to an existing static class?secretGeek2008-10-30T03:54:04Z2008-10-30T04:22:52Z
<p>I'm a fan of extension methods in C#, but haven't had any success adding an extension method to a static class, such as Console.</p>
<p>For example, if I want to add an extension to Console, called 'WriteBlueLine', so that I can go:</p>
<pre><code>Console.WriteBlueLine("This text is blue");
</code></pre>
<p>I tried this by adding a local, public static method, with Console as a 'this' parameter... but no dice! </p>
<pre><code>public static class Helpers {
public static void WriteBlueLine(this Console c, string text)
{
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine(text);
Console.ResetColor();
}
}
</code></pre>
<p>This didn't add a 'WriteBlueLine' method to Console... am I doing it wrong? Or asking for the impossible?</p>
http://stackoverflow.com/questions/27178/do-you-delete-your-own-answer-when-its-a-duplicate21Do you delete your own answer when it's a duplicate? [closed]secretGeek2008-08-26T00:57:53Z2008-10-14T14:26:47Z
<p>When I post an answer to a brand new question I usually find that someone else has submitted that same answer just moments before. (Matt Hamilton, usually ;-) )</p>
<p>What I've started to do lately is (i think) the <em>right</em> thing. </p>
<p>If I notice that another answer predates mine, and that I add no value over it, I immediately delete my own answer, and upvote the other guy.</p>
<p>I recommend that you too do the same. Otherwise the message will be diluted.</p>
<p>Similarly, if after posting your 'answer' you realise that you are in fact wrong (and you've just misread the question) -- you can actually delete your answer.</p>
<p>Is this reasonable?</p>
<p>(The reason why I'm writing this down is because it feels completely counter intuitive to delete your own stuff. But it really saves everyone time and effort)</p>
http://stackoverflow.com/questions/155810/how-do-i-configure-visual-studio-to-use-the-code-view-as-the-default-view-for-web4How do I configure visual studio to use the code view as the default view for Webservices?secretGeek2008-10-01T01:08:32Z2008-10-01T01:29:43Z
<p>When you double click on a class (in 'solution explorer')... if that class happens to be an .asmx.cs webservice... then you get this...</p>
<blockquote>
<p>To add components to your class, drag
them from the Toolbox and use
the Properties window to set their
properties. To create methods and
events for your class, click here
to switch to code view.</p>
</blockquote>
<p>...it's a 'visual design surface' for webservices.</p>
<p>(Who actually uses that surface to write webservices?)</p>
<p>So what I want to know, how do I configure visual studio to never show me that design view?</p>
<p>Or at least, to show me the code view by default?</p>
http://stackoverflow.com/questions/27108/perfmon-file-analysis-tools/27130#271303Answer by secretGeek for Perfmon File Analysis ToolssecretGeek2008-08-25T23:51:18Z2008-08-25T23:51:18Z<p>Perhaps look into using <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&displaylang=en" rel="nofollow">LogParser</a>.
It depends on how the info was logged (Perfmon doesn't lack flexibility)</p>
<p>If they're CSV you can even use the ODBC Text drivers and run queries against them! </p>
<p>(performance would be 'intriguing')</p>
<p>And here's the obligatory link to a <a href="http://www.codinghorror.com/blog/archives/000369.html" rel="nofollow">CodingHorror article</a> on the topic ;-)</p>
http://stackoverflow.com/questions/20386/memory-leaks-in-net/24079#240791Answer by secretGeek for Memory Leaks in .NetsecretGeek2008-08-23T08:17:01Z2008-08-23T08:17:01Z<p>Block the finalizer.</p>
http://stackoverflow.com/questions/5600/tables-with-no-primary-key/21783#217830Answer by secretGeek for Tables with no Primary KeysecretGeek2008-08-22T04:44:53Z2008-08-22T04:44:53Z<p>re "...not a good idea to have a guid column as a primary key, because primary keys are clustered and guids are random"</p>
<p>to overcome this, you can use the "newsequentialid()" function on SQL 2005/2008</p>
<p>edit: found the requisite <a href="http://www.codinghorror.com/blog/archives/000817.html" rel="nofollow">CodingHorror post</a> that talks about this ;-)</p>
http://stackoverflow.com/questions/21489/grouping-runs-of-data/21555#215552Answer by secretGeek for Grouping runs of datasecretGeek2008-08-22T01:08:59Z2008-08-22T01:08:59Z<p>I hate cursors with a passion... but here's a dodgy cursor version...</p>
<pre><code>Declare @NewName Varchar(50)
Declare @OldName Varchar(50)
Declare @CountNum int
Set @CountNum = 0
DECLARE nameCursor CURSOR FOR
SELECT Name
FROM NameTest
OPEN nameCursor
FETCH NEXT FROM nameCursor INTO @NewName
WHILE @@FETCH_STATUS = 0
BEGIN
if @OldName <> @NewName
BEGIN
Print @OldName + ' (' + Cast(@CountNum as Varchar(50)) + ')'
Set @CountNum = 0
END
SELECT @OldName = @NewName
FETCH NEXT FROM nameCursor INTO @NewName
Set @CountNum = @CountNum + 1
END
Print @OldName + ' (' + Cast(@CountNum as Varchar(50)) + ')'
CLOSE nameCursor
DEALLOCATE nameCursor
</code></pre>
http://stackoverflow.com/questions/19349/data-execution-prevention-kills-vs2008-local-asp-net-development-server-aka3"Data Execution Prevention" kills (VS2008) local ASP.Net Development Server (aka Cassini) on Vista 64secretGeek2008-08-21T04:50:13Z2008-08-21T15:14:01Z
<p>Occasionally i find that while debugging an asp.net application (written in visual studio 2008, running on Vista 64) the local ASP.Net development server (i.e. 'Cassini') stops responding.</p>
<p>A message often comes up telling me that "Data Execution Prevention (DEP)" has killed WebDev.WebServer.exe</p>
<p>The event logs simply tell me that "WebDev.WebServer.exe has stopped working"</p>
<p>I've heard that this 'problem' presents itself more often on Vista64 because DEP is on by default. </p>
<p>Hence, turning DEP off may 'solve' the problem:</p>
<p>But i'm wondering: </p>
<p><em>Is there a known bug/situation with Cassini that causes DEP to kill the process?</em></p>
<p><em>Alternatively, what is the practical danger of disabling Data Execution Prevention?</em></p>
http://stackoverflow.com/questions/19349/data-execution-prevention-kills-vs2008-local-asp-net-development-server-aka/19426#194260Answer by secretGeek for "Data Execution Prevention" kills (VS2008) local ASP.Net Development Server (aka Cassini) on Vista 64secretGeek2008-08-21T06:51:00Z2008-08-21T06:51:00Z<p>Thanks for the answers. I guess I developed such an aversion to IIS in the .net 1.x era that I've refused to consider re-using it -- until now.</p>
<p><em>aside: when choosing between two equally acceptable answers from ChanChan and Jonathan, I arbitrarily marked Jonathan's as 'accepted' because a) he got in first and b) his rep is currently lower.</em></p>
http://stackoverflow.com/questions/15841/visual-studio-color-theme/15844#158448Answer by secretGeek for Visual Studio color themesecretGeek2008-08-19T07:32:07Z2008-08-19T07:32:07Z<p><a href="http://www.google.com.au/search?q=dark+theme+visual+studio" rel="nofollow">Dark themes</a> as <a href="http://www.hanselman.com/blog/ChangingYourColorsInVisualStudioNETBlackVersusWhite.aspx" rel="nofollow">described at length</a> by Scott Hanselman are interesting.</p>
http://stackoverflow.com/questions/15828/reading-excel-files-from-c/15835#158350Answer by secretGeek for Reading Excel files from C#secretGeek2008-08-19T07:26:38Z2008-08-19T07:26:38Z<p>you could write an excel spreadsheet that loads a given excel spreadsheet and saves it as csv (rather than doing it manually).</p>
<p>then you could automate that from c#.</p>
<p>and once its in csv, the c# program can grok that.</p>
<p>(also, if someone asks you to program in excel, it's best to pretend you don't know how)</p>
<p>(edit: ah yes, rob and ryan are both right)</p>
http://stackoverflow.com/questions/15486/sorting-an-ilist-in-c/15491#154915Answer by secretGeek for Sorting an IList in C#secretGeek2008-08-19T01:29:10Z2008-08-19T01:29:10Z<p>You're going to have to do something like that i think (convert it into a more concrete type).</p>
<p>Maybe take it into a List of T rather than ArrayList, so that you get type safety and more options for how you implement the comparer.</p>
http://stackoverflow.com/questions/12290/n2-cms/15488#154881Answer by secretGeek for N2 CMSsecretGeek2008-08-19T01:24:09Z2008-08-19T01:24:09Z<p>Maybe try this question at <a href="http://www.codeplex.com/n2/Thread/List.aspx" rel="nofollow"><a href="http://www.codeplex.com/n2/Thread/List.aspx" rel="nofollow">http://www.codeplex.com/n2/Thread/List.aspx</a></a></p>
<p>They might be able to tell you about performance limitations or bottlenecks.</p>
http://stackoverflow.com/questions/9751/sending-emails-without-looking-like-spam/15415#154151Answer by secretGeek for Sending emails without looking like spamsecretGeek2008-08-19T00:12:23Z2008-08-19T00:12:23Z<blockquote>
<p>A good answer for this question would
be a real gold mine for a motivated
spammer :)</p>
</blockquote>
<p>Not really -- as you'll see in that <a href="http://beta.stackoverflow.com/questions/371/how-do-you-make-sure-email-you-send-programmatically-is-not-automatically-marke" rel="nofollow">other thread</a>, answers center on showing that you are the authorative sender of the email, and various aspects that are useless to spammers and useful to non-spammers who send a lot of email.</p>
http://stackoverflow.com/questions/7121/what-should-a-software-engineer-read-before-branching-out-on-their-own/11885#118852Answer by secretGeek for What should a software engineer read before branching out on their own?secretGeek2008-08-15T01:59:29Z2008-08-15T01:59:29Z<p>One important thing to read is the 'terms and conditions' of whatever contract you're working under, to make sure that you won't get your a** sued out of existence if you happen to be successful and your ex employer isn't happy about it.</p>
http://stackoverflow.com/questions/11857/what-do-you-use-as-a-good-alternative-to-team-system/11875#118754Answer by secretGeek for What do you use as a good alternative to Team System?secretGeek2008-08-15T01:44:36Z2008-08-15T01:44:36Z<p>I've had a lot of success with the nice integration between SourceGear vault and FogBugz.</p>
<p>MS Build for build automation meets my needs.</p>
http://stackoverflow.com/questions/11804/returning-large-results-via-a-webservice/11873#118730Answer by secretGeek for Returning Large Results Via a WebservicesecretGeek2008-08-15T01:40:05Z2008-08-15T01:40:05Z<p>So it sounds like you'd be interested in a solution that adds 'starting record number' and 'final record number' parameter to your web method. (or 'page number' and 'results per page')</p>
<p>This shouldn't be too hard if the backing store is sql server (or even mysql) as they have built in support for row numbering.</p>
<p>Despite this you should be able to avoid doing any session management on the server, avoid any explicit caching of the result set, and just rely on the backing store's caching to keep your life simple.</p>
http://stackoverflow.com/questions/11804/returning-large-results-via-a-webservice/11813#118131Answer by secretGeek for Returning Large Results Via a WebservicesecretGeek2008-08-15T00:18:19Z2008-08-15T00:18:19Z<p>There's no hard law against 5 Mb as a result set size. Over 400 Mb can be <a href="http://msdn.microsoft.com/en-us/library/aa528822.aspx" rel="nofollow" title="excanvas">hard to send</a>.</p>
<p>You'll automatically get async handlers (since you're using .net)</p>
<blockquote>
<p>implement some sort of "paging" where
the resultset is generated and stored
on the server and the client can then
download chunks of the resultset in
smaller amounts and re-assemble the
set at their end</p>
</blockquote>
<p>That's already happening for you -- it's called tcp/ip ;-) Re-implementing that could be overkill.</p>
<p>Similarly --</p>
<blockquote>
<p>entire resultset will have to be
regenerated and sent again</p>
</blockquote>
<p>If it's MS-SQL, for example that is generating most of the resultset -- then re-generating it will take advantage of some implicit cacheing in SQL Server and the subsequent generations will be quicker. </p>
<p>To some extent you can get away with not worrying about these problems, until they surface as 'real' problems -- because the platform(s) you're using take care of a lot of the performance bottlenecks for you.</p>
http://stackoverflow.com/questions/10644/any-decent-c-profilers-out-there/10652#1065214Answer by secretGeek for Any decent C# profilers out there?secretGeek2008-08-14T04:00:15Z2008-08-14T04:00:15Z<p><a href="http://www.jetbrains.com/profiler/" rel="nofollow">dotTrace</a> from JetBrains is widely used.</p>
<p>Patrick Smacchia's awesome <a href="http://www.ndepend.com/#" rel="nofollow">NDepend</a> is excellent for providing static analysis. </p>
http://stackoverflow.com/questions/8033/database-migration-library-for-net/8372#83721Answer by secretGeek for Database Migration library for .NETsecretGeek2008-08-12T00:36:33Z2008-08-14T03:51:14Z<p>@Chris Smith
"Migrations" in this case means migrating from one version of a database schema to the next.</p>
<p>Say your customer has version 3.7 of your application, in which the database schema is version 3.7, and they are upgrading to version 3.8. </p>
<p>If there are schema changes involved, then there will be a script (generated by your 'migrations' tool of choice) for helping the end user get where they need to go.</p>
<p>Ruby on Rails has a much-loved solution to this problem, that has been emulated in many other languages, including some .net versions. </p>
<p>The Castle project has a 'migrator' sub project, for example.</p>
<p><a href="http://www.codeplex.com/RikMigrations" rel="nofollow">RikMigrations</a> is a dot net migrations port written by Richard Mason (available at CodePlex)</p>
<p>CodePlex also has a project named <a href="http://www.codeplex.com/dotnetmigrations" rel="nofollow">Dot Net Migrations</a> -- code available.</p>
http://stackoverflow.com/questions/10635/why-dont-my-powershell-scripts-run/10640#106401Answer by secretGeek for Why don't my powershell scripts run?secretGeek2008-08-14T03:47:47Z2008-08-14T03:47:47Z<p>also it's worth knowing that you include .\ in front of the script name, for example </p>
<p>.\scriptname.ps1 </p>
http://stackoverflow.com/questions/10635/why-dont-my-powershell-scripts-run/10637#106370Answer by secretGeek for Why don't my powershell scripts run?secretGeek2008-08-14T03:39:59Z2008-08-14T03:39:59Z<p>try posting the errors, and hey, why not post the script as well.</p>
http://stackoverflow.com/questions/2942/hsl-in-net/3011#30114Answer by secretGeek for HSL in .netsecretGeek2008-08-06T01:55:10Z2008-08-11T02:03:57Z<p>The color struct provides three methods: GetHue, GetSaturation and GetBrightness.</p>
<p>Bob Powell wrote an <a href="http://www.bobpowell.net/RGBHSB.htm" rel="nofollow" title="ISO Address">interesting piece on this</a> several years ago.</p>
<p>Bizarre historical note -- "HSL" (and the related "HSV") are one of the many things originating from Xerox's Palo Alto Research Center (PARC) in the 70's, courtesy of <a href="http://en.wikipedia.org/wiki/Alvy_Ray_Smith" rel="nofollow" title="Bootstrap">Alvy Ray Smith</a>.</p>
http://stackoverflow.com/questions/7472/wpf-databinding/7475#74754Answer by secretGeek for WPF DatabindingsecretGeek2008-08-11T01:40:55Z2008-08-11T01:40:55Z<p>in code behind -- set the DataContext of your list box equal to the collection you're binding to.</p>
<pre><code>private void OnInit(object sender, EventArgs e)
{
//myDataSet is some IEnumerable
// myListBox is a ListBox control.
// Set the DataContext of the ListBox to myDataSet
myListBox.DataContext = myDataSet;
}
</code></pre>
<p>In XAML, Listbox can declare which properties it binds to using the "Binding" syntax.</p>
<pre><code><ListBox Name="myListBox" Height="200"
ItemsSource="{Binding Path=BookTable}"
ItemTemplate ="{StaticResource BookItemTemplate}"/>
</code></pre>
http://stackoverflow.com/questions/2750/data-verifications-in-getter-setter-or-elsewhere/5501#55013Answer by secretGeek for Data verifications in Getter/Setter or elsewhere ?secretGeek2008-08-08T00:07:08Z2008-08-08T00:11:02Z<p>@Terrapin, re:</p>
<blockquote>
<p>If all you have is a bunch of [simple
public set/get] properties ... they
might as well be fields</p>
</blockquote>
<p>Properties have other advantages over fields. They're a more explicit contract, they're serialized, they can be debugged later, they're a nice place for extension through inheritance. The clunkier syntax is an accidental complexity -- .net 3.5 for example overcomes this.</p>
<p>A common (and flawed) practice is to start with public fields, and turn them into properties later, on an 'as needed' basis. This breaks your contract with anyone who consumes your class, so it's best to start with properties.</p>http://stackoverflow.com/questions/2630/what-are-your-favorite-powershell-cmdlets/5498#54985Answer by secretGeek for What are your favorite Powershell Cmdlets?secretGeek2008-08-08T00:02:35Z2008-08-08T00:02:35Z<p>there's an <a href="http://blog.sapien.com/index.php/2008/06/23/out-twitter/" rel="nofollow">out-twitter script</a> i use for posting to twitter. it's nice, as it means you can send something to twitter without the risk of being distracted by a browser.</p>
<p>i added an alias for it, "twit".</p>
<p>so now you can type, for example:</p>
<pre><code>PS C:\>"trying out stack overflow" | twit<br></code></pre>
<p>and if successfully lodged, it will return an integer that identifies your post.</p>http://stackoverflow.com/questions/5446/a-project-with-no-leader/5489#54891Answer by secretGeek for A project with no leadersecretGeek2008-08-07T23:45:39Z2008-08-07T23:45:39Z<p>generally, "lead, follow or get out of the way"</p>
<p>if you're not keen to lead, and there's no one to follow, i'd suggest you ignore the whole thing.</p>http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/4397#43970Answer by secretGeek for Best Debugging Tools for JavaScript/xulrunner DevelopmentsecretGeek2008-08-07T04:48:54Z2008-08-07T04:48:54Z<p>'alert(x);' was the primary technique for too long.</p>
<p>FireBug, as others have said, is the way to go in FireFox debugging.</p>
<p>the <a href="http://www.aptana.com/" rel="nofollow">Aptana IDE</a> (based on eclipse) made a bit of a splash in the javascript IDE region recently.</p>
<p>Visual Studio 2008 contains much improved javascript debugging capabilities over the previous versions.</p>http://stackoverflow.com/questions/3075/can-asp-net-ajax-partial-rendering-work-inside-a-sharepoint-2007-application-page/3084#30842Answer by secretGeek for Can ASP.NET AJAX partial rendering work inside a SharePoint 2007 application page?secretGeek2008-08-06T04:43:31Z2008-08-06T04:47:19Z<p>You need to have Sharepoint 2007 service pack 1 -- or else there's no chance.
(Sharepoint 2007 predates ajax 1.0 -- they built some support into service pack 1)</p>
<p>Next, from a trouble shooting point of view, test that the <strong>exact</strong> same code functions as expected when hosted in a regular asp.net page. (Literally copy and paste your code across into a fresh page, to rule out any typographical errors). Ruling sharepoint in or out of the problem area will help narrow down the solution space.</p>http://stackoverflow.com/questions/2709/how-can-you-tell-when-a-user-last-pressed-a-key-or-moved-the-mouse/3013#30131Answer by secretGeek for How can you tell when a user last pressed a key (or moved the mouse)?secretGeek2008-08-06T01:58:18Z2008-08-06T01:58:18Z<p>You seem to have answered your own question there Nathan ;-)
"GetLastInputInfo" is the way to go.</p>
<p>One trick is that if your application is running on the desktop, and the user connects to a virtual machine, then GetLastInputInfo will report no activity (since there is no activity on the host machine).</p>
<p>This can be different to the behaviour you want, depending on how you wish to apply the user input.</p>http://stackoverflow.com/questions/20386/memory-leaks-in-net/24079#24079Comment by secretGeek on Memory Leaks in .NetsecretGeek2009-11-06T11:58:19Z2009-11-06T11:58:19ZThe finalizer is single-threaded. 'Finalizing' is what happens when an object that can be disposed is, finally, disposed. If one particular item can't be disposed, then nothing is disposed, and you end up running out of memory. http://stackoverflow.com/questions/249222/can-i-add-extension-methods-to-an-existing-static-class/249264#249264Comment by secretGeek on Can I add extension methods to an existing static class?secretGeek2008-10-31T00:38:30Z2008-10-31T00:38:30ZWow Mike -- i like that you're using your imagination here. Extension classes FTW!