User Mark Glorie - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:22:10Z http://stackoverflow.com/feeds/user/952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server 7 Find in Files: Search all code in Team Foundation Server Mark Glorie 2008-09-03T01:49:04Z 2009-10-31T02:45:34Z <p>Is there a way to search the latest version of every file in TFS for a specific string or regex? This is probably the only thing I miss from Visual Source Safe... </p> <p>Currently I perform a Get Latest on the entire codebase and use Windows Search, but this gets quite painful with over 1GB of code in 75,000 files. </p> <p><strong>EDIT</strong>: Tried the powertools mentioned, but the "Wildcard Search" option appears to only search filenames and not contents.</p> <p><strong>UPDATE</strong>: We have implemented a customised search option in an existing MOSS (Search Server) installation. Thanks for the help guys.</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954351#954351 22 Answer by Mark Glorie for Hidden Features of HTML Mark Glorie 2009-06-05T05:08:35Z 2009-10-06T07:45:00Z <pre><code>&lt;blink&gt; </code></pre> <p>Must be used for anything important on the site. Most important sites wrap all of content in blink.</p> <pre><code>&lt;marquee&gt; </code></pre> <p>Creates a realistic scrolling effect, great for e-books etc. </p> <p><em>Edit: Easy-up fellas, this was just an attempt at humour</em></p> http://stackoverflow.com/questions/800762/gridview-validate-that-selectedindex-1 0 Gridview: Validate that SelectedIndex > -1 Mark Glorie 2009-04-29T03:33:49Z 2009-09-06T02:53:16Z <p>I currently have a Gridview, and I want to use client-side validation to ensure that a row has been selected (ie: SelectedIndex > -1). </p> <p>At the moment I'm using <code>&lt;asp:CustomValidator&gt;</code> but want to move away from server-side validation. Here is what I'm currently doing: </p> <pre><code>&lt;asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"&gt; &lt;Columns&gt; &lt;asp:BoundField HeaderText="MSN" DataField="MSN" /&gt; &lt;asp:CommandField ShowSelectButton="True" /&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;asp:CustomValidator ID="cvSelected" runat="server" ErrorMessage="Please select!" /&gt; </code></pre> <p>And then in code behind: </p> <pre><code>Private Sub cvSelected_ServerValidate(ByVal source As Object, ByVal args As _ System.Web.UI.WebControls.ServerValidateEventArgs) Handles cvSelected.ServerValidate args.IsValid = (GridView1.SelectedIndex &gt; -1) End Sub </code></pre> http://stackoverflow.com/questions/1220628/automated-testing-of-component-handlers-in-3rd-party-javascript 0 Automated Testing of Component Handlers in 3rd Party Javascript Mark Glorie 2009-08-03T04:00:29Z 2009-08-04T05:59:22Z <p>I'm currently using <a href="http://www.artoftest.com/products/webaii.aspx" rel="nofollow">WebAii</a> and <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a> to try and automate some tests of a 3rd party web product, to see if some data migration will break the web portal. </p> <p>The problem I'm having is that they have used Component Handlers in their Javascript, and so invoking a Click on a web-part (SPAN, DIV etc) is not triggering the generic handler. </p> <pre><code>// WatiN example // Find the GoTo link Frame uiFrame = ie.Frame(Find.ById("someFrame")); Span gotoSpan = uiFrame.Span(Find.ById("someSpan")); gotoSpan.Click(); //Click it! </code></pre> <p>Pointers in the right direction would be much appreciated!</p> http://stackoverflow.com/questions/1220628/automated-testing-of-component-handlers-in-3rd-party-javascript/1225876#1225876 0 Answer by Mark Glorie for Automated Testing of Component Handlers in 3rd Party Javascript Mark Glorie 2009-08-04T05:59:22Z 2009-08-04T05:59:22Z <p>Found the answer. The span was only responding to a MouseUp event, instead of the click =P </p> <pre><code>//WebAii example eElement = uiFrame.Find.ById("someSpan"); uiFrame.Actions.InvokeEvent(eElement, ScriptEventType.OnMouseUp); </code></pre> http://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored/909470#909470 9 Answer by Mark Glorie for What is the WORST commit message you have ever authored? Mark Glorie 2009-05-26T07:55:40Z 2009-05-26T07:55:40Z <p>Can't take full credit for this one, but one of the web designers was tasked with adding corporate advertising to the internal homepage. Check-in message: </p> <blockquote> <p>Added a banner to the default admin page. Please have mercy on me =(</p> </blockquote> http://stackoverflow.com/questions/39037/how-to-convert-word-and-excel-documents-to-pdf-programmatically/885812#885812 0 Answer by Mark Glorie for How to convert Word and Excel documents to PDF programmatically? Mark Glorie 2009-05-20T01:45:42Z 2009-05-20T01:45:42Z <p>I needed to do this myself, but managed to get it done with .Net and without 3rd party tools: </p> <p>MSDN: <a href="http://msdn.microsoft.com/en-us/library/bb412305.aspx" rel="nofollow">Saving Word 2007 Documents to PDF and XPS Formats</a></p> <p>Pretty simple, about 50 lines of code. However I think you will need Word 2007 installed on the machine as well as the ability to <a href="http://www.microsoft.com/downloads/details.aspx?familyid=F1FC413C-6D89-4F15-991B-63B07BA5F2E5&amp;displaylang=en" rel="nofollow">Save As PDF</a></p> http://stackoverflow.com/questions/271718/loading-a-value-on-the-insert-command-of-a-detailsview/696436#696436 1 Answer by Mark Glorie for Loading a value on the insert command of a detailsview Mark Glorie 2009-03-30T08:41:50Z 2009-03-30T08:41:50Z <p>I would update the field in the DetailsView to a TemplateField: </p> <pre><code>&lt;asp:TemplateField&gt; &lt;InsertItemTemplate&gt; &lt;asp:TextBox ID="txtField" runat="server" Text='&lt;%# Bind("GUID") %&gt;'/&gt; &lt;/InsertItemTemplate&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="lblField" runat="server" Text='&lt;%# Bind("GUID") %&gt;'/&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>Then you have two options: </p> <ul> <li>generate your GUID and insert into your datasource. This may have to be done with SQL since you mentioned using SqlDataSource</li> <li><p>remove the binding and access the controls from code in the DataBound event of your DetailsView </p> <pre><code>Private Sub dv_DataBound(ByVal sender As Object, ByVal e As EventArgs) Handles dv.DataBound dim txt as Textbox = dv.FindControl("txtField") txt.Text = GenerateGUID() End Sub </code></pre></li> </ul> http://stackoverflow.com/questions/61953/how-do-you-bind-an-enum-to-a-dropdownlist-control-in-asp-net/61961#61961 12 Answer by Mark Glorie for How do you bind an Enum to a DropDownList control in ASP.NET? Mark Glorie 2008-09-15T07:10:22Z 2009-02-13T04:26:43Z <p>I probably wouldn't <strong>bind</strong> the data as it's an enum, and it won't change after compile time (unless I'm having one of those <em>stoopid</em> moments). </p> <p>Better just to iterate through the enum: </p> <pre><code>Dim itemValues As Array = System.Enum.GetValues(GetType(Response)) Dim itemNames As Array = System.Enum.GetNames(GetType(Response)) For i As Integer = 0 To itemNames.Length - 1 Dim item As New ListItem(itemNames(i), itemValues(i)) dropdownlist.Items.Add(item) Next </code></pre> <p>Or the same in C# </p> <pre><code>Array itemValues = System.Enum.GetValues(typeof(Response)); Array itemNames = System.Enum.GetNames(typeof(Response)); for (int i = 0; i &lt;= itemNames.Length - 1 ; i++) { ListItem item = new ListItem(itemNames(i), itemValues(i)); dropdownlist.Items.Add(item); } </code></pre> http://stackoverflow.com/questions/130941/net-multithreading-sql-connectionpool 1 .Net Multithreading: SQL ConnectionPool Mark Glorie 2008-09-25T01:17:13Z 2009-01-09T21:43:39Z <p>In a VB.Net Windows Service I'm currently pooling units of work with: </p> <pre><code>ThreadPool.QueueUserWorkItem(operation, nextQueueID) </code></pre> <p>In each unit of work (or thread I'll use for ease of understanding), it will make a couple MSSQL operations like so: </p> <pre><code> Using sqlcmd As New SqlCommand("", New SqlConnection(ConnString)) With sqlcmd .CommandType = CommandType.Text .CommandText = "UPDATE [some table]" .Parameters.Add("@ID", SqlDbType.Int).Value = msgID .Connection.Open() .ExecuteNonQuery() .Connection.Close() 'Found connections not closed quick enough' End With End Using </code></pre> <p>When running a <code>netstat -a -o</code> on the server I'm seeing about 50 connections to SQL server sitting on <code>IDLE</code> or <code>ESTABLISHED</code>, this seems excessive to me especially since we have much larger Web Applications that get by with 5-10 connections. </p> <p>The connection string is global to the application (doesn't change), and has <code>Pooling=true</code> defined as well. </p> <p>Now will each of these threads have their own <code>ConnectionPool</code>, or is there one <code>ConnectionPool</code> for the entire .EXE process?</p> http://stackoverflow.com/questions/418822/asp-net-negative-numbers-in-parenthesis/419012#419012 0 Answer by Mark Glorie for ASP.NET - Negative numbers in Parenthesis Mark Glorie 2009-01-07T02:40:09Z 2009-01-07T02:40:09Z <p>Are you displaying your data in Gridview/Datagrids? If so then formatting can be applied per bound-column, something like: </p> <pre><code>&lt;asp:BoundField DataFormatString="{##;(##)}"/&gt; </code></pre> <p>This only works with integers however...</p> http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/418950#418950 0 Answer by Mark Glorie for What's your favourite programming language, and its killer feature? Mark Glorie 2009-01-07T02:13:12Z 2009-01-07T02:13:12Z <p>No one has made a stand for VB so I will! (well, .Net framework at least) </p> <ul> <li><strong>Background compilation</strong>, I can add to a Class, and have my new functionality appear in Intellisence <strong>immediately</strong>, without compilation, or even saving the file!</li> <li><p><strong>ForEach loops</strong>, puh-lease! </p> <pre><code>ForEach item As String In ListOfStrings 'stuff' Next </code></pre></li> </ul> <p>People bag out VB.Net (or just MS in general). But in my line of work, we get judged on time-per-feature, so the less time working on pointer arithmetic the better I say!</p> http://stackoverflow.com/questions/367193/enterprise-solution-emails/367230#367230 1 Answer by Mark Glorie for enterprise solution: emails Mark Glorie 2008-12-15T00:52:57Z 2008-12-15T00:52:57Z <p>The solution my workplace has adopted involves the various applications writing to a central database table (via various means like web services or class libraries). </p> <p>We then have one Windows Service polling the table (in theory we could load-balance multiple services if load became too high) and composing and sending the mail. </p> <p>This gives us good logging of all the email sent, and also allows us to have centralized email templates. </p> <p>This is however just one solution, might not be the best, but it works.</p> http://stackoverflow.com/questions/348278/project-suggestion-for-asp-net-mvc/348340#348340 0 Answer by Mark Glorie for Project Suggestion for ASP.NET MVC Mark Glorie 2008-12-07T23:44:52Z 2008-12-07T23:44:52Z <p>Photo Gallery (although I think most people have given up on this and are using flickr)</p> http://stackoverflow.com/questions/324904/why-isnt-my-page-redirecting-to-the-login-screen-for-this-protected-page/324914#324914 0 Answer by Mark Glorie for Why isn't my page redirecting to the login screen for this protected page? Mark Glorie 2008-11-28T01:25:29Z 2008-11-28T01:25:29Z <p>For one of my applications I have the following in the same node as <code>&lt;authentication&gt;</code>: </p> <pre><code>&lt;authorization&gt; &lt;deny users="?"/&gt; &lt;/authorization&gt; </code></pre> <p>But this covers the entire application...</p> http://stackoverflow.com/questions/322941/writeonly-property-or-method/323138#323138 0 Answer by Mark Glorie for WriteOnly Property or Method?? Mark Glorie 2008-11-27T07:36:54Z 2008-11-27T07:36:54Z <p>However I've seen the .Net Framework itself use ReadOnly Properties, the first one that comes to mind is: </p> <pre><code>System.Net.Mail.MailMessage.To </code></pre> <p>For which you have to call a method to write to: </p> <pre><code>System.Net.Mail.MailMessage.To.Add(Recipient As String) </code></pre> http://stackoverflow.com/questions/232116/is-tfss-source-control-just-a-beefed-up-vss-or-is-it-significantly-different/232139#232139 0 Answer by Mark Glorie for Is TFS's source control just a beefed up VSS or is it significantly different? Mark Glorie 2008-10-24T00:59:03Z 2008-10-24T00:59:03Z <p>For starters you can have multiple persons have the same file checked out (however there is still the option to exclusively check out as well). </p> <p>The storage is database driven, instead of file driven. For me this has made searching the codebase harder, but it allows far easier merging and annotations (who wrote this line of code?). </p> <p>TFS is much more than just source control as well. Task management, check-in policies, the <a href="http://msdn.microsoft.com/en-us/library/ms242904(VS.80).aspx" rel="nofollow">list goes on</a></p> http://stackoverflow.com/questions/54001/could-not-load-type-xxx-global/228209#228209 0 Answer by Mark Glorie for Could not load type 'XXX.Global' Mark Glorie 2008-10-23T01:33:49Z 2008-10-23T01:33:49Z <p>I've found that it happens when the Global.asax.(vb|cs) wasn't converted to a partial class properly.</p> <p>Quickest solution is to surround the class name 'Global' with [square brackets] like so (in VB.Net): </p> <pre><code>Public Class [Global] Inherits System.Web.HttpApplication ... </code></pre> http://stackoverflow.com/questions/190198/why-isnt-my-net-calculated-md5-hash-equivalent-to-the-hash-calculated-on-a-web/190210#190210 0 Answer by Mark Glorie for Why isn't my .net-calculated MD5 hash equivalent to the hash calculated on a web site? Mark Glorie 2008-10-10T05:20:59Z 2008-10-10T05:20:59Z <p>This VB.Net version gives the same results as MySQL from my own experience: </p> <pre><code>Private Function MD5Hash(ByVal str As String) As String Dim md5 As MD5 = MD5CryptoServiceProvider.Create Dim hashed As Byte() = md5.ComputeHash(Encoding.Default.GetBytes(str)) Dim sb As New StringBuilder For i As Integer = 0 To hashed.Length - 1 sb.AppendFormat("{0:x2}", hashed(i)) Next Return sb.ToString End Function </code></pre> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185979#185979 22 Answer by Mark Glorie for What is the best comment in source code you have ever encountered? Mark Glorie 2008-10-09T05:06:25Z 2008-10-09T05:06:25Z <p>Classic ASP: </p> <pre><code>'Is it worth it, let me work it' 'I put my thing down, flip it and reverse it' 'Ti esrever dna ti pilf, nwod gniht ym tup I' NextIP = StrReverse(UserRecordset.Fields.Item(0)) </code></pre> http://stackoverflow.com/questions/161272/what-websites-do-you-use-to-keep-up-to-speed/161303#161303 2 Answer by Mark Glorie for What website(s) do you use to keep up to speed? Mark Glorie 2008-10-02T08:10:39Z 2008-10-02T08:10:39Z <p>This has been asked before but... </p> <p>A Continuous Learner's Weblog - <a href="http://spietrek.blogspot.com/" rel="nofollow">http://spietrek.blogspot.com/</a><br /> Alvin Ashcraft’s Morning Dew - <a href="http://www.alvinashcraft.com" rel="nofollow">http://www.alvinashcraft.com</a><br /> Coding Horror - <a href="http://www.codinghorror.com/blog" rel="nofollow">http://www.codinghorror.com/blog</a><br /> I. M. Wright’s Hard Code - <a href="http://blogs.msdn.com/eric_brechner/default.aspx" rel="nofollow">http://blogs.msdn.com/eric_brechner/default.aspx</a><br /> Intellectual Hedonism - <a href="http://www.intellectualhedonism.com" rel="nofollow">http://www.intellectualhedonism.com</a><br /> Joel on Software - <a href="http://www.joelonsoftware.com" rel="nofollow">http://www.joelonsoftware.com</a><br /> Scott Hanselman's Computer Zen - <a href="http://www.hanselman.com/blog" rel="nofollow">http://www.hanselman.com/blog</a><br /> Scott Guthrie - <a href="http://weblogs.asp.net/scottgu/default.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/default.aspx</a><br /> For LOLs: Worse Than Failure - <a href="http://thedailywtf.com" rel="nofollow">http://thedailywtf.com</a></p> http://stackoverflow.com/questions/161286/most-amazing-piece-of-code-youve-ever-seen/161294#161294 5 Answer by Mark Glorie for Most amazing piece of code you've ever seen Mark Glorie 2008-10-02T08:07:40Z 2008-10-02T08:07:40Z <p>Scott Hanselman has already done the work for you in his <a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">Source Code</a> series</p> http://stackoverflow.com/questions/161127/can-a-wpf-listbox-be-read-only/161232#161232 1 Answer by Mark Glorie for Can a WPF ListBox be "read only"? Mark Glorie 2008-10-02T07:42:12Z 2008-10-02T07:58:15Z <p>Is your ItemsControl/ListBox databound? </p> <p>I'm just thinking you could make the Background Brush of each item bound to a property from the source data, or pass the property through a converter. Something like: </p> <pre><code> &lt;ItemsControl DataContext="{Binding Source={StaticResource Things}}" ItemsSource="{Binding}" Margin="0"&gt; &lt;ItemsControl.Resources&gt; &lt;local:SelectedConverter x:Key="conv"/&gt; &lt;/ItemsControl.Resources&gt; &lt;ItemsControl.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;local:Control Background="{Binding Path=IsSelected, Converter={StaticResource conv}}"/&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ItemsControl.ItemsPanel&gt; </code></pre> http://stackoverflow.com/questions/161212/sending-mass-emails-programmatically/161215#161215 1 Answer by Mark Glorie for Sending mass emails programmatically Mark Glorie 2008-10-02T07:33:54Z 2008-10-02T07:33:54Z <p>We have various applications writing to an email queue in a database table, and a .Net Windows Service polling that table to compose the emails and send out through our mail server. </p> <p>We do up to 1000 emails per minute...</p> http://stackoverflow.com/questions/159799/vb-net-automating-ms-word-for-spell-check-capabilities/160966#160966 1 Answer by Mark Glorie for VB.Net Automating MS Word for Spell Check Capabilities Mark Glorie 2008-10-02T05:12:12Z 2008-10-02T05:12:12Z <p>We gave up on trying to use a dependency on Word, as both have differing versions installed or no Office installation at all! Instead opting for <a href="http://www.codeproject.com/KB/string/netspell.aspx" rel="nofollow">NetSpell</a>.</p> http://stackoverflow.com/questions/160776/how-would-you-compare-ip-address/160794#160794 1 Answer by Mark Glorie for How would you compare IP address? Mark Glorie 2008-10-02T03:35:51Z 2008-10-02T03:35:51Z <p>Do you have an existing problem with efficiency? </p> <p>If so then by all means post the code (or pseudo-code) and we can pick at the corpse. </p> <p>If not then I would suggest trying something simple like storing the entries in a sorted list and using your environment's existing <code>Sort()</code> and <code>Find()</code>.</p> http://stackoverflow.com/questions/151335/net-winforms-deployment/151352#151352 5 Answer by Mark Glorie for .NET Winforms Deployment Mark Glorie 2008-09-30T00:50:33Z 2008-09-30T00:50:33Z <p>Certainly, in the <code>Solution Explorer</code> (assuming Visual Studio here, since you don't mention) <code>Right-click</code> and <code>Properties</code> of the file(s) you want included. </p> <p>There should be an option there for <code>Build Action</code> which you can set to <code>Embedded Resource</code>.</p> http://stackoverflow.com/questions/131053/object-reference-not-set-to-an-instance-of-object/131177#131177 1 Answer by Mark Glorie for object reference not set to an instance of object Mark Glorie 2008-09-25T02:34:01Z 2008-09-25T02:34:01Z <p>And if you think it's occuring when no data is returned from a database query then maybe you should test the result before doing an operation on it? </p> <pre><code>Dim result As String = SqlCommand.ExecuteScalar() 'just for scope' If result Is Nothing OrElse IsDBNull(result) Then 'no result!' End If </code></pre> http://stackoverflow.com/questions/130937/experience-needed/130982#130982 0 Answer by Mark Glorie for Experience Needed? Mark Glorie 2008-09-25T01:26:37Z 2008-09-25T01:26:37Z <p>I took the old school approach of entering a company at the bottom (think mail clerk of a law firm) and then becoming one of the Developers after a few years. </p> <p>This worked out for me as I made my intentions clear. Once my former managers knew I wasn't another peon after their position, they were more than helpful in assisting me make the move, even letting me know what specific skills would be best to learn up on. </p> <p>But to each their own, do what you enjoy (open source, weekend projects etc) and see where the world takes you.</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/119037#119037 12 Answer by Mark Glorie for What is the strangest/weirdest program you've ever made? Mark Glorie 2008-09-23T03:59:59Z 2008-09-23T03:59:59Z <p>Our receptionists would send out the Daily Birthdays email every day, an email to the entire company to announce who has their birthday that day (including weekends on Friday's email). This made everyone feel a little loved by this human touch. </p> <p>They got a little tired of this, and since everyone's birthday is in the staff HR database already, it became my task to implement this in code. My nickname for it? <strong>Automated Love</strong>.</p> http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/1644437#1644437 Comment by Mark Glorie on Find in Files: Search all code in Team Foundation Server Mark Glorie 2009-11-04T07:13:46Z 2009-11-04T07:13:46Z Again, this searches filenames, not the lost feature &quot;Find in Files&quot;. http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net/689686#689686 Comment by Mark Glorie on Can I set up HTML/Email Templates in C# on ASP.NET? Mark Glorie 2009-08-26T01:07:48Z 2009-08-26T01:07:48Z I have done this also and it worked well. Plus you can historically go back and see the records of emails sent, if reports are your thing. http://stackoverflow.com/questions/1225042/asks-for-ad-credentials-connection-interrupted-on-postback/1225900#1225900 Comment by Mark Glorie on Asks for AD credentials / "Connection Interrupted" on Postback Mark Glorie 2009-08-10T06:50:36Z 2009-08-10T06:50:36Z +1 for checking corporate firewalls too. I've experienced a corporate firewall with Stateful Packet Inspection dropping a session due to dodgy-looking viewstate. http://stackoverflow.com/questions/464445/is-there-an-official-windows-presentation-foundation-wpf-logo/1226872#1226872 Comment by Mark Glorie on Is there an official Windows Presentation Foundation (WPF) logo? Mark Glorie 2009-08-06T04:58:02Z 2009-08-06T04:58:02Z Silverlight probably has one because it needs to be identified by the general Internet public, much like Flash and QuickTime. Whereas a WPF app is just going to be another app the user has on their machine. http://stackoverflow.com/questions/954327/hidden-features-of-html/954351#954351 Comment by Mark Glorie on Hidden Features of HTML Mark Glorie 2009-06-05T05:12:32Z 2009-06-05T05:12:32Z What can I say? I did it for the lulz http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888240#888240 Comment by Mark Glorie on What is your longest-held programming assumption that turned out to be incorrect? Mark Glorie 2009-05-21T00:38:18Z 2009-05-21T00:38:18Z You will never have bug-free software, just software that hasn't had any bugs found yet. http://stackoverflow.com/questions/551911/how-to-explain-to-your-mom-what-an-algorithm-is/552120#552120 Comment by Mark Glorie on How to explain to your mom what an algorithm is? Mark Glorie 2009-02-16T04:25:54Z 2009-02-16T04:25:54Z But who does the repeat step? =) http://stackoverflow.com/questions/376775/need-a-geeky-dog-name/376905#376905 Comment by Mark Glorie on Need a geeky dog name Mark Glorie 2009-01-05T01:05:23Z 2009-01-05T01:05:23Z I didn't think xkcd invented SQL injection attacks? http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/375970#375970 Comment by Mark Glorie on Find in Files: Search all code in Team Foundation Server Mark Glorie 2008-12-18T06:51:58Z 2008-12-18T06:51:58Z without indexing? ouch... http://stackoverflow.com/questions/333181/a-question-about-datagrid-and-sql-query Comment by Mark Glorie on A Question About Datagrid And Sql Query Mark Glorie 2008-12-02T06:24:47Z 2008-12-02T06:24:47Z if you want more answers, make the title a little clearer (Datagrid, Sql, Dynamic Columns) http://stackoverflow.com/questions/161212/sending-mass-emails-programmatically/161215#161215 Comment by Mark Glorie on Sending mass emails programmatically Mark Glorie 2008-11-03T01:47:58Z 2008-11-03T01:47:58Z I work at an ISP (Internet Provider), we have our own SMTP servers... http://stackoverflow.com/questions/226330/what-tfs-tool-would-you-recommend/226495#226495 Comment by Mark Glorie on What TFS tool would you recommend? Mark Glorie 2008-10-24T01:17:45Z 2008-10-24T01:17:45Z Also if you're manually marking files as writable and editing without checking out through the UI, TFS/VS will stumble around because it doesn't know what state it's in. http://stackoverflow.com/questions/228024/what-major-applications-does-microsoft-sell-which-use-the-net-framework/228059#228059 Comment by Mark Glorie on What major applications does Microsoft sell which use the .NET framework? Mark Glorie 2008-10-23T01:26:00Z 2008-10-23T01:26:00Z I didn't think Outlook Express was written, it just appeared one day, and has been terrorizing Support departments ever since! http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/210144#210144 Comment by Mark Glorie on Find in Files: Search all code in Team Foundation Server Mark Glorie 2008-10-17T00:22:12Z 2008-10-17T00:22:12Z Sorry I don't see where it offers to search inside files? http://stackoverflow.com/questions/130941/net-multithreading-sql-connectionpool/130963#130963 Comment by Mark Glorie on .Net Multithreading: SQL ConnectionPool Mark Glorie 2008-09-25T01:46:04Z 2008-09-25T01:46:04Z Usually only 5-10 work items max, but sometimes up to 1000 (before you ask I'm sending emails here!)