User tsilb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T07:48:56Zhttp://stackoverflow.com/feeds/user/11112http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829101/dtsx-files-how-to-peruse-edit0DTSX files - How to peruse & edittsilb2009-12-01T21:36:44Z2009-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#18168630Answer by tsilb for ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox?tsilb2009-11-29T21:41:48Z2009-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-ones1Data Access object: Singleton or many small ones?tsilb2009-11-26T20:17:57Z2009-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#18054440Answer by tsilb for What development book made the most impact on you as a developer?tsilb2009-11-26T20:04:24Z2009-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#18052390Answer by tsilb for Being A Lone Developertsilb2009-11-26T19:09:01Z2009-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#18048800Answer by tsilb for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)tsilb2009-11-26T17:25:29Z2009-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#18048760Answer by tsilb for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)tsilb2009-11-26T17:24:25Z2009-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 <= WrapPos)
return str;
for (int i = str.Length; i >= 0; i--)
if (i % WrapPos == 0 && i > 0 && 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#18048700Answer by tsilb for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)tsilb2009-11-26T17:22:18Z2009-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<dynamic> in .NET 4.0 :)</p>
<p>Mostly I like it because I effectively get a List<AnonymousType#1>().</p>
<pre><code> /// <summary>Remove extraneous entries for common word permutations</summary>
/// <param name="input">Incoming series of words to be filtered</param>
/// <param name="MaxIgnoreLength">Words this long or shorter will not count as duplicates</param>
/// <param name="words2">Instance list from BuildInstanceList()</param>
/// <returns>Filtered list of lines from input, based on filter info in words2</returns>
private static List<string> FilterNearDuplicates(List<string> input, int MaxIgnoreLength, List<dynamic> words2)
{
List<string> output = new List<string>();
foreach (string line in input)
{
int Dupes = 0;
foreach (string word in line.Split(new char[] { ' ', ',', ';', '\\', '/', ':', '\"', '\r', '\n', '.' })
.Where(p => p.Length > MaxIgnoreLength)
.Distinct())
{
int Instances = 0;
foreach (dynamic dyn in words2)
if (word == dyn.Word)
{
Instances = dyn.Instances;
if (Instances > 1)
Dupes++;
break;
}
}
if (Dupes == 0)
output.Add(line);
}
return output;
}
/// <summary>Builds a list of words and how many times they occur in the overall list</summary>
/// <param name="input">Incoming series of words to be counted</param>
/// <returns></returns>
private static List<dynamic> BuildInstanceList(List<string> input)
{
List<dynamic> words2 = new List<object>();
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 >= 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;
}
/// <summary>Determines whether a dynamic Word object exists in a List of this dynamic type.</summary>
/// <param name="word">Word to look for</param>
/// <param name="words">Word dynamics to search through</param>
/// <returns>Indicator of whether the word exists in the list of words</returns>
private static bool ExistsInList(string word, List<dynamic> 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#17688820Answer by tsilb for Which metaphor would you use to describe programming?tsilb2009-11-20T07:23:48Z2009-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#17688390Answer by tsilb for What is the first thing you do when you install Visual Studio?tsilb2009-11-20T07:08:14Z2009-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#17687751Answer by tsilb for What is the most useful script you've written for everyday life?tsilb2009-11-20T06:51:28Z2009-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#17687631Answer by tsilb for What is the most useful script you've written for everyday life?tsilb2009-11-20T06:49:18Z2009-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#17687460Answer by tsilb for What are the worst working conditions you have written code in?tsilb2009-11-20T06:44:11Z2009-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#17685171Answer by tsilb for How can you tell if a person is a programmer?tsilb2009-11-20T05:28:50Z2009-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#17684680Answer by tsilb for How can you tell if a person is a programmer?tsilb2009-11-20T05:14:09Z2009-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-freelancing6How to get into freelancing? [closed]tsilb2009-11-18T12:49:18Z2009-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#17550610Answer by tsilb for C# 2.0 - List processingtsilb2009-11-18T10:29:35Z2009-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#17549272Answer by tsilb for How to set the keyboardfocus to a textbox inside a UserControl programmatically?tsilb2009-11-18T10:10:15Z2009-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#17543781Answer by tsilb for Section 508 and Style Sheetstsilb2009-11-18T08:13:37Z2009-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#17390100Answer by tsilb for Initializing multidimensional jagged arraystsilb2009-11-15T22:04:42Z2009-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#6644422Answer by tsilb for What is your best pseudo-code phrase?tsilb2009-03-19T23:24:33Z2009-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-strings1How to select/filter against substring in a list of strings?tsilb2009-11-05T05:43:46Z2009-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<string> MyDomains = [Code to get list];
var x = (from a in dc.Activities
where a.Referrer != null
&& a.Referrer.Trim().Length > 0
&& !a.Referrer.Contains("localhost")
&& 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#16940170Answer by tsilb for Should i ask the interviewer if i can speak to other developers?tsilb2009-11-07T18:50:05Z2009-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#16851050Answer by tsilb for ASP.Net vertical alignment of controls in a paneltsilb2009-11-06T02:47:22Z2009-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#16786740Answer by tsilb for Develop seamlessly in both VC++ 2010 and VC++ 2008 on the same work ?tsilb2009-11-05T06:19:45Z2009-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#16786540Answer by tsilb for is it possible to make setup installation for WebService ?tsilb2009-11-05T06:14:37Z2009-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#16786002Answer by tsilb for My (huge) application throws an OutOfMemoryException, now what?tsilb2009-11-05T05:52:12Z2009-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#16713540Answer by tsilb for Embedding c# windows application (.exe) in a webparttsilb2009-11-04T02:16:23Z2009-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#16697380Answer by tsilb for c# : Utility to find circular references / compile in correct order?tsilb2009-11-03T19:51:39Z2009-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#16610340Answer by tsilb for Can I safely ignore CodeAnalysis warning: replace string == "" with string.IsNullOrEmpty ?tsilb2009-11-02T12:31:33Z2009-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#1816863Comment by tsilb on ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox?tsilb2009-11-29T23:03:46Z2009-11-29T23:03:46ZMaybe filter by state (Which people may be more familiar with than some ideas of a "region")? http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-combobox/1816844#1816844Comment by tsilb on ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox?tsilb2009-11-29T21:38:12Z2009-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#139552Comment by tsilb on Most wanted feature for C# 4.0 ?tsilb2009-11-26T20:02:26Z2009-11-26T20:02:26ZBSODs 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#1003620Comment by tsilb on Being A Lone Developertsilb2009-11-26T19:25:34Z2009-11-26T19:25:34ZFunny 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#901362Comment by tsilb on Anti-Joel Testtsilb2009-11-26T18:20:25Z2009-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 "Professionalism" trait always seemed shallow to me.http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/383257#383257Comment by tsilb on Common programming mistakes for .NET developers to avoid?tsilb2009-11-26T16:23:32Z2009-11-26T16:23:32Z+1 for GetFunky();http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good/1044789#1044789Comment by tsilb on most professional way to tell a developer they are no goodtsilb2009-11-26T15:42:08Z2009-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-goodComment by tsilb on most professional way to tell a developer they are no goodtsilb2009-11-26T15:37:44Z2009-11-26T15:37:44Zhah, +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#916410Comment by tsilb on How can you tell if a person is a programmer?tsilb2009-11-26T00:29:03Z2009-11-26T00:29:03Z"I'm pretty sure this is part of the engine... oh, wait, that <i>IS</i> the engine? Sweet, I got that one right..."http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1014071#1014071Comment by tsilb on How can you tell if a person is a programmer?tsilb2009-11-26T00:27:44Z2009-11-26T00:27:44ZBoth syntactically accurate and parseable by real people.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/899911#899911Comment by tsilb on How can you tell if a person is a programmer?tsilb2009-11-25T23:59:53Z2009-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#238285Comment by tsilb on The funniest/weirdest error message you've got from a development environment/applicationtsilb2009-11-20T07:17:08Z2009-11-20T07:17:08ZYou 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#175995Comment by tsilb on What is the funniest bug you've ever experienced?tsilb2009-11-20T07:14:17Z2009-11-20T07:14:17ZLOL, "ummm no."
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/1107822#1107822Comment by tsilb on What real life bad habits has programming given you?tsilb2009-11-20T06:39:26Z2009-11-20T06:39:26ZOh, 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#169018Comment by tsilb on What real life bad habits has programming given you?tsilb2009-11-20T06:37:20Z2009-11-20T06:37:20ZWouldn'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.