User warren - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:47:05Z http://stackoverflow.com/feeds/user/4418 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1892347/what-is-the-overhead-of-using-https-compared-to-http/1901633#1901633 0 Answer by warren for What is the overhead of using HTTPS compared to HTTP? warren 2009-12-14T15:40:12Z 2009-12-14T15:40:12Z <p>The overhead of https is entirely in the key-negotiation phase during the start of the session. If the keys are set to expire in short order, they may need to be renegotiated frequently.</p> <p>However, if you're living on 128-bit SSL (most common that I've seen), key generation and exchange is a very short process.</p> <p>Try timing it from two machines on a network - one connecting on SSL, and the other on plaintext: it's in the single-digit percentages, and only truly noticeable at the beginning of the session.</p> <p>Browser-based activity is <em>almost</em> always user-bound, not machine-bound.</p> http://stackoverflow.com/questions/1892221/how-does-your-company-business-document-their-technology-roadmap/1901617#1901617 1 Answer by warren for How does your company/business document their technology roadmap? warren 2009-12-14T15:36:24Z 2009-12-14T15:36:24Z <p>Wikis, Sharepoint, any internal-facing CMS (Plone, Drupal, Joomla, etc), MS Project.. all sorts of options are in front of you.</p> <p>You might also ask on this SE site: <a href="http://askaboutprojects.com" rel="nofollow">http://askaboutprojects.com</a>.</p> http://stackoverflow.com/questions/516789/facebook-wordpress-comment-feedback-integration 6 Facebook-WordPress comment/feedback integration warren 2009-02-05T16:55:32Z 2009-12-11T05:52:28Z <p>Currently I have my Facebook profile automatically republish blog posts from a WordPress instance.</p> <p>What I would like to be able to do, however, is to also have comments posted to either the blog of Facebook show up on the other in the appropriate location.</p> <p>Is there a way to do this with the Facebook API?</p> http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856483#1856483 -1 Answer by warren for How to output IEEE-754 format integer as a float warren 2009-12-06T20:21:06Z 2009-12-06T20:21:06Z <p>If you were to use <code>printf</code>, it would look like this:</p> <pre><code>printf("%f", u.ul); </code></pre> http://stackoverflow.com/questions/1854688/are-there-performance-issue-of-using-while-loop-vs-foreach-for-loop/1854697#1854697 2 Answer by warren for Are there performance issue of using while loop vs foreach/for loop? warren 2009-12-06T07:57:52Z 2009-12-06T07:57:52Z <p>Hypothetically, a <code>foreach</code> <em>may</em> be slower - a <code>for</code> loop and a <code>while</code> loop with the same condition should be equivalent.</p> <p><code>foreach</code> needs to go through the data structure at hand, so whatever the structure's lookup for next (and maintaining state) may slow you down.</p> <p>However, if you're doing that manually in a <code>for</code> or <code>while</code> loop, then it's probably the same.</p> <p>The best answer, of course, is try it and time it and see what the answer actually is.</p> http://stackoverflow.com/questions/47762/how-to-ranking-search-results 3 How-to: Ranking Search Results warren 2008-09-06T19:29:56Z 2009-12-04T21:49:14Z <p>I have a webapp development problem that I've developed one solution for, but am trying to find other ideas that might get around some performance issues I'm seeing.</p> <p>problem statement: </p> <ul> <li>a user enters several keywords/tokens</li> <li>the application searches for matches to the tokens</li> <li>need one result for each token <ul> <li>ie, if an entry has 3 tokens, i need the entry id 3 times</li> </ul></li> <li>rank the results <ul> <li>assign X points for token match</li> <li>sort the entry ids based on points</li> <li>if point values are the same, use date to sort results</li> </ul></li> </ul> <p>What I want to be able to do, but have not figured out, is to send 1 query that returns something akin to the results of an in(), but returns a duplicate entry id for each token matches for each entry id checked.</p> <p>Is there a better way to do this than what I'm doing, of using multiple, individual queries running one query per token? If so, what's the easiest way to implement those?</p> <p><strong>edit</strong><br> I've already tokenized the entries, so, for example, "see spot run" has an entry id of 1, and three tokens, 'see', 'spot', 'run', and those are in a separate token table, with entry ids relevant to them so the table might look like this:</p> <pre><code>'see', 1 'spot', 1 'run', 1 'run', 2 'spot', 3 </code></pre> http://stackoverflow.com/questions/1621774/which-programming-language-is-manageable-by-an-11-year-old-kid/1844052#1844052 0 Answer by warren for Which programming language is manageable by an 11 year old kid? warren 2009-12-04T00:20:22Z 2009-12-04T00:20:22Z <p>I started on an ancient version of BASIC when I was 10. By 11, I'd moved to Turbo Pascal, and at 12 I was on C++.</p> <p>Don't under-estimate kids' abilities: if they're interested, they'll learn it :)</p> http://stackoverflow.com/questions/1827314/cannot-modify-header-information-headers-already-sent-why-its-happening/1827353#1827353 2 Answer by warren for Cannot modify header information - headers already sent, Why its happening warren 2009-12-01T16:33:30Z 2009-12-01T16:33:30Z <p>You cannot send headers after doing any other output to the page - as described here: <a href="http://php.net/header" rel="nofollow">http://php.net/header</a></p> <p>You need to either</p> <ul> <li>buffer the output, or</li> <li>use a different type of redirect</li> </ul> http://stackoverflow.com/questions/205374/what-are-the-core-elements-to-include-in-support-documentation/205394#205394 5 Answer by warren for What are the core elements to include in Support Documentation? warren 2008-10-15T16:22:50Z 2009-12-01T01:18:29Z <p>Having been on both sides of this process professionally, I can say that the following should be <strong><em>mandatory</em></strong>:</p> <ul> <li>the documentation of the code (javadoc, doxygen, etc) </li> <li>details on build process <ul> <li>where to get current source</li> <li>how to file bugs (they will happen)</li> <li>route to provide patches either to the source or to customers</li> </ul></li> <li>how it works (simple, but often overlooked)</li> <li>user-customizable portions (eg there is a scripting component)</li> <li>primary contacts for each component, aka escalation path</li> <li>encouragement for feedback from Support as to what else they want to see</li> </ul> <p>I'm sure lots of other things can be added, but these are the top priority in my mind.</p> http://stackoverflow.com/questions/1823431/which-is-a-better-language-c-or-python-for-complex-problem-solving-exercises/1823440#1823440 6 Answer by warren for which is a better language (C++ or Python) for complex problem solving exercises (ex. Graphs) ? warren 2009-12-01T01:12:47Z 2009-12-01T01:12:47Z <p>I did all my algorithms work in college in C++ because I knew it.</p> <p>If I'd had to learn a language at the same time, I would have picked Python most likely.</p> http://stackoverflow.com/questions/1801427/what-language-and-possible-web-application-framework-should-i-use-to-develop-a/1815915#1815915 2 Answer by warren for What language and (possible) web application framework should I use to develop a high traffic web application? warren 2009-11-29T16:08:41Z 2009-11-29T16:08:41Z <p>Facebook runs on PHP</p> <p>Google uses Python and Java</p> <p>M?S[FOU] uses .NET</p> <p>So as other have said - it's what you know, and what you can leverage. If you don't know any, then pick one and run with it.</p> http://stackoverflow.com/questions/1812528/aligning-div-without-margin-or-float/1812549#1812549 0 Answer by warren for Aligning DIV without margin or float warren 2009-11-28T13:46:12Z 2009-11-28T13:46:12Z <p>If you want to add a margin on the <em>page</em>, encapsulate all your other divs in the user-modifiable one.</p> http://stackoverflow.com/questions/1593820/what-is-the-best-host-provider-for-apple-push-notification-service/1812466#1812466 1 Answer by warren for What is the best Host provider for Apple Push Notification Service warren 2009-11-28T12:54:27Z 2009-11-28T12:54:27Z <p>Sounds like any VPS would work.</p> <p>See here: <a href="http://serverfault.com/questions/808/who-is-your-favorite-vps-provider/">http://serverfault.com/questions/808/who-is-your-favorite-vps-provider/</a>, <a href="http://stackoverflow.com/questions/109631/finding-the-right-vps">http://stackoverflow.com/questions/109631/finding-the-right-vps</a>, <a href="http://stackoverflow.com/questions/226951/favorite-vps-host">http://stackoverflow.com/questions/226951/favorite-vps-host</a>, <a href="http://stackoverflow.com/questions/563163/vps-hosting-and-root-access">http://stackoverflow.com/questions/563163/vps-hosting-and-root-access</a></p> http://stackoverflow.com/questions/1811918/what-are-the-major-benefits-of-an-in-person-interview/1811964#1811964 2 Answer by warren for What are the major benefits of an in-person interview? warren 2009-11-28T08:17:41Z 2009-11-28T08:17:41Z <p>You can't get any body language via a remote interview.</p> <p>Yes, I've had job offers come entirely from remote interviews - but the best ones have <em>always</em> been in person.</p> <p>You typically get the instant feedback from the interviewers as to what they're thinking by watching their reactions. You can identify surprise (good and bad), interest, good humor, etc.</p> <p>All of those are hard (though not impossible) with remote interviews.</p> http://stackoverflow.com/questions/1806776/is-the-concept-of-a-link-inseparable-from-its-html-markup/1808995#1808995 1 Answer by warren for Is the concept of a link inseparable from its html markup? warren 2009-11-27T14:09:13Z 2009-11-27T14:09:13Z <p>You may want to look at templating (such as <a href="http://smarty.net" rel="nofollow">Smarty</a> for PHP).</p> <p>I agree that markup shouldn't <em>normally</em> be held in the database.</p> <p>However, you might also consider implementing a "pointer" concept, where at each link, you break your storage of the page, add a pointer in the table to the link, then a pointer in the link table to the next segment of content for the page. (I have no idea how complicated that would be - just an idea.)</p> <p>Or look at how various CMS tools handle the idea. Some just put everything in the database as one big block of text, while others rely on templating, and others may do something else entirely (like object-oriented environments such as <a href="http://plone.org" rel="nofollow">Plone</a>).</p> http://stackoverflow.com/questions/1788641/implementing-a-fixed-size-log-file-or-a-circular-buffer-on-disk 0 Implementing a fixed-size log file, or a circular buffer on disk warren 2009-11-24T08:25:33Z 2009-11-25T06:38:15Z <p>I checked this <a href="http://stackoverflow.com/questions/609840">question</a>, but it's not what I'm looking for.</p> <p>I'm trying to figure out how to cap a log file's size (say, 10MB), and as soon as it's hit, either: </p> <ul> <li>start writing to the beginning, rather than appending, or</li> <li>keep appending, but delete the contents from the beginning as I do so</li> </ul> <p>Don't really care about language - as long as it's possible :)</p> http://stackoverflow.com/questions/296563/how-to-make-up-for-lack-of-a-computer-science-degree/296568#296568 11 Answer by warren for How to make up for lack of a computer science degree? warren 2008-11-17T19:19:52Z 2009-11-25T02:11:59Z <p>See MIT's Open CourseWare (<a href="http://ocw.mit.edu" rel="nofollow">http://ocw.mit.edu</a>). Also see Berkeley's podcasts (<a href="http://webcast.berkeley.edu/course%5Ffeeds.php" rel="nofollow">http://webcast.berkeley.edu/course%5Ffeeds.php</a>). And Stanford's (<a href="http://see.stanford.edu/see/courses.aspx" rel="nofollow">http://see.stanford.edu/see/courses.aspx</a> [thanks @<a href="http://stackoverflow.com/users/3865/">GR1000</a>]).</p> http://stackoverflow.com/questions/1786243/what-should-i-learn/1794198#1794198 1 Answer by warren for What should I learn? warren 2009-11-25T02:00:52Z 2009-11-25T02:09:37Z <p>One thing that all the other answers seem to have missed is the <strong><em>Art of Debugging</em></strong>: being able to track-down a problem and determine its cause is something that is extremely useful.</p> <p>I've tried teaching this to folks, and it's not easy - part of it is knack, and part is practice. </p> <p>For example, with PHP errors, going to the call or line the error reports-on is only proper about a third of the time (in my experience) - it's usually the line above, or many above, that is missing something vital (like a semicolon) that has cascaded into the error reported.</p> <p>The same is true of watching the javascript console in your browser.</p> <p>Stack dumps almost always report "innermost last" (or similar), and most of the time, <em>that</em> is the actual issue (or very close to the actual issue).</p> <p>Practice working-through errors (especially if you can trigger them intentionally (bad input, etc)) - your skills at coding will improve greatly.</p> <p><hr></p> <p>In addition to learning how to debug, also see OCW from MIT - <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/index.htm#undergrad" rel="nofollow">http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/index.htm#undergrad</a></p> http://stackoverflow.com/questions/1793026/client-server-socket-security/1794224#1794224 0 Answer by warren for Client Server socket security warren 2009-11-25T02:07:26Z 2009-11-25T02:07:26Z <p>Just about every "important" application I've used relies on SSL or some other encryption methodology.</p> <p>Just because you're on the intranet doesn't mean you may not have malicious code running on some server or client that may be trying to sniff traffic.</p> http://stackoverflow.com/questions/1788242/url-formats-for-my-website/1789057#1789057 0 Answer by warren for Url formats for my website. warren 2009-11-24T09:55:40Z 2009-11-24T09:55:40Z <p>See also this question on Serverfault - <a href="http://serverfault.com/questions/52946/">http://serverfault.com/questions/52946/</a> - "Website strategy for having a single site work for multiple countries?"</p> http://stackoverflow.com/questions/1719929/filtering-odd-numbers/1719959#1719959 2 Answer by warren for Filtering odd numbers warren 2009-11-12T04:50:48Z 2009-11-12T04:50:48Z <p>I believe you need to switch the comparison to <code>== 1</code> from <code>== 0</code>.</p> <p>The modulus of any number divided by 2 is 0 or 1, 1 when it is odd.</p> http://stackoverflow.com/questions/284797/hello-world-in-less-than-20-bytes/1713115#1713115 1 Answer by warren for "Hello World" in less than 20 bytes warren 2009-11-11T04:56:53Z 2009-11-11T04:56:53Z <p>In good old BASIC:</p> <pre><code>? "Hello World" </code></pre> http://stackoverflow.com/questions/1712887/which-is-faster-if-else-or-select-case/1712914#1712914 4 Answer by warren for Which is faster - if..else or Select..case? warren 2009-11-11T03:56:38Z 2009-11-11T03:56:38Z <p>Theoretically, a <code>switch..case</code> <em>should</em> be faster, because it's a lookup table (as most often implemented by the compiler).</p> <p>However, if you're worried about which of these runs faster, and it's <em>really</em> the bottleneck in your program, you have a phenomenally-well-behaved project.</p> http://stackoverflow.com/questions/1679883/translating-locs/1679966#1679966 0 Answer by warren for Translating LOCs warren 2009-11-05T11:32:24Z 2009-11-05T11:32:24Z <p>And remember that class path names are very sensitive in Java (and some other languages), doing a global "find and replace", which is what this sounds like, would most probably break important aspects of the software.</p> http://stackoverflow.com/questions/377133/how-to-kindly-ask-your-users-to-upgrade-from-ie6/1673728#1673728 0 Answer by warren for How to (kindly) ask your users to upgrade from IE6? warren 2009-11-04T13:26:35Z 2009-11-04T13:26:35Z <p>Whatever you do, don't automatically redirect to "end6.org"!!</p> <p>I get that often enough because I'm stuck on IE6 at $WORK - and it's incredibly annoying. Yes, there are better browsers out there. But <em>forcing</em> me to another website to tell me I'm stupid makes me think you are, and I won't be back.</p> http://stackoverflow.com/questions/1662389/can-every-recursive-function-be-converted-to-a-non-recursive-form/1662413#1662413 0 Answer by warren for Can every recursive function be converted to a non-recursive form? warren 2009-11-02T16:53:12Z 2009-11-04T13:21:51Z <p>No - not every recursive function is expressable as a non-recursive relation.</p> <p>I forget exact examples off the top of my head, but it's generally covered in-depth in a discrete mathematics course at the collegiate level.</p> <p><strong>EDIT</strong><br> I was thinking of <em>recurrence relations</em> not <em>recursive functions</em>. Not all of those have [known] closed-forms.</p> http://stackoverflow.com/questions/1660281/stream-and-c-parsing-file/1660305#1660305 -1 Answer by warren for Stream and c++ - parsing file warren 2009-11-02T09:49:47Z 2009-11-02T09:49:47Z <p>Do you mean how to open a file and read data from it?</p> <p>That should look something like this:</p> <pre><code>float var; ifstream infile("filename"); if(infile.good()){ while(!infile.eof()){ infile &gt;&gt; var; cout &lt;&lt; var &lt;&lt; "is the next value\n"; } } </code></pre> http://stackoverflow.com/questions/1660192/string-comparison-stra-tolowerstrb-tolower-or-stra-equalsstrb-stringcomp/1660216#1660216 0 Answer by warren for String comparison - strA.ToLower()==strB.ToLower() or strA.Equals(strB,StringComparisonType)? warren 2009-11-02T09:24:59Z 2009-11-02T09:24:59Z <p>The first seems more natural to me - using the <kbd>==</kbd> operator makes more sense than calling a function with a <code>ComparisonType</code>, I think.</p> http://stackoverflow.com/questions/1652914/how-can-i-make-a-pdf-non-printable-programmatically/1659738#1659738 0 Answer by warren for How can I make a pdf non-printable programmatically? warren 2009-11-02T06:36:37Z 2009-11-02T07:21:40Z <p>Sounds like you're <em>really</em> looking for a group policy object in Active Directory that prevents users from printing, perhaps?</p> <p><strong>update</strong><br /> What prevents said users from emailing the PDF to themselves and printing at home, other than another GPO that prevents attachments with given extensions or over certain sizes?</p> http://stackoverflow.com/questions/1659620/why-is-python-a-favourite-among-people-working-in-animation-industry/1659774#1659774 2 Answer by warren for Why is Python a favourite among people working in animation industry? warren 2009-11-02T06:48:43Z 2009-11-02T06:48:43Z <p>A few other points I've not seen in the existing answers:</p> <ul> <li>it's free</li> <li>it's fast [enough]</li> <li>it runs on every platform I know of (AIX, HPUX, Linux, Mac OS X, Windows..)</li> <li>quick to learn</li> <li>large, powerful libraries <ul> <li>numeric</li> <li>graphical</li> <li>etc</li> </ul></li> <li>simple, consistent syntax</li> <li>the existing user-base is large</li> <li>because it's easy-to-learn, you don't have to be a "programmer" to use it</li> </ul> http://stackoverflow.com/questions/1892347/what-is-the-overhead-of-using-https-compared-to-http/1892410#1892410 Comment by warren on What is the overhead of using HTTPS compared to HTTP? warren 2009-12-14T15:42:42Z 2009-12-14T15:42:42Z the Sun Niagra processor line is horrible for encryption, unless (and only unless) you've recompiled to have SSL running using the encryption accelerators: the base CPU has 32 integer pipelines, but they all share one FPU - it's dog-ass-slow on encryption http://stackoverflow.com/questions/1892221/how-does-your-company-business-document-their-technology-roadmap/1892565#1892565 Comment by warren on How does your company/business document their technology roadmap? warren 2009-12-14T15:40:51Z 2009-12-14T15:40:51Z there's an awful lot that already does it, or is close.. not that that's a reason to not roll your own, of course ;) http://stackoverflow.com/questions/1451216/how-to-recruit-great-developers/1451222#1451222 Comment by warren on How to Recruit Great Developers? warren 2009-12-14T15:25:17Z 2009-12-14T15:25:17Z who cares if they program outside of work? or if your sysadmins have machines with their sides off at home? Maybe y=they have a family, life, hobbies, etc that they keep separate from work http://stackoverflow.com/questions/1451216/how-to-recruit-great-developers Comment by warren on How to Recruit Great Developers? warren 2009-12-14T15:24:04Z 2009-12-14T15:24:04Z even if this shouldn't be closed - it should not be a &quot;real&quot; question - this is way too subjective, and needs to be CW http://stackoverflow.com/questions/1897811/are-mailto-links-even-relevant-in-an-age-of-increased-webmail/1897841#1897841 Comment by warren on Are mailto links even relevant in an age of increased webmail? warren 2009-12-14T15:20:17Z 2009-12-14T15:20:17Z other browsers (including IE, Chrome, Safari, and Opera) allow copying the email address as well. I <i>believe</i> that if you setup Gmail as an &quot;app&quot; using Chrome, you can have Chrome auto-handle <code>mailto:</code> links into Gmail http://stackoverflow.com/questions/1886196/how-do-website-pages-gets-indexed-by-the-search-engines/1886234#1886234 Comment by warren on How do website pages gets indexed by the search engines? warren 2009-12-14T15:17:20Z 2009-12-14T15:17:20Z just because you submit a page doesn't mean it gets indexed right away - it means the search engine now knows it's there http://stackoverflow.com/questions/1861853/extracting-substrings-in-c/1863599#1863599 Comment by warren on extracting substrings in C warren 2009-12-09T14:35:00Z 2009-12-09T14:35:00Z than don't do a copy first :) http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856483#1856483 Comment by warren on How to output IEEE-754 format integer as a float warren 2009-12-09T14:07:26Z 2009-12-09T14:07:26Z Thanks, Adam - was not aware of that http://stackoverflow.com/questions/1856313/simple-multi-user-database-solution Comment by warren on Simple multi-user database solution warren 2009-12-06T20:25:21Z 2009-12-06T20:25:21Z why would moving to postgresql cause you to rewrite a lot of your application, but mysql wouldn't? http://stackoverflow.com/questions/1852268/when-you-decide-to-stop-writing-code-what-will-be-your-next-move/1856469#1856469 Comment by warren on When you decide to stop writing code, what will be your next move? warren 2009-12-06T20:23:53Z 2009-12-06T20:23:53Z +1 for travel and teaching. -1 for school just for the sake of school http://stackoverflow.com/questions/1854688/are-there-performance-issue-of-using-while-loop-vs-foreach-for-loop/1854696#1854696 Comment by warren on Are there performance issue of using while loop vs foreach/for loop? warren 2009-12-06T09:43:14Z 2009-12-06T09:43:14Z many styles of for loop don't need to know - and everyone i've ever seen can be broken-out-of in some fashion, so making it flexible isn't too hard normally http://stackoverflow.com/questions/1854688/are-there-performance-issue-of-using-while-loop-vs-foreach-for-loop/1854696#1854696 Comment by warren on Are there performance issue of using while loop vs foreach/for loop? warren 2009-12-06T07:58:32Z 2009-12-06T07:58:32Z a <code>for</code> loop doesn't need to know the size ahead of time http://stackoverflow.com/questions/1854616/in-java-how-can-i-play-the-same-audio-clip-multiple-times-simultaneously/1854627#1854627 Comment by warren on In Java, how can I play the same audio clip multiple times simultaneously? warren 2009-12-06T07:25:51Z 2009-12-06T07:25:51Z the byte array idea is pretty clever http://stackoverflow.com/questions/47762/how-to-ranking-search-results/1849865#1849865 Comment by warren on How-to: Ranking Search Results warren 2009-12-05T02:46:10Z 2009-12-05T02:46:10Z erick won't see this item - stackoverflow isn't a forum, it's a q&amp;a site, so this should be a comment on his answer; however, you're not registered, and don't have enough reputation to comment yet http://stackoverflow.com/questions/1843924/what-to-learn-after-php-scala-or-clojure/1844210#1844210 Comment by warren on What to learn after PHP? Scala or Clojure? warren 2009-12-04T08:40:15Z 2009-12-04T08:40:15Z and a natural transition from php, since php is loosely based-on perl