User hectorsosajr - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:36:39Z http://stackoverflow.com/feeds/user/12829 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813022/managing-contractors-with-svn-on-projects/1813099#1813099 2 Answer by hectorsosajr for Managing Contractors with SVN on Projects hectorsosajr 2009-11-28T17:13:00Z 2009-11-28T17:13:00Z <p>The answer to this will depend on:</p> <ul> <li>How much do you trust the contractors?</li> <li>How much effort does your group want to put into managing this?</li> </ul> <p>Here are some scenarios:</p> <p><strong>No Trust</strong></p> <ul> <li>Read only repository access</li> <li>No access to trunk</li> <li>Submissions are done with patches</li> <li>Somebody on your team will manage the patches</li> </ul> <p><strong>Medium Trust</strong></p> <ul> <li>Read-write milestone branches</li> <li>Contractors submit to milestone branches.</li> <li>Somebody on your team merges into the release branch</li> </ul> <p><strong>Full Trust</strong></p> <ul> <li>Full access to trunk</li> <li>Contractors in charge of merging their changes</li> </ul> <p>As for best practices, I suggest the following:</p> <ul> <li>Track milestones with burn-down chart, or the system of your choice</li> <li>Make everybody commit with comments (could use a Subversion hook for this)</li> <li>Align code commits to a specific item/ticket in a management system like FogBugz, OnTime, ect.</li> <li>Large features or milestones should have their own branch. Merge to trunk one the feature/milestone has been validated by somebody on your team.</li> </ul> <p>There are just some ideas. You'll have to find what's best for your mix of team members and contractors.</p> http://stackoverflow.com/questions/1730748/diff-merge-tool-for-tortoisesvn-within-visual-studio/1730820#1730820 1 Answer by hectorsosajr for diff/merge tool for TortoiseSVN within Visual Studio hectorsosajr 2009-11-13T17:42:07Z 2009-11-13T17:42:07Z <p>I really like how <a href="http://www.araxis.com/merge/" rel="nofollow">Araxis Merge</a> does the diffs, and prefer it over TortoiseMerge. I'm a very visually inclined person, and I prefer Araxis Merge's visual representation over WinMerge and BeyondCompare.</p> <p>Araxis Merge can also be used with TortoiseSVN for diff, merges, and applying patches.</p> http://stackoverflow.com/questions/1722568/how-do-i-avoid-complicated-merges-in-subversion/1722691#1722691 7 Answer by hectorsosajr for How do I avoid Complicated Merges in Subversion? hectorsosajr 2009-11-12T14:46:27Z 2009-11-12T14:46:27Z <p>I'm also a former Visual Source Safe user. Merges used to drive me crazy until I realized that it is not a technology problem, but a people issue. When using VSS, most developers try to get as much work done before you have to check in as possible. This behavior is what was contributing to complicated merges. </p> <p>Here are a few things to mitigate this:</p> <ul> <li>Always update your working copy before starting</li> <li>Check in often. This will make the code changes smaller, which will be easier to auto-merge</li> <li>Do not leave working code unchecked</li> <li>Developers should create their own branch, if the changes will take several days or longer</li> </ul> <p>Those things helped immensely, especially as the teams I worked in kept getting bigger and bigger. Replicating the lock behavior from VSS is a very bad idea, and will cause more problems. Just embrace the new workflow. </p> <p>If you still want to use a tool, then I suggest that you look at <a href="http://www.svnmonitor.com" rel="nofollow">SVNMonitor</a>.</p> http://stackoverflow.com/questions/1362297/dts-manual-step-excution-gives-different-results-than-just-hitting-run/1362425#1362425 0 Answer by hectorsosajr for DTS - Manual step excution gives different results than just hitting "Run" hectorsosajr 2009-09-01T13:14:48Z 2009-09-01T13:14:48Z <p>I just ran into a similar issue recently. While working with the senior DBA, we found that the server where the package ran did not have the right permissions to a directory on the network. The package ran fine in my box, but died on the production server. We need to give permissions to the sqlservice account on the production box, to write to the directory on the network.</p> <p>You might also want to check out any ActiveX Script step that changes the connection string or destination of Data Pump steps. I've had cases where these were different on the destination server that the DTS packages run.</p> http://stackoverflow.com/questions/1265851/simple-linq-able-file-based-database/1265893#1265893 0 Answer by hectorsosajr for Simple, linq-able, file based database hectorsosajr 2009-08-12T12:34:01Z 2009-08-12T12:34:01Z <p>You will always need to install database drivers to talk to a specific database. The only way to avoid that is to create your own driver to talk to a database, or even create your own database engine.</p> <p>However, both <a href="http://sqlite.phxsoftware.com/forums/t/1070.aspx" rel="nofollow">SQLite</a> and VistaDB have LINQ to SQL now. Other alternatives are to use a text file or XML file for your "database."</p> http://stackoverflow.com/questions/1263785/plugins-modules-for-my-c-program/1263821#1263821 2 Answer by hectorsosajr for Plugins / modules for my C# program hectorsosajr 2009-08-12T01:31:53Z 2009-08-12T01:31:53Z <p>I'm doing the same thing for a <a href="http://www.codeplex.com/wheelmud" rel="nofollow">MUD server</a>. This server has both compiled plugins and code plugins like you want to use. I created my own scripting engine using CodeDom, but that was quite a hassle. I ended up switching to <a href="http://csscript.net/" rel="nofollow">CS-Script</a>. So now we are using <a href="http://mef.codeplex.com/" rel="nofollow">MEF</a> for compiled plugins and CS-Script for code plugins.</p> http://stackoverflow.com/questions/1237245/drag-and-drop-a-groupwise-email-to-c-winform/1252661#1252661 0 Answer by hectorsosajr for Drag and Drop a Groupwise Email to C# Winform. hectorsosajr 2009-08-10T00:20:05Z 2009-08-10T00:20:05Z <p>WPOF_DBOBJ_DRN looks like WordPerfect Office Format - Database Object. I can't figure out what the DRN stands for though. See if you can open the unreadable file with Word, or WordPerfect if you have it. My guess is that the setup of GroupWise that you are using has WordPerfect as its editor.</p> http://stackoverflow.com/questions/1212906/permanent-public-hosted-scm-for-not-open-source-things/1212938#1212938 1 Answer by hectorsosajr for permanent public hosted SCM for not open source things hectorsosajr 2009-07-31T14:42:38Z 2009-07-31T14:42:38Z <p>There are several out there. The three that I hear mentioned around the most are:</p> <ol> <li><a href="http://cvsdude.com/" rel="nofollow">CVSDude</a></li> <li><a href="http://unfuddle.com/" rel="nofollow">Unfuddle</a></li> <li><a href="http://www.codespaces.com/" rel="nofollow">CodeSpaces</a></li> </ol> <p>These offer free and/or low fee accounts. They are geared towards private projects. They also offer bug trackers and ticket systems. There are many more smaller outfits, but these three are the ones I hear about the most.</p> http://stackoverflow.com/questions/1181352/what-are-the-good-certifications-for-net-developers/1181424#1181424 4 Answer by hectorsosajr for what are the good certifications for .NET developers hectorsosajr 2009-07-25T06:54:22Z 2009-07-25T06:54:22Z <p>Certifications are one of those things that depend on your situation. There are only three logical reasons as a .NET developer to get certifications. Most of the other reasons usually descend into emotional arguments.</p> <ol> <li>Microsoft Partners require that they have at least 2 certified professionals (with Microsoft certifications in whatever they specialize) in their staff at anyone time, or they lose their official status.</li> <li>You have less than 5 years experience in the specific technology, and want to break into something that you don't have experience in.</li> <li>The positions you are applying to require you to have certifications.</li> </ol> <p>I have found that companies stop asking you about certifications after you have 3 or more years experience. Hence the reason why most developer with experience will tell you that certifications are not really necessary.</p> <p>Now, this being said, I have found that a developer with one of the SQL Server or Windows Server certifications will garner a lot of attention. The main reason I've heard managers talking about this, is that you have a broader knowledge, and become more valuable to the company. </p> <p>I have both Windows Server and SQL Server administration experience (without certifications) and I've found that I get paid higher than people who only have developer experience.</p> http://stackoverflow.com/questions/1153148/fast-string-comparison-with-list/1153502#1153502 1 Answer by hectorsosajr for Fast string comparison with list hectorsosajr 2009-07-20T13:15:05Z 2009-07-20T13:15:05Z <p>I ended up doing this:</p> <pre><code>private static bool Contains(List&lt;string&gt; list, string value) { bool contains = null != list.Find(str =&gt; str.ToLower().Equals(value.ToLower())); return contains; } </code></pre> <p>I'm guessing you could create an extension method for <code>List&lt;string&gt;</code>, but this was sufficient for my needs.</p> http://stackoverflow.com/questions/1138559/fastest-sql-server-protocol/1138601#1138601 0 Answer by hectorsosajr for Fastest SQL Server protocol? hectorsosajr 2009-07-16T15:58:25Z 2009-07-16T15:58:25Z <p>Named Pipes is the fastest SQL Server protocol.</p> http://stackoverflow.com/questions/1101706/svn-vs-vss-vs-cvs-comparing-help/1101853#1101853 3 Answer by hectorsosajr for SVN vs VSS vs CVS Comparing HELP hectorsosajr 2009-07-09T04:34:29Z 2009-07-09T04:34:29Z <p>This is one of those questions that requires a lot of details, but it will boil down to "Why do you like using SVN?" and what you can use from the "like" list to present to your boss.</p> <p>I've used all three. I can only speak for my own experiences and bias. My usage history is VSS --> CVS --> SVN</p> <p><strong>CVS</strong></p> <p>Pros: </p> <ul> <li>It can be used across the internet</li> <li>Very stable</li> </ul> <p>Cons: </p> <ul> <li>It is very hard to rename things. This causes a lot of pain.</li> </ul> <p>My main beef with it was client software. I found all of the client software incoherent and disjointed. I absolutely hated using it.</p> <p><strong>VSS</strong></p> <p>Pros: </p> <ul> <li>Sharing projects is dead easy.</li> <li>Integrates well with Microsoft IDEs</li> </ul> <p>Cons:</p> <ul> <li>It uses the Microsoft Jet storage engine, which is prone to corrupt whatever it is accessing.</li> <li>It can't be used outside of your LAN, unless you buy something like SourceOffsite.</li> <li>The checkout-lock files and checkin-unlock files can slow down productivity in larger groups. A lot of newbie developers leave files checked out, and the rest of the team has to wait on them to make any check in.</li> <li>Microsoft does not develop this anymore. Microsoft doesn't even use this internally for their cash cow apps like Office and Windows. They actually use a custom version of Perforce.</li> </ul> <p>Subversion</p> <p>Pros:</p> <ul> <li>Checkout-edit-merge file editing cycle is very team friendly</li> <li>Creating branches is very cheap and doesn't copy physical files</li> <li>It's being continually developed</li> <li>There are several Subversion packages to choose from</li> <li>A lot of third party vendors integrate with Subversion. It has a rich application ecology.</li> <li>One major advantage is that you can now integrate security Subversion with your Active Directory tree.</li> </ul> <p>Cons:</p> <ul> <li>Merging conflicting can still be a major pain in the neck, but this is the same as with most other version control systems.</li> <li>Security can be a bit tricky to use depending on which server (svnserve.exe or Apache/WebDAV) you choose to run your repositories.</li> </ul> <p>I'm guessing that since your bosses want to buy VSS2005, that this will be running on Windows. My recommendation is that you stick with one of these 3 Subversion distros/packages</p> <p>General Subversion installation package: CollabNet Subersion - <a href="http://www.open.collab.net/downloads/subversion/" rel="nofollow">http://www.open.collab.net/downloads/subversion/</a> This will install both svnserver.exe (custom server) and Apache/WebDAV or you can choose which one to install during setup. You'll be able to serve your repositories using both http:// and svn:// protocols.</p> <p>Subversion plus Administration console: VisualSVN Server - <a href="http://visualsvn.com/server/" rel="nofollow">http://visualsvn.com/server/</a> They do their own Subversion distribution. This package has a Microsoft Management Console (MMC) snapin to manage the server. This one will help you setup permission against you Active Directory tree. This is mainly geared towards http:// protocol.</p> <p>Subversion Administration console: PainlessSVN - <a href="http://www.painlesssvn.com" rel="nofollow">http://www.painlesssvn.com</a> This one will only work with svnserve.exe (custom server). It's a Microsoft Management Console (MMC) snapin that will manage the settings, and users. This is mainly geared towards the svn:// protocol.</p> <p>Tom Ritter gave some very good links to tools that will import history and code from CVS/VSS to Subversion.</p> http://stackoverflow.com/questions/860519/subsonic-and-app-config-in-windows-form/866079#866079 1 Answer by hectorsosajr for SubSonic and app.config in Windows Form hectorsosajr 2009-05-14T22:02:15Z 2009-05-14T22:02:15Z <p>Yes. What you do is add a section in configSections called "SubsonicService", like this:</p> <pre><code>&lt;configSections&gt; &lt;section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/&gt; &lt;/configSections&gt; </code></pre> <p>Next, you add a connectionStrings branch with the connection strings that you will use in your project, like this:</p> <pre><code>&lt;connectionStrings&gt; &lt;clear/&gt; &lt;add name="WheelMUDSQLite" connectionString="Data Source=C:\Dev\WheelMud.net\src\SQL\SQLite\WheelMud.net.db;Version=3;"/&gt; &lt;/connectionStrings&gt; </code></pre> <p>Last, you add the SubsonicService node that you added in the configSections like this:</p> <pre><code>&lt;SubSonicService defaultProvider="WheelMUDSQLite"&gt; &lt;providers&gt; &lt;clear/&gt; &lt;add name="WheelMUDSQLite" type="SubSonic.SQLiteDataProvider, SubSonic" connectionStringName="WheelMUDSQLite" generatedNamespace="WheelMUD.DataLayer"/&gt; &lt;/providers&gt; &lt;/SubSonicService&gt; </code></pre> <p>This is where you put all of your providers. I use the SubStage utility to generate the DAL. This way you can completely disassociate your stuff from the Web bits that come with Subsonic.</p> http://stackoverflow.com/questions/865572/is-there-a-nullable-datepicker-that-i-can-bind-to/865665#865665 1 Answer by hectorsosajr for Is there a nullable datepicker that I can bind to? hectorsosajr 2009-05-14T20:46:13Z 2009-05-14T20:46:13Z <p>Smart FieldPackEditor has a datepicker that is nullable. I believe it does everything that you need. I wish this was around when I was dealing with this sort of stuff. I still remember all the workarounds I had to implement with Microsoft's datepicker control. Uggh!</p> <p><a href="http://www.visualhint.com/index.php/fieldpackeditor/" rel="nofollow">http://www.visualhint.com/index.php/fieldpackeditor/</a></p> http://stackoverflow.com/questions/672431/svn-admin-management-gui-tool/864578#864578 1 Answer by hectorsosajr for SVN admin management GUI tool hectorsosajr 2009-05-14T17:11:12Z 2009-05-14T17:11:12Z <p>There's also my own program called <a href="http://www.painlesssvn.com" rel="nofollow">PainlessSVN</a>. It only works with repositories setup to be served with svnserve.exe It can work with Subversion servers in your LAN. I'm currently working on version 1.1, which is almost a complete rewrite. Check the blog to see what the new stuff is.</p> <p>If you want to work with an existing Subversion server, then my program will work for you. If you want to start from scratch, then <a href="http://visualsvn.com/server/" rel="nofollow">VisualSVN Server</a> is pretty good.</p> http://stackoverflow.com/questions/850802/piping-in-a-file-on-the-command-line-using-system-diagnostics-process 2 Piping in a file on the command-line using System.Diagnostics.Process hectorsosajr 2009-05-12T01:50:11Z 2009-05-12T04:14:00Z <p>I'm trying to run a command-line program and piping in a file. The command works fine on the command-line, but I can't seem to get it to work with the Process object in C#. Here's the command I'm issuing:</p> <p>"C:\Servers\CollabNet Subversion Server\svnadmin" load C:\Repositories\TestLoad &lt; C:\Temp\test.dump</p> <p>This function works fine with all the other commands that I pass to it, except for the command above:</p> <pre><code>public static bool ExecuteSvnCommand( string command, string arguments, out string result, out string errors ) { bool retval = false; string output = string.Empty; string errorLines = string.Empty; Process svnCommand = null; var psi = new ProcessStartInfo( command ); psi.RedirectStandardOutput = true; psi.RedirectStandardError = true; psi.WindowStyle = ProcessWindowStyle.Hidden; psi.UseShellExecute = false; psi.CreateNoWindow = true; try { Process.Start( psi ); psi.Arguments = arguments; svnCommand = Process.Start( psi ); StreamReader myOutput = svnCommand.StandardOutput; StreamReader myErrors = svnCommand.StandardError; svnCommand.WaitForExit(); if ( svnCommand.HasExited ) { output = myOutput.ReadToEnd(); errorLines = myErrors.ReadToEnd(); } // Check for errors if ( errorLines.Trim().Length == 0 ) { retval = true; } } catch ( Exception ex ) { string msg = ex.Message; errorLines += Environment.NewLine + msg; } finally { if (svnCommand != null) { svnCommand.Close(); } } result = output; errors = errorLines; return retval; } </code></pre> <p>I've tried several different combinations of this function, but I can't get this to work. I keep getting a "The system cannot find the file specified" message. I've been at this for about a week now, and I think I need a few set of eyes to see what I'm doing wrong.</p> http://stackoverflow.com/questions/850802/piping-in-a-file-on-the-command-line-using-system-diagnostics-process/851102#851102 2 Answer by hectorsosajr for Piping in a file on the command-line using System.Diagnostics.Process hectorsosajr 2009-05-12T04:14:00Z 2009-05-12T04:14:00Z <p>Both Mark and Luke gave me the right direction to go. I couldn't use either answer because I had to do this so that it could run with Mono in Linux. So I ended up writing to the StandardInput as suggested. Here is the code that works:</p> <pre><code>public static bool ExecuteSvnCommandWithFileInput( string command, string arguments, string filePath, out string result, out string errors ) { bool retval = false; string output = string.Empty; string errorLines = string.Empty; Process svnCommand = null; var psi = new ProcessStartInfo( command ); psi.RedirectStandardInput = true; psi.RedirectStandardOutput = true; psi.RedirectStandardError = true; psi.WindowStyle = ProcessWindowStyle.Hidden; psi.UseShellExecute = false; psi.CreateNoWindow = true; try { Process.Start( psi ); psi.Arguments = arguments; svnCommand = Process.Start( psi ); var file = new FileInfo(filePath); StreamReader reader = file.OpenText(); string fileContents = reader.ReadToEnd(); reader.Close(); StreamWriter myWriter = svnCommand.StandardInput; StreamReader myOutput = svnCommand.StandardOutput; StreamReader myErrors = svnCommand.StandardError; myWriter.AutoFlush = true; myWriter.Write(fileContents); myWriter.Close(); output = myOutput.ReadToEnd(); errorLines = myErrors.ReadToEnd(); // Check for errors if ( errorLines.Trim().Length == 0 ) { retval = true; } } catch ( Exception ex ) { string msg = ex.Message; errorLines += Environment.NewLine + msg; } finally { if (svnCommand != null) { svnCommand.Close(); } } result = output; errors = errorLines; return retval; } </code></pre> http://stackoverflow.com/questions/850672/is-it-possible-to-remove-unused-code-assemblies-in-net/850752#850752 0 Answer by hectorsosajr for Is it possible to remove unused code/assemblies in .NET? hectorsosajr 2009-05-12T01:26:17Z 2009-05-12T01:26:17Z <p>There's a product called <a href="http://www.smartassembly.com/" rel="nofollow">SmartAssembly</a> that does this. It's a bit pricey, at least for me.</p> http://stackoverflow.com/questions/816438/substage-making-templates-ms-stylecop-compliant 0 Substage - Making templates MS StyleCop compliant hectorsosajr 2009-05-03T05:57:29Z 2009-05-04T18:31:59Z <p>I have a good sized hobby project, around 66K LOC, over at <a href="http://www.wheelmud.net" rel="nofollow">http://www.wheelmud.net</a> Recently, a team member got the bulk of the code MS StyleCop compliant. The only thing left is our data layer. As you can imagine, this gets regenerated fairly often, as we are still in the early stages of development.</p> <p>I tried modifying the aspx templates, but I saw quite a few things that I need fixed. The first thing I saw was that the using statements were on top of the namespace declaration. Is there any way to modify this behavior through the templates, or do I need to take a chainsaw to SubStage's code?</p> <p>I don't mind changing the source, but I wanted to ask first before I jump in. I have done this before for other projects.</p> http://stackoverflow.com/questions/235231/how-to-avoid-outlook-security-alert-when-reading-outlook-message-from-c-program/814035#814035 2 Answer by hectorsosajr for How to avoid Outlook security alert when reading outlook message from C# program hectorsosajr 2009-05-02T03:05:06Z 2009-05-02T03:05:06Z <p>"But I am looking for a solution which don't require any third party COM library."</p> <p>You won't find it. Kasper already pointed out the only solution that I know of. Redemption has been the only thing that has kept the Outlook plug-ins and code to work. I have done commercial Outlook add-ins for Franklin Covey. We explored a lot things, but Redemption was the only thing that got us over this hurdle.</p> http://stackoverflow.com/questions/801950/codeplex-svn-how-good-is-svn-bridge/802471#802471 3 Answer by hectorsosajr for Codeplex + SVN. How good is SVN bridge? hectorsosajr 2009-04-29T13:55:10Z 2009-04-29T13:55:10Z <p>The client side SvnBridge has been problematic for me when CodePlex had client side program. However, they have moved SvnBridge to their server farms, and it's working really well. I have 3 projects on CodePlex, with 2 of them using their source control. Two of those projects were migrated from SourceForge. SourceForge's UI has gotten progressively worse and worse, while CodePlex has been listening to its users and has improved the user experience.</p> <p>The main issue I have a problem with is that your commits don't get a consecutive id. The id pool is shared with all the other projects on the TFS server that it is running on. As far as I know there are currently 6 TFS servers hosting CodePlex projects.</p> <p>I'm hosting the source control for one of the projects myself, because I need to add custom hooks scripts for a few things. Other than that, CodePlex is just fine.</p> http://stackoverflow.com/questions/753410/software-developer-in-a-manufacturing-company-growth/753522#753522 3 Answer by hectorsosajr for Software developer in a manufacturing company: growth ? hectorsosajr 2009-04-15T20:19:51Z 2009-04-15T20:19:51Z <p>I have almost the exact same background as yourself; 6 years in IT before taking a dev position. I even had a position with a ceramics manufacturing company. It was... interesting.</p> <p>Here are the 4 things that have helped me the most:</p> <ul> <li>Follow blogs on your technology platform</li> <li>Follow blogs for specific technologies</li> <li>Join technical forums</li> <li>Attend user groups</li> </ul> <p>There's a couple of forums that I check on a regular basis. Those usually put a face on a lot of technical issues. My top 3 are (not in any order):</p> <ol> <li><a href="http://www.joelonsoftware.com/" rel="nofollow">Joel On Software</a> - JoS and Business of Software forums</li> <li><a href="http://computerconsultantsforum.com" rel="nofollow">Computer Consultants Forum</a></li> <li>StackOverflow - You're already here. :)</li> </ol> <p>The first list above will keep you up to day on what's going on technology-wise. Attending user groups helped me keep sane by interacting with others that worked with the same technologies. That also helped my personal network, and I got job leads that way.</p> <p>You could also volunteer your services at user groups. For example, I have spoken at my local .NET user group. I also host the user group's web site.</p> <p>There's also a few websites that have a lot of tutorials. One of my favorites is <a href="http://dimecasts.net" rel="nofollow">DimeCasts</a>. It's a website for .NET tutorials. You can either watch the casts online or download them.</p> <p>Another big help has been my personal library for code and articles. I have been accumulating those for several years now. I personally use <a href="http://www.surfulater.com/" rel="nofollow">Surfulater</a>, but there are other similar software like <a href="http://www.kinook.com/UltraRecall/" rel="nofollow">UltraRecall</a>. This type of software saves the whole web page into a database. It's been quite useful, because I don't have to worry about the URLs being changed. I have the content.</p> <p>Once the economy gets better, look a another job that will challenge you and make you grow. Until then, just hunker down. You're doing fine, and by asking here, it tells us that you are thinking of your future.</p> http://stackoverflow.com/questions/652732/similar-svn-server-software-for-os-x-thats-like-visual-svn/702484#702484 1 Answer by hectorsosajr for Similar SVN Server software for OS X that's like Visual SVN hectorsosajr 2009-03-31T18:39:34Z 2009-04-15T19:56:13Z <p><a href="http://www.binarymethod.com" rel="nofollow">BinaryMethod</a> is working on a server manager for Mac OS X. They haven't released it yet, but you could ask to beta test it. The tool is called <a href="http://www.binarymethod.com/content/svnxact.php" rel="nofollow">SvnXact</a>.</p> http://stackoverflow.com/questions/694130/gray-nstableview-ala-itunes/694149#694149 0 Answer by hectorsosajr for Gray NSTableView à la iTunes hectorsosajr 2009-03-29T05:28:14Z 2009-03-29T05:28:14Z <p>A good friend of mine created a whole control kit called <a href="http://binarymethod.com/" rel="nofollow">BGHUDAppKit</a>. It's for the new HUD stuff that Apple introduced a while ago. I believe his controls are themable, and they come with source. I personally haven't done anything with Cocoa, but he has and I know he could answer some questions. Unfortunately, he doesn't lurk here, so you'll have to contact him. I'll see if I can get him to come here. :)</p> http://stackoverflow.com/questions/666344/does-sql-server-cache-linq-to-sql-queries/666391#666391 1 Answer by hectorsosajr for Does SQL Server cache LINQ to SQL queries? hectorsosajr 2009-03-20T14:29:29Z 2009-03-20T14:29:29Z <p>MS SQL Server caches the query plans for anything TSQL that is run against it. Once the plan is cached, the query will run a bit faster. I know that there is an expiration time for this cache, but I haven't asked the dba's about it.</p> <p>As far as I know, MS SQL Server 2000 was the last one that compiled the stored procs. That's not done anymore. That's why a lot of inline queries are just as fast (with SQL Server 2000+).</p> http://stackoverflow.com/questions/663155/how-to-get-started-with-svnexternals/663216#663216 2 Answer by hectorsosajr for How to get started with svn:externals? hectorsosajr 2009-03-19T17:38:54Z 2009-03-19T18:17:14Z <p>I wrote a tutorial and put it on my site, because this is a much asked question. Also, I always forget how to do this, and I need to look it up all the time. </p> <p><a href="http://systemwidgets.com/Support/SubversionArticles/SharedRepositoriesusingsvnexternals/tabid/81/Default.aspx?PageContentMode=1" rel="nofollow">Shared Repositories using SVN Externals</a></p> http://stackoverflow.com/questions/633614/svn-hooks-for-windows/663186#663186 1 Answer by hectorsosajr for SVN hooks for windows hectorsosajr 2009-03-19T17:31:36Z 2009-03-19T17:31:36Z <p>I started a repository of hooks using C#. My first hook was one to send check in notices to a RSS feed: <a href="http://systemwidgets.com/Downloads/SubversionChooks/tabid/82/Default.aspx" rel="nofollow">SubversionRss</a> I'm currently working on one post-commit hook to send check in notices to a Twitter feed.</p> http://stackoverflow.com/questions/580454/what-are-the-real-benefits-of-resharper-for-visual-studio-and-are-they-worth-the/580471#580471 1 Answer by hectorsosajr for What are the real benefits of Resharper for Visual Studio and are they worth the price? hectorsosajr 2009-02-24T04:22:19Z 2009-02-24T04:22:19Z <p>Each programmer that uses this tool will have different things that they like. So, I can only speak for myself.</p> <p><strong>Refactoring</strong></p> <p>It does it better than the the built-in Visual Studio refactorings.</p> <p><strong>Code Check</strong></p> <p>This is my favorite feature. It checks your code for common problems before you build. This catches a lot of stuff, plus it is customizable. It will mark the problems it sees with icons on the right gutter, and use squiggly underlines. This is also customizable. On the top of the right gutter you have a block with red (will not compile), yellow (some problems), and green (A-OK).</p> <p>We can all describe all of our favorite features, but the best thing you can do is to download a trial and try it out.</p> http://stackoverflow.com/questions/580383/where-is-the-line-between-dal-and-orm/580406#580406 1 Answer by hectorsosajr for Where is the line between DAL and ORM? hectorsosajr 2009-02-24T03:47:56Z 2009-02-24T03:47:56Z <p>ORM didn't exist when I started programming. When the first ORMs came out, they were external tools used to create the DAL. Now days, DAL and ORM have intermingled. That's why a lot of developers use the terms interchangeably. </p> <p>The most well known example of an ORM that functions as a DAL is NHibernate. Other examples are Subsonic and CSLA.NET. These are all .NET tools. IIRC, ORM tools started in the Java world. Other technologies stacks then copied what Java has done.</p> http://stackoverflow.com/questions/580321/patterns-for-implementing-transactions-outside-of-a-database/580373#580373 3 Answer by hectorsosajr for Patterns for implementing transactions outside of a database hectorsosajr 2009-02-24T03:35:50Z 2009-02-24T03:35:50Z <p>The last time I saw something like this was several years ago. The little bit that I remember about it is that it was using the command pattern and storing each command object in a queue. I think it was a LIFO stack.</p> <p>So if the "transaction" failed, the engine would pop off a command object, undo the command, then destroy the command object. Repeat until the stack was empty. The stack got cleared if the "transaction" was successful.</p> <p>Unfortunately, I don't remember more than that.</p> <p><a href="http://www.lhotka.net/cslanet/" rel="nofollow" title="CSLA.NET">CSLA.NET</a> implements a similar undo stack. That's the only example with code that I can think off the top of my head.</p> http://stackoverflow.com/questions/1813022/managing-contractors-with-svn-on-projects/1813099#1813099 Comment by hectorsosajr on Managing Contractors with SVN on Projects hectorsosajr 2009-11-29T03:46:40Z 2009-11-29T03:46:40Z mfeingold, yes you are correct. Managing patches is a lot easier and takes less time than managing merges. I've done both, and that's given me insight on how hard/easy these things are. http://stackoverflow.com/questions/473916/creating-custom-mmc-snapin-with-vb-net-or-c/497496#497496 Comment by hectorsosajr on Creating Custom MMC SnapIn with VB.Net or C# hectorsosajr 2009-11-25T16:45:11Z 2009-11-25T16:45:11Z Of course, it is. Which part of &quot;commercial&quot; didn't you get? http://stackoverflow.com/questions/954764/good-net-based-cms/957179#957179 Comment by hectorsosajr on Good .NET based CMS? hectorsosajr 2009-09-02T22:04:44Z 2009-09-02T22:04:44Z I have been a DotNetNuke user for about 4 years and Mika's post is very accurate. http://stackoverflow.com/questions/1362297/dts-manual-step-excution-gives-different-results-than-just-hitting-run/1363053#1363053 Comment by hectorsosajr on DTS - Manual step excution gives different results than just hitting "Run" hectorsosajr 2009-09-02T14:29:56Z 2009-09-02T14:29:56Z Wow, that's an eye opener. Little stuff like is what drives me crazy about DTS packages. http://stackoverflow.com/questions/1263785/plugins-modules-for-my-c-program/1263821#1263821 Comment by hectorsosajr on Plugins / modules for my C# program hectorsosajr 2009-08-12T10:26:23Z 2009-08-12T10:26:23Z Using CodeDom for simple plugins is braindead easy. However things get a lot more complicated when you are trying to unload and/or replace an already loaded plugin. This mostly involved loading the assemblies in a different appdomain. Anything beyond that was a hassle for me. I wanted to build a MUD not a whole plugin framework, hence my comment. http://stackoverflow.com/questions/438034/showing-help-for-a-command-line-utility/438043#438043 Comment by hectorsosajr on Showing help for a command-line utility hectorsosajr 2009-08-04T15:59:51Z 2009-08-04T15:59:51Z The issue is that the program is not an actual console application. It is a winform app that can take command-line arguments without showing the form. In order to do what I want, it needs to be a Console Application as Marc suggested. So one part of the program is a Winform app, and the other part a Console app. http://stackoverflow.com/questions/991788/what-source-control-systems-have-file-level-permissions/991799#991799 Comment by hectorsosajr on What source control systems have file level permissions? hectorsosajr 2009-06-14T00:25:24Z 2009-06-14T00:25:24Z If you don't want to run Apache, because the machine is already running IIS, then you can also use the svnserve.exe server. Google PainlessSVN, which deals with how svnserve works. http://stackoverflow.com/questions/865412/check-if-a-process-is-running-on-a-remote-system-using-c/865468#865468 Comment by hectorsosajr on Check if a process is running on a remote system using C# hectorsosajr 2009-05-14T20:27:47Z 2009-05-14T20:27:47Z This is the exact same code I use for this. I have run into the &quot;Access Denied&quot; message when trying to connect to Windows 2008 Server. http://stackoverflow.com/questions/816438/substage-making-templates-ms-stylecop-compliant/821310#821310 Comment by hectorsosajr on Substage - Making templates MS StyleCop compliant hectorsosajr 2009-05-04T18:55:49Z 2009-05-04T18:55:49Z I know that you are working on v3. Will this be done for v2.2? Thanks Rob, you're doing an awesome job! http://stackoverflow.com/questions/816438/substage-making-templates-ms-stylecop-compliant/818719#818719 Comment by hectorsosajr on Substage - Making templates MS StyleCop compliant hectorsosajr 2009-05-04T17:21:30Z 2009-05-04T17:21:30Z The other way of doing this is to store a Settings.StyleCop file in the same folder as the code. I actually wanted to make the templates compliant, not have them skipped altogether. Thanks anyways. http://stackoverflow.com/questions/636625/what-other-web-analytics-tools-are-out-there/636731#636731 Comment by hectorsosajr on What other web analytics tools are out there? hectorsosajr 2009-03-25T02:55:32Z 2009-03-25T02:55:32Z Clicky is completely realtime, where Analytics is not. I've been able to respond to what my users are doing. Just because something is free it doesn't mean it is any good for all cases. http://stackoverflow.com/questions/672020/simple-crud-generator-for-c/672075#672075 Comment by hectorsosajr on Simple CRUD Generator for C# hectorsosajr 2009-03-23T03:03:39Z 2009-03-23T03:03:39Z Subsonic is probably the lightest DAL maker that I have found so far. Everything else has become far too bloated. Try version 2.1, which now has an installer. http://stackoverflow.com/questions/664533/best-command-line-option-parsers-for-c-c-and-c/664542#664542 Comment by hectorsosajr on best command line option parsers for c, c++ and c#? hectorsosajr 2009-03-20T02:58:29Z 2009-03-20T02:58:29Z I use the CodeProject code for several of my utilities. It works great! http://stackoverflow.com/questions/122749/how-to-get-rid-of-the-console-root-node-in-a-mmc-3-0-snapin/494402#494402 Comment by hectorsosajr on How to get rid of the "Console Root" node in a MMC 3.0 snapin? hectorsosajr 2009-01-30T22:10:45Z 2009-01-30T22:10:45Z This is exactly what I wanted all along. Thanks! http://stackoverflow.com/questions/438034/showing-help-for-a-command-line-utility/438042#438042 Comment by hectorsosajr on Showing help for a command-line utility hectorsosajr 2009-01-13T06:05:36Z 2009-01-13T06:05:36Z Alright, I tried the System.Diagnostics.Debugger.Launch() trick, and it gets called from within ShowUsage() and I can step through with the debugger. Still no dice. The text shows in the Output window, but not when I run the exe from the command line. <i>boggle</i>