User warren - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T10:47:05Zhttp://stackoverflow.com/feeds/user/4418http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1892347/what-is-the-overhead-of-using-https-compared-to-http/1901633#19016330Answer by warren for What is the overhead of using HTTPS compared to HTTP?warren2009-12-14T15:40:12Z2009-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#19016171Answer by warren for How does your company/business document their technology roadmap?warren2009-12-14T15:36:24Z2009-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-integration6Facebook-WordPress comment/feedback integrationwarren2009-02-05T16:55:32Z2009-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-1Answer by warren for How to output IEEE-754 format integer as a floatwarren2009-12-06T20:21:06Z2009-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#18546972Answer by warren for Are there performance issue of using while loop vs foreach/for loop?warren2009-12-06T07:57:52Z2009-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-results3How-to: Ranking Search Resultswarren2008-09-06T19:29:56Z2009-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#18440520Answer by warren for Which programming language is manageable by an 11 year old kid?warren2009-12-04T00:20:22Z2009-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#18273532Answer by warren for Cannot modify header information - headers already sent, Why its happeningwarren2009-12-01T16:33:30Z2009-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#2053945Answer by warren for What are the core elements to include in Support Documentation?warren2008-10-15T16:22:50Z2009-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#18234406Answer by warren for which is a better language (C++ or Python) for complex problem solving exercises (ex. Graphs) ?warren2009-12-01T01:12:47Z2009-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#18159152Answer by warren for What language and (possible) web application framework should I use to develop a high traffic web application?warren2009-11-29T16:08:41Z2009-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#18125490Answer by warren for Aligning DIV without margin or floatwarren2009-11-28T13:46:12Z2009-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#18124661Answer by warren for What is the best Host provider for Apple Push Notification Servicewarren2009-11-28T12:54:27Z2009-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#18119642Answer by warren for What are the major benefits of an in-person interview?warren2009-11-28T08:17:41Z2009-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#18089951Answer by warren for Is the concept of a link inseparable from its html markup?warren2009-11-27T14:09:13Z2009-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-disk0Implementing a fixed-size log file, or a circular buffer on diskwarren2009-11-24T08:25:33Z2009-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#29656811Answer by warren for How to make up for lack of a computer science degree?warren2008-11-17T19:19:52Z2009-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#17941981Answer by warren for What should I learn?warren2009-11-25T02:00:52Z2009-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#17942240Answer by warren for Client Server socket securitywarren2009-11-25T02:07:26Z2009-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#17890570Answer by warren for Url formats for my website.warren2009-11-24T09:55:40Z2009-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#17199592Answer by warren for Filtering odd numberswarren2009-11-12T04:50:48Z2009-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#17131151Answer by warren for "Hello World" in less than 20 byteswarren2009-11-11T04:56:53Z2009-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#17129144Answer by warren for Which is faster - if..else or Select..case?warren2009-11-11T03:56:38Z2009-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#16799660Answer by warren for Translating LOCswarren2009-11-05T11:32:24Z2009-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#16737280Answer by warren for How to (kindly) ask your users to upgrade from IE6?warren2009-11-04T13:26:35Z2009-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#16624130Answer by warren for Can every recursive function be converted to a non-recursive form?warren2009-11-02T16:53:12Z2009-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-1Answer by warren for Stream and c++ - parsing filewarren2009-11-02T09:49:47Z2009-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 >> var;
cout << var << "is the next value\n";
}
}
</code></pre>
http://stackoverflow.com/questions/1660192/string-comparison-stra-tolowerstrb-tolower-or-stra-equalsstrb-stringcomp/1660216#16602160Answer by warren for String comparison - strA.ToLower()==strB.ToLower() or strA.Equals(strB,StringComparisonType)?warren2009-11-02T09:24:59Z2009-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#16597380Answer by warren for How can I make a pdf non-printable programmatically?warren2009-11-02T06:36:37Z2009-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#16597742Answer by warren for Why is Python a favourite among people working in animation industry?warren2009-11-02T06:48:43Z2009-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#1892410Comment by warren on What is the overhead of using HTTPS compared to HTTP?warren2009-12-14T15:42:42Z2009-12-14T15:42:42Zthe 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 encryptionhttp://stackoverflow.com/questions/1892221/how-does-your-company-business-document-their-technology-roadmap/1892565#1892565Comment by warren on How does your company/business document their technology roadmap?warren2009-12-14T15:40:51Z2009-12-14T15:40:51Zthere'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#1451222Comment by warren on How to Recruit Great Developers?warren2009-12-14T15:25:17Z2009-12-14T15:25:17Zwho 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 workhttp://stackoverflow.com/questions/1451216/how-to-recruit-great-developersComment by warren on How to Recruit Great Developers?warren2009-12-14T15:24:04Z2009-12-14T15:24:04Zeven if this shouldn't be closed - it should not be a "real" question - this is way too subjective, and needs to be CWhttp://stackoverflow.com/questions/1897811/are-mailto-links-even-relevant-in-an-age-of-increased-webmail/1897841#1897841Comment by warren on Are mailto links even relevant in an age of increased webmail?warren2009-12-14T15:20:17Z2009-12-14T15:20:17Zother 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 "app" using Chrome, you can have Chrome auto-handle <code>mailto:</code> links into Gmailhttp://stackoverflow.com/questions/1886196/how-do-website-pages-gets-indexed-by-the-search-engines/1886234#1886234Comment by warren on How do website pages gets indexed by the search engines?warren2009-12-14T15:17:20Z2009-12-14T15:17:20Zjust because you submit a page doesn't mean it gets indexed right away - it means the search engine now knows it's therehttp://stackoverflow.com/questions/1861853/extracting-substrings-in-c/1863599#1863599Comment by warren on extracting substrings in Cwarren2009-12-09T14:35:00Z2009-12-09T14:35:00Zthan don't do a copy first :)http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1856483#1856483Comment by warren on How to output IEEE-754 format integer as a floatwarren2009-12-09T14:07:26Z2009-12-09T14:07:26ZThanks, Adam - was not aware of thathttp://stackoverflow.com/questions/1856313/simple-multi-user-database-solutionComment by warren on Simple multi-user database solutionwarren2009-12-06T20:25:21Z2009-12-06T20:25:21Zwhy 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#1856469Comment by warren on When you decide to stop writing code, what will be your next move?warren2009-12-06T20:23:53Z2009-12-06T20:23:53Z+1 for travel and teaching. -1 for school just for the sake of schoolhttp://stackoverflow.com/questions/1854688/are-there-performance-issue-of-using-while-loop-vs-foreach-for-loop/1854696#1854696Comment by warren on Are there performance issue of using while loop vs foreach/for loop?warren2009-12-06T09:43:14Z2009-12-06T09:43:14Zmany 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 normallyhttp://stackoverflow.com/questions/1854688/are-there-performance-issue-of-using-while-loop-vs-foreach-for-loop/1854696#1854696Comment by warren on Are there performance issue of using while loop vs foreach/for loop?warren2009-12-06T07:58:32Z2009-12-06T07:58:32Za <code>for</code> loop doesn't need to know the size ahead of timehttp://stackoverflow.com/questions/1854616/in-java-how-can-i-play-the-same-audio-clip-multiple-times-simultaneously/1854627#1854627Comment by warren on In Java, how can I play the same audio clip multiple times simultaneously?warren2009-12-06T07:25:51Z2009-12-06T07:25:51Zthe byte array idea is pretty cleverhttp://stackoverflow.com/questions/47762/how-to-ranking-search-results/1849865#1849865Comment by warren on How-to: Ranking Search Resultswarren2009-12-05T02:46:10Z2009-12-05T02:46:10Zerick won't see this item - stackoverflow isn't a forum, it's a q&a site, so this should be a comment on his answer; however, you're not registered, and don't have enough reputation to comment yethttp://stackoverflow.com/questions/1843924/what-to-learn-after-php-scala-or-clojure/1844210#1844210Comment by warren on What to learn after PHP? Scala or Clojure?warren2009-12-04T08:40:15Z2009-12-04T08:40:15Zand a natural transition from php, since php is loosely based-on perl