User Seiti - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:16:48Z http://stackoverflow.com/feeds/user/27959 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/266569/whats-the-first-program-you-wrote-that-you-were-proud-of/267438#267438 0 Answer by Seiti for What's the first program you wrote that you were proud of? Seiti 2008-11-06T01:57:15Z 2009-08-19T23:23:21Z <p>A 1 hour exercise programming that take 2 arbitrarly long integers (i.e. longer than 4 bytes) and multiply them. Flawless! (of course we didn't have much time to test it properly...)</p> http://stackoverflow.com/questions/1076447/setting-up-hudson-with-selenium-rc-to-run-tests-written-in-c 0 Setting up Hudson with Selenium RC to run tests written in C# Seiti 2009-07-02T20:10:35Z 2009-07-23T19:30:26Z <p>I just deployed a Hudson server and configured it to checkout, build and deploy to a testing http server.</p> <p>Now I want more =)</p> <p>I have some Selenium RC tests wrtten in C#/.Net, using the MbUnit infrastructure, that runs ok on Gallio Icarus.</p> <p>How to setup Hudson to run these tests? Our is in a Windows 2003 server.</p> <p>I was thinking about just setting a batch script that runs the tests. But how to run them in CLI? Is there a CLI test runner that could run our tests?</p> http://stackoverflow.com/questions/457934/passing-linqdatasource-through-session-datacontext-accessed-after-dispose 0 Passing LinqDataSource through Session: 'DataContext accessed after Dispose.' Seiti 2009-01-19T15:18:34Z 2009-07-21T08:35:23Z <p>I´m in need to pass some results from the database around. Instead of pass a whole dataset, or a constructed sql query, I tried to pass a LinqDataSource configured object.</p> <p>On the source page, I configure the LinqDataSource object properties <strong>Where</strong> and <strong>WhereParameters</strong> using the values set by the user on the controls displayed on the page (search box, combo box etc.). I pass the object around to avoid the LinqDataSource reconfiguration on the receiver page.</p> <p>But, even while it worked fine on my developing system, after deploying it on a dedicated server I got an error saying the following: </p> <blockquote> <p>Cannot access a disposed object.</p> <p>Object name: 'DataContext accessed after Dispose.'.</p> </blockquote> <p>On both pages, the source and the receiver, the LinqDataSource objects are declared as:</p> <pre><code>&lt;asp:LinqDataSource ID="myLinqDS" runat="server" ContextTypeName="MyProject.MyDBNamedpace.MyDataContext" TableName="TheTable" OrderBy="field1, field2" &lt;/asp:LinqDataSource&gt; </code></pre> <p>To pass the datasource object around I do this:</p> <pre><code>SetLinqDataSourceWhereAndHisParameters(); //just set Where and WhereParameters Guid guid = Guid.NewGuid(); Session[guid.ToString()] = myLinqDS; ScriptManager.RegisterStartupScript(this.Page, typeof(Page), "Redirect", String.Format(@"window.open(""{0}"");", this.ResolveClientUrl("~/PageToDisplayTheData.aspx?guid=" + System.Web.HttpUtility.UrlEncode(guid.ToString()) ), true); </code></pre> <p>And to retrieve, on PageToDisplayTheData.aspx´s codebehind:</p> <pre><code>myLinqDS = (LinqDataSource)Session[System.Web.HttpUtility.UrlDecode(Request.QueryString[guid])]; aDataList.DataSource = myLinqDS; aDataList.DataBind(); </code></pre> http://stackoverflow.com/questions/248668/is-there-a-simple-way-to-do-bulk-file-text-substitution-in-place/252140#252140 1 Answer by Seiti for Is there a simple way to do bulk file text substitution in place? Seiti 2008-10-30T23:30:56Z 2009-07-08T21:54:58Z <p>Thanks to ephemient on this question and on <a href="http://stackoverflow.com/questions/125171/passing-a-regex-substitution-as-a-variable-in-perl#125329">this answer</a>, I got this:</p> <pre><code>use File::Find::Rule; use strict; sub ReplaceText { my $regex = shift; my $replace = shift; @ARGV = (File::Find::Rule-&gt;file()-&gt;name('*.cs','*.aspx','*.ascx')-&gt;in('.')); $^I = '.bak'; while (&lt;&gt;) { s/$regex/$replace-&gt;()/gie; print; } } ReplaceText qr/some(crazy)regexp/, sub { "some $1 text" }; </code></pre> <p>Now I can even loop throught a hash containing regexp=>subs entries !</p> http://stackoverflow.com/questions/248668/is-there-a-simple-way-to-do-bulk-file-text-substitution-in-place 7 Is there a simple way to do bulk file text substitution in place? Seiti 2008-10-29T22:29:02Z 2009-07-08T21:54:58Z <p>First of all, I'm a Perl newbie, so please be gentle =)</p> <p>I've been trying to code a Perl script to substitute some text on all source files of my project. I'm in need of something like: </p> <pre>perl -p -i.bak -e "s/thisgoesout/thisgoesin/gi" *.{cs,aspx,ascx} </pre> <p>But that parses <strong>all</strong> the files of a directory <strong>recursively</strong>. I just started a script:</p> <p><code> use File::Find::Rule; use strict;</p> <pre><code>my @files = (File::Find::Rule-&gt;file()-&gt;name('*.cs','*.aspx','*.ascx')-&gt;in('.')); foreach my $f (@files){ if ($f =~ s/thisgoesout/thisgoesin/gi) { #inplace file editing, or something like that } } </code></pre> <p></code></p> <p>But now I'm stuck. Is there a simple way to edit all files in place using Perl? Please note that I don't need to keep a copy of every modified file, I'm have 'em all subversioned =)</p> <p><strong>Update</strong>: I tried this on Cygwin</p> <pre>perl -p -i.bak -e "s/thisgoesout/thisgoesin/gi" {*,*/*,*/*/*}.{cs,aspx,ascx}</pre> <p>But looks like my arguments list exploded the max size allowed. In fact, I'm getting very strange errors on Cygwin...</p> http://stackoverflow.com/questions/1076447/setting-up-hudson-with-selenium-rc-to-run-tests-written-in-c/1076588#1076588 1 Answer by Seiti for Setting up Hudson with Selenium RC to run tests written in C# Seiti 2009-07-02T20:43:10Z 2009-07-02T20:43:10Z <p>Hah! Just found out.</p> <p>I have to run: </p> <pre><code>Gallio\bin\Gallio.Echo.exe path\MyTestAssemlby.dll </code></pre> <p>When Google fails you, try searching your own PC =)</p> http://stackoverflow.com/questions/1050768/some-doubts-on-setting-an-c-asp-net-3-5-application-automatic-builder-server 2 Some doubts on setting an C#/Asp.Net 3.5 application automatic builder server Seiti 2009-06-26T19:17:53Z 2009-06-26T20:47:10Z <p>I want to set my server to automatically build my application upon commit on SVN repo, then deploy on a test/homologation server.</p> <p>What I planning to do:</p> <ul> <li>install a build tool (Nant? use MSBuild?);</li> <li>create a simple script and set a hook to SVN that starts the process of building and deploy.</li> </ul> <p>To do that, what I need to install on my server desides the .NET 3.5 framework? Is Nant capable of build our application based only on our solution file (.sln)?</p> <p>I researched a little bit, and the Nant last release, v0.86 beta 1, does not include the solution target.</p> <p>Is there other alternative to do that?</p> <p>Note that currently I only use the VS2008 build system, and do not call the MSBuild directly. Is that feasible and simple to setup on server environment?</p> http://stackoverflow.com/questions/756031/using-the-web-application-version-number-from-an-assembly-asp-net-c/977421#977421 0 Answer by Seiti for Using the Web Application version number from an assembly (ASP.NET/C#) Seiti 2009-06-10T18:37:47Z 2009-06-10T19:30:53Z <p>Some info here: <a href="http://www.velocityreviews.com/forums/showpost.php?p=487050&amp;postcount=8" rel="nofollow">http://www.velocityreviews.com/forums/showpost.php?p=487050&amp;postcount=8</a></p> <blockquote> <p>in asp.net 2.0 each page is built into it own assembly, so only the dll the AssemblyInfo.cs is built into will return the correct answer. just add a static method to AssemblyInfo.cs that returns the version info, and call this method from your other pages.</p> <p>-- bruce (sqlwork.com)</p> </blockquote> <p>But I wrote a simple method to do that:</p> <pre><code> public static string GetSystemVersion(HttpServerUtility server) { System.Xml.XmlDocument doc = new System.Xml.XmlDocument(); doc.Load(server.MapPath("~/web.config")); System.Xml.XmlNamespaceManager ns = new System.Xml.XmlNamespaceManager(doc.NameTable); ns.AddNamespace("bla", "http://schemas.microsoft.com/.NetConfiguration/v2.0"); System.Xml.XmlNode node = doc.SelectSingleNode("/bla:configuration/bla:system.web/bla:authentication/bla:forms[@name]", ns); string projectName = ""; if (node != null &amp;&amp; node.Attributes != null &amp;&amp; node.Attributes.GetNamedItem("name") != null) projectName = node.Attributes.GetNamedItem("name").Value; //in my case, that value is identical to the project name (projetname.dll) else return ""; Assembly assembly = Assembly.Load(projectName); return assembly.GetName().Version.ToString(); } </code></pre> http://stackoverflow.com/questions/704066/net-2-0-application-in-64-bit-processor/972162#972162 0 Answer by Seiti for .net 2.0 application in 64 bit processor ?? Seiti 2009-06-09T19:53:07Z 2009-06-09T19:53:07Z <p>Just don´t worry about it. Using a x64 system you can install up to 16 exabytes of RAM =)</p> http://stackoverflow.com/questions/907788/how-to-make-visual-studio-2008-find-all-references-to-work-correctly 1 How to make Visual Studio 2008 "find all references" to work correctly? Seiti 2009-05-25T19:21:43Z 2009-05-25T19:30:09Z <p>Just a thing that annoys me.</p> <p>When I right click on a method name a context menu appears with a "<strong>Find All References</strong>" option.</p> <p>It works ok, <em>except</em> when you're implementing a <strong>Interface</strong>. Then it lists <strong>all</strong> references (maybe that's why it's called <em>Find All References</em>?), independent of the class that implements it.</p> <p>Example:</p> <pre><code>interface IGetAThing&lt;T&gt; { T Get(); } public class ThingManager: IGetAThing&lt;Thing&gt; { public Thing Get() { return new Thing(); } } public class ThingManagerReloaded: IGetAThing&lt;Thingmabob&gt; { public Thingmabob Get() { return new Thingmabob(); } } </code></pre> <p>When I search for all references of method <em>ThingManager->Get</em> I get a list containing all the references of <em>ThingManagerReloaded->Get</em> too.</p> <p>What I would like is restricting the list of references to only one class references. Right clicking on the <em>ThingManagerReloaded->Get</em> method just shows a lists of <em>ThingManagerReloaded->Get</em> related uses, <strong>not</strong> including <em>ThingManager->Get</em></p> <p>Is that possible on VS2008?</p> http://stackoverflow.com/questions/902591/how-to-attach-a-file-using-mail-command-on-linux 3 How to attach a file using mail command on Linux? Seiti 2009-05-23T22:05:43Z 2009-05-24T14:45:46Z <p>I'm on a server running a Linux shell. I need to mail a simple file to a recipient. How to do this, prefereably using only the <strong>mail</strong> command? </p> <p><strong>UPDATE</strong>: got a good solution, using mutt instead:</p> <pre><code>$ echo | mutt -a syslogs.tar.gz admin@domain.org </code></pre> http://stackoverflow.com/questions/902591/how-to-attach-a-file-using-mail-command-on-linux/902665#902665 0 Answer by Seiti for How to attach a file using mail command on Linux? Seiti 2009-05-23T22:49:26Z 2009-05-23T22:49:26Z <pre><code>$ echo | mutt -a syslogs.tar.gz admin@domain.org </code></pre> <p>But it uses mutt, not mail (or mailx).</p> http://stackoverflow.com/questions/601542/linq-to-sql-summing-timespan/871232#871232 0 Answer by Seiti for Linq to sql, summing timespan? Seiti 2009-05-15T23:10:09Z 2009-05-15T23:10:09Z <p>I solved this using the following method, given that you have a start and finish datetime on your table:</p> <pre><code>public TimeSpan AmountOfTime(IQueryable&lt;Something&gt; iq) { TimeSpan ts = TimeSpan.Zero; foreach (Something a in iq.ToList()) ts += (a.finishdatetime - a.startdatetime); return ts } </code></pre> <p>Then you can use it to get the total number of hours:</p> <pre><code>double foo = AmountOfTime(datacontext.Where(conditions)).TotalHours; </code></pre> http://stackoverflow.com/questions/324484/how-to-check-if-a-active-directory-server-is-up-and-running-using-net 6 How to check if a Active Directory server is up and running using .Net? Seiti 2008-11-27T19:00:49Z 2009-03-10T03:03:39Z <p>Before trying to query the AD server I would like to check if it is alive and kicking. Looks like a trivial thing, but I haven´t found anything to elucidate this.</p> <p>How can I do that?</p> http://stackoverflow.com/questions/318541/how-to-setup-a-active-directory-environment-test 4 How to setup a Active Directory environment test? Seiti 2008-11-25T19:16:49Z 2009-03-10T02:56:25Z <p>The project I´m working on needs to auth its users against AD, and as a fallback check against its own user base. Now I need to test it outside the production environment.</p> <p>What is the best method to setup a Active Directory test environment? Currently I´m downloading a Windows 2003 Virtual PC <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=77f24c9d-b4b8-4f73-99e3-c66f80e415b6&amp;DisplayLang=en" rel="nofollow">image</a>, and planning a VMWare virtual LAN. </p> <p>Is there any problem in that approach? </p> http://stackoverflow.com/questions/319512/asp-net-custom-server-control-gridview-databinding-and-control-lifecycle-conf/566923#566923 0 Answer by Seiti for ASP.NET Custom Server Control (GridView), DataBinding, and Control Lifecycle conflict. Seiti 2009-02-19T20:05:47Z 2009-02-19T20:05:47Z <p>There´s a page that would be useful: <a href="http://msdn.microsoft.com/en-us/library/ms178472.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178472.aspx</a> It specifically says that you need to use the *Pre_Init* event to create yout controls:</p> <blockquote> <p><strong>PreInit</strong> : Use this event for the following:</p> <ul> <li>Check the IsPostBack property to determine whether this is the first time the page is being processed.</li> <li><strong>Create or re-create dynamic controls</strong>.</li> <li>Set a master page dynamically.</li> <li>Set the Theme property dynamically.</li> <li>Read or set profile property values.</li> </ul> </blockquote> http://stackoverflow.com/questions/533343/can-i-get-the-t-sql-query-generated-from-a-linqdatasource 2 Can I get the T-SQL query generated from a LinqDataSource? Seiti 2009-02-10T17:31:18Z 2009-02-10T19:13:20Z <p>I´m using the LinqDataSource to populate a grid. But now I need the SQL query that the LinqDataSource generates, to pass around throught methods (no, I can't modify the methods to not need a SQL query). </p> <p>Is there a way to obtain the generated SQL query from a instantiated and configured LinqDataSource?</p> http://stackoverflow.com/questions/457934/passing-linqdatasource-through-session-datacontext-accessed-after-dispose/458471#458471 0 Answer by Seiti for Passing LinqDataSource through Session: 'DataContext accessed after Dispose.' Seiti 2009-01-19T17:44:26Z 2009-01-19T17:44:26Z <p>Just copied the properties from one object to the another and it worked:</p> <pre><code>LinqDataSource received= (LinqDataSource)Session[System.Web.HttpUtility.UrlDecode(Request.QueryString[guid])]; myLinqDS.Where = received.Where; foreach (Parameter p in received.WhereParameters) myLinqDS.WhereParameters.Add(p); </code></pre> <p>But I still don´t know why it worked on VS2008 internal web server but not on the main server, running IIS.</p> http://stackoverflow.com/questions/449218/why-is-coldfusion-so-unpopular/449242#449242 2 Answer by Seiti for Why is ColdFusion so unpopular? Seiti 2009-01-16T01:44:35Z 2009-01-16T01:44:35Z <p>Not everybody is happy about programming in markup languages...</p> http://stackoverflow.com/questions/445559/linqdatasource-does-not-work-with-microsoft-reporting-localreport 0 LinqDataSource does not work with Microsoft.Reporting.LocalReport Seiti 2009-01-15T03:32:12Z 2009-01-15T14:44:56Z <p>I´m trying to generate a report using a LinqDataSource, placed on a aspx page, and a LocalReport. The code speaks for himself: </p> <pre><code> //Creating report Microsoft.Reporting.WebForms.LocalReport report = new Microsoft.Reporting.WebForms.LocalReport(); report.ReportPath = Request.PhysicalApplicationPath + @"path\To\report.rdlc"; report.DisplayName = "Ttile"; //Setting the data //SetMyLinqDataSource(); myLinqDataSource.WhereParameters.Add(new Parameter("bla", avalue)); myLinqDataSource.Where = "field1 = @bla"; report.DataSources.Add(new Microsoft.Reporting.WebForms.ReportDataSource("MyDataSetName", myLinqDataSource)); //delivering to web user Microsoft.Reporting.WebForms.Warning[] warnings; string[] streamids; string mimeType; string encoding; string extension; //Here the databind should happen byte[] bytes = report.Render("PDF", null, out mimeType, out encoding, out extension, out streamids, out warnings); Response.Clear(); Response.ContentType = "application/pdf"; Response.AddHeader("content-disposition", "attachment; filename=Report.pdf"); Response.Flush(); Response.BinaryWrite(bytes); Response.Flush(); </code></pre> <p>The fact is that the generated report doesn´t have any data, it´s almost empty. I placed two events linked to onselecting and onselected, on the LinqDataSource, just to place breakpoints. </p> <p>Debugging I noticed that they are triggered by report.Render, but inspecting the onselected event arguments, there are no data on <strong>Results</strong> property. The others properties are aleready set (Where, Select, WhereParameters etc.).</p> <p>And the LinqDataSource is correctly configured, and does populate a dataList just after, for instance.</p> <p>Is there a problem in the code that I´m missing?</p> http://stackoverflow.com/questions/350843/how-to-minimize-a-asp-net-c-project-dll-size 7 How to minimize a Asp.Net C# project DLL size? Seiti 2008-12-08T20:47:33Z 2008-12-10T20:24:58Z <p>I´m working on a project, in Visual Studio 2008, which DLL currently surpasses 20MB. Is there a way to profile that DLL, searching the main contributors to this size? </p> <p>I suspect that breaking it in smaller projects inside the solution would help, but I´m looking for a faster solution (although not better, I´m affraid).</p> <p>As a side note, we are getting 'unexpected error writing metadata' error, that we think it's related to the DLL size. However, restarting VS2008, the error vanishes. Until it appears later again, after a few rebuilds. The disk space is not a problem.</p> http://stackoverflow.com/questions/350843/how-to-minimize-a-asp-net-c-project-dll-size/350965#350965 0 Answer by Seiti for How to minimize a Asp.Net C# project DLL size? Seiti 2008-12-08T21:26:50Z 2008-12-09T13:52:53Z <p>Oops! Found a bunch (50+) of huge report templates generated using Crystal Reports, each one around 1MB. </p> <p>All we had to do was excluding them from project.</p> http://stackoverflow.com/questions/248692/functional-test-software-framework-that-covers-asp-net-web-apps 2 Functional test software/framework that covers Asp.Net Web Apps? Seiti 2008-10-29T22:44:19Z 2008-11-28T01:50:21Z <p>I recently began to use the <a href="http://www.codeplex.com/aspnet/Wiki/View.aspx?title=ASP.NET%20QA" rel="nofollow">NexusLight</a>, a functional test automation framework. Are there more frameworks that does a similar job?</p> <p>Related question: <a href="http://stackoverflow.com/questions/91703/end-to-end-application-testing-from-a-users-standpoint">http://stackoverflow.com/questions/91703/end-to-end-application-testing-from-a-users-standpoint</a></p> http://stackoverflow.com/questions/248692/functional-test-software-framework-that-covers-asp-net-web-apps/324939#324939 0 Answer by Seiti for Functional test software/framework that covers Asp.Net Web Apps? Seiti 2008-11-28T01:50:21Z 2008-11-28T01:50:21Z <p>Reading a <a href="http://www.hanselman.com/blog/ScottHanselmans2007UltimateDeveloperAndPowerUsersToolListForWindows.aspx" rel="nofollow">list made</a> by Scott Hanselman, I found these two tools:</p> <ul> <li><a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a>, to automated the tests;</li> <li><a href="http://watintestrecord.sourceforge.net/" rel="nofollow">WatiN Test Recorder</a>, to automate the test code generation.</li> </ul> <p>From WatiN page:</p> <blockquote> <p>[...]WatiN (pronounced as What-in) website. Inspired by Watir development of WatiN started in December 2005 to make a similar kind of Web Application Testing possible for the .Net languages.</p> </blockquote> <p>And from WatiN Test Recorder:</p> <blockquote> <p>The purpose of the application is to generate code compatible with the WatiN (Web Application Testing In .NET) project.</p> </blockquote> http://stackoverflow.com/questions/318273/windows-client-choose-between-2-dhcp-servers-in-the-same-lan/318565#318565 0 Answer by Seiti for Windows Client Choose between 2 DHCP servers in the same lan. Seiti 2008-11-25T19:23:52Z 2008-11-25T19:23:52Z <p>Setup your DHCP server to serve the addresses based on MAC adresses, mapping one-on-one or each MAC to an IP range.</p> <p>Or try to configure each machine IP statically.</p> http://stackoverflow.com/questions/316187/eee-pc-for-programming/316234#316234 1 Answer by Seiti for EEE PC for Programming? Seiti 2008-11-25T02:51:17Z 2008-11-25T03:34:42Z <p>You need to elaborate on the IDEs you will use on the Eee PC. On my first years of University I used only Emacs to program in C, Java, C++ etc, and the CLI to compile. Under this circunstance the Eee PC is a perfect tool for the job.</p> <p>Update: I have a Eee PC 701 model, running Eee Ubuntu = Ubuntu 8.04 Netbook Remix + hardware issues solved. And Emacs works very fine on it. Just the screen is a bit tiny...</p> http://stackoverflow.com/questions/316148/what-is-the-best-tool-to-synchronise-a-workspace-between-two-pcs/316170#316170 1 Answer by Seiti for What is the best tool to synchronise a workspace between two PC's? Seiti 2008-11-25T02:24:08Z 2008-11-25T02:24:08Z <p>Rsync is fine, but if you want a nice GUI, try <a href="http://www.cis.upenn.edu/~bcpierce/unison/" rel="nofollow">Unison</a>. </p> http://stackoverflow.com/questions/243083/what-is-a-strongly-typed-dataset/315310#315310 0 Answer by Seiti for What is a strongly typed dataset? Seiti 2008-11-24T20:21:06Z 2008-11-24T22:12:49Z <p>A <a href="http://forums.microsoft.com/msdn/showpost.aspx?postid=1881338&amp;siteid=1&amp;sb=0&amp;d=1&amp;at=7&amp;ft=11&amp;tf=0&amp;pageid=2" rel="nofollow">headache</a>...</p> <p>Sorry... I've been struggling with this beast for a while.. For this <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=383175" rel="nofollow">reason</a>. </p> http://stackoverflow.com/questions/315325/rails-or-clone-on-windows-server-2008-most-performant/315361#315361 0 Answer by Seiti for Rails or clone on Windows Server 2008 - Most Performant? Seiti 2008-11-24T20:31:09Z 2008-11-24T20:31:09Z <p>Try MonoRail if you're just interested in learning the MVC pattern (not another language).</p> http://stackoverflow.com/questions/303276/suggest-chapters-topics-for-oop-book/303298#303298 1 Answer by Seiti for Suggest chapters/topics for OOP Book Seiti 2008-11-19T20:43:07Z 2008-11-19T20:43:07Z <p>An "Introduction" chapter would be great! =)</p> http://stackoverflow.com/questions/191354/why-doesnt-wd-velociraptor-speed-up-my-vc-compilation-significantly/369694#369694 Comment by Seiti on Why doesn't WD Velociraptor speed up my VC++-compilation significantly? Seiti 2009-07-07T06:14:38Z 2009-07-07T06:14:38Z You mean you halved the compilation time. =) http://stackoverflow.com/questions/1076447/setting-up-hudson-with-selenium-rc-to-run-tests-written-in-c/1080535#1080535 Comment by Seiti on Setting up Hudson with Selenium RC to run tests written in C# Seiti 2009-07-03T19:36:31Z 2009-07-03T19:36:31Z Our project uses .Net 3.5 framework. Does NAnt works? How do I use MSBuild or Powershell to run our tests via console? http://stackoverflow.com/questions/1050768/some-doubts-on-setting-an-c-asp-net-3-5-application-automatic-builder-server/1050895#1050895 Comment by Seiti on Some doubts on setting an C#/Asp.Net 3.5 application automatic builder server Seiti 2009-06-30T00:48:05Z 2009-06-30T00:48:05Z I am not sure, but I need to build sln just to show my fellows that is possible to automate that process. After that I&#180;ll work on the Web Deployment Project =) Need to present new features slowly... http://stackoverflow.com/questions/1050768/some-doubts-on-setting-an-c-asp-net-3-5-application-automatic-builder-server/1051220#1051220 Comment by Seiti on Some doubts on setting an C#/Asp.Net 3.5 application automatic builder server Seiti 2009-06-30T00:36:47Z 2009-06-30T00:36:47Z Found out that the msbuild.exe is installed with the .Net Framework.... By the way, I installed and configured Hudson. It&#180;s really a nice piece of software. Easy to install, easy to configure. http://stackoverflow.com/questions/1050768/some-doubts-on-setting-an-c-asp-net-3-5-application-automatic-builder-server/1051220#1051220 Comment by Seiti on Some doubts on setting an C#/Asp.Net 3.5 application automatic builder server Seiti 2009-06-29T03:43:10Z 2009-06-29T03:43:10Z I&#180;ll research on that. Just one more question. Do I need to install a Visual Studio copy on server or just copying the msbuild directory is enought (as I read somewhere...)? http://stackoverflow.com/questions/957956/help-with-svn-setup/958012#958012 Comment by Seiti on Help with SVN Setup Seiti 2009-06-26T19:01:45Z 2009-06-26T19:01:45Z nevermind (<a href="http://svnbook.red-bean.com/en/1.4/svn-book.html#svn.serverconfig.pathbasedauthz" rel="nofollow">svnbook.red-bean.com/en/1.4/&hellip;</a>) http://stackoverflow.com/questions/957956/help-with-svn-setup/958012#958012 Comment by Seiti on Help with SVN Setup Seiti 2009-06-26T18:59:04Z 2009-06-26T18:59:04Z a drawback may come if you want to restrict access to certains projects. can I set different access politics on folder level? http://stackoverflow.com/questions/704066/net-2-0-application-in-64-bit-processor/972213#972213 Comment by Seiti on .net 2.0 application in 64 bit processor ?? Seiti 2009-06-09T20:07:12Z 2009-06-09T20:07:12Z Really nice! Didn&#180;t know about it - <a href="http://support.microsoft.com/kb/912891/" rel="nofollow">support.microsoft.com/kb/912891</a> http://stackoverflow.com/questions/423675/limesurvey-in-net-version/442013#442013 Comment by Seiti on LimeSurvey in .net version? Seiti 2009-06-04T20:45:40Z 2009-06-04T20:45:40Z NSurvey seems to be very old... Does it work with .Net 3.5? http://stackoverflow.com/questions/902591/how-to-attach-a-file-using-mail-command-on-linux/902600#902600 Comment by Seiti on How to attach a file using mail command on Linux? Seiti 2009-05-23T22:42:23Z 2009-05-23T22:42:23Z The reference article was really useful! Thanks! http://stackoverflow.com/questions/902591/how-to-attach-a-file-using-mail-command-on-linux/902600#902600 Comment by Seiti on How to attach a file using mail command on Linux? Seiti 2009-05-23T22:36:06Z 2009-05-23T22:36:06Z Is uuencode a &quot;default&quot; GNU tool? My box doesn't seem to have it. http://stackoverflow.com/questions/445559/linqdatasource-does-not-work-with-microsoft-reporting-localreport Comment by Seiti on LinqDataSource does not work with Microsoft.Reporting.LocalReport Seiti 2009-03-10T14:16:49Z 2009-03-10T14:16:49Z Yeah. I used it to populate a DataList, just to verify if it works. And it works, but not with a LocalReport. http://stackoverflow.com/questions/533459/how-to-do-a-php-nested-class-or-nested-methods/533477#533477 Comment by Seiti on How to do a PHP nested class or nested methods? Seiti 2009-02-10T21:14:55Z 2009-02-10T21:14:55Z This is used in ExtPHP <a href="http://nexus.zteo.com/2008/03/04/extphp-an-extjs-converterwrapper-for-php-developers/" rel="nofollow">nexus.zteo.com/2008/03/&hellip;</a> http://stackoverflow.com/questions/533343/can-i-get-the-t-sql-query-generated-from-a-linqdatasource/533686#533686 Comment by Seiti on Can I get the T-SQL query generated from a LinqDataSource? Seiti 2009-02-10T19:12:54Z 2009-02-10T19:12:54Z Clever! . http://stackoverflow.com/questions/533343/can-i-get-the-t-sql-query-generated-from-a-linqdatasource/533616#533616 Comment by Seiti on Can I get the T-SQL query generated from a LinqDataSource? Seiti 2009-02-10T18:56:12Z 2009-02-10T18:56:12Z I'm out of luck, then... =(