User nsayer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:40:42Z http://stackoverflow.com/feeds/user/13757 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/783523/encrypted-volume-automounting-in-mac-os-x 0 Encrypted volume automounting in Mac OS X nsayer 2009-04-23T21:06:01Z 2009-12-03T18:03:52Z <p>I've had a need to create an encrypted volume on my mac for the company source code. The requirements are not terribly stringent: If someone can log into the machine as me, they win, but otherwise, they should lose. With that set of requirements, you can make it so that the disk is automatically mounted at login.</p> http://stackoverflow.com/questions/140613/how-to-address-openid-providers-downtime/140626#140626 18 Answer by nsayer for How to address OpenID providers downtime? nsayer 2008-09-26T16:44:42Z 2009-07-23T16:04:04Z <p>The fix is for your OpenID site to accept multiple OpenIDs per user account. Something that the spec recommends.</p> http://stackoverflow.com/questions/890254/sort-arraylist/890470#890470 9 Answer by nsayer for Sort ArrayList nsayer 2009-05-20T21:57:07Z 2009-05-20T21:57:07Z <p>You could write a custom comparator:</p> <pre><code>Collections.sort(list, new Comparator&lt;String&gt;() { public int compare(String a, String b) { return Integer.signum(fixString(a) - fixString(b)); } private int fixString(string in) { return Integer.parseInt(in.substring(0, in.indexOf('_'))); } }); </code></pre> http://stackoverflow.com/questions/870500/do-you-expect-javascript-to-become-widely-used-outside-the-browser/870525#870525 0 Answer by nsayer for Do you expect Javascript to become widely used outside the browser? nsayer 2009-05-15T19:48:34Z 2009-05-15T19:48:34Z <p>Two jobs ago, I was tasked with writing an HTTP spider in javascript. It's a long story.</p> <p>You can do a lot in javascript. Similarly, with php available outside the web server via the php interpreter, there's probably a lot you could do in php outside the server.</p> <p>But will either of those things happen? My guess is "no," but I don't have a crystal ball that's any clearer than anyone else.</p> http://stackoverflow.com/questions/865423/optimized-implementations-of-java-util-map-and-java-util-set/865448#865448 2 Answer by nsayer for Optimized implementations of java.util.Map and java.util.Set? nsayer 2009-05-14T20:09:39Z 2009-05-14T20:09:39Z <p>You can extend AbstractMap and/or AbstractSet as a starting point. I did this not too long ago to implement a binary trie based map (the key was an integer, and each "level" on the tree was a bit position. left child was 0 and right child was 1). This worked out well for us because the key was EUI-64 identifiers, and for us most of the time the top 5 bytes were going to be the same.</p> <p>To implement an AbstractMap, you need to at the very least implement the entrySet() method, to return a set of Map.Entry, each of which is a key/value pair.</p> <p>To implement a set, you extend AbstractSet and supply implementations of size() and iterator().</p> <p>That's at the very least, however. You will want to also implement get and put, since the default map is unmodifiable, and the default implementation of get iterates through the entrySet looking for a match.</p> http://stackoverflow.com/questions/865381/how-can-i-run-php-script-in-certain-interval-e-g-once-a-day/865405#865405 0 Answer by nsayer for How can I run PHP script in certain interval (e.g. once a day)? nsayer 2009-05-14T20:01:13Z 2009-05-14T20:01:13Z <p>What's wrong with cron?</p> <p>You have a couple choices with cron - your php can be invoked by the command line PHP interpreter, or you could use wget or fetch or the equivalent to invoke your PHP on the server.</p> <p>In general, PHP run from within the context of the web server has a time limit on how long it can execute, so in general you can't set up "background" PHP threads to do stuff "later".</p> http://stackoverflow.com/questions/842203/do-we-really-need-null/842214#842214 7 Answer by nsayer for Do we really need NULL? nsayer 2009-05-08T23:13:22Z 2009-05-08T23:13:22Z <p>NULL is a little like God. If it didn't exist, we would wind up having to create one. Something has to represent the value of a reference that is unassigned (whether that be because it was never assigned or it was cleared at some point). The only alternative is to use an object that, effectively, substitutes for NULL. The problem with that is that if you did all that to avoid the NullPointerException, now you're going to simply replace it with UnexpectedObject exception or ClassCastException or what not.</p> http://stackoverflow.com/questions/812415/why-is-springs-applicationcontext-getbean-considered-bad/812573#812573 0 Answer by nsayer for Why is Spring's ApplicationContext.getBean considered bad? nsayer 2009-05-01T18:24:38Z 2009-05-01T18:24:38Z <p>I've only found two situations where getBean() was required:</p> <p>Others have mentioned using getBean() in main() to fetch the "main" bean for a standalone program.</p> <p>Another use I have made of getBean() are in situations where an interactive user configuration determines the bean makeup for a particular situation. So that, for instance, part of the boot system loops through a database table using getBean() with a scope='prototype' bean definition and then setting additional properties. Presumably, there is a UI that adjusts the database table that would be friendlier than attempting to (re)write the application context XML.</p> http://stackoverflow.com/questions/804130/how-long-does-ssl-connection-between-a-client-and-a-server-persist/811865#811865 2 Answer by nsayer for How long does SSL connection between a client and a server persist? nsayer 2009-05-01T15:25:54Z 2009-05-01T15:25:54Z <p>post-edit answers:</p> <p>What I think you may be missing is that SSL is linked intrinsically to TCP. You cannot have an SSL "connection" to the server that doesn't ride on top of a TCP connection. You break one, you break the other.</p> <p>Most SSL implementations include "shortcut" negotiation where subsequent new connections can leverage the public key encryption that has already taken place and instead directly use the most recently negotiated symmetric key. The details of this, however, are hidden within the SSL implementation. From the point of view of the user and/or client software, the fiction is maintained that the entire negotiation took place just like it did on the first connection.</p> <ol> <li><p>If the SSL connection is still established, then it follows that the symmetric key information is still maintained on both ends.</p></li> <li><p>Yes.</p></li> <li><p>Yes, although it would be improbable for the client to keep a connection to a server once it has navigated away to some other site.</p></li> </ol> http://stackoverflow.com/questions/804130/how-long-does-ssl-connection-between-a-client-and-a-server-persist/804208#804208 2 Answer by nsayer for How long does SSL connection between a client and a server persist? nsayer 2009-04-29T20:51:45Z 2009-04-29T20:51:45Z <p>A1. An SSL connection persists until either the client or server closes it. When that happens depends on the protocol being used. For HTTP, most modern clients will make a few parallel connections to the server to fetch the page and its resources, and reuse those connections until the page is loaded.</p> <p>A2A. The client must authenticate itself on each request if the authentication uses HTTP auth. If the client is using SSL certificate authorization, then this is obviously maintained on a per-connection basis so that subsequent requests on the same connection retain the same credentials.</p> <p>A2B. The server would know this because presumably the request would come in on that already established SSL connection.</p> http://stackoverflow.com/questions/803899/how-do-smtp-clients-determine-whether-to-use-explicit-or-implicit-ssl/803909#803909 -1 Answer by nsayer for How do SMTP clients determine whether to use Explicit or Implicit SSL nsayer 2009-04-29T19:32:56Z 2009-04-29T20:45:05Z <p>I believe most clients that support SMTP over SSL start out with an unencrypted connection and issue an EHLO rather than HELO. The former has extra flag responses, one of which indicates whether the server supports the STARTTLS command or not. If they do, then the client can use STARTTLS, and then use SSL from that point on.</p> <p>Example:</p> <pre><code>% telnet quack.kfu.com 25 220 quack.kfu.com ESMTP ready NO UCE EHLO client 250-quack.kfu.com Hello client [xx.xx.xx.xx] (may be forged), pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 25000000 250-ETRN 250-AUTH PLAIN LOGIN 250-STARTTLS 250-DELIVERBY 250 HELP starttls 220 2.0.0 Ready to start TLS </code></pre> http://stackoverflow.com/questions/796277/spring-calls-object-constructor-before-setting-properties/800344#800344 2 Answer by nsayer for Spring Calls Object Constructor Before Setting Properties nsayer 2009-04-29T00:01:09Z 2009-04-29T00:01:09Z <p>You might consider replacing the logic in the constructor with an afterPropertiesSet method. See the <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/InitializingBean.html" rel="nofollow">InitializingBean interface</a>.</p> http://stackoverflow.com/questions/793042/step-by-step-sample-jms-in-spring-framework/795767#795767 1 Answer by nsayer for step by step Sample JMS in Spring Framework nsayer 2009-04-28T00:14:28Z 2009-04-28T00:14:28Z <p>There are some caveats with Spring JMS.</p> <ol> <li>You absolutely must not use Spring JMS directly on a JMS connection factory. This is because Spring - particularly JmsTemplate - opens a connection, uses it for one message, then closes it. This is the correct pattern to use when the connection factory is, in fact, a connection pool. But if it is really just a connection factory, you're going to slaughter the server under load. This is normally only an issue when you're running a standalone application rather than inside of a J2EE container, which typically has resource adapters or other things that do pooling for you. Spring does supply a SingleConnectionFactory bean that will reuse a connection, but this is not the best solution when you're using a clustered server and want to load balance your connections and work.</li> <li>The Spring APIs are all designed around processing single messages at a time. In some cases, where you may be able to deal with a batch of messages, it may be preferable to use Spring to provide you with the connection factories and such, but roll your own code to actually do the message I/O. That way, you can, for example, set up a transacted session, process 100 messages, then commit the acknowledgment as a batch. That should reduce the workload on the server, assuming you can do so safely.</li> </ol> http://stackoverflow.com/questions/762434/how-do-you-use-telnet-to-check-a-connection-to-oracle/762441#762441 2 Answer by nsayer for How do you use telnet to check a connection to Oracle? nsayer 2009-04-17T22:28:48Z 2009-04-17T22:28:48Z <p>Your attempt to telnet to dbhost 1521 getting 'unable to connect' with a timeout suggests that either your hostname resolution for 'dbhost' is giving you the wrong answer, or that host is offline, down or you have network problems.</p> <p>If oracle was working, you'd get a connection. You wouldn't really be able to <em>do</em> anything with it, but it would confirm that oracle was up and listening.</p> http://stackoverflow.com/questions/762400/how-to-display-all-elements-in-an-arraylist/762425#762425 0 Answer by nsayer for How to display all elements in an arraylist? nsayer 2009-04-17T22:20:14Z 2009-04-17T22:20:14Z <p>It's not at all clear what you're up to. Your function getAll() should return a List&lt;Car&gt;, not a Car. Otherwise, why call it getAll?</p> <p>If you have</p> <pre><code>Car[] arrayOfCars </code></pre> <p>and want a List, you can simply do this:</p> <pre><code>List&lt;Car&gt; listOfCars = Arrays.asList(arrayOfCars); </code></pre> <p>Arrays is documented <a href="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html" rel="nofollow">Here</a>.</p> http://stackoverflow.com/questions/644887/whats-the-best-code-generator-you-have-used/644969#644969 0 Answer by nsayer for What's the best code generator you have used nsayer 2009-03-13T23:28:46Z 2009-03-13T23:28:46Z <p>I agree with Jonathan Leffler, who said that different code generators are used for different purposes, but I'll throw a shout out for one that has helped me quite a lot recently: JAXB's XJC, which can turn an XML Schema into a series of java classes and a matching marshalling/unmarshalling engine. It's a Good Thing.</p> http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273593#273593 6 Answer by nsayer for Are memory leaks ever ok? nsayer 2008-11-07T20:44:41Z 2009-03-06T17:08:30Z <p>If you allocate a bunch of heap at the beginning of your program, and you don't free it when you exit, that is not a memory leak per se. A memory leak is when your program loops over a section of code, and that code allocates heap and then "loses track" of it without freeing it.</p> <p>In fact, there is no need to make calls to free() or delete right before you exit. When the process exits, all of its memory is reclaimed by the OS (this is certainly the case with POSIX. On other OSes – particularly embedded ones – YMMV).</p> <p>The only caution I'd have with not freeing the memory at exit time is that if you ever refactor your program so that it, for example, becomes a service that waits for input, does whatever your program does, then loops around to wait for another service call, then what you've coded <em>can</em> turn into a memory leak.</p> http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection/521962#521962 0 Answer by nsayer for What's the best name for a non-mutating "add" method on an immutable collection? nsayer 2009-02-06T20:05:53Z 2009-02-06T20:05:53Z <p>How about "Augment"?</p> <p>It's a different word from Add, but it's a close synonym.</p> http://stackoverflow.com/questions/478570/recursion-or-iteration/481796#481796 0 Answer by nsayer for Recursion or iteration? nsayer 2009-01-26T23:17:55Z 2009-01-26T23:17:55Z <p>I'll just throw out there that in XSLT variables are read-only once created. Because of this, things that would be done with indexed for loops, like</p> <pre><code>for(int i=0; i &lt; 3; i++) doIt(i); </code></pre> <p>are actually done with recursion. Something equivalent to</p> <pre><code>public rediculous(i) { doIt(i); if (i &lt; 3) rediculous(i + 1); } </code></pre> <p>I would actually provide an XSLT example here, but all that typing makes Baby Jesus cry.</p> http://stackoverflow.com/questions/470198/java-generics-and-array-initialization/470777#470777 -1 Answer by nsayer for Java generics and array initialization nsayer 2009-01-22T20:59:55Z 2009-01-22T20:59:55Z <p>In this case, I would avoid using arrays for just this reason. The declaration of "lists" in your original code could be</p> <pre><code>List&lt;List&lt;Integer&gt;&gt; lists = new ArrayList&lt;List&lt;Integer&gt;&gt;(4); for(int i = 0; i &lt; 4; i++) lists.add(null); // or add an empty ArrayList&lt;Integer&gt; </code></pre> <p>(you should use the interface rather than the implementation in variable declarations)</p> <p>Instead of array [] syntax, you would use get() or set(). Other than that, it's equivalent.</p> http://stackoverflow.com/questions/451475/how-to-print-out-dash-or-dot-using-fprintf-printf/452189#452189 0 Answer by nsayer for How to print out dash or dot using fprintf/printf? nsayer 2009-01-16T21:54:21Z 2009-01-16T21:54:21Z <p>I think there's a better way.</p> <pre><code>#include &lt;string.h&gt; #include &lt;stdio.h&gt; #define MIN(A,B) ((A)&lt;(B)?(A):(B)) char *dashpad(char *buf, int len, const char *instr) { memset(buf, '-', len); buf[len] = 0; int inlen = strlen(instr); memcpy(buf, instr, MIN(len, inlen)); return buf; } main() { char buf[40]; printf("%s\n", dashpad(buf, 40, "Hello world, dash padded ")); } </code></pre> http://stackoverflow.com/questions/437373/spring-dependency-injection-or-aspect-programming/437446#437446 0 Answer by nsayer for Spring dependency injection or aspect programming nsayer 2009-01-12T23:24:12Z 2009-01-12T23:24:12Z <p>brd6644 is right, but one thing I've discovered is a problem with Spring AOP is that the advice/advisors cannot be applied to the properties as you are creating the object.</p> <p>That is, say you have something like</p> <pre><code>&lt;bean class="...ProxyBeanFactory"&gt; &lt;property name="target"&gt; &lt;bean class="myBean"&gt; &lt;property name="username" value="helloKitty"/&gt; &lt;property name="password" value="lkajdahdkahjdkhja"/&gt; &lt;/bean&gt; &lt;/property&gt; &lt;/bean&gt; </code></pre> <p>It is not possible to write an advisor to decrypt the password for myBean, since the property value is being supplied before the proxy is created. You can't apply the password property to the ProxyBeanFactory class, of course. What you really want to do is have setPassword() called on the object returned from the ProxyBeanFactory with the "lkaj..." argument, but that's not possible, it would seem.</p> http://stackoverflow.com/questions/422236/spring-aop-applying-properties-through-the-aspect 0 Spring AOP: applying properties through the aspect nsayer 2009-01-07T21:46:41Z 2009-01-08T01:15:41Z <p>The intent here is to deal with obfuscated passwords for resources.</p> <p>We have an Advisor that intercepts calls to setPassword and decrypts the argument.</p> <p>We've set up a template that looks somewhat like this:</p> <pre><code>&lt;bean id="pwAdvisor" class="org.springframework.aop.support.NameMatchMethodPointcutAdvisor"&gt; &lt;property name="advice"&gt;&lt;bean class="our.advice.bean.class"/&gt;&lt;/property&gt; &lt;property name="mappedName" value="setPassword"/&gt; &lt;/bean&gt; &lt;bean id="passwordHandlerTemplate" class="org.springframework.aop.framework.ProxyFactoryBean" abstract="true"&gt; &lt;property name="interceptorNames"&gt;&lt;list&gt;&lt;value&gt;pwAdvisor&lt;/value&gt;&lt;/list&gt;&lt;/property&gt; &lt;/bean&gt; </code></pre> <p>I'm unclear on the exact syntax to use it. The most obvious way is:</p> <pre><code>&lt;bean id="myPasswordProtectedThing" parent="passwordHandlerTemplate"&gt; &lt;property name="target"&gt; &lt;bean class="the.target.class.name"&gt; &lt;property name="password" value="encrypted garbage"/&gt; &lt;/bean&gt; &lt;/property&gt; &lt;/bean&gt; </code></pre> <p>But that doesn't work right, since the password property is applied to the inner bean, which means that the advisor won't wind up doing its work.</p> <p>Well, what about this:</p> <pre><code>&lt;bean id="myPasswordProtectedThing" parent="passwordHandlerTemplate"&gt; &lt;property name="target"&gt;&lt;bean class="the.target.class.name"/&gt;&lt;/property&gt; &lt;property name="password" value="encrypted garbage"/&gt; &lt;/bean&gt; </code></pre> <p>Nope. Spring complains that the ProxyFactoryBean doesn't have a password property. And, of course, it doesn't. The thing that has the password property is the thing the factory bean <em>creates</em>.</p> <p>Bueller?</p> http://stackoverflow.com/questions/315209/java-printing-directly-to-a-postscript-network-printer/319278#319278 0 Answer by nsayer for Java printing directly to a Postscript network printer nsayer 2008-11-25T23:39:21Z 2008-11-25T23:39:21Z <p>Check out java.awt.print. It is the generic printing API in java.</p> <p>Unfortunately, it's not oriented around dealing with postscript content you already have. It's designed to let you "draw" on a piece of paper with the java 2d graphics APIs.</p> http://stackoverflow.com/questions/318942/what-does-permgen-actually-stand-for/318950#318950 3 Answer by nsayer for What does PermGen actually stand for? nsayer 2008-11-25T21:32:58Z 2008-11-25T21:32:58Z <p>Permanent Generation.</p> <p>The garbage collector is known as a Generational garbage collector. Long lived objects wind up in the Permanent Generation.</p> http://stackoverflow.com/questions/318303/set-a-variable-to-the-smaller-of-two-other-variables-in-xslt/318318#318318 2 Answer by nsayer for Set a variable to the smaller of two other variables in XSLT. nsayer 2008-11-25T18:05:01Z 2008-11-25T18:23:28Z <p>Don't close the xsl:variable node in the first line. That is, take the / out of it, then put an <code>&lt;/xsl:variable&gt;</code> after <code>&lt;/xsl:choose&gt;</code>. Next, change the <code>&lt;xsl:variable&gt;</code> nodes inside the choose to <code>&lt;xsl:value-of&gt;</code> nodes.</p> <p>That is, you want to set the value of the variable with the choose. There are two ways to set the value of a variable. One is the select attribute, the other is the inner text of the node.</p> <pre><code>&lt;xsl:variable name="nextQuestionPos"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$nextSubPartPos &amp;lt; $nextQuestionStemPos"&gt; &lt;xsl:value-of select="$nextSubPartPos"/&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;xsl:value-of select="$nextSubPartPos"/&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:variable&gt; </code></pre> http://stackoverflow.com/questions/297299/get-the-enumt-value-description/297333#297333 -1 Answer by nsayer for Get the Enum<T> value Description nsayer 2008-11-17T23:23:25Z 2008-11-17T23:23:25Z <p>Enum doesn't have a Description() method. The best you could do is have your enum implement an interface that has the Description() method. If you do that, then you can have</p> <pre><code>public static BindingList&lt;KeyValuePair&lt;T extends _interface_, String&gt;&gt; getBindingList() </code></pre> <p>and then inside of that you can refer to</p> <pre><code>T foo = ...? foo.Description(...); </code></pre> http://stackoverflow.com/questions/273899/why-is-java-on-a-vista-box-reporting-it-is-on-xp/273977#273977 0 Answer by nsayer for Why is Java on a Vista box reporting it is on XP? nsayer 2008-11-07T23:21:42Z 2008-11-07T23:21:42Z <p>The actual windows version number of Windows 2000 was 5.0. Windows XP was 5.1. Vista is supposedly 6.0, so your test program is functioning correctly. It sounds to me like Java is definitely getting this wrong.</p> <p>You might have to rely on a JNI to get the right answer. I sort of assume that you've already asked yourself why you might need to vary the behavior of your program based on whether you're using XP or Vista.</p> http://stackoverflow.com/questions/254260/should-javac-find-methods-outside-of-an-anonymous-class-of-the-same-name/254328#254328 1 Answer by nsayer for Should javac find methods outside of an anonymous class of the same name? nsayer 2008-10-31T17:37:20Z 2008-10-31T18:44:15Z <p>Try</p> <pre><code>NotApplicable.this.run(42); </code></pre> <p>instead.</p> http://stackoverflow.com/questions/244493/homemade-vs-java-serialization/245095#245095 0 Answer by nsayer for Homemade vs. Java Serialization nsayer 2008-10-28T22:20:36Z 2008-10-28T22:20:36Z <p>Have you looked into <a href="https://jaxb.dev.java.net/" rel="nofollow">JAXB</a>? It is a mechanism by which you can define a suite of java objects that are created from an XML Schema. It allows you to marshal from an object hierarchy to XML or unmarshal the XML back into an object hierarchy.</p> http://stackoverflow.com/questions/1095034/is-it-in-an-anti-pattern-to-always-use-get-and-set-methods-to-access-a-classs-ow/1095074#1095074 Comment by nsayer on Is it in an anti-pattern to always use get and set methods to access a class's own member fields? nsayer 2009-07-07T22:03:08Z 2009-07-07T22:03:08Z But the reason for consistently using the getter and setter is that while the getter/setter may do nothing but get and set the value <i>today</i>, that may not be true tomorrow. http://stackoverflow.com/questions/901320/anti-joel-test/901493#901493 Comment by nsayer on Anti-Joel Test nsayer 2009-05-29T17:45:01Z 2009-05-29T17:45:01Z @&quot;If your developers are putting viruses on the computers that they didn't write they should be fired&quot; - so it's ok for them to put viruses on their computer that they <i>did</i> write? :) http://stackoverflow.com/questions/910215/need-for-predictable-random-generator/910332#910332 Comment by nsayer on Need for predictable random generator nsayer 2009-05-27T21:52:06Z 2009-05-27T21:52:06Z As a poker player, I can assure you that this is more true than anyone appreciates. http://stackoverflow.com/questions/912570/what-is-the-difference-between-an-inner-join-and-a-left-join/912577#912577 Comment by nsayer on What is the difference between an inner join and a left join? nsayer 2009-05-26T21:55:24Z 2009-05-26T21:55:24Z Then you should edit your answer to actually say that. :) http://stackoverflow.com/questions/912570/what-is-the-difference-between-an-inner-join-and-a-left-join/912577#912577 Comment by nsayer on What is the difference between an inner join and a left join? nsayer 2009-05-26T20:32:49Z 2009-05-26T20:32:49Z Not quite. Left join requires the left rows to exist, but allows the right rows to not exist. An outer join allows either side (but obviously not both) to not exist. http://stackoverflow.com/questions/361723/problem-with-arraylists-and-reading-a-file/361761#361761 Comment by nsayer on Problem with ArrayLists and reading a file nsayer 2009-05-26T16:33:56Z 2009-05-26T16:33:56Z This is absolutely correct, and IMHO should be the accepted answer. http://stackoverflow.com/questions/900338/why-cant-i-use-strerror/900363#900363 Comment by nsayer on Why can't I use strerror? nsayer 2009-05-22T23:09:01Z 2009-05-22T23:09:01Z He <i>did</i> tell you why. It works on an internal static buffer - that is, one that is shared across threads. That's unsafe. http://stackoverflow.com/questions/890254/sort-arraylist/890470#890470 Comment by nsayer on Sort ArrayList nsayer 2009-05-20T22:57:42Z 2009-05-20T22:57:42Z Only one caveat: If you ever run across a string that doesn't conform to the pattern \d+_.*, you can expect this to throw exceptions. http://stackoverflow.com/questions/879453/how-to-make-a-deep-copy-of-jaxb-object-like-xmlbean-xmlobject-copy/879596#879596 Comment by nsayer on How to make a deep copy of JAXB object like xmlbean XmlObject.copy()? nsayer 2009-05-18T20:25:46Z 2009-05-18T20:25:46Z You don't really need to make them serializable, since the entire purpose behind JAXB is marshalling objects to and from XML. You could marshall and unmarhsall the object to make a copy, but that's probably far less efficient than writing your own clone() function. http://stackoverflow.com/questions/869883/why-is-strncpy-insecure/869899#869899 Comment by nsayer on Why is strncpy insecure? nsayer 2009-05-15T17:22:10Z 2009-05-15T17:22:10Z It's not that it doesn't have safeguards against BO. In fact, it does. The issue is that it doesn't necessarily null terminate the resulting string. http://stackoverflow.com/questions/827236/what-is-the-stl/827256#827256 Comment by nsayer on What is the STL? nsayer 2009-05-05T22:58:54Z 2009-05-05T22:58:54Z Quite simply, your rather negative answer added nothing useful at all to the conversation. You don't like the question? Downmod or comment on it. Your rant is not, by any definition, an answer. http://stackoverflow.com/questions/803899/how-do-smtp-clients-determine-whether-to-use-explicit-or-implicit-ssl/803909#803909 Comment by nsayer on How do SMTP clients determine whether to use Explicit or Implicit SSL nsayer 2009-04-29T20:38:53Z 2009-04-29T20:38:53Z @jbutler: I've never heard before today of SMTP servers listening with SSL on port 465. If you do configure an SMTP server to work that way, then you would have to connect to that port and immediately begin negotiating SSL before sending EHLO/HELO. In that circumstance, I would expect EHLO to not report STARTTLS, since it would be redundant. http://stackoverflow.com/questions/803899/how-do-smtp-clients-determine-whether-to-use-explicit-or-implicit-ssl/803909#803909 Comment by nsayer on How do SMTP clients determine whether to use Explicit or Implicit SSL nsayer 2009-04-29T20:35:38Z 2009-04-29T20:35:38Z @unknown - no, SSL is not negotiated before that. You connect to an SMTP server plain, then &quot;starttls&quot; and engage ssl at that point. http://stackoverflow.com/questions/799272/why-cant-one-ssl-certificate-be-used-for-multiple-machines/799412#799412 Comment by nsayer on Why can't one SSL certificate be used for multiple machines? nsayer 2009-04-28T19:18:26Z 2009-04-28T19:18:26Z The problem he's having is likely much, much simpler than what you've outlined. He's trying to use the certificate and private key for machine A on machine B. The hostnames don't match, though, so a browser rejects it. http://stackoverflow.com/questions/799272/why-cant-one-ssl-certificate-be-used-for-multiple-machines/799300#799300 Comment by nsayer on Why can't one SSL certificate be used for multiple machines? nsayer 2009-04-28T19:14:58Z 2009-04-28T19:14:58Z You can also load balance simply using the hostname (in DNS) resolve to multiple machines, each configured with the same certificate and private key, each answering requests as the same name. It's true that in most enterprise scale installations, there is instead a crypto proxy that does the SSL encapsulation for the entire farm and forwards unencrypted connections on a private network back to the machines in the farm, but you don't have to do it that way.