User Perpetualcoder - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:27:51Z http://stackoverflow.com/feeds/user/37494 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1802415/python-for-in-control-structure/1802505#1802505 0 Answer by Perpetualcoder for python for in control structure Perpetualcoder 2009-11-26T09:16:02Z 2009-11-26T09:16:02Z <p>Conceptually</p> <pre><code>for x,y in z </code></pre> <p>is actually iterating using an enumerator (language specific implementation of an iterator pattern), for loops are based on index based iteration.</p> <p>for x,y in z would semantically be like</p> <pre><code>for (x=0 ; x&lt;z.length ; x++ ) for (y=1; x&lt;z.length;y++) print z[x],z[y] </code></pre> <p>note this will work for tuples in python.</p> http://stackoverflow.com/questions/1802380/does-extension-method-come-under-object-oriented-concept-in-c/1802414#1802414 0 Answer by Perpetualcoder for Does extension method come under object oriented concept in c#? Perpetualcoder 2009-11-26T08:59:01Z 2009-11-26T08:59:01Z <p>Extension Methods are just static methods that work with a specific Class or Class Hierarchy. Python is OO but has modules, Ruby has mixins. I see it more as a language feature. I am pretty sure its still OO friendly</p> http://stackoverflow.com/questions/711304/how-do-you-manually-databind-complex-object-to-templated-control-like-a-row-in-a 2 How do you manually databind complex object to templated control like a row in a gridview?? Perpetualcoder 2009-04-02T19:45:51Z 2009-11-17T23:30:14Z <p>I am struggling with the databinding syntax here. For example I have a data structure like this -</p> <pre><code>public class Course{ public string CourseName {get;set;} public string CourseCode {get;set;} public List&lt;Instructor&gt; InstructorsTeaching{get;set;} } public class Instructor{ public string InstructorName{get;set;} public string InstructorCode{get;set;} } </code></pre> <p>Now if I want to bind this List Courses to say a gridview manually, I could do</p> <pre><code>&lt;asp:TextBox runat="server" ID="tbCourseName" Text='&lt;%# Bind("CourseName")%&gt;'/&gt; </code></pre> <p>while specifying for edit template of the grid but how do I bind the Instructors teaching property to say a ListBox in the same row, I cant figure out the syntax , here is an exaple of what I tried and failed</p> <pre><code>&lt;asp:ListBox runat="server" ID="tbInstructors" DataSource='&lt;%# Eval("InstructorsTeaching") as List&lt;Instructor&gt; %&gt;'&gt; &lt;asp:ListItem Text='&lt;%# Bind("InstructorCode")%&gt;' Value='&lt;%# Bind("InstructorName")%&gt;'/&gt;... &lt;as:ListBox/&gt; </code></pre> <p>My above code does not work for sure :). Ideally I would like to do this in markup instead of code behind.</p> http://stackoverflow.com/questions/1745524/whats-the-most-pythonic-xhtml-html-parser-generator-template-module-that-support/1745562#1745562 1 Answer by Perpetualcoder for What's the most Pythonic XHTML/HTML parser/generator/template module that supports DOM like access? Perpetualcoder 2009-11-16T23:29:22Z 2009-11-16T23:29:22Z <p>have you looked at <a href="http://www.freenet.org.nz/python/pyweb/" rel="nofollow">pyWeb</a> ?</p> http://stackoverflow.com/questions/1725079/entity-framework-error-message-mysql-works-on-the-local-machine-not-when-publish/1725130#1725130 0 Answer by Perpetualcoder for Entity Framework Error message MYSQL, works on the local machine not when published Perpetualcoder 2009-11-12T20:27:14Z 2009-11-12T20:27:14Z <p>Looks like your MySQL data provider is not compatible with EF. Are you using <a href="http://dev.mysql.com/downloads/connector/net/6.0.html" rel="nofollow">this</a> connector ?</p> http://stackoverflow.com/questions/1724774/java-data-transfer-object-naming-convention/1724819#1724819 1 Answer by Perpetualcoder for Java data transfer object naming convention? Perpetualcoder 2009-11-12T19:37:07Z 2009-11-12T19:37:07Z <p>I dont think there is a best practice or convention for a class exhibiting this kind of behavior. I personally dont like the word Object in any of the class names. You could either use some qualification like Poko.Car or use some naming convention like Car (for POJO) CarDa (for data access) CarBiz ( for business domain class)</p> <p>Or if you dont mind the word object in a class name go for something like CarDto (Car Data Transfer Object)</p> http://stackoverflow.com/questions/1633926/web-app-testing/1633961#1633961 2 Answer by Perpetualcoder for web app testing Perpetualcoder 2009-10-27T22:08:40Z 2009-10-27T22:08:40Z <p>A huge list can be found here <a href="http://www.softwareqatest.com/qatweb1.html" rel="nofollow">http://www.softwareqatest.com/qatweb1.html</a></p> http://stackoverflow.com/questions/1615601/how-to-set-default-datetime-values-in-an-xsd-element 0 How to set default datetime values in an XSD element Perpetualcoder 2009-10-23T20:02:26Z 2009-10-23T20:08:07Z <p>I am currently stuck at this point where I need to set an xsd element's default attribute to have a valid current date as default. I looked around (googled) but did not find anything convincing. I need to do this in declaratively.</p> <pre><code> &lt;xs:element name="UpdatedDate" type="xs: dateTime" msdata:Caption="Updated Date" minOccurs="1" nillable="true" default="DONT KNOW HOW TO GET CURRENT DATE HERE" /&gt; </code></pre> <p>Thanks in Advance</p> http://stackoverflow.com/questions/1586734/how-to-style-alternating-rows-in-asp-net-mvc/1586805#1586805 2 Answer by Perpetualcoder for How to style alternating rows in asp.net mvc Perpetualcoder 2009-10-19T03:09:53Z 2009-10-19T03:09:53Z <p>If you are the daring types who wants to dive into CSS3</p> <pre><code>tr:nth-child(odd) { background-color:#eee; } tr:nth-child(even) { background-color:#fff; } </code></pre> http://stackoverflow.com/questions/462176/how-do-you-implement-ui-for-the-non-computer-savvy 6 How do you implement UI for the non computer savvy ?? Perpetualcoder 2009-01-20T17:07:44Z 2009-10-18T16:42:38Z <p>I have been support a web app that is used by a user base who's age range if from 40-65. The app is very good and has the latest ajaxy stuff etc. What we would now call very user friendly and responsive. I am amazed as to how this app is not so userfriendly for that user base. I was told that some autocomplete features make them disoriented!! Also, a lot of accidental clicks happen, they sometimes say "its not going thru!" then I realize that one of required check boxes were not clicked. I hope I made the scenario clear. </p> <p>Could someone provice me resources/tips for this? Is not so much as an accessibility issue.</p> http://stackoverflow.com/questions/1583654/why-we-are-implementing-interfaces/1583693#1583693 2 Answer by Perpetualcoder for Why we are Implementing Interfaces ? Perpetualcoder 2009-10-18T01:17:49Z 2009-10-18T01:17:49Z <p>Adding to more interface wisdom, interfaces can be used as contracts between consumer code and service code. Instead of saying this is object that we will be dealing with, with interfaces the agreement is, this is how the object i return looks. In code, it could be something like:</p> <p>service code</p> <pre><code>public IEnumerable&lt;int&gt; GetNumbers(){ return new []{1,2,3,4,5}; } </code></pre> <p>client code :</p> <pre><code>var result = serviceProxy.GetNumbers(); </code></pre> <p>Here the service code can change implementation to return any class that satisfies IEnumerable without breaking client code.</p> <p>Besides all this you have got other applications like IoC DI, Unit Testing, Object Mocking. All this reaping benefits of polymorphic goodness.</p> http://stackoverflow.com/questions/404040/how-do-you-like-your-primary-keys 12 How do you like your primary keys? Perpetualcoder 2008-12-31T21:14:11Z 2009-10-17T02:45:39Z <p>In a fairly animated discussion in my team I was made to think what most people like as primary keys. We had the following groups-</p> <ol> <li>Int/ BigInt which autoincrement are good enough primary keys.</li> <li>There should be at least 3 columns that make up the primary key.</li> <li>Id, GUID and human readable row identifiers all should be treated differently.</li> </ol> <p>Whats the best approach for PKs? It would be awesome if you could justify your opinion. Is there a better approach that the above? </p> <p>EDIT: Anyone has a simple sample/algorithm to generate human readable identifiers for rows that scales well?</p> http://stackoverflow.com/questions/1570739/bringing-enterprise-framework-upto-speed 1 Bringing Enterprise Framework Upto speed Perpetualcoder 2009-10-15T07:16:49Z 2009-10-15T20:11:42Z <p>If a company has developed a framework for doing almost everything their business requires, but has following problems :</p> <ol> <li>With evolution and change of ownership the design has degraded. ( Absurd hierarchies ) </li> <li>Is not up to date with latest trends in enterprise software development. (Data Sets!!)</li> <li>Too many dependent modules. ( Not interface based, code dependencies, tons of xsd etc )</li> <li>It take a new hire loads of time to catch up because the framework is private to the company.( Bad coding practices in past, lack of documentation, scattered business logic )</li> <li>Not using any well known libraries like (log4net/ CSLA / Spring.net / Drools )</li> </ol> <p>How do you go about doing the following as a Sr. Dev :</p> <ol> <li>Convince higher ups the need of a revamp / re-design.</li> <li>Incremental re-design or continuous refactoring ? Best bet?</li> </ol> <p>My biggest concern is how to explain the higher ups that there is a problem with the framework. A sound advice on incremental redesign vs continuous refactoring the framework would be nice too!!</p> <p>Thanks in advance!!</p> http://stackoverflow.com/questions/1570702/what-does-crosscutting-requirements-concerns-mean-in-programming/1570782#1570782 2 Answer by Perpetualcoder for What does Crosscutting Requirements/Concerns mean in Programming? Perpetualcoder 2009-10-15T07:24:16Z 2009-10-15T07:24:16Z <p>I recommend you look at a framework like <a href="http://www.postsharp.org/" rel="nofollow">Postsharp</a> and try out <a href="http://www.postsharp.org/about/getting-started" rel="nofollow">this</a> example from the postsharp site. If you know java a lok into <a href="http://www.eclipse.org/aspectj/" rel="nofollow">AspectJ</a> is worth a look. But first you may want to read the link posted by Jon Skeet :)</p> http://stackoverflow.com/questions/1561835/populating-a-jqgrid-with-json-data-from-an-asmx/1561989#1561989 0 Answer by Perpetualcoder for Populating a JqGrid with Json data from an ASMX Perpetualcoder 2009-10-13T18:11:44Z 2009-10-14T15:41:23Z <p><a href="http://stackoverflow.com/questions/879362/calling-asmx-from-jquery">Calling ASMX from JQuery</a> post on SO should do it for you.</p> <p>Have you looked at this <a href="http://www.secondpersonplural.ca/jqgriddocs/index.htm" rel="nofollow">documentation</a>??</p> http://stackoverflow.com/questions/417163/anyone-with-postsharp-experience-in-production 4 Anyone with Postsharp experience in production? Perpetualcoder 2009-01-06T16:17:38Z 2009-10-09T17:20:56Z <p>Does anyone out there has used <a href="http://www.postsharp.org/" rel="nofollow">Postsharp</a> AOP framework in production environment? Are there any pitfalls? In order to do some logging etc, can Postsharp be used in conjunction with log4net ?</p> <p>Any tutorials on using Postsharp with Web Apps and/or log4net will be highly appreciated.</p> <p>Thanks In Advance.</p> http://stackoverflow.com/questions/1529283/can-we-use-extension-methods-for-building-business-rule-engines 1 Can we use Extension Methods for building business rule engines? Perpetualcoder 2009-10-07T03:06:07Z 2009-10-07T04:37:52Z <p>I am looking to do something like this</p> <pre><code>public class ProductBiz: BizBase&lt;Product&gt; { public List&lt;String&gt; BrokenRules {get;set;} // Some kind of data + biz operation implementation } public static class ProductBizExtensions{ public ProductBiz Rule1(this ProductBiz prodBiz) {} public ProductBiz Rule2(this ProductBiz prodBiz) {} public bool ApplyRules (this ProductBiz prodBiz, Func&lt;ProductBiz,bool&gt; ruleset){} } </code></pre> <p>Then in client code use it as</p> <pre><code>productBiz.Rule1().Rule2(); productBiz.Rule2().Rule1(); </code></pre> <p>OR</p> <pre><code>// create multicasted delegate of type Func&lt;ProductBiz,bool&gt; say rulesetDelegate productBiz.ApplyRules(rulesetDelegate); </code></pre> <p>Just wanted to ask before i dive deep and drown.</p> <p>What are the potential pitfalls with this approach???</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/429149/the-n-layer-poco-dto-quandary 3 The N-Layer POCO/ DTO quandary Perpetualcoder 2009-01-09T18:27:21Z 2009-09-25T23:41:22Z <p>When there were only evil datasets and the microsoft application blocks your transfer objects between layers would be either datasets/datatables or DTO/POCO. I belong to the gang that likes using DTO/POCO. </p> <p>Now with this sudden wave of mapping layers like SubSonic, Entity Framework, NHibernate etc, should I still be using my favourite POCOs?? I do this mostly and when working with ASP.net webforms 99% times end up using ObjectDataSource for binding to controls and the features specific to each type.</p> <p>Should I give up this love for POCO and pass around IQueryables or Entities or things like that and make use of other DataSource objects??</p> <p>What are the pros and cons of using these objects instead of DTOs ?? How will it hit my app design and performance?</p> <p>EDIT: When will I get to use the other datasources like Linq Datasorce and Entity datasource etc?</p> http://stackoverflow.com/questions/1425421/where-does-ado-net-data-services-fit-in-an-n-layer-arch 2 Where does ADO.net Data Services fit in an N-Layer Arch ?? Perpetualcoder 2009-09-15T06:12:28Z 2009-09-15T06:50:07Z <p>I dont like accesssing data directly from the UI layer. I am somehow failing to understand where to use a ADO.net data service in an N-Layer arch software.</p> <p>EDIT: I am struggling with the concept of a service as a DAL. I would assume it isnt too efficient although it looks scalable.</p> http://stackoverflow.com/questions/1419581/how-to-access-most-frequently-used-programs-in-os-and-most-recent-files-of-progra 3 How to access most frequently used programs in OS and most recent files of programs programmatically? Perpetualcoder 2009-09-14T03:39:45Z 2009-09-14T10:00:56Z <p>I need to gain access to the list of most recently used programs and list of recently opened files in Windows OS programatically. These are the items you generally see once you click start in windows. I am looking to use C# but if its better in Managed C++ I will do that too.</p> http://stackoverflow.com/questions/1408706/are-there-any-good-examples-of-ajax-paging/1408771#1408771 0 Answer by Perpetualcoder for Are there any good examples of ajax paging? Perpetualcoder 2009-09-11T03:00:04Z 2009-09-11T03:00:04Z <p>This one is pretty good..even though with .net 3.5 you could make the service restful. <a href="http://encosia.com/2008/08/20/easily-build-powerful-client-side-ajax-paging-using-jquery/" rel="nofollow">LINK</a></p> http://stackoverflow.com/questions/1404039/in-linq-what-is-the-main-difference-usefulness-between-any-and-where/1404061#1404061 1 Answer by Perpetualcoder for In LINQ, what is the main difference/usefulness between .Any<> and .Where<> Perpetualcoder 2009-09-10T08:27:31Z 2009-09-10T08:27:31Z <p>Any tests the lambda/predicate and returns true/false</p> <p>Where returns the set of objects for which lambda/predicate holds true as IQueryable</p> http://stackoverflow.com/questions/1402684/c-sql-get-autoincremented-field-value/1402700#1402700 1 Answer by Perpetualcoder for C#/SQL get autoincremented field value Perpetualcoder 2009-09-09T23:38:08Z 2009-09-09T23:38:08Z <p>Have your sql/stored proc return <a href="http://msdn.microsoft.com/en-us/library/ms190315.aspx" rel="nofollow">scope_identity()</a> or if you are using Linq2SQL or EF the entity used for insertion gets the new id.</p> http://stackoverflow.com/questions/1350795/how-do-i-get-auto-generated-sql-statements-from-nhibernates-operation/1350813#1350813 0 Answer by Perpetualcoder for How do i get auto-generated sql statements from NHibernate's operation Perpetualcoder 2009-08-29T08:02:22Z 2009-08-29T08:02:22Z <p>Take a look at this <a href="http://blogs.hibernatingrhinos.com/nhibernate/archive/2008/07/01/how-to-configure-log4net-for-use-with-nhibernate.aspx" rel="nofollow">article</a>. It uses NHibernate + Log4Net </p> <p>It did not work straight out of the box for me since I was new to Log4Net. I guess any other logging framework would do if you know how to set it up.</p> http://stackoverflow.com/questions/1344304/why-do-newbie-programmers-seem-to-shy-away-from-libraries/1344320#1344320 1 Answer by Perpetualcoder for Why do newbie programmers seem to shy away from libraries? Perpetualcoder 2009-08-27T23:48:25Z 2009-08-27T23:48:25Z <p>I think the professors want them to stick to the basics. When I graduated from under-grad school, I knew C++, Java and some other languages but had no clue about libraries and frameworks being used in companies. It was like do you know java..yes..can you write a servlet..no. </p> http://stackoverflow.com/questions/1339101/best-route-for-an-independent-developer-to-get-modern-microsoft-source-control/1339174#1339174 1 Answer by Perpetualcoder for Best route for an independent developer to get modern Microsoft source control? Perpetualcoder 2009-08-27T06:22:19Z 2009-08-27T06:22:19Z <p>If you are a solo developer you might not need to go the TFS way. As the product name suggests it is for teams. I suggest take a dive into source control systems like Subversion + TortoiseSVN or Mercurial + TortoiseHg. You could even use a web based source control if it fits your needs, sometime like Launchpad.net</p> http://stackoverflow.com/questions/1339058/c-convert-a-2-dimensional-array-into-a-dataset-datatable/1339145#1339145 1 Answer by Perpetualcoder for C# Convert a 2-dimensional array into a dataset / datatable Perpetualcoder 2009-08-27T06:13:25Z 2009-08-27T06:13:25Z <p>Option given by mr.phoenix should work. If you are stuck with dealing with arrays...here is some pseudocode.</p> <pre><code>var sample = {{0, 1}, {2, 3}, {4, 5}, {6, 7}, {8, 9}}; var table = new DataTable("SampleTable"); // iteration logic/loops for the array { var newRow = table.NewRow(); newRow["Col1"] = sample[i,j0]; // like sample [0,0] newRow["Col2"] = sample[i,j1]; // like sample [0,1] table.Add(newRow); } </code></pre> http://stackoverflow.com/questions/1330133/what-is-the-equivalent-of-javas-default-package-access-in-c/1330163#1330163 0 Answer by Perpetualcoder for What is the equivalent of Java's default (package) access in C#? Perpetualcoder 2009-08-25T18:36:18Z 2009-08-25T18:36:18Z <p>you could restrict the methods to be visible only in its assembly by making them internal</p> http://stackoverflow.com/questions/1330068/wcf-use-original-domain-object-instead-of-proxy-generated/1330134#1330134 1 Answer by Perpetualcoder for WCF use original domain object instead of proxy generated Perpetualcoder 2009-08-25T18:31:20Z 2009-08-25T18:31:20Z <p>There are some gotchas in this. I saw this video from Miguel Castro (uber cool dude) about doing the WCF right way. This might give you a whole lot of insight.</p> <p><a href="http://www.dnrtv.com/default.aspx?showNum=122" rel="nofollow">Miguel Castro - Extreme WCF</a></p> http://stackoverflow.com/questions/1330035/how-do-i-use-javascript-to-grow-an-html-form/1330105#1330105 1 Answer by Perpetualcoder for How do I use JavaScript to grow an HTML form? Perpetualcoder 2009-08-25T18:26:16Z 2009-08-25T18:26:16Z <p>if you are already using jQuery you could take a look <a href="http://docs.jquery.com/Tutorials:Multiple%5FFile%5FUpload%5FMagic" rel="nofollow">here</a> too. It says somewhere to make file uploads sexy :) I found it funny :)</p> http://stackoverflow.com/questions/1802450/add-image-and-string-in-gridview Comment by Perpetualcoder on add image and string in gridview Perpetualcoder 2009-11-26T09:37:04Z 2009-11-26T09:37:04Z or datagridview <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1802450/add-image-and-string-in-gridview Comment by Perpetualcoder on add image and string in gridview Perpetualcoder 2009-11-26T09:33:55Z 2009-11-26T09:33:55Z is datagridview for winforms <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.datagrid.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> not gridview http://stackoverflow.com/questions/1756960/wcf-duplex-channel-gets-closed-when-using-callbacks Comment by Perpetualcoder on WCF duplex channel gets closed when using callbacks Perpetualcoder 2009-11-18T15:57:31Z 2009-11-18T15:57:31Z code snippets could be beneficial from client and service side. http://stackoverflow.com/questions/711304/how-do-you-manually-databind-complex-object-to-templated-control-like-a-row-in-a/1752618#1752618 Comment by Perpetualcoder on How do you manually databind complex object to templated control like a row in a gridview?? Perpetualcoder 2009-11-18T15:56:25Z 2009-11-18T15:56:25Z I just decided to change my service api to return XML and did it the jquery way. Ohter mechanisms were just too slow for large datasets. Thanks for the input http://stackoverflow.com/questions/1751835/navigator-pattern Comment by Perpetualcoder on Navigator pattern Perpetualcoder 2009-11-17T21:18:34Z 2009-11-17T21:18:34Z if you can be specific to technology we can be of more help. Plain HTML + JS will be your easiest bet if its web. http://stackoverflow.com/questions/1750504/prefix-is-in-method-name-for-verification-methods Comment by Perpetualcoder on Prefix "Is" in Method Name for Verification Methods Perpetualcoder 2009-11-17T17:47:12Z 2009-11-17T17:47:12Z just a small tip, make sure they dont sound like test methods, VerifyObjectIsNotNull, i have seen this and causes a little ambiguity http://stackoverflow.com/questions/1725659/structuremap-or-any-ioc-and-wcf/1725838#1725838 Comment by Perpetualcoder on StructureMap (or any IoC) and WCF Perpetualcoder 2009-11-13T18:11:11Z 2009-11-13T18:11:11Z +1 for dimecasts reference. Dependency injection and factories are useful in context of WCF IMO http://stackoverflow.com/questions/1726059/is-this-a-mistake-in-my-computer-architecture-book Comment by Perpetualcoder on Is this a mistake in my Computer Architecture book? Perpetualcoder 2009-11-12T23:14:31Z 2009-11-12T23:14:31Z Ask your teacher/ mentor please.... http://stackoverflow.com/questions/1725659/structuremap-or-any-ioc-and-wcf Comment by Perpetualcoder on StructureMap (or any IoC) and WCF Perpetualcoder 2009-11-12T21:59:35Z 2009-11-12T21:59:35Z it more depends on the total architecture of your app but I am curious what other people have to say, unless you update your question. http://stackoverflow.com/questions/1724613/is-it-possible-to-use-reportviewer-with-asp-net-mvc/1724636#1724636 Comment by Perpetualcoder on Is it possible to use ReportViewer with ASP.NET MVC? Perpetualcoder 2009-11-12T19:45:25Z 2009-11-12T19:45:25Z problem is only with MVC webforms mishmash http://stackoverflow.com/questions/1723287/calling-a-javascript-function-named-in-a-variable Comment by Perpetualcoder on Calling a JavaScript function named in a variable Perpetualcoder 2009-11-12T16:07:08Z 2009-11-12T16:07:08Z sounds more like a callback... is it? http://stackoverflow.com/questions/1723287/calling-a-javascript-function-named-in-a-variable/1723299#1723299 Comment by Perpetualcoder on Calling a JavaScript function named in a variable Perpetualcoder 2009-11-12T16:06:21Z 2009-11-12T16:06:21Z dint know this one still existed...will try to forget this trick... http://stackoverflow.com/questions/1708709/linq-return-bool-where-a-val1-b-val2-from-model Comment by Perpetualcoder on Linq return bool where a = val1 & b = val2 from model? Perpetualcoder 2009-11-10T15:21:07Z 2009-11-10T15:21:07Z Can you elaborate on your question ? http://stackoverflow.com/questions/469091/how-passionate-are-your-coworkers-with-programming/1652660#1652660 Comment by Perpetualcoder on How passionate are your coworkers with programming? Perpetualcoder 2009-10-30T22:38:12Z 2009-10-30T22:38:12Z +1 for cheating lol http://stackoverflow.com/questions/1638972/is-there-a-very-lightweight-ide-for-net/1638994#1638994 Comment by Perpetualcoder on Is there a *very* lightweight IDE for .net? Perpetualcoder 2009-10-28T18:06:28Z 2009-10-28T18:06:28Z +1 awesome advice for testing assemblies etc on the fly. IronRUby is cute at that too :)