User Sergio Acosta - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T13:11:15Zhttp://stackoverflow.com/feeds/user/2954http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1905551/how-can-i-make-simpledateformat-parse-fail-when-month-is-greater-than-123How can I make SimpleDateFormat.parse() fail when month is greater than 12?Sergio Acosta2009-12-15T06:28:52Z2009-12-15T06:30:17Z
<p>I'm using <code>java.text.SimpleDateFormat</code> to parse strings of the form <code>"yyyyMMdd"</code>.</p>
<p>If I try to parse a string with a month greater than 12, instead of failing, it rolls over to the next year. Full runnable repro:</p>
<pre><code>import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class ParseDateTest {
public static void main(String[] args) throws ParseException {
SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
Date result = format.parse("20091504"); // <- should not be a valid date!
System.out.println(result); // prints Thu Mar 04 00:00:00 CST 2010
}
}
</code></pre>
<p>I would rather have a <code>ParseException</code> thrown.</p>
<p>Is there any non-hacky way of forcing the exception to happen?. I mean, I don't want to manually check if the month is greater than 12. That's kind of ridiculous.</p>
<p>Thanks for any suggestion.</p>
<p>NOTE: I already know about Joda Time, but I need this done in plain JDK without external libraries.</p>
http://stackoverflow.com/questions/110567/any-good-book-about-software-test-engineering-specifically-targeted-to-programmer4Any good book about Software Test Engineering specifically targeted to programmers?Sergio Acosta2008-09-21T08:48:45Z2009-11-08T08:34:42Z
<p>There are a lot of questions related to Unit Testing on stack overflow, but I'm at the moment interested in understanding more about the testing role on a software development project. </p>
<p>So just to make it clear: <strong>I'm not looking for books on Unit Testing</strong>.</p>
<p>I believe that to be competent software developers we should know a bit about the related disciplines to programming, like Architecture, Configuration Management, User Experience Design, and Testing, to name a few.</p>
<p>I suppose that many of us think that if we understand programming, we already understand most of what a tester does, and think that we could do it ourselves without much problem, but I wonder how many developers really try to learn about the Software Test Engineering discipline and practices from books and other formal resources.</p>
<p>So, my question:</p>
<p>Is there any good introductory book about Software Testing? Ideally, is there one that is written specifically for programmers that want to understand what a Software Test Engineer does and what techniques, processes, theory, tools and skills are needed?</p>
http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk2What's the best way to find out the installed version of the iPhone SDK?Sergio Acosta2008-10-07T04:23:59Z2009-10-26T20:55:00Z
<p>What is the easiest way of finding out what version of the iPhone SDK is installed on my OS X?</p>
<p>When you log into the Apple's iPhone Developer Center, you can see the build number of the current available version of the SDK, but you have to remember if you have already downloaded that version or not. </p>
<p>What is the easiest way of staying current?</p>
http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against34What's the most painful product to develop against?Sergio Acosta2009-03-27T09:44:46Z2009-10-18T15:35:40Z
<p><em>I know this is subjective and not really a question. I won't feel bad if it is closed, but I'm curious about this.</em></p>
<p>I was recently learning some details about a project that uses Microsoft Sharepoint as the development platform and honestly I don't know if they are doing something very wrong or the product itself is just a pain to develop against, but it was like an horror story. </p>
<p>The funny thing is that using Sharepoint like that is very common. I have heard about many projects that attempt to use Sharepoint as the platform for bigger applications. In most cases is a business-driven decision and not something suggested by the development team.</p>
<p>And don't get me wrong, I am totally aware that Sharepoint might be the best fit for many scenarios and that business needs are always higher on the priority scale than developer comfort, but that doesn't lessen the fact that some products are just so nasty that in extreme cases developers quit their jobs (or change projects) just in order to avoid them.</p>
<p><strong>Which product embodies your worst developer-nightmare?</strong></p>
<p>I nominate Crystal Reports. I just hate the thing.</p>
http://stackoverflow.com/questions/58489/are-bpm-solutions-worth-the-investment-in-money-time-and-effort7Are BPM solutions worth the investment in money, time and effort?Sergio Acosta2008-09-12T08:14:11Z2009-09-15T08:10:39Z
<p>This is more an architecture related question than a programming one, but I think it might be useful to developers given that I have been wondering this myself for some time.</p>
<p>I have no experience with Business Process Management tools use or implementation. (The closest thing I have used is BizTalk server, but I know that it is not really a full BPM product, but a document based integration platform with some process orchestration features).</p>
<p>Recently, several of our clients have been asking for BPM-based development projects, and most of the time I discover that some BPM vendor has been giving them some of those 'look how amazing is my product' demos, where they show 'how easily' you can modify your business process flow just by 'dragging and dropping' shapes around and those kind of things.</p>
<p>Obviously, vendors don't say anything about how you first need to have running your well designed processes on the BPM so you can actually make that kind of magic happen.</p>
<p>My clients suddenly see a new light thinking that BPM technology will finally fix the typical problems common to almost any IT department: applications that are hard to maintain, missing deadlines when implementing changes to support new business needs, etc.</p>
<p>None of them have finished implementing BPM, so I have no a real world reference to know what is such think like.</p>
<p>I honestly believe that many of those problems only should need solutions based on development process improvement, better analysis of future needs and better project management skills. Heck, even better programmers and designers.</p>
<p>So, my question is: </p>
<p><strong>What should an organization have in place before trying to implement a BPM platform in order to succeed?</strong></p>
<p><hr /></p>
<p>EDIT: Is really SOA what enables a BPM strategy to succeed?</p>
http://stackoverflow.com/questions/260945/create-nsstring-by-repeating-another-string-a-given-number-of-times1Create NSString by repeating another string a given number of timesSergio Acosta2008-11-04T05:03:51Z2009-07-25T04:05:32Z
<p>This should be easy, but I'm having a hard time finding the easiest solution.</p>
<p>I need an <code>NSString</code> that is equal to another string concatenated with itself a given number of times.</p>
<p>For a better explanation, consider the following python example:</p>
<pre><code>>> original = "abc"
"abc"
>> times = 2
2
>> result = original * times
"abcabc"
</code></pre>
<p>Any hints?</p>
<p><hr /></p>
<p>EDIT:</p>
<p>I was going to post a solution similar to the one by <a href="http://stackoverflow.com/questions/260945/create-nsstring-by-repeating-another-string-a-given-number-of-times#260969">Mike McMaster's answer</a>, after looking at this implementation from the OmniFrameworks:</p>
<pre><code>// returns a string consisting of 'aLenght' spaces
+ (NSString *)spacesOfLength:(unsigned int)aLength;
{
static NSMutableString *spaces = nil;
static NSLock *spacesLock;
static unsigned int spacesLength;
if (!spaces) {
spaces = [@" " mutableCopy];
spacesLength = [spaces length];
spacesLock = [[NSLock alloc] init];
}
if (spacesLength < aLength) {
[spacesLock lock];
while (spacesLength < aLength) {
[spaces appendString:spaces];
spacesLength += spacesLength;
}
[spacesLock unlock];
}
return [spaces substringToIndex:aLength];
}
</code></pre>
<p>Code reproduced from the file:</p>
<pre><code>Frameworks/OmniFoundation/OpenStepExtensions.subproj/NSString-OFExtensions.m
</code></pre>
<p>on the OpenExtensions framework from the <a href="http://www.omnigroup.com/developer/" rel="nofollow">Omni Frameworks</a> by <a href="http://www.omnigroup.com/" rel="nofollow">The Omni Group</a>.</p>
http://stackoverflow.com/questions/273858/software-worth-buying/273879#27387941Answer by Sergio Acosta for Software worth buyingSergio Acosta2008-11-07T22:41:20Z2009-07-09T04:04:44Z<p>One of my favorites is <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> It is a very fast and feature rich file and folder comparison tool, including 3-way merge and compare.</p>
<p>I can't imagine developing on the windows platform without it.</p>
http://stackoverflow.com/questions/60784/poll-which-python-ide-editor-is-the-best/61202#612026Answer by Sergio Acosta for Poll: Which Python IDE/editor is the best?Sergio Acosta2008-09-14T08:35:45Z2009-06-22T00:35:16Z<p>Not an IDE, but can actually replace one: </p>
<p><a href="http://ipython.scipy.org/" rel="nofollow">iPython</a>, the enhanced command line shell for python that allows you write and run python interactively, has help, profiling, debugging and syntax highlighting built-in, and lets you manage your history of commands and log them to text files so you eventually can get a .py out of what you did in the shell. You can also save and restore your session or just part of it.</p>
<p>It also supports *nix filesystem operations from inside the shell and supports your environmental EDITOR variable for larger edits.</p>
<p>Check out these video tutorials: <a href="http://showmedo.com/videos/series?name=CnluURUTV" rel="nofollow">A Demonstration of the iPython Interactive Shell</a></p>
http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/246125#2461256Answer by Sergio Acosta for What is the worst interviewee answer?Sergio Acosta2008-10-29T08:33:46Z2009-06-14T04:48:38Z<p>Oh, this is a good one. </p>
<p>Recently I was interviewing people for a '.NET Architect' position. One of the candidates told me that he had worked briefly with VB.NET before 'specializing' in C#.</p>
<p>So I asked:</p>
<p><em>Can you name some C# feature that doesn't exist in VB.NET?</em></p>
<p>His answer:</p>
<p><em>.... uhmm, I really don't remember...</em></p>
<p><em>wait! yes I remember there was one....</em></p>
<p><em>but I think they fixed it already.</em></p>
<p><strong>EDIT</strong>: Thanks everybody for the comments, but you are missing the point: the WTF is that the guy <strong>didn't even know what the meaning of 'feature'</strong> was. He thought I was asking about something that was wrong or missing in C#, like a bug or something. I would not think it is a bad answer if he had just said <em>'I don't know'</em>.</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/891736#8917364Answer by Sergio Acosta for What is your longest-held programming assumption that turned out to be incorrect?Sergio Acosta2009-05-21T07:17:31Z2009-05-21T07:26:34Z<p>When at college (mid 90's) they only had Windows 3.11 machines in the computer lab (I know, weird college).</p>
<p>For a while I thought <strong>that only the Windows platform was relevant to me as a professional programmer</strong> and that all other platforms were only interesting from an historical academic point of view.</p>
<p>After graduating from school and learning about modern unixes and linux environments I couldn't help feeling angry and disappointed about my <em>lame</em> school. </p>
<p>I cannot yet believe I graduated with a computer engineering degree without ever seeing a bash shell or even hearing about emacs or vim.</p>
http://stackoverflow.com/questions/842999/what-does-h-and-m-stand-for/843002#8430021Answer by Sergio Acosta for What does .h and .m stand for?Sergio Acosta2009-05-09T09:06:19Z2009-05-09T09:06:19Z<p>Look at this other question:</p>
<p><a href="http://stackoverflow.com/questions/652186/why-do-objective-c-files-use-the-m-extension">http://stackoverflow.com/questions/652186/why-do-objective-c-files-use-the-m-extension</a></p>
http://stackoverflow.com/questions/836633/what-is-the-best-source-control-product-for-visual-studio-development/838441#8384410Answer by Sergio Acosta for What is the best source control product for Visual Studio development?Sergio Acosta2009-05-08T06:08:15Z2009-05-08T06:08:15Z<p>+1 to forget about VS integration.</p>
<p>Many of the best source control tools have great command line interfaces. I've been happily using Git for VS projects for almost a year. The downside is that Git requires a bash shell and it is not very Windows friendly. I'm willing to pay the 'cost' of not having VS integration in order to get all the advanced features that make life really easier.</p>
<p>I would suggest giving <a href="http://www.selenic.com/mercurial/" rel="nofollow">Mercurial</a> a try.</p>
<p>I have to add that this advice is more suited for a personal choice of source control. If you are looking for a source control standard for a big company with lots of developers, I would go with a more 'standard' choice like Team System, SVN or Vault.</p>
http://stackoverflow.com/questions/625484/canceling-a-programatically-started-sql-server-express-install1Canceling a programatically started SQL Server Express InstallSergio Acosta2009-03-09T08:59:56Z2009-04-07T00:12:22Z
<p>During my application setup, the user has the option of installing a new SQL Server Express 2005 instance in the local machine if they don't want to use an already existing SQL Server 2005 in their network for whatever reason.</p>
<p>As the SQL Server installation is optional, I don't have it as a prerequisite of my installer. Instead, I just bundle the <code>sqlexpr32.exe</code> setup in my install media and programatically launch it with the appropriate command line arguments in order to perform an automatic install. (Note: I'm using the /qb command line flag so the install is not silent, <strong>it shows the user interface, but does not ask for any user input</strong>). And in case anyone wants to know, I'm following <a href="http://technet.microsoft.com/en-us/library/bb264562%28SQL.90%29.aspx#" rel="nofollow">this Microsoft article</a> on how to launch the SQL Server Express setup.</p>
<p>This is what I'm doing in my custom install action:</p>
<pre><code>// All this runs on a background thread so the user
// can cancel my app's setup at any time
// Launch the installer
Process setupProcess = new Process();
setupProcess.StartInfo.FileName = "sqlexpr32.exe";
setupProcess.StartInfo.Arguments = " a bunch of command line args here";
setupProcess.StartInfo.UseShellExecute = false; // to avoid a shell window
setupProcess.Start();
// At this point the SQL Server installer is running
// Monitor the process on 2-second intervals:
while (!setupProcess.WaitForExit(2000))
{
if(WasCancelled) // flag that is set when the user cancels my app's setup
{
// This following line is my problem. Sending CloseMainWindow does not
// seem to work. The SQL Server installer just keeps running.
setupProcess.CloseMainWindow();
setupProcess.WaitForExit();
break;
}
}
// After this point I build a results report for the user.
// My app's installer does not yet quit even if it was canceled.
</code></pre>
<p>So my question is: <strong>How could I 'signal' the SQL Server installer process to cancel and exit?</strong> </p>
<p>This line does not seem to do anything:</p>
<pre><code>setupProcess.CloseMainWindow();
</code></pre>
<p>This also does not work:</p>
<pre><code>setupProcess.Close(); // This closes my handle. Not the target process.
</code></pre>
<p>And I obviously wouldn't want to just kill the process as I could be leaving the user's machine in a not-so-desirable state, in the best case with a lot of garbage files or worse, with a corrupt install.</p>
<p>Any ideas? Sending keys or simulating user clicks? Or hopefully something less hacky?</p>
<p><strong>EDIT:</strong></p>
<p>I think I have found out why <code>CloseMainWindow</code> does not work:</p>
<ul>
<li>The process I start (<code>sqlexpr32.exe</code>) is not really the one that shows the UI for the SQLServer Installer, but a self-extracting exe that in turn launches the sql server <em>real</em> <code>setup.exe</code> as a child process. So this issue gets even harder. =( </li>
</ul>
http://stackoverflow.com/questions/137921/what-is-your-single-most-effective-interview-question/138027#13802731Answer by Sergio Acosta for What is your single most effective interview question?Sergio Acosta2008-09-26T06:26:07Z2009-04-06T08:19:48Z<p>One that I ask is: <strong>Who do you admire from our industry?</strong></p>
<p>Many candidates, the typical its-just-a-job non-passionate programmers, cannot give even one name. Not even 'Bill Gates'.</p>
<p>Sad.</p>
<p><hr /></p>
<p>Edit, after receiving comments:</p>
<p>I completely agree with the fact t one doesn't <em>have</em> to admire someone to acknowledge that his/her work is valuable to the industry. So I think the question that best represents what I was trying to ask the candidates is:</p>
<p><strong>Mention the name of one of the influential people in our industry.</strong></p>
<p>If they cannot given even one name, that doesn't tell me much about their ability to code, but definitely affects my decision more than a technical question answered incorrectly.</p>
http://stackoverflow.com/questions/702319/is-it-possible-to-dynamically-alter-an-iphone-apps-settings-page-in-the-settings/702424#7024241Answer by Sergio Acosta for Is it possible to dynamically alter an iphone app's settings page in the settings app?Sergio Acosta2009-03-31T18:27:05Z2009-03-31T18:27:05Z<p>As far as I know, you cannot do this through the SDK, because the application settings schema is based on a plist that is deployed at install time, and your application will not have access to that file at runtime, because of the sandbox. </p>
<p>As many people have noted, the Settings app really stops being useful for anything more than trivial settings. I would suggest adding a preferences section inside your application. But of course I'm not telling you anything useful. =)</p>
http://stackoverflow.com/questions/242996/dealbreakers-for-new-programming-jobs/246199#2461998Answer by Sergio Acosta for Dealbreakers for new programming jobs?Sergio Acosta2008-10-29T09:17:33Z2009-03-27T10:11:49Z<p>I was being interviewed for a job about 10 years ago:</p>
<p><strong>Interviewer:</strong> So, have you ever built a Java Applet?</p>
<p><strong>Me:</strong> "No, sorry. I really don't know java. I have read about Applets and have a general idea of what are they for and the basic scenario where you could use them"</p>
<p><strong>Interviewer:</strong> Uhm. Ok. But suppose that you had to build one. Could you do it?</p>
<p><strong>Me:</strong> Yes, naturally I think I could learn to build java applets, just like any other programming topic.</p>
<p><strong>Interviewer:</strong> Could you do it.. say.. right now? I mean, if needed?</p>
<p><strong>Me</strong>: I could try.</p>
<p><strong>Interviewer</strong>: Perfect. Can you start tomorrow?</p>
<p>It is the only one time I have rejected a job offer. I have met people that have worked there and all of them agree that this place is the worst depressing software sweat-shop.</p>
http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against/689159#68915922Answer by Sergio Acosta for What's the most painful product to develop against?Sergio Acosta2009-03-27T10:01:27Z2009-03-27T10:01:27Z<p>Another one I just remembered is Microsoft Access. </p>
<p>And I'm not talking about Microsoft the-friendly-end-user-desktop-database Access, but about the Microsoft just-turned-into-enterprise-application-platform Access.</p>
http://stackoverflow.com/questions/670965/helping-my-users-find-the-installer-on-the-cd2Helping my users find the installer on the CDSergio Acosta2009-03-22T12:57:37Z2009-03-22T20:22:11Z
<p>I need suggestions about a setup CD layout for non technical users.</p>
<p>My software is deployed on a CD with a setup.exe bootstrapper and a MSI file. There are also several dependency files used by the installer. The CD root looks something like this:</p>
<pre><code>myapp.msi
setup.exe
sqlexpr32.exe
dotnetfx.exe
myapp.ico
...
</code></pre>
<p>It is not rocket science for a developer guessing that the file you need to run in order to begin the installation is <code>setup.exe</code>.</p>
<p>But my users are definitely not as tech-savvy.</p>
<p>I have included an <code>autorun.inf</code> file, but I have found after testing in several machines that most of them do not automatically launch the setup. For whatever reason. In some machines somebody has disabled autorun, or some antivirus software, or whatever. The thing is that I cannot rely on autorun being available at all times.</p>
<p>So I'm thinking making changes to the CD layout in order to make more obvious which file has to be run.</p>
<p>One option is to make a new <code>Install.exe</code> program that just launches the original bootstrapper, and moving everything to a folder in the root of the CD:</p>
<pre><code>autorun.inf <-- launches Install.exe, if autorun is enabled for the drive.
Install.exe <-- launches contents/setup.exe
contents/myapp.msi
contents/setup.exe
contents/sqlexpr32.exe
contents/dotnetfx.exe
contents/myapp.ico
contents/...
</code></pre>
<p>As I cannot yet rely on the .net framework being present, I cannot use .net to make my Install.exe and that is kind of annoying.</p>
<p>Other option is making a <code>Install.bat</code> but most users are not familiar with the .bat extension and might not think about double-clicking it. And the user would see a command prompt window.</p>
<p>Other option is making a self-extracting exe and compressing everything inside, so the only files in the CD would be the autorun.inf and the self-extracting file.</p>
<p>What would you do?</p>
http://stackoverflow.com/questions/654758/what-dbms-is-appropriate-for-keeping-a-schema-private-even-when-installed-in-the/655001#6550016Answer by Sergio Acosta for What DBMS is appropriate for keeping a schema private even when installed 'in the wild'Sergio Acosta2009-03-17T16:30:59Z2009-03-17T22:14:26Z<p>As far as I remember, there are no commercial products that <em>"protect"</em> their schemas. What do you want the schema to be protected against?</p>
<p>Consider the following points:</p>
<ul>
<li><p>After all, the only person who can protect anything in a RDBMS is the database server administrator. And you want the schema to be protected against this person?</p></li>
<li><p>If I was a costumer and I had <strong>my data</strong> inside your schema, I would not only like, but expect, to be able to see and consume it directly. </p></li>
<li><p>Do you really need to protect your relational design? Is it really that interesting? Have you invented something worth hiding? I really don't think so. And I apologize in advance if you have.</p></li>
</ul>
<p><hr /></p>
<p>EDIT: Additional comment:</p>
<p>I don't care about most database internals for the products I use. That's another reason I think most of them don't take any action to protect them. Most of them are not that interesting.</p>
<p>On one side, I strongly believe that users should not need to know or to care about the internals of the database. But at the same level, as a developer, I don't think it is worth trying to protect them. Hiding them from the user, yes. Protect them against direct access, in most cases, no. And not because I think it is wrong to protect your schema. It is because I think it is a very hard thing to do, and it is not worth your time as a developer.</p>
<p>But at the end, as with any security related topic, the only right answer is about what are the <strong>risks</strong> involved vs the <strong>costs</strong> of implementing the security measure.</p>
<p>Current database engines, embedded or server-style, are not designed to easily hide the schema of the database, and therefore, the development cost of doing it is much greater than the risk involved, for most people.</p>
<p>But your case might be different.</p>
http://stackoverflow.com/questions/653304/how-to-set-a-password-to-protect-files-and-directories/653334#6533341Answer by Sergio Acosta for How to set a password to protect files and directoriesSergio Acosta2009-03-17T07:48:35Z2009-03-17T07:48:35Z<p>If you need to protect files and folders you have several options:</p>
<ol>
<li><p>Control the operating system level permissions with ACLs (Access Control Lists) so only the authorized users on the computer have access to those objects. This will not create a new password for the file, but will just deny access to every user that is not authorized. The downside is that this needs to be done on a machine (or Active Directory domain) level. So if you copy the file to another machine, the protection is no longer active.</p></li>
<li><p>You can use a compression algorithm, like zip or rar, to compress the protected files and assign a password that is required in order to uncompress them. This works even if you copy the zip file to other machines. You can package the files with no compression factor if you only need to protect the files and don't care about reducing file size. You can find online several open source zip libraries for .NET. One of them is <a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/" rel="nofollow">http://www.icsharpcode.net/OpenSource/SharpZipLib/</a></p></li>
<li><p>Or you could perform file encryption with the classes in <code>System.Security.Cryptography</code>, using a symmetric algorithm where the cypher key would be your password, or asymmetric encryption with certificates, where the password would be the private key's password of the certificate. This generally provides stronger security than zip encryption, but you have to write a little more code and manage the user's certificates.</p></li>
</ol>
<p>What are your specific security and authorization requirements?</p>
http://stackoverflow.com/questions/637447/different-layouting-modes-for-windowsforms/637506#6375062Answer by Sergio Acosta for Different layouting modes for WindowsFormsSergio Acosta2009-03-12T05:39:59Z2009-03-12T05:39:59Z<p>I have no idea of what it takes to make a touchscreen 'mode' of a control in Winforms, but I suppose that it basically consists in scaling control sizes and text.</p>
<p>If that is true, then the layout part could be easily accomplished using the default Winforms layout strategies and layout controls, like the <code>System.Windows.Forsm.TableLayoutPanel</code>.</p>
<p>Just configure the number of rows and columns of the table layout panel, set width and height maximum and minimum size restrictions on the dimensions that make sense to your form, Dock and Anchor styles for the controls that need it, and set new sizes for the 'touchscreen mode' of your controls. The Winforms layout infrastructure will make the layout scale nicely according to the specified restrictions.</p>
<p>I highly recommend reading the <strong>Windows Forms Layout FAQ</strong> (it is more like a tutorial/guide) for more information of what can be accomplished:</p>
<p>(link to a Microsoft Word document)</p>
<p><a href="http://www.windowsforms.com/Samples/Go%20To%20Market/Layout/layoutGTM.doc" rel="nofollow">http://www.windowsforms.com/Samples/Go%20To%20Market/Layout/layoutGTM.doc</a></p>
http://stackoverflow.com/questions/637022/do-nsstring-objects-need-to-be-alloc-and-init/637029#6370298Answer by Sergio Acosta for Do NSString objects need to be alloc and init?Sergio Acosta2009-03-12T01:10:10Z2009-03-12T01:38:15Z<p><strong>Declaring</strong> a variable does not require releasing any memory.</p>
<p><strong>Instantiating</strong> objects does. And you only instantiate a new object if you call <em>alloc</em> or <em>copy</em></p>
<p>In your example, you are setting your reference to the already existing object that the compiler creates from the hard-coded string. And you don't have to manage its memory because you didn't instantiate it.</p>
<p>I don't know if I'm explaining it clearly enough.</p>
<p><strong>EDIT:</strong></p>
<p>It looks like there is already a question that answers this:</p>
<p><a href="http://stackoverflow.com/questions/329977/cocoa-memory-management-with-nsstring">http://stackoverflow.com/questions/329977/cocoa-memory-management-with-nsstring</a></p>
http://stackoverflow.com/questions/637030/lowercase-constraint-sql-server/637037#6370371Answer by Sergio Acosta for Lowercase constraint - Sql ServerSergio Acosta2009-03-12T01:15:04Z2009-03-12T01:31:35Z<p>The common way of doing this is using a trigger that fires on insert and update.</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc164047.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc164047.aspx</a></p>
<p>The code for the trigger should be something like this:</p>
<pre><code>CREATE TRIGGER updateDisplayName_trigger ON Users
FOR INSERT, UPDATE
AS
IF UPDATE(UserName)
UPDATE Users SET DisplayUserName = Lower(UserName)
</code></pre>
<p>Just adjust it to your specific business rule, because I think I didn't got it right =)</p>
http://stackoverflow.com/questions/633792/how-to-check-if-potential-employer-uses-rich-programming-environment/633825#6338256Answer by Sergio Acosta for How to check if potential employer uses rich programming environmentSergio Acosta2009-03-11T09:15:20Z2009-03-11T09:15:20Z<p>Other thing you might try is asking for a small tour through the development facilities and see if you can chat for a few minutes with some of the developers so you can ask more about the development tools and processes.</p>
<p>Any company that is afraid of letting you speak with the development team might not be worth working for. </p>
<p>On the other side, if the company is really a good place to work they should be proud of what the rest of the team might tell you.</p>
http://stackoverflow.com/questions/632404/most-useful-animation-in-web-or-desktop-application/632496#6324962Answer by Sergio Acosta for Most useful animation in web or desktop applicationSergio Acosta2009-03-10T22:16:19Z2009-03-10T22:33:18Z<p>One example I can think of is the animation used by operating systems when you minimize a window. </p>
<p>Both Microsoft Windows and Apple OS X animate the window going down to the taskbar (or the Dock in OS X) to show the user where the window went. Otherwise novice users that hit minimize by accident might have trouble getting the window back.</p>
<p>I don't use linux, but I'm pretty sure it does the same. I'm not being discriminative =)</p>
http://stackoverflow.com/questions/629143/how-to-write-to-the-main-exes-config-usersettings-section1How to write to the main exe's .config userSettings section?Sergio Acosta2009-03-10T06:46:22Z2009-03-10T20:37:06Z
<p>Is there any supported API in .NET 2.0 for <strong>writing</strong> to the <strong>userSettings</strong> section of the <strong>main exe's .config file</strong>?</p>
<p>The scenario is:</p>
<p>Winforms 2.0 application.</p>
<p>I have a setting (a database connection string, if you need to know) that has user level scope. This means that each user has a <em>user</em>.config file created by .net when the user saves the value of the setting.</p>
<p>For new users that run the application for the first time, the main exe's .config file of the application contains a default value in the user settings section. This section is created by visual studio when the setting is created in the Settings tab of the project properties.</p>
<p>Now, I want to allow any Administrator user in the computer to be able to change the default value for new users. Only Administrators will have this option, because regular users don't have permission to write to the main exe's .config file anyway.</p>
<p>I have found how to write user settings to the user's .config file, and how to write to the appSettings section of the main .config file. But my googling has failed when trying to find out how to write to the userSettings section of the main .config</p>
<p>Is my only chance failing back to System.Xml and do it manually loading the .config in an XmlDocument?</p>
http://stackoverflow.com/questions/629143/how-to-write-to-the-main-exes-config-usersettings-section/632161#6321611Answer by Sergio Acosta for How to write to the main exe's .config userSettings section?Sergio Acosta2009-03-10T20:37:06Z2009-03-10T20:37:06Z<p>After some research I came up with this solution. It is a bit low level, but still goes through the .NET configuration API without having to manually parse the .config file.</p>
<pre><code>static void SaveUserSettingDefault(string clientSectionName, string settingName, object settingValue)
{
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
// find section group
ConfigurationSectionGroup group = config.SectionGroups[@"userSettings"];
if (group == null) return;
// find client section
ClientSettingsSection clientSection = group.Sections[clientSectionName] as ClientSettingsSection;
if (clientSection == null) return;
// find setting element
SettingElement settingElement = null;
foreach (SettingElement s in clientSection.Settings)
{
if (s.Name == settingName)
{
settingElement = s;
break;
}
}
if (settingElement == null) return;
// remove the current value
clientSection.Settings.Remove(settingElement);
// change the value
settingElement.Value.ValueXml.InnerText = settingValue.ToString();
// add the setting
clientSection.Settings.Add(settingElement);
// save changes
config.Save(ConfigurationSaveMode.Full);
}
</code></pre>
<p>Given a .config with the following content:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="MyAssembly.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<userSettings>
<MyAssembly.Properties.Settings>
<setting name="SqlConnectionString" serializeAs="String">
<value>Server=(local);Database=myDatabase;Integrated Security=true;</value>
</setting>
</MyAssembly.Properties.Settings>
</userSettings>
</configuration>
</code></pre>
<p>You would use it like this:</p>
<pre><code>if (RunningAsAdmin) // save value in main exe's config file
{
SaveUserSettingDefault(@"MyAssembly.Properties.Settings", @"SQLConnectionString", theNewConnectionString);
}
else // save setting in user's config file
{
Settings.Default. SQLConnectionString = theNewConnectionString;
Settings.Default.Save();
}
</code></pre>
http://stackoverflow.com/questions/627742/what-is-the-fastest-way-to-compare-two-byte-arrays/627933#6279330Answer by Sergio Acosta for What is the fastest way to compare two byte arrays?Sergio Acosta2009-03-09T20:38:46Z2009-03-09T20:38:46Z<p>Not strictly related to the comparison algorithm:</p>
<p>Are you sure your bottleneck is not related to the memory available and the time used to load the byte arrays? Loading two 2GB byte arrays just to compare them could bring most machines to their knees. If the program design allows, why don't you try using streams to read smaller chunks instead?</p>
http://stackoverflow.com/questions/627680/how-can-i-get-the-path-of-a-compiled-resource/627828#6278280Answer by Sergio Acosta for How can I get the path of a compiled resource?Sergio Acosta2009-03-09T20:12:20Z2009-03-09T20:22:49Z<p>This is not exactly what you asked, but could be useful when using one of the suggestions other people have posted:</p>
<p>Be aware that if your application is a Windows forms app, and it ends up installed in C:\Program Files... you might not have write access to your application folder if the user that starts the application is not running as administrator.</p>
<p>That could be a problem if you want to 'extract' the embedded resource and save it to disk in the same folder as your app.</p>
<p>I would recommend either:</p>
<ol>
<li><p>Not embedding the .exe as a resource. Just set its Copy to Output Directory to Always. Then deploy it together with your main .exe</p></li>
<li><p>Embedding it as a resource but when saving it to disk, use either the Windows temp folder (if it is just a one time thing) or the User's data folder (C:\Documents and Settings\[user]\Application Data)</p></li>
</ol>
<p>You can get the proper folder for the current OS like this:</p>
<pre><code>// for the Windows temp folder
Path.GetTempPath()
// for the user's application data folder
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData))
</code></pre>
http://stackoverflow.com/questions/29761/good-git-repository-viewer-for-mac6Good Git repository viewer for MacSergio Acosta2008-08-27T08:54:50Z2009-03-05T17:45:29Z
<p>Can anyone recommend a good repository viewer for Git, similar to gitk, that works on Mac OS X Leopard? (I'm not saying gitk doesn't work)</p>
<p>Of course I would like a native Mac application, but as I haven't found any, what are the best options to gitk?</p>
<p>I know about gitview, but I'm looking forward to evaluate as many alternatives as possible.</p>
<p><a href="http://sourceforge.net/projects/gitview" rel="nofollow">http://sourceforge.net/projects/gitview</a></p>
http://stackoverflow.com/questions/1905551/how-can-i-make-simpledateformat-parse-fail-when-month-is-greater-than-12/1905558#1905558Comment by Sergio Acosta on How can I make SimpleDateFormat.parse() fail when month is greater than 12?Sergio Acosta2009-12-15T06:33:18Z2009-12-15T06:33:18ZThanks a lot. That did the trick. Amazing how asking questions here gives result faster than searching on google (or I suck at searching :).http://stackoverflow.com/questions/126421/is-oracle-coherence-stable/1611708#1611708Comment by Sergio Acosta on Is Oracle Coherence stable?Sergio Acosta2009-11-19T06:58:52Z2009-11-19T06:58:52ZBut there will always be people like me that come here looking for an answer even a year after. Thanks for your answer. By the way: what are the major quirks you remember?http://stackoverflow.com/questions/177228/whats-the-best-way-to-find-out-the-installed-version-of-the-iphone-sdk/1627285#1627285Comment by Sergio Acosta on What's the best way to find out the installed version of the iPhone SDK?Sergio Acosta2009-10-27T23:34:04Z2009-10-27T23:34:04ZThanks! I marked this as accepted considering Snow Leopard will be the most common platform for Mac developers in the future.http://stackoverflow.com/questions/210835/what-is-referential-transparency/210924#210924Comment by Sergio Acosta on What is referential transparency?Sergio Acosta2009-09-23T03:28:32Z2009-09-23T03:28:32ZUpvoted for conciseness.http://stackoverflow.com/questions/123817/which-jms-implementation-do-you-use/123865#123865Comment by Sergio Acosta on Which JMS implementation do you use?Sergio Acosta2009-08-11T16:31:35Z2009-08-11T16:31:35Z@Mani: I don't have the details about the exact configuration or architecture the queuing system that was put in place because I wasn't part of the middleware dev team, but yes, we ended up reaching those levels of throughput with Sonic MQ. It took several iterations trying different hardware and queue configuration schemes though.http://stackoverflow.com/questions/260945/create-nsstring-by-repeating-another-string-a-given-number-of-times/1181088#1181088Comment by Sergio Acosta on Create NSString by repeating another string a given number of timesSergio Acosta2009-07-27T08:20:00Z2009-07-27T08:20:00ZGreat idea, specially for performance hungry scenarios. Thanks!http://stackoverflow.com/questions/842999/what-does-h-and-m-stand-for/843002#843002Comment by Sergio Acosta on What does .h and .m stand for?Sergio Acosta2009-05-09T09:13:10Z2009-05-09T09:13:10ZStackOverflow is amazing. Honestly, I was about to answer your question and was googling for sources to cite. But in the top search results I found the link to the already answered question. =)http://stackoverflow.com/questions/69871/vim-vi-survival-guide/283612#283612Comment by Sergio Acosta on Vim / vi Survival GuideSergio Acosta2009-05-08T01:44:22Z2009-05-08T01:44:22Zctrl-[ is even harder to hit than Esc if you are not using a US standard keyboard layout (my case). But the idea is that you are not restricted to Esc, as many non Vim users think. Thanks for the comment.http://stackoverflow.com/questions/774426/convert-string-to-integer-not-atoiComment by Sergio Acosta on Convert string to integer (not atoi!)Sergio Acosta2009-04-21T20:40:52Z2009-04-21T20:40:52Z"odd bases, like 10". Very geeky. =)http://stackoverflow.com/questions/214988/whats-the-best-strategy-for-team-room-music/220627#220627Comment by Sergio Acosta on What's the best strategy for team room music?Sergio Acosta2009-04-09T00:22:44Z2009-04-09T00:22:44ZLOL - I pictured a room full of programmers focused on their code but banging their heads furiously at the same rhythm.http://stackoverflow.com/questions/717725/understanding-recursionComment by Sergio Acosta on Understanding recursionSergio Acosta2009-04-04T21:19:34Z2009-04-04T21:19:34ZI'll give it a shot: "To understand recursion you need to understand recursion, until you understand it." =)http://stackoverflow.com/questions/717725/understanding-recursion/717816#717816Comment by Sergio Acosta on Understanding recursionSergio Acosta2009-04-04T21:15:01Z2009-04-04T21:15:01ZI agree with this answer. The trick is to identify and solve the base (simplest) case. And then express the problem in terms of that simplest case (that you have already solved).http://stackoverflow.com/questions/717725/understanding-recursionComment by Sergio Acosta on Understanding recursionSergio Acosta2009-04-04T21:12:41Z2009-04-04T21:12:41Z@Paul: I get the joke, but I've always thought it is technically wrong. Where's the base condition that causes the algorithm to end? That is a fundamental requisite for recursion. =)http://stackoverflow.com/questions/713043/your-favorite-programming-book-available-for-free-downloadComment by Sergio Acosta on Your Favorite Programming Book available for FREE downloadSergio Acosta2009-04-03T09:45:57Z2009-04-03T09:45:57ZDo 'beta' books count? (those that will eventually only commercially available)?http://stackoverflow.com/questions/689098/whats-the-most-painful-product-to-develop-against/707126#707126Comment by Sergio Acosta on What's the most painful product to develop against?Sergio Acosta2009-04-01T20:09:58Z2009-04-01T20:09:58ZVery good answer, I agree with your point. Thanks!