User Gustavo Rubio - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T16:16:28Z http://stackoverflow.com/feeds/user/14533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1430509/reading-same-file-from-multiple-threads-in-c 0 Reading same file from multiple threads in C# Gustavo Rubio 2009-09-16T01:47:21Z 2009-09-16T14:04:07Z <p>Hi. I was googling for some advise about this and I found some links. The most obvious was <a href="http://www.musicalnerdery.com/net-programming/reading-a-file-sequentially-using-multiple-threads.html" rel="nofollow">this one</a> but in the end what im wondering is how well my code is implemented.</p> <p>I have basically two classes. One is the <strong>Converter</strong> and the other is <strong>ConverterThread</strong></p> <p>I create an instance of this Converter class that has a property ThreadNumber that tells me how many threads should be run at the same time (this is read from user) since this application will be used on multi-cpu systems (physically, like 8 cpu) so it is suppossed that this will speed up the import</p> <p>The Converter instance reads a file that can range from 100mb to 800mb and each line of this file is a tab-delimitted value record that is imported to another destination like a database.</p> <p>The ConverterThread class simply runs inside the thread (new Thread(ConverterThread.StartThread)) and has event notification so when its work is done it can notify the Converter class and then I can sum up the progress for all these threads and notify the user (in the GUI for example) about how many of these records have been imported and how many bytes have been read.</p> <p>It seems, however that I'm having some trouble because I get random errors about the file not being able to be read or that the sum of the progress (percentage) went above 100% which is not possible and I think that happens because threads are not being well managed and probably the information returned by the event is malformed (since it "travels" from one thread to another)</p> <p>Do you have any advise on better practices of implementation of threads so I can accomplish this?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1275578/do-enums-have-a-limit-of-members-in-c 2 Do enums have a limit of members in C#? Gustavo Rubio 2009-08-14T01:19:42Z 2009-08-14T01:32:35Z <p>I was wondering if the enum structure type has a limit on its members. I have this very large list of "variables" that I need to store inside an enum or as constants in a class but I finally decided to store them inside a class, however, I'm being a little bit curious about the limit of members of an enum (if any).</p> <p>So, do enums have a limit on .Net?</p> http://stackoverflow.com/questions/946660/recover-empty-svn-db-file 2 Recover empty SVN DB file Gustavo Rubio 2009-06-03T19:27:27Z 2009-06-04T03:13:50Z <p>Hi,</p> <p>I tried to dump our SVN repository so I could migrate it to newer hardware. One of the revisions gave me a problem though so I tried to skip or "jump" that revision dumping from that number to a higher revision number but the problem persisted:</p> <p>*svnadmin: Can't read file 'D:\repositories\REPO_NAME\db\revs\3677': End of file found*</p> <p>Thing is that I executed the following command:</p> <p>*svnadmin dump D:\repositories\REPO_NAME --revision 4000:5000 > D:\4000_5000.dmp*</p> <p>So that's supposed to dump only revision 4000 to 5000 but it happens that for some reason that revision range do deppend uppon the lower revision.</p> <p>So I went to the <strong>db/revs</strong> directory to see what happened to the conflicting file and the file was empty, zero bytes.</p> <p>I looked through all the "SVN red book", SVN documentation and google but find nothing, there are many examples of recovering the repository but none of them worked, for exmaple, running <strong>svnadmin recover</strong> throws another error:</p> <p><em>"An attempt was made to move the file pointer vefore the beginning of the file"</em></p> <p>So I'm a little bit lost now, Is there any way to recover an empty file or exclude it from the dump so it does not affect highe revisions?</p> http://stackoverflow.com/questions/795647/why-does-vs2005-reportviewer-adds-page-breaks-when-setting-up-the-margins 1 Why does VS2005 ReportViewer adds page breaks when setting up the margins? Gustavo Rubio 2009-04-27T23:11:26Z 2009-05-01T00:36:38Z <p>Hi,</p> <p>I'm using the report viewer control included in Visual Studio 2005 and something odd is happening; when I set the margins on the report and I run the application the report viewer adds a page break after each content page, so if I have 2 content pages I end up having 4 pages of which 2 of them are blank pages.</p> <p>If I set the margins of the report as zero then the report displays ok but of course it doesn't look good without the margins (and won't print properly)</p> <p>I'm pretty sure the content is not wrapping or something that could cause this since I intentionally designed the tables to fit in 6 inches so, 6 inches plus 2 (one for each side margin) are 8 and I still have half an inch of space there so things don't mess up since this is in letter size which is 8.5" x 11"</p> <p>Anybody has had this same behavior?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/795647/why-does-vs2005-reportviewer-adds-page-breaks-when-setting-up-the-margins/799021#799021 1 Answer by Gustavo Rubio for Why does VS2005 ReportViewer adds page breaks when setting up the margins? Gustavo Rubio 2009-04-28T17:25:40Z 2009-04-28T17:25:40Z <p>Found the solution, turns out that the body should not be wider than the report size so for example if you have a standard letter page: 8.5" x 11" than the body should be less than 8.5, pay special attention if you have margins since you have to subtract those inches too, I want a one inch margin per side so left and right would sum up two inches:</p> <p>8.5 - 2 = 6.5</p> <p>So if you plan to have a letter report with one inch margins make sure the body is 6.5 at the most then it would fit. </p> <p>Pretty obvious huh? but I did not figured it out at the beginning since the report viewer designer does not have any rulers to mark the beginning of the body, only for the report.</p> http://stackoverflow.com/questions/149491/pascal-casing-or-camel-casing-for-c-code 8 Pascal casing or Camel Casing for C# code? Gustavo Rubio 2008-09-29T16:30:20Z 2009-02-14T18:37:31Z <p>I've been arguing with my coworkers about this since they are used to camel casing for everything from table names in SQL databases to property naming in C# code but I like pascal casing better, camel casing for variables and pascal casing for properties:</p> <pre><code>string firstName; public string FirstName { ... } </code></pre> <p>But they are used to this:</p> <pre><code>string _firstname; public string firstName { ... } </code></pre> <p>I try to keep up with their "standard" so code looks the same but I just dont like it.</p> <p>I've seen that at least the .Net framework uses this convention and that is how I try to keep my code eg:</p> <pre><code>System.Console.WriteLine("string") </code></pre> <p>What do you use/prefer and why? Im sorry if somebody else asked this question but I searched and did not find anything.</p> <p><strong>Update:</strong> I've given a method example and not a property but it's the same, as a stated on the first paragraph my colleagues use the pascal convention for everything (variables, methods, table names, etc.)</p> http://stackoverflow.com/questions/526836/what-is-the-easiest-way-to-join-12-columns/527034#527034 0 Answer by Gustavo Rubio for What is the easiest way to join 12 columns? Gustavo Rubio 2009-02-09T03:01:19Z 2009-02-09T03:01:19Z <p>You did not mention what tool you would like to use but any text editor would be able to replace the tab to an empty character, I guess that would work, that's what I usually do.</p> http://stackoverflow.com/questions/500462/how-can-i-find-which-process-has-opened-a-specific-file/500491#500491 -1 Answer by Gustavo Rubio for How can I find which process has opened a specific file? Gustavo Rubio 2009-02-01T09:30:57Z 2009-02-01T09:30:57Z <p>Im not sure if there is a way to do exactly what you want but I do know that using System.Diagnostics.Process class (at least in .Net) you can open processes and watch for certain properties:</p> <pre><code>System.Diagnostics.Process[] procArray = System.Diagnostics.Process.GetProcessesByName("notepad"); foreach (System.Diagnostics.Process proc in procArray) { //do something with the process... } </code></pre> <p>Look around the Process class, maybe there is a property or collection to get the data you are looking for.</p> http://stackoverflow.com/questions/488856/does-a-method-that-returns-a-collection-get-called-in-every-iteration-in-a-foreac 4 Does a method that returns a collection get called in every iteration in a foreach statement in C#? Gustavo Rubio 2009-01-28T18:55:08Z 2009-01-29T10:21:36Z <p>Hi, I was working with some C# code today in the morning and I had something like:</p> <pre><code>foreach(DataRow row in MyMethod.GetDataTable().Rows) { //do something } </code></pre> <p>So, as I dont have a full understanding of the language framework I would like to know if GetDataTable() gets called each time an iteration is done or if it just gets called once and the resulting data (which would be Rows) is saved in memory to loop through it. In any case, I declared a new collection to save it and work from there...</p> <p>I added a new variable so instead I did:</p> <pre><code>DataRowCollection rowCollection = MyMethod.GetDataTable().Rows; foreach(DataRow row in rowCollection) { //do something } </code></pre> <p>But im not quite sure if this is necessary.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/477502/what-is-good-online-documentation/477532#477532 1 Answer by Gustavo Rubio for What is Good Online Documentation? Gustavo Rubio 2009-01-25T10:50:36Z 2009-01-25T10:50:36Z <p>Divide the information, some people that might want to try your product may very well want to only see tutorials or examples, pretty short examples I mean.</p> <p>On the other hand, somebody that already bought your product wants to make out most of it so create a full API specification with indexes and search capabilities, link the information between pages, add some samples for the API and dont just add what the parameters receive and what the method/function returns etc. Of course that in the case that you sell something for programmers.</p> <p>Give real world examples!! Dont just add reference information but code examples or real work environment examples that can be useful for someone who will apply your software to be productive and complete a task and not just to learn.</p> <p>Thats what I look for on documentation, if it has those then I'll buy it ;)</p> http://stackoverflow.com/questions/477434/how-can-i-contribute-to-an-open-source-project/477522#477522 1 Answer by Gustavo Rubio for How can I contribute to an open-source project? Gustavo Rubio 2009-01-25T10:44:28Z 2009-01-25T10:44:28Z <p>Donate money!!, there are projects worth of a donation like tortoiseSVN for me which I use daily, are of a really higher quality and require money to keep up with the development :P</p> <p>Now, if what you want is to help coding then you can start by defining what role you want to take into that project, most "big" projects have really strong policies about "commits" of code and outside help even if they are "Open" so if you are lucky they will ask you to report bugs and commit patches but even if you do send patches they should pass the "supervision" of that person that is the owner of that module etc etc etc.</p> <p>You can also check on smaller projects which happen to need more help than those that are big enough to get a myriad of "trustworthy" and experienced developers (read: famous) and contribute to it, don't get me wrong, I dont mean that you "can't" help big projects, im just saying it is usually easier to contribute to those that have lesser help (obviously) that those that don't, take Firefox as an example, im pretty sure they have a horde of developers that are really experienced on the code and already know it and if you want to help them they will review the code pretty well before they can say that it will be useful for the project and while that happens you will get very frustrated, this not only happens to "unknown" developers but also to those already commiting to projects, read <a href="http://www.gnome.org/~michael/blog/ooo-commit-stats-2008.html" rel="nofollow">this article</a> from Michael Meeks to get an idea.</p> <p>Now, I dont want you to push you down in your search, if you are truly interested in contributing to an OpenSource project and know Python I have a friend of mine which develops a multimedia application for Linux (Im not sure if it does run on windows yet) and I believe he is "solo" on his mission and he is very open to contributions:</p> <p><a href="http://christine.sf.net" rel="nofollow">http://christine.sf.net</a></p> <p>You can also go to sites like sourceforge which host tons of OpenSource applications and find one that is interesting to you, but, as I mentioned before, be prepared to choose your role before choosing the project since the first thing deppends on the other, once you decide what you want to become into the project than you can choose the project and be more realistic about what project will give you enough freedom to become that taking in mind your experience.</p> <p>Good luck!</p> http://stackoverflow.com/questions/477185/quality-mono-asp-net-dev-environment-on-windows/477456#477456 0 Answer by Gustavo Rubio for Quality Mono/ASP.NET Dev environment on Windows? Gustavo Rubio 2009-01-25T10:08:52Z 2009-01-25T10:08:52Z <p>Im afraid there is nothing like Visual Studio for mono for windows, there is Monodevelop for Linux but that is far from running on windows any soon, however, if you just want to use the mono runtime to execute your application I see no inconvenience in developing inside Visual Studio and target the mono runtime.</p> <p>There is a guide <a href="http://www.mono-project.com/Working_with_Mono_and_Visual_Studio" rel="nofollow">here</a> in how to setup the Visual Studio environment to properly work with the mono runtime though im not sure if that guide is updated since it mentions a convertion tool from MSBuild to Make but I've heard that the last version of Monodevelop in Linux was capable of opening Visual Studio project files so maybe its even easier now.</p> <p>You could use SharpDevelop as EricSchaefer says but it does not have a Web Application designer tool like Visual Studio does so, if that is a must for you then Im afraid only Visual Studio will be a solution for you.</p> <p>Let us know what you did :)</p> http://stackoverflow.com/questions/312370/differences-between-svn-and-svnssh-on-a-windows-svn-server/312373#312373 7 Answer by Gustavo Rubio for Differences between SVN and SVN+SSH on a Windows SVN server? Gustavo Rubio 2008-11-23T10:40:05Z 2009-01-24T16:19:06Z <p>That is right, according to the <a href="http://svnbook.red-bean.com/en/1.0/ch06s03.html" rel="nofollow">documentation</a> what the SSH version does is to create a tunnel so instead of using the svn "socket" you would be using a more secured version using the SSH protocol to comunicate between ends.</p> <p>The difference between svn+ssh:// and creating your own tunnel with PuTTY iss the convenience of the first.</p> http://stackoverflow.com/questions/474973/best-orm-tool/475760#475760 0 Answer by Gustavo Rubio for Best ORM Tool Gustavo Rubio 2009-01-24T08:56:15Z 2009-01-24T08:56:15Z <p>I've used <a href="http://www.devexpress.com/Products/NET/ORM/" rel="nofollow">DevExpress XPO</a> before and it is a great ORM api though not open source...</p> <p>If you are looking for something free try <a href="http://subsonicproject.com/" rel="nofollow">subsonic</a> as someone else posted, I haven't used Entity Framework but if you dont want to add another layer outside microsoft platform that seems to be a good option.</p> http://stackoverflow.com/questions/449734/is-there-a-tool-for-converting-vb-to-a-scripting-language-e-g-python-or-ruby/449779#449779 3 Answer by Gustavo Rubio for Is there a tool for converting VB to a scripting language, e.g. Python or Ruby? Gustavo Rubio 2009-01-16T07:47:53Z 2009-01-16T07:47:53Z <p>I doubt there would be a good solution for that since VB6 relies too much on the windows API and VBRun libraries though you could translate code that does something else besides GUI operations</p> <p>Is there something special you need to do with that code? You could compile your VB6 functionality and expose it as a COM object and connect it to python with <a href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython" rel="nofollow">IronPython</a> or <a href="http://www.ironruby.net/" rel="nofollow">IronRuby</a> which are Python and Ruby implementations in .Net thus, allowing you to access .Net functionality although im not quite sure if COM exposed objects are easily pluggable to those interpreters.</p> <p>Maybe if you explain a bit more what you want to do you would get a wiser response.</p> http://stackoverflow.com/questions/441264/what-are-the-core-classes-in-c/441544#441544 1 Answer by Gustavo Rubio for What Are The Core Classes In C#? Gustavo Rubio 2009-01-14T01:12:43Z 2009-01-14T01:12:43Z <p><a href="http://msdn.microsoft.com/en-us/library/system.text.aspx" rel="nofollow">System.Text</a> anyone?</p> <p>That is one of the most important, at least for me, you will need it to perform basic operations on text such as convert text between encodings...</p> http://stackoverflow.com/questions/365045/sql-question-excluding-records/365059#365059 1 Answer by Gustavo Rubio for SQL question: excluding records Gustavo Rubio 2008-12-13T09:55:46Z 2008-12-13T09:55:46Z <pre><code>SELECT i.ItemID, ic.CategoryID FROM Item AS i INNER JOIN ItemCategory ic ON i.ItemID = ic.ItemID WHERE ic.CategoryId = 1 OR ic.CategoryId = 2 </code></pre> <p>Of course you need to put in the WHERE clause what categories you want to get.</p> http://stackoverflow.com/questions/358273/catching-events-from-an-ssis-package-loaded-in-c 0 Catching events from an SSIS package loaded in C# Gustavo Rubio 2008-12-11T02:18:54Z 2008-12-12T00:35:29Z <p>I have an SSIS package that executes several tasks. I manually added an event handler inside Business Intelligence Studio 2005 at the package level for the OnExecStatusChanged event.</p> <p>My question is, how can I add a handler for this event inside C#? I have loaded the package as pointed <a href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.application.loadfromsqlserver.aspx" rel="nofollow">here</a> and I also created a custom class inherited from Microsoft.SqlServer.Dts.Runtime.DefaultEvents which is my "Listener":</p> <pre><code> Microsoft.SqlServer.Dts.Runtime.SqlPackageEventListener sqlListener = new SqlPackageEventListener(); Microsoft.SqlServer.Dts.Runtime.Application sqlPackageLoader = new Application(); Microsoft.SqlServer.Dts.Runtime.Package sqlPackage = sqlPackageLoader.LoadPackage(@"path\MigrateData.dtsx", sqlListener); sqlPackage.Execute(null, null, sqlListener, null, null); </code></pre> <p>If I check the sqlPackage.EventHandlers.Count property I get the right number for handlers added inside Business Intelligence Studio.</p> <p>Is there some way to handle those events inside C#?</p> <p>Thanks.</p> http://stackoverflow.com/questions/358273/catching-events-from-an-ssis-package-loaded-in-c/361554#361554 2 Answer by Gustavo Rubio for Catching events from an SSIS package loaded in C# Gustavo Rubio 2008-12-12T00:35:29Z 2008-12-12T00:35:29Z <p>Well I did not find anything so I came up with a work around so I will auto-respond to me:</p> <p>Since there is no way to directly catch the events that the SSIS package make then I implemented my own events inside my <a href="http://msdn.microsoft.com/en-us/library/ms136090.aspx" rel="nofollow">listener</a>:</p> <pre><code>public class SqlPackageEventListener : DefaultEvents { public SqlPackageChangedHandler OnPackageError; public override bool OnError(DtsObject source, int errorCode, string subComponent, string description, string helpFile, int helpContext, string idofInterfaceWithError) { OnPackageError(this, new PackageErrorEventArgs(source, subComponent, description)); return base.OnError(source, errorCode, subComponent, description, helpFile, helpContext, idofInterfaceWithError); } public delegate void SqlPackageChangedHandler( object sqlPackage, EventArgs packageInfo ); } public class PackageErrorEventArgs : EventArgs { private DtsObject source; public DtsObject Source { get { return source; } set { source = value; } } private string subcomponent; public string Subcomponent { get { return subcomponent; } set { subcomponent = value; } } private string description; public string Description { get { return description; } set { description = value; } } public PackageErrorEventArgs(DtsObject source, string subcomponent, string description) { this.description = description; this.source = source; this.subcomponent = subcomponent; } } public class Test { SqlPackageEventListener sqlListener = new SqlPackageEventListener(); sqlListener.OnPackageError += new SqlPackageEventListener.SqlPackageChangedHandler(sqlListener_OnPackageError); Microsoft.SqlServer.Dts.Runtime.Application sqlPackageLoader = new Microsoft.SqlServer.Dts.Runtime.Application(); Microsoft.SqlServer.Dts.Runtime.Package sqlPackage = Microsoft.SqlServer.Dts.Runtime.sqlPackageLoader.LoadPackage(@"path_to\file.dtsx", sqlListener); sqlPackage.Execute(null, null, sqlListener, null, null) public void sqlListener_OnPackageError(object sender, EventArgs args) { //code to handle the event } } </code></pre> <p>So the "trick" is to add a delegate to your "Listener" object that you pass to the LoadPackage method of the Package object, that way, we can access the "OnError" override inside the listener and raise the event. As you can see I implemented my own EventArguments class so we can pass important data to our handler code and see what package is running or any other information that you can get from overriding the methods when you inherit from DefaultEvents.</p> <p>Of course I only implemented OnError here, you can implement any other handler you like that is supported by SQL Server and that can be overrided since that is the scope where we raise the event.</p> <p>That way I can create my SqlPackageEventListener object and handle it's "OnPackageError" event with the sqlListener_OnPackageError method and do whatever I need in case of any error that the execution of the SSIS package caused.</p> http://stackoverflow.com/questions/358617/file-dsn-for-iseries-as400-odbc-connection/358628#358628 1 Answer by Gustavo Rubio for File DSN for iSeries AS400 ODBC connection Gustavo Rubio 2008-12-11T07:29:25Z 2008-12-11T07:29:25Z <p><em>Driver={iSeries Access ODBC Driver};System=server;Uid=user;Pwd=password;</em></p> <p>Where server is the system to connect (either IP address or hostname), username and password.</p> <p>You can have a .dsn file like this:</p> <pre><code>[ODBC] DRIVER=iSeries Access ODBC Driver System=server; Uid=user; Pwd=password; Initial Catalog=library; </code></pre> http://stackoverflow.com/questions/343017/does-your-employer-enforce-the-use-of-anti-piracy-software/343158#343158 2 Answer by Gustavo Rubio for Does your employer enforce the use of anti-piracy software? Gustavo Rubio 2008-12-05T07:58:48Z 2008-12-05T07:58:48Z <p>I truly believe that nowadays (and probably, before) software value is based more on the support and agregated services than it is on the code itself. It may very well deppend uppon the kind of software you are building so, if your piece of software is mainstream (read: Operative System, Design software etc.) chances are that your software will be used ilegally more than a specialized accounting application or an e-government software.</p> <p>For companies like Microsoft, Autodesk, Adobe etc its harder because there are tons of forums, pdf's, screencasts, ebooks and videos (sometimes "pirated", too) that you can rely on to make good use of the software so you might not need "the support" of the company. </p> <p>In the case of ISV's and small software companies the software is very specific for a market and most of the times crackers and people in general who make a living of ilegal software won't care too much of your application since users are more akin to look for, say, windows vista, than for your "x-company accounting software" therefore, they won't spend time to crack your software because 99.8% of the market just would not care.</p> <p>As for the "big" companies I think they live from the "real" customers. The average user, the one that surfs the web and download stuff will probably be using unlicensed versions of a plethora of software because... well they just don't care, they use the computer as amusement but for someone that uses the software as a tool in order to generate revenue they will see this software as an investment and they know for sure that they better pay their licenses so the day the server goes down they have someone to call instead of waiting for a cracked patch while you loose customers/sales.</p> <p>It may very well deppend on the budget of your company, most companies don't have the time or resources to create anti-piracy solutions or buy them, but I guess that for ISV's it may be safe to ship your product without it, at the end, if someone's want to use your software without paying they will, on the other hand, those who understand that your product is a tool and not something you download from cnet know that the added value (support number, manuals, updates, etc) is what the human resources of your company can do for them that, for me, is the 50% of the final product.</p> http://stackoverflow.com/questions/326365/changing-connection-string-at-runtime-in-enterprise-library 0 Changing connection string at runtime in Enterprise Library Gustavo Rubio 2008-11-28T18:18:02Z 2008-12-03T11:02:09Z <p>Is there a way to change the connection string of a DataBase object in Enterprise Library at runtime? I've found <a href="http://blog.benday.com/archive/2005/05/05/357.aspx" rel="nofollow">this</a> link but its a little bit outdated (2005)</p> <p>I've also found <a href="http://stackoverflow.com/questions/63546/vs2005-c-programmatically-change-connection-string-contained-in-appconfig">this</a> but it seems to apply to .Net in general, I was wondering if there was something that could be done specifically for EntLib.</p> <p>I was just passing the connection string name to the CreateDatabase() method in DatabaseFactory object and that worked til yesterday that my project manager asked me to support more than one database instance. It happens that we have to have one database per state (one for CA, one for FL, etc...) so my software needs to cycle through all databases and do something with data but it will use the same config file.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/327100/removing-a-file-in-a-restricted-folder-in-linux/327117#327117 0 Answer by Gustavo Rubio for Removing a file in a Restricted Folder in Linux Gustavo Rubio 2008-11-29T03:31:16Z 2008-11-29T03:31:16Z <p>You need to be inside the group that has permissons to write that file and that would be probably apache and root (both user and group), im not quite sure about the group name of apache in ubuntu but if you are a regular user im afraid you would not be able to just delete the file, ask the system administrator or someone who has permissions over that file.</p> <p>On the other hand, deleting the file will not work if the init script "apache2" has a link to it, instead you would get probably a different error saying that the file could not be found.</p> <p>So your problem seems to be that you have the init script of apache trying to access a wrong filename, I believe that the solution is to edit the init script of apache and point it to the right filename and that would be fqdn instead of fqdn.save</p> http://stackoverflow.com/questions/322839/mysql-count-matching-words/322891#322891 0 Answer by Gustavo Rubio for MySQL count matching words Gustavo Rubio 2008-11-27T03:45:14Z 2008-11-27T03:45:14Z <p>I suggest that you do that outside SQL, no matter the engine, Regular Expressions are more suited for that than SQL Language. You could probably do that with a view or something but as I said, there are more proper ways to do it like the string manipulation class/object/function from your language or regular expressions.</p> http://stackoverflow.com/questions/269802/disable-autostart-of-integrated-webserver-in-visual-studio-2005 1 Disable autostart of integrated webserver in visual studio 2005 Gustavo Rubio 2008-11-06T18:39:51Z 2008-11-06T19:26:41Z <p>Is there a way to run a project inside a solution that has more one project (read: web applications) and avoid the autostart feature of the integrated asp.net webserver in Visual Studio?</p> <p>I have a big solution that has Windows forms projects, Windows Services projects, Web applications, Windows Libraries etc., sometimes I just want to debug the desktop application but each web application project starts a webserver and that slows down the execution process (when starting the application of course) and I would like those webservers to be disabled since im not using/debuging those projects but some other developers in my team are.</p> <p>Thanks.</p> http://stackoverflow.com/questions/269876/what-is-the-connection-string-for-odbc-connections/269885#269885 1 Answer by Gustavo Rubio for What is the connection string for odbc connections? Gustavo Rubio 2008-11-06T19:05:14Z 2008-11-06T19:05:14Z <p>I think it deppends as to what database you want to connect, because of the Driver that its used to connect to the database engine.</p> <p>You might want to take a look at:</p> <p><a href="http://www.connectionstrings.com/" rel="nofollow">http://www.connectionstrings.com/</a></p> <p>They have plenty of examples there.</p> http://stackoverflow.com/questions/261015/where-can-i-see-the-sun-java-source-code/261030#261030 -1 Answer by Gustavo Rubio for Where can I see the Sun Java source code? Gustavo Rubio 2008-11-04T06:00:35Z 2008-11-04T06:00:35Z <p>Here:</p> <p><a href="http://hg.openjdk.java.net/" rel="nofollow">http://hg.openjdk.java.net/</a></p> http://stackoverflow.com/questions/256804/sql-custom-functions-in-enterprise-library 0 SQL custom functions in Enterprise Library Gustavo Rubio 2008-11-02T11:54:52Z 2008-11-02T13:48:26Z <p>Is there a way to execute SQL custom functions with Enterpise Library? I've tried Database.ExecuteScalar() but for some reason it returns null.</p> <p>This is my function:</p> <pre><code>Database db = DatabaseFactory.CreateDatabase("ConnectionString"); DbCommand cmd = db.GetStoredProcCommand("FunctionName"); db.AddInParameter(cmd, "Value1", DbType.String, Param1Value); db.AddInParameter(cmd, "Value2", DbType.String, Param2Value); return Convert.ToBoolean(db.ExecuteScalar(cmd)); </code></pre> <p>Here the db.ExecuteScalar(cmd) method returns null. This does not happen with Stored Procedures.</p> <p>By the way, im using version 4.0</p> <p>Thanks.</p> http://stackoverflow.com/questions/256677/compiler-written-in-the-language-that-it-compiles/256687#256687 1 Answer by Gustavo Rubio for Compiler written in the language that it compiles Gustavo Rubio 2008-11-02T09:06:26Z 2008-11-02T09:06:26Z <p>The Mono project C# compiler has been "self hosted" for a long time now, what it means is that it has been written in C# itself.</p> <p>What I know is that the compiler was started as pure C code but once the "basic" features of ECMA were implemented they started to rewrite the compiler in C#.</p> <p>Im not aware of the advantages of writing the compiler in the same language but Im sure it has to do at least with the features that the language itself can offer (C for example does not support object oriented programming)</p> <p>You can find more information <a href="http://www.mono-project.com/CSharp_Compiler" rel="nofollow">here</a></p> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252740#252740 0 Answer by Gustavo Rubio for Create a cross platform Windows, Mac OS X application Gustavo Rubio 2008-10-31T06:28:20Z 2008-10-31T06:28:20Z <p>Java or Mono come to my mind. Some people may argue that java graphical toolkits are not the cuttest out there but it seems to be, at least to me, the easiest way to port your application to several platforms and avoid deployment difficulties.</p> <p>Mono, on the other hand, could be a little bit more difficult to port as you would have to write at least the gui twice if you plan to have native widgets (either winforms or GTK for windows and CocoaSharp for Max) but you could write the backend only once and develop a frontend for each platform.</p> <p>As I said, Java GUI toolkits might not feel "native" inside OSX or even on Windows but they sure work on both platforms, you could use either Swing or AWT.</p> <p>As for mono, you can use GTK or Winforms for both windows and OSX but they still will not feel native, you can, however use CocoaSharp which are bindings to the Cocoa framework but Im not sure about the status of the project (read: functionality support)</p> http://stackoverflow.com/questions/1430509/reading-same-file-from-multiple-threads-in-c Comment by Gustavo Rubio on Reading same file from multiple threads in C# Gustavo Rubio 2009-09-18T16:28:24Z 2009-09-18T16:28:24Z Ok so I finally ended using one single thread to read the big file and creating as much files as threads the user configured so if the user set 4 threads I divide this big file in 4 different files. As soon as the thread finishes I create 4 threads and each one reads a different file and process each record. I haven't benchmarked this but I will and let you know. Thanks all for the responses. http://stackoverflow.com/questions/1430509/reading-same-file-from-multiple-threads-in-c/1430543#1430543 Comment by Gustavo Rubio on Reading same file from multiple threads in C# Gustavo Rubio 2009-09-16T17:14:44Z 2009-09-16T17:14:44Z Actually the processing of the data is what takes the most. Indeed, what I'm doing right now is that the main thread reads the file line by line and as each line is consumed a new thread is created passing that line to the thread so it can process that information. As soon as a thread is done i fire up an event that tells me that thread has finished so I can create a new one so I dont create more than those the user pointed (num of threads is configurable) http://stackoverflow.com/questions/1275578/do-enums-have-a-limit-of-members-in-c Comment by Gustavo Rubio on Do enums have a limit of members in C#? Gustavo Rubio 2009-08-14T16:23:01Z 2009-08-14T16:23:01Z Well of course I will not use the 2^32 size limit yet I need a lot of &quot;storage&quot;. We are developing an application that is insurance-related so there are a lot of variables that need to be there in order to do the rating to get a premium and as you can imagine these are a lot (probably 600 to 1,000) http://stackoverflow.com/questions/1275578/do-enums-have-a-limit-of-members-in-c/1275599#1275599 Comment by Gustavo Rubio on Do enums have a limit of members in C#? Gustavo Rubio 2009-08-14T16:20:08Z 2009-08-14T16:20:08Z Thank you, I did not know that you could declare the underlying type of an enum. http://stackoverflow.com/questions/674629/high-overhead-in-new-mysql-table Comment by Gustavo Rubio on high overhead in new mysql table Gustavo Rubio 2009-03-23T19:29:37Z 2009-03-23T19:29:37Z You should get a mac... http://stackoverflow.com/questions/115493/how-do-i-convince-my-team-to-drop-sourcesafe-and-move-to-svn/115611#115611 Comment by Gustavo Rubio on How do I convince my team to drop sourcesafe and move to SVN? Gustavo Rubio 2009-02-25T19:51:05Z 2009-02-25T19:51:05Z There is also VisualSVN plugin for Visual Studio that even when not free, is a great extension (tortoiseSVN is needed though) and it's worth the $49 http://stackoverflow.com/questions/529863/do-you-prefer-verbose-naming-when-it-comes-to-database-columns/529962#529962 Comment by Gustavo Rubio on Do you prefer verbose naming when it comes to database columns? Gustavo Rubio 2009-02-10T00:15:27Z 2009-02-10T00:15:27Z I use the same stadnard, name of table + id for the keys... +1 http://stackoverflow.com/questions/500462/how-can-i-find-which-process-has-opened-a-specific-file/500491#500491 Comment by Gustavo Rubio on How can I find which process has opened a specific file? Gustavo Rubio 2009-02-01T20:04:17Z 2009-02-01T20:04:17Z Why was the commmend voted down? I just don't understand it sometimes... http://stackoverflow.com/questions/500462/how-can-i-find-which-process-has-opened-a-specific-file/500491#500491 Comment by Gustavo Rubio on How can I find which process has opened a specific file? Gustavo Rubio 2009-02-01T10:19:11Z 2009-02-01T10:19:11Z Maybe using the Win32 api directly through P/Invokes and getting the process handle with .Net? http://stackoverflow.com/questions/488856/does-a-method-that-returns-a-collection-get-called-in-every-iteration-in-a-foreac/491126#491126 Comment by Gustavo Rubio on Does a method that returns a collection get called in every iteration in a foreach statement in C#? Gustavo Rubio 2009-01-30T16:57:23Z 2009-01-30T16:57:23Z This is quite a good response, thank you!! http://stackoverflow.com/questions/441505/is-linux-kernel-or-other-low-level-stuff-a-good-example-of-how-to-write-c/441513#441513 Comment by Gustavo Rubio on Is Linux kernel (or other low level stuff) a "good" example of how to write C Gustavo Rubio 2009-01-14T01:06:51Z 2009-01-14T01:06:51Z Standard C Library seems to be a good starting point to me too http://stackoverflow.com/questions/415627/big-web-2-0-sites-written-in-python/415634#415634 Comment by Gustavo Rubio on Big Web 2.0 sites written in Python? Gustavo Rubio 2009-01-06T07:21:24Z 2009-01-06T07:21:24Z @Gordon Wilson, ididak: <a href="http://mail.google.com/support/?ctx=gmail&amp;hl=en" rel="nofollow">mail.google.com/support/?ctx=gmail&amp;hl=en/&hellip;</a> that page of google (help site) is running with python, you can see the extension of the links (.py), youtube also uses it internally http://stackoverflow.com/questions/388156/what-web-oriented-language-should-i-learn-after-php/388159#388159 Comment by Gustavo Rubio on What web-oriented language should I learn after PHP? Gustavo Rubio 2008-12-23T23:37:04Z 2008-12-23T23:37:04Z You are right... http://stackoverflow.com/questions/106820/what-is-j2ee-jee Comment by Gustavo Rubio on what is j2ee/jee? Gustavo Rubio 2008-12-19T17:57:24Z 2008-12-19T17:57:24Z &quot;There are no stupid questions, just stupid people that don't ask&quot; :) http://stackoverflow.com/questions/327100/removing-a-file-in-a-restricted-folder-in-linux/327117#327117 Comment by Gustavo Rubio on Removing a file in a Restricted Folder in Linux Gustavo Rubio 2008-11-29T03:48:11Z 2008-11-29T03:48:11Z I dont understand why the negative feedback to the comment...