User tsilb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T07:48:56Z http://stackoverflow.com/feeds/user/11112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829101/dtsx-files-how-to-peruse-edit 0 DTSX files - How to peruse & edit tsilb 2009-12-01T21:36:44Z 2009-12-01T21:56:13Z <p>I have a DTSX file in a project I'm taking over. I have Visual Studio 2005 Pro, but it just opens it as an XML file. SQL Server Management Studio 2005 does the same. </p> <p>I've seen people opening these files in some workflow-esque format; Business Intelligence Development Studio comes to mind. </p> <p>Is this part of Visual Studio or SQL? Does it have to be purchased seperately? Can I open this file in a more useful way with the tools I have?</p> http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-combobox/1816863#1816863 0 Answer by tsilb for ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox? tsilb 2009-11-29T21:41:48Z 2009-11-29T21:41:48Z <p>I'd recommend you use a combination of controls to filter your items into smaller groups. For example, if you have 500 cars, you could filter by manufacturer (in a combobox) and make (in another combobox). </p> http://stackoverflow.com/questions/1805481/data-access-object-singleton-or-many-small-ones 1 Data Access object: Singleton or many small ones? tsilb 2009-11-26T20:17:57Z 2009-11-26T22:00:13Z <p>When developing an application (web, win, whatever) which does alot of data access, is it better to keep your data access object open for the length of the request (i.e. do many things in a row, then close it when you finish), or keep opening and closing new ones?</p> <pre><code>protected aDataContext dc = new aDataContext(); </code></pre> <p>vs</p> <pre><code>private aObject GetInfo(...) {...} </code></pre> <p>I would think the former would be better for performance; but it seems like a bad practice.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/1805444#1805444 0 Answer by tsilb for What development book made the most impact on you as a developer? tsilb 2009-11-26T20:04:24Z 2009-11-26T20:04:24Z <p>hackers, by Steven Levy.</p> <p>The personality and way of life must come first. Everything else can be learned.</p> http://stackoverflow.com/questions/1001494/being-a-lone-developer/1805239#1805239 0 Answer by tsilb for Being A Lone Developer tsilb 2009-11-26T19:09:01Z 2009-11-26T19:09:01Z <ul> <li>PRO: Nobody tells you what to do, or how to do it.</li> <li>CON: Nobody tells you what to do, or how to do it.</li> </ul> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1804880#1804880 0 Answer by tsilb for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) tsilb 2009-11-26T17:25:29Z 2009-11-26T17:25:29Z <p>Gets the root domain of a URI.</p> <p>/// Gets the root domain of any URI /// URI to get root domain of /// Root domain with TLD public static string GetRootDomain(this System.Uri uri) { if (uri == null) return null;</p> <p>string Domain = uri.Host; while (System.Text.RegularExpressions.Regex.Matches(Domain, @"[.]").Count > 1) Domain = Domain.Substring(Domain.IndexOf('.') + 1); Domain = Domain.Substring(0, Domain.IndexOf('.')); return Domain; }</p> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1804876#1804876 0 Answer by tsilb for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) tsilb 2009-11-26T17:24:25Z 2009-11-26T17:24:25Z <p>Wraps a string every n chars.</p> <pre><code> public static string WrapAt(this string str, int WrapPos) { if (string.IsNullOrEmpty(str)) throw new ArgumentNullException("str", "Cannot wrap a null string"); str = str.Replace("\r", "").Replace("\n", ""); if (str.Length &lt;= WrapPos) return str; for (int i = str.Length; i &gt;= 0; i--) if (i % WrapPos == 0 &amp;&amp; i &gt; 0 &amp;&amp; i != str.Length) str = str.Insert(i, "\r\n"); return str; } </code></pre> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1804870#1804870 0 Answer by tsilb for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) tsilb 2009-11-26T17:22:18Z 2009-11-26T17:22:18Z <p>In the recent searches section on my blog stats page, I had removed all duplicates, but needed a way to remove nearly-duplicate lines. I'd get tons of similar but not quite the same Google queries. </p> <p>I ended up using an anonymous type instead of a dictionary, but wanted a way to create a List of that anonymous type. You can't do that, but you can create a List&lt;dynamic&gt; in .NET 4.0 :)</p> <p>Mostly I like it because I effectively get a List&lt;AnonymousType#1&gt;().</p> <pre><code> /// &lt;summary&gt;Remove extraneous entries for common word permutations&lt;/summary&gt; /// &lt;param name="input"&gt;Incoming series of words to be filtered&lt;/param&gt; /// &lt;param name="MaxIgnoreLength"&gt;Words this long or shorter will not count as duplicates&lt;/param&gt; /// &lt;param name="words2"&gt;Instance list from BuildInstanceList()&lt;/param&gt; /// &lt;returns&gt;Filtered list of lines from input, based on filter info in words2&lt;/returns&gt; private static List&lt;string&gt; FilterNearDuplicates(List&lt;string&gt; input, int MaxIgnoreLength, List&lt;dynamic&gt; words2) { List&lt;string&gt; output = new List&lt;string&gt;(); foreach (string line in input) { int Dupes = 0; foreach (string word in line.Split(new char[] { ' ', ',', ';', '\\', '/', ':', '\"', '\r', '\n', '.' }) .Where(p =&gt; p.Length &gt; MaxIgnoreLength) .Distinct()) { int Instances = 0; foreach (dynamic dyn in words2) if (word == dyn.Word) { Instances = dyn.Instances; if (Instances &gt; 1) Dupes++; break; } } if (Dupes == 0) output.Add(line); } return output; } /// &lt;summary&gt;Builds a list of words and how many times they occur in the overall list&lt;/summary&gt; /// &lt;param name="input"&gt;Incoming series of words to be counted&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; private static List&lt;dynamic&gt; BuildInstanceList(List&lt;string&gt; input) { List&lt;dynamic&gt; words2 = new List&lt;object&gt;(); foreach (string line in input) foreach (string word in line.Split(new char[] { ' ', ',', ';', '\\', '/', ':', '\"', '\r', '\n', '.' })) { if (string.IsNullOrEmpty(word)) continue; else if (ExistsInList(word, words2)) for (int i = words2.Count - 1; i &gt;= 0; i--) { if (words2[i].Word == word) words2[i] = new { Word = words2[i].Word, Instances = words2[i].Instances + 1 }; } else words2.Add(new { Word = word, Instances = 1 }); } return words2; } /// &lt;summary&gt;Determines whether a dynamic Word object exists in a List of this dynamic type.&lt;/summary&gt; /// &lt;param name="word"&gt;Word to look for&lt;/param&gt; /// &lt;param name="words"&gt;Word dynamics to search through&lt;/param&gt; /// &lt;returns&gt;Indicator of whether the word exists in the list of words&lt;/returns&gt; private static bool ExistsInList(string word, List&lt;dynamic&gt; words) { foreach (dynamic dyn in words) if (dyn.Word == word) return true; return false; } } </code></pre> http://stackoverflow.com/questions/1620485/which-metaphor-would-you-use-to-describe-programming/1768882#1768882 0 Answer by tsilb for Which metaphor would you use to describe programming? tsilb 2009-11-20T07:23:48Z 2009-11-20T07:23:48Z <p>Programming is like being God with a very limited scope.</p> http://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio/1768839#1768839 0 Answer by tsilb for What is the first thing you do when you install Visual Studio? tsilb 2009-11-20T07:08:14Z 2009-11-20T07:08:14Z <ul> <li>Move all those pallette windows to other screens.</li> <li>Change startup action to show empty environment.</li> <li>Enable line numbers for <em>everything!</em></li> </ul> http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/1768775#1768775 1 Answer by tsilb for What is the most useful script you've written for everyday life? tsilb 2009-11-20T06:51:28Z 2009-11-20T06:51:28Z <pre><code>copy con c.bat c: cd\ cls ^Z </code></pre> http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/1768763#1768763 1 Answer by tsilb for What is the most useful script you've written for everyday life? tsilb 2009-11-20T06:49:18Z 2009-11-20T06:49:18Z <p>Wrote a script to click my start button, then click it again in half a second, and repeat every 30 seconds.</p> <p>Keeps me marked Online while at work, and I can get the real work done on my personal laptop right next to it. Not bogged down by work software.</p> <p>Don't tell the boss :)</p> http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/1768746#1768746 0 Answer by tsilb for What are the worst working conditions you have written code in? tsilb 2009-11-20T06:44:11Z 2009-11-20T06:44:11Z <p>In Notepad, live on a prod server.</p> http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1768517#1768517 1 Answer by tsilb for How can you tell if a person is a programmer? tsilb 2009-11-20T05:28:50Z 2009-11-20T05:28:50Z <p>Here's a great example from my real-life life.</p> <p>Software development has taught me to find problems and bad design, proactively. Further, it has taught me to try to fix them, and occasionally report them at a status meeting or into some bug database, etc.</p> <p>As a result, any time my daily workflow is interrupted (Specifically driving, grocery runs, etc), I immediately locate the "cause" or the person at "fault". I'll blame the thing or person directly (as a fix), or utter a snide comment (as a status update / TODO), and go on with my day as if nothing happened.</p> <p>People think I'm just complaining, but I'm really trying to improve the world in my own little way.</p> http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1768468#1768468 0 Answer by tsilb for How can you tell if a person is a programmer? tsilb 2009-11-20T05:14:09Z 2009-11-20T05:14:09Z <p>"Do you have the time?"</p> <p>"Yes" || "Of course I have the time, I'm wearing a watch".</p> http://stackoverflow.com/questions/1755748/how-to-get-into-freelancing 6 How to get into freelancing? [closed] tsilb 2009-11-18T12:49:18Z 2009-11-18T13:58:41Z <p>I've always wanted to get into freelance software/web development, but two things have stopped me thus far:</p> <ol> <li>I suck at marketing. Seriously, I'm comically bad at it.</li> <li>The big freelancer sites seem to be bogged down with overseas types who are willing to work for $25 a day. This is a serious number.</li> </ol> <p>So how can one get into the freelance sector, or something like it, and still maintain a respectable amount of income?</p> http://stackoverflow.com/questions/1755040/c-2-0-list-processing/1755061#1755061 0 Answer by tsilb for C# 2.0 - List processing tsilb 2009-11-18T10:29:35Z 2009-11-18T10:29:35Z <p>Loop .Adds intead of an .AddRange and check for integes.Contains(int) in the loop.</p> http://stackoverflow.com/questions/1754893/how-to-set-the-keyboardfocus-to-a-textbox-inside-a-usercontrol-programmatically/1754927#1754927 2 Answer by tsilb for How to set the keyboardfocus to a textbox inside a UserControl programmatically? tsilb 2009-11-18T10:10:15Z 2009-11-18T10:10:15Z <pre><code>MyUserControl.FindControl("TextBox1").Focus(); </code></pre> <p>Failing that...</p> <pre><code>(TextBox)(MyUserControl.FindControl("TextBox1")).Focus(); </code></pre> http://stackoverflow.com/questions/1754363/section-508-and-style-sheets/1754378#1754378 1 Answer by tsilb for Section 508 and Style Sheets tsilb 2009-11-18T08:13:37Z 2009-11-18T08:13:37Z <p>What language are you using? Some languages allow you to change the styles on an object programatically; others you'll have to use javascript. Which you can't rely on for 508c compliance.</p> http://stackoverflow.com/questions/1738990/initializing-multidimensional-jagged-arrays/1739010#1739010 0 Answer by tsilb for Initializing multidimensional jagged arrays tsilb 2009-11-15T22:04:42Z 2009-11-15T22:04:42Z <p>You could use a dataset with identical datatables. That could behave like a 3D object (xyz = row, column, table)... But you're going to end up with something big no matter what you do; you still have to account for 1000 items.</p> http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase/664442#664442 2 Answer by tsilb for What is your best pseudo-code phrase? tsilb 2009-03-19T23:24:33Z 2009-11-15T12:56:02Z <p><PRE>select * from users where clue > 0 0 rows returned</PRE></p> http://stackoverflow.com/questions/1678575/how-to-select-filter-against-substring-in-a-list-of-strings 1 How to select/filter against substring in a list of strings? tsilb 2009-11-05T05:43:46Z 2009-11-07T20:50:27Z <p>I have a LINQ result set I'm trying to filter in a strange and peculiar way. </p> <pre><code>List&lt;string&gt; MyDomains = [Code to get list]; var x = (from a in dc.Activities where a.Referrer != null &amp;&amp; a.Referrer.Trim().Length &gt; 0 &amp;&amp; !a.Referrer.Contains("localhost") &amp;&amp; a.SearchResults.Count() == 0 orderby a.ID descending select a) .Take(20); </code></pre> <p>Now that I have that out of the way, let me explain it better. MyDomains is a list of strings; each one is a root domain I own.</p> <p>a.Referrer is a string containing a referrer from a GET to one of my websites. Note this string will contain subdomains, folders, files, and querystrings.</p> <p>I want to filter x by the root domain of a.Referrer being in the MyDomains list. That is, I want to return all records that do not match in this way. The result set should end up containing Activities whose Referrer is not one of my domains.</p> <p>I've been learning Lambda expressions, but so far haven't been able to craft one to meet this goal since it effectively needs a where clause with logic inside it (Possibly loops, substrings, etc).</p> <p>Currently I'm thinking of casting X to a List, filtering them manually, then binding the list to the target control instead of binding X. I have an extension method to get the root domain of a Uri and another to determine whether it's my domain, but can't put them in a Lambda here because they have "no supported translation to SQL".</p> <p>Architectural disagreements aside, how can I fulfill this from within my LINQ query?</p> <p><hr /><em>Edit: Note I want to do this from within the query so I remove the matched records before my .Take(20) is added. I'd like to get the same number of results every time without having to call the database for more.</em></p> http://stackoverflow.com/questions/1694002/should-i-ask-the-interviewer-if-i-can-speak-to-other-developers/1694017#1694017 0 Answer by tsilb for Should i ask the interviewer if i can speak to other developers? tsilb 2009-11-07T18:50:05Z 2009-11-07T18:50:05Z <p>(1) Yes, absolutely. (2) Yes, this is rude. Yes, it should be encouraged :)</p> <p>Just keep in mind, do you have access and the info you need to follow through? Also remember you'll get different answers from different kinds of Developers. Some are using the methodologies they love; some are less pleased and will put a negative spin on it when it might be great, and vice-versa.</p> http://stackoverflow.com/questions/1683960/asp-net-vertical-alignment-of-controls-in-a-panel/1685105#1685105 0 Answer by tsilb for ASP.Net vertical alignment of controls in a panel tsilb 2009-11-06T02:47:22Z 2009-11-06T02:47:22Z <p>Try forming your tags as or add some whitespace around them. It may be wrapping. </p> http://stackoverflow.com/questions/1633755/develop-seamlessly-in-both-vc-2010-and-vc-2008-on-the-same-work/1678674#1678674 0 Answer by tsilb for Develop seamlessly in both VC++ 2010 and VC++ 2008 on the same work ? tsilb 2009-11-05T06:19:45Z 2009-11-05T06:19:45Z <p>You should treat the VS2010 copy as a Branch. Every couple days and upon any major change (Pending tests pass, of course), merge changes into the other Branch. This is a widely adopted and accepted practice in Enterprise software environments.</p> http://stackoverflow.com/questions/1678644/is-it-possible-to-make-setup-installation-for-webservice/1678654#1678654 0 Answer by tsilb for is it possible to make setup installation for WebService ? tsilb 2009-11-05T06:14:37Z 2009-11-05T06:14:37Z <p>Look into the <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/9041b0a5-c314-46d9-8f56-01506687f357.mspx?mfr=true" rel="nofollow">IIS WMI Provider</a>.</p> http://stackoverflow.com/questions/1678588/my-huge-application-throws-an-outofmemoryexception-now-what/1678600#1678600 2 Answer by tsilb for My (huge) application throws an OutOfMemoryException, now what? tsilb 2009-11-05T05:52:12Z 2009-11-05T05:52:12Z <p>Attach a debugger to it and reproduce the error. The call stack at exception time should tell you where the error is. </p> <p>Either you have a memory leak(s), you're not disposing your objects, or you need better hardware :)</p> http://stackoverflow.com/questions/1671335/embedding-c-windows-application-exe-in-a-webpart/1671354#1671354 0 Answer by tsilb for Embedding c# windows application (.exe) in a webpart tsilb 2009-11-04T02:16:23Z 2009-11-04T02:16:23Z <p>Do you have the code for the exe? If so you may be able to port it to a UserControl and put that in your WebPart. Development experience required.</p> http://stackoverflow.com/questions/1669696/c-utility-to-find-circular-references-compile-in-correct-order/1669738#1669738 0 Answer by tsilb for c# : Utility to find circular references / compile in correct order? tsilb 2009-11-03T19:51:39Z 2009-11-03T19:51:39Z <p>You could chase down the dependency tree via System.Reflection. As you build the tree, when adding a node, you would check to see if any parents of the node are the same project or assembly as the one you're adding. If true, throw an exception out to the user.</p> <p>Throwing technical exceptions like this one are ok if your users will be people who know how assembly references and exceptions work - people like Developers :)</p> http://stackoverflow.com/questions/1661024/can-i-safely-ignore-codeanalysis-warning-replace-string-with-string-isnull/1661034#1661034 0 Answer by tsilb for Can I safely ignore CodeAnalysis warning: replace string == "" with string.IsNullOrEmpty ? tsilb 2009-11-02T12:31:33Z 2009-11-02T12:31:33Z <p>If null is OK, you'll be fine either way.</p> http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-combobox/1816863#1816863 Comment by tsilb on ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox? tsilb 2009-11-29T23:03:46Z 2009-11-29T23:03:46Z Maybe filter by state (Which people may be more familiar with than some ideas of a &quot;region&quot;)? http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-combobox/1816844#1816844 Comment by tsilb on ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox? tsilb 2009-11-29T21:38:12Z 2009-11-29T21:38:12Z +1, 510 is way too many for a combobox. http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/139552#139552 Comment by tsilb on Most wanted feature for C# 4.0 ? tsilb 2009-11-26T20:02:26Z 2009-11-26T20:02:26Z BSODs are reserved for kernel errors. There is very little, if any, software that should be allowed to take over your OS. Gooood luck. http://stackoverflow.com/questions/1001494/being-a-lone-developer/1003620#1003620 Comment by tsilb on Being A Lone Developer tsilb 2009-11-26T19:25:34Z 2009-11-26T19:25:34Z Funny story. I was the lone developer on a project for awhile. I was replaced by Offshore resources (i.e. a whole team); then I stole my job back and will be taking care of it again. Therefore it can work out. sometimes. Mostly because Offshore resources work slowly and therefore the code should be mostly how I left it. http://stackoverflow.com/questions/901320/anti-joel-test/901362#901362 Comment by tsilb on Anti-Joel Test tsilb 2009-11-26T18:20:25Z 2009-11-26T18:20:25Z @WayneM: Disagree. In this world of IT and intelligencia, aren't we a little beyond grading people by their physical apperance? This &quot;Professionalism&quot; trait always seemed shallow to me. http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/383257#383257 Comment by tsilb on Common programming mistakes for .NET developers to avoid? tsilb 2009-11-26T16:23:32Z 2009-11-26T16:23:32Z +1 for GetFunky(); http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good/1044789#1044789 Comment by tsilb on most professional way to tell a developer they are no good tsilb 2009-11-26T15:42:08Z 2009-11-26T15:42:08Z +1 #4: In this day and age sometimes replacing people is not an option. Oh yes, the company will be glad to let someone go... But you may end up having to do their work on top of your own :) http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good Comment by tsilb on most professional way to tell a developer they are no good tsilb 2009-11-26T15:37:44Z 2009-11-26T15:37:44Z hah, +1 for crazy people. And they always end up writing your app's error messages, too. http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/916410#916410 Comment by tsilb on How can you tell if a person is a programmer? tsilb 2009-11-26T00:29:03Z 2009-11-26T00:29:03Z &quot;I'm pretty sure this is part of the engine... oh, wait, that <i>IS</i> the engine? Sweet, I got that one right...&quot; http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1014071#1014071 Comment by tsilb on How can you tell if a person is a programmer? tsilb 2009-11-26T00:27:44Z 2009-11-26T00:27:44Z Both syntactically accurate and parseable by real people. http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/899911#899911 Comment by tsilb on How can you tell if a person is a programmer? tsilb 2009-11-25T23:59:53Z 2009-11-25T23:59:53Z +1 for x and Form1. http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/238285#238285 Comment by tsilb on The funniest/weirdest error message you've got from a development environment/application tsilb 2009-11-20T07:17:08Z 2009-11-20T07:17:08Z You have got to check the alt text on that refresh pic. http://stackoverflow.com/questions/175854/what-is-the-funniest-bug-youve-ever-experienced/175995#175995 Comment by tsilb on What is the funniest bug you've ever experienced? tsilb 2009-11-20T07:14:17Z 2009-11-20T07:14:17Z LOL, &quot;ummm no.&quot; http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/1107822#1107822 Comment by tsilb on What real life bad habits has programming given you? tsilb 2009-11-20T06:39:26Z 2009-11-20T06:39:26Z Oh, great. Now I have to go find every instance where this is used to make sure it really should be constant. I start visualizing the city map in my mind, only to realize I'm on the wrong side of the cones... No wonder I'm going faster than everyone... Oh shi- a dump truck! OK, I suppose that one can remain constant. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/169018#169018 Comment by tsilb on What real life bad habits has programming given you? tsilb 2009-11-20T06:37:20Z 2009-11-20T06:37:20Z Wouldn't you double-click the butter dish? One clicks the thing that will do the action, not the thing the action is being done to.