User Joseph Holsten - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T22:29:02Zhttp://stackoverflow.com/feeds/user/16981http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/91211/beginning-web-development-on-plan-95Beginning Web Development on Plan 9Joseph Holsten2008-09-18T09:30:28Z2009-10-19T17:55:30Z
<p>I've been wanting to program for the Plan 9 operating system for a while. I'd really like to play around with a web app there. Of course, the only language I know for Plan 9 is C, and that doesn't seem ideal for web development. I also understand that it doesn't run apache or mysql either.</p>
<p>What is the best way to start coding web apps on Plan 9?</p>
http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby0Add XML namespace to existing document in rubyJoseph Holsten2009-03-08T08:04:28Z2009-08-09T14:00:03Z
<p>I need to add an element to an existing XML document which uses a namespace that doesn't exist in the original. How do I do this?</p>
<p>Ideally I would like to use REXML for portability, but any common XML library would be okay. An ideal solution would be smart about namespace collisions.</p>
<p>I have an xml document which looks like this:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
<p>and add:</p>
<pre><code><Service
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</code></pre>
<p>Yielding something equivalent to:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
<Service>
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing/91801#918012Answer by Joseph Holsten for Grep and Sed Equivalent for XML Command Line ProcessingJoseph Holsten2008-09-18T11:39:59Z2009-07-17T23:28:56Z<p>At the moment, the best solution I've found is <a href="http://code.whytheluckystiff.net/hpricot/" rel="nofollow" title="_why's XML/HTML parsing for ruby">hpricot</a>, which provides
XPath & CSS selectors and a DOM. But it's only available in ruby, so I can't
easily use it in a shell script.</p>
<p><strong>EDIT</strong>
I've found some more promising tools:</p>
<ul>
<li><p><a href="http://www2.in.tum.de/~berlea/Fxgrep/" rel="nofollow" title="Functional XML Querying Tool">fxgrep</a>:
Uses its own XPath-like syntax to query documents. Written in SML, so
installation may be difficult.</p></li>
<li><p><a href="http://www.ltg.ed.ac.uk/software/ltxml" rel="nofollow" title="LT XML toolkit">LT XML</a>:
XML toolkit derived from SGML tools, including <code>sggrep</code>, <code>sgsort</code>,
<code>xmlnorm</code> and others. Uses its own query syntax. The documentation is
<em>very</em> formal. Written in C. LT XML 2 claims support of XPath, XInclude
and other W3C standards.</p></li>
<li><p><a href="http://xmltwig.com/tool/xml%5Fgrep2/xml%5Fgrep2.html" rel="nofollow">xmlgrep2</a>:
simple and powerful searching with XPath. Written in Perl using
XML::LibXML and libxml2.</p></li>
<li><p><a href="http://www.xqsharp.com/xqsharp/" rel="nofollow">XQSharp</a>:
Supports XQuery, the extension to XPath. Written for the .NET Framework.</p></li>
<li><p><a href="http://www.lbreyer.com/xml-coreutils.html" rel="nofollow">xml-coreutils</a>:
Laird Breyer's toolkit equivalent to GNU coreutils. Discussed in an
interesting <a href="http://www.lbreyer.com/unix%5Fxml-1.html" rel="nofollow">essay</a> on what the ideal toolkit should include.</p></li>
<li><p><a href="http://www.logilab.org/859/" rel="nofollow">xmldiff</a>:
Simple tool for comparing two xml files.</p></li>
</ul>
<p>I haven't had a chance to try any of these, but xml-coreutils seems the best documented and most unix oriented.</p>
<p><strong>FURTHER EDIT</strong></p>
<p>I've removed <a href="http://xmltk.sourceforge.net/" rel="nofollow">xmltk</a> from this list. It doesn't seem to have package in debian, ubuntu, fedora, or macports. It also hasn't had a release since 2007, and uses non-portable build automation. I can't recommend it unless it becomes more portable.</p>
http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing6Grep and Sed Equivalent for XML Command Line ProcessingJoseph Holsten2008-09-18T11:36:58Z2009-07-17T23:28:56Z
<p>When doing shell scripting, typically data will be in files of single line records like csv. It's really simple to handle this data with <code>grep</code> and <code>sed</code>. But I have to deal with XML often, so I'd really like a way to script access to that XML data via the command line. What are the best tools?</p>
http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627314#6273141Answer by Joseph Holsten for Compute a derivative using discrete methodsJoseph Holsten2009-03-09T17:50:49Z2009-03-09T17:50:49Z<p>Formally, no. Either you are describing the (partial) derivitives of discrete functions or you are asking for a numerical method to approximate the (partial) derivatives of continuous functions.</p>
<p>Discrete functions don't have derivatives. If you review the epsilon-delta definition of a derivative, you will see that you would need to be able to evaluate the function close to the point you want the derivative at. That doesn't make sense if the function only has values at integer values of x, y and z. So there is no way to find the derivative of a discrete function for any value of fast.</p>
<p>If you want a numerical method exactly calculate the derivatives of a continuous function, you're out of luck as well. Numerical methods for derivatives are heuristic, not algorithmic. There is no numerical method which guarantees an exact solution. Fortunately, there exist many good heuristics. Mathematica uses a specialized version of <a href="http://reference.wolfram.com/mathematica/tutorial/UnconstrainedOptimizationPrincipalAxisMethod.html" rel="nofollow">Brent's principle axis method</a> by default. I would recommend you use the <a href="http://www.gnu.org/software/gsl/" rel="nofollow">GNU Scientific Library</a>, which has a very good implementation of Brent's method. I owe my entire grade in one of my math courses to the GSL. The ruby bindings are pretty good if that's your thing. If necessary, most numerical differentiation libraries have a handful of different methods available. </p>
<p>If you really want, I can whip out some sample code. Let me know.</p>
http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby/623272#6232720Answer by Joseph Holsten for Add XML namespace to existing document in rubyJoseph Holsten2009-03-08T08:32:45Z2009-03-08T08:32:45Z<p>It turns out this is a dumb question. If both the initial document and the element to be added are internally consistent, then namespaces are okay. So this is equivalent to the final document:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
<Service
xmlns:openid="http://openid.net/xmlns/1.0"
xmlns="xri://$xrd*($v*2.0)">
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
<p>It is important that both the initial document and the element define a default namespace with the <code>xmlns</code> attribute.</p>
<p>Assume the initial document is in <code>initial.xml</code>, and the element is in <code>element.xml</code>. To create this final document with REXML, simply:</p>
<pre><code>require 'rexml/document'
include REXML
document = Document.new(File.new('initial.xml'))
unless document.root.attributes['xmlns']
raise "No default namespace in initial document"
end
element = Document.new(File.new('element.xml'))
unless element.root.attributes['xmlns']
raise "No default namespace in element"
end
xrd = document.root.elements['XRD']
xrd.elements << element
document
</code></pre>
http://stackoverflow.com/questions/316600/adjusting-xml-config-files-from-a-script/562237#5622372Answer by Joseph Holsten for Adjusting XML config files from a scriptJoseph Holsten2009-02-18T18:17:15Z2009-02-18T18:17:15Z<p>You'll find more answers in my <a href="http://stackoverflow.com/questions/91791/grep-and-sed-equivalent-for-xml-command-line-processing" rel="nofollow" title="Grep and Sed Equivalent for XML">previous question</a>. <a href="http://xmlstar.sourceforge.net/" rel="nofollow" title="XMLStarlet tool collection">xmlstar</a> seems to be the most popular answer.</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit18Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T15:15:43Z2009-01-23T23:53:02Z
<p>I'm trying to direct a browser to a different page. If I wanted a GET request, I might say</p>
<pre><code>document.location.href = 'http://example.com/q=a';
</code></pre>
<p>But the resource I'm trying to access won't respond properly unless I use a POST request. If this were not dynamically generated, I might use the HTML</p>
<pre><code><form action="http://example.com/" method="POST">
<input type="hidden" name="q" value="a">
</form>
</code></pre>
<p>Then I would just submit the form from the DOM.</p>
<p>But really I would like JavaScript that allows me to say</p>
<pre><code>post_to_url('http://example.com/', {'q':'a'});
</code></pre>
<p>What's the best cross browser implementation?</p>
<p><strong>Edit</strong> I'm sorry I was not clear. I need a solution that changes the location of the browser, just like submitting a form. If this is possible with XMLHTTPRequest, it is not obvious. And this should not be asynchronous, nor use XML, so AJAX is not the answer.</p>
http://stackoverflow.com/questions/359770/delete-all-emails-in-a-highrise-app/359783#3597831Answer by Joseph Holsten for Delete All Emails in a Highrise AppJoseph Holsten2008-12-11T15:46:35Z2008-12-11T15:46:35Z<p>It looks like this is available through the <a href="http://developer.37signals.com/highrise" rel="nofollow">API</a>, and should be easy with the <a href="http://developer.37signals.com/highrise/highrise.rb" rel="nofollow">ruby bindings</a>:</p>
<pre><code>#!/usr/bin/env ruby
ENV['SITE'] = "http://passkey:X@my.hirisehq.com"
require 'highrise'
Highrise::Person.each do |person|
person.emails.each {|email|
email.destroy
}
end
</code></pre>
http://stackoverflow.com/questions/359770/delete-all-emails-in-a-highrise-app1Delete All Emails in a Highrise AppJoseph Holsten2008-12-11T15:43:59Z2008-12-11T15:46:35Z
<p>How do I delete all the emails in my <a href="http://highrisehq.com/" rel="nofollow">highrise</a> app? I don't want to delete the entire thing and start over, I've got companies and tags and metadata. What's the easiest way?</p>
<p>This question paraphrased from <a href="http://getsatisfaction.com/people/tiborholoda" rel="nofollow">Tibor Holoda</a>'s <a href="http://getsatisfaction.com/37signals/topics/can_you_help_me_deleting_all_emails_and_start_again_please" rel="nofollow">question</a> on <a href="http://getsatisfaction.com" rel="nofollow">GetSatisfaction</a></p>
http://stackoverflow.com/questions/89490/annuity-or-angle-operation-symbol-in-latex1Annuity or Angle Operation Symbol in LaTeXJoseph Holsten2008-09-18T02:30:01Z2008-10-08T12:03:29Z
<p>How do I set the symbol for the <em>angle</em> or <em>annuity</em> operation in LaTeX? Specifically, this is the actuarial <em>a</em> angle <em>s</em> = (1-v<sup>s</sup>)/i.</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164921#1649216Answer by Joseph Holsten for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Joseph Holsten2008-10-02T22:40:39Z2008-10-02T22:40:39Z<p>As jonathan-leffler mentions, the prime issue is the ASCII null character. C traditionally expects a string to be null terminated. So standard C string functions will choke on any UTF-16 character containing a byte equivalent to an ASCII null (0x00). While you can certainly program with wide character support, UTF-16 is not a suitable external encoding of Unicode in <a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8" rel="nofollow">filenames, text files, environment variables</a>.</p>
<p>Furthermore, UTF-16 and UTF-32 have both big endian and little endian orientations. To deal with this, you'll either need external metadata like a MIME type, or a <a href="http://unicode.org/faq/utf_bom.html#BOM" rel="nofollow">Byte Orientation Mark</a>. It notes,</p>
<blockquote>
<p>Where UTF-8 is used transparently in
8-bit environments, the use of a BOM
will interfere with any protocol or
file format that expects specific
ASCII characters at the beginning,
such as the use of "#!" of at the
beginning of Unix shell scripts.</p>
</blockquote>
<p>The predecessor to UTF-16, which was called UCS-2 and didn't support surrogate pairs, had the <a href="http://www.uazone.org/multiling/unicode/ucs2.html" rel="nofollow">same issues</a>. UCS-2 should be avoided.</p>
http://stackoverflow.com/questions/26255/reserved-keywords-in-javascript/147776#1477762Answer by Joseph Holsten for Reserved Keywords in JavascriptJoseph Holsten2008-09-29T07:07:59Z2008-09-29T07:07:59Z<p>To supplement benc, see <a href="http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf" rel="nofollow">Standard ECMA-262</a>. These are the official reserved words, but only a pedant ignores the implementation to respect the standard. For the reserved words of the most popular implementations, that is firefox and internet explorer, see benc's answer.</p>
<p>The reserved words in EMCAScript-262 are the <em>Keyword</em>s, <em>Future Reserved Word</em>s, <em>NullLiteral</em>, and <em>BooleanLiteral</em>s, where the <em>Keywords</em> are</p>
<pre><code>break else new var
case finally return void
catch for switch while
continue function this with
default if throw
delete in try
do instanceof typeof
</code></pre>
<p>the <em>Future Reserved Word</em>s are</p>
<pre><code>abstract enum int short
boolean export interface static
byte extends long super
char final native synchronized
class float package throws
const goto private transient
debugger implements protected volatile
double import public
</code></pre>
<p>the <em>NullLiteral</em> is</p>
<pre><code>null
</code></pre>
<p>and the <em>BooleanLiteral</em>s are</p>
<pre><code>true
false
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134222#1342221Answer by Joseph Holsten for Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T16:05:21Z2008-09-25T16:05:21Z<p>One solution is to generate the form and submit it. One implementation is</p>
<pre><code>function post_to_url(url, params) {
var form = document.createElement('form');
form.action = url;
form.method = 'POST';
for (var i in params) {
if (params.hasOwnProperty(i)) {
var input = document.createElement('input');
input.type = 'hidden';
input.name = i;
input.value = params[i];
form.appendChild(input);
}
}
form.submit();
}
</code></pre>
<p>So I can implement a URL shortening bookmarklet with a simple</p>
<pre><code>javascript:post_to_url('http://is.gd/create.php', {'URL': location.href});
</code></pre>
http://stackoverflow.com/questions/91170/make-web-application-accessible0Make Web Application AccessibleJoseph Holsten2008-09-18T09:23:10Z2008-09-20T23:49:30Z
<p>What things have to be done before I can honestly tell myself my web application is accessible by anyone? Or even better, convince Joe Clark. I don't have any video or audio to worry about, so I know I won't need transcripts. What else do I have to check?</p>
http://stackoverflow.com/questions/14386/fopen-deprecated-warning/91698#916982Answer by Joseph Holsten for fopen deprecated warningJoseph Holsten2008-09-18T11:15:58Z2008-09-18T11:15:58Z<p>Consider using a portability library like <a href="http://www.gtk.org/" rel="nofollow">glib</a> or the <a href="http://apr.apache.org/" rel="nofollow">apache portable runtime</a>. These usually provide safe, portable alternatives to calls like these. It's a good thing too, because these insecure calls are deprecated in most modern environments.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/90602#906021Answer by Joseph Holsten for What do you use to keep notes as a developer?Joseph Holsten2008-09-18T06:56:10Z2008-09-18T06:56:10Z<p>Four things give me the ability to record and find every note I need for a software project.</p>
<ol>
<li>A <strong>text editor</strong> I know by heart. This incudes <code>vim</code> &TextMate, but there's no reason you can't be proficient at <code>emacs</code>, Notepad 2, TextPad, or BBedit. I'm looking forward to learning <code>sam</code>.</li>
<li>A <strong>search tool</strong> I know by heart. This tends to be <code>grep</code>, <code>find</code>, and Quicksilver.</li>
<li><strong>Automated tests</strong>. I prefer a behaviour driven development framework like <code>rspec</code>. Ideally you can generate documentation from those tests, saying which pass, which fail, and which are pending or ignored.</li>
<li><strong>Version control</strong>. If you don't have a record of when you create and edit your notes, you'd have to do that yourself. I suggest Subversion, <code>svn</code>, or Mercurial, <code>hg</code>.</li>
</ol>
http://stackoverflow.com/questions/87190/net-library-for-processing-html-e-mails-stripping-previous-responses/90099#900991Answer by Joseph Holsten for .NET library for processing HTML e-mails & stripping previous responsesJoseph Holsten2008-09-18T04:43:31Z2008-09-18T04:43:31Z<p>This does not answer much of your question, but the W3C's <a href="http://www.w3.org/Tools/html2things.html" rel="nofollow">Converting HTML to Other Formats</a> has a section on converting HTML to text. I hope it helps someone develop a full answer to your question!</p>
http://stackoverflow.com/questions/89490/annuity-or-angle-operation-symbol-in-latex/89851#898513Answer by Joseph Holsten for Annuity or Angle Operation Symbol in LaTeXJoseph Holsten2008-09-18T03:52:54Z2008-09-18T03:52:54Z<p>I've looked at <a href="http://maths.dur.ac.uk/stats/courses/AMII/am.html" rel="nofollow">Life's Contingency's Package</a>, various Actuarial Outpost <a href="http://www.actuarialoutpost.com/actuarial_discussion_forum/showthread.php?t=113896" rel="nofollow">forum</a> <a href="http://www.actuarialoutpost.com/actuarial_discussion_forum/showthread.php?p=2200212" rel="nofollow">threads</a>, and the <a href="ftp://tug.ctan.org/pub/tex-archive/info/symbols/comprehensive/symbols-letter.pdf" rel="nofollow">Comprehensive Symbol List</a> for LaTeX, and combined the best into the following macros:</p>
<pre><code>\DeclareRobustCommand{\lcroof}[1]{
\hbox{\vtop{\vbox{%
\hrule\kern 1pt\hbox{%
$\scriptstyle #1$%
\kern 1pt}}\kern1pt}%
\vrule\kern1pt}}
\DeclareRobustCommand{\angle}[1]{
_{\lcroof{#1}}}
</code></pre>
<p>You can then use this macro for the problem's example by typing</p>
<pre><code> $a\angle{s}$
</code></pre>
<p>If you need a full set of actuarial symbols, you should use the <a href="http://maths.dur.ac.uk/stats/courses/AMII/am.html" rel="nofollow">Life's Contingency's Package</a> <code>lifecon</code>. Using <code>lifecon</code>, you can set the above by typing</p>
<pre><code> $a_{\lcroof{s}}$
</code></pre>
http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document/88713#887138Answer by Joseph Holsten for LaTeX: How to add a matrix in a LaTeX document?Joseph Holsten2008-09-17T23:35:30Z2008-09-17T23:55:44Z<p>First: if you intend to do math in LaTeX, you SHOULD learn and use <a href="http://www.ams.org/tex/amslatex.html" rel="nofollow">AMS LaTeX</a>. The best reference is the <a href="ftp://ftp.ams.org/pub/tex/doc/amsmath/short-math-guide.pdf" rel="nofollow">Short Math Guide for LaTeX</a>. In this guide, you will learn that there are many different matrix macros available when you use the <code>amsmath</code> package (e.g., <code>\usepackage{amsmath}</code> ).</p>
<p>To quote the document, </p>
<blockquote>
<p><strong>4.4. Matrices</strong> The environments <code>pmatrix</code>, <code>bmatrix</code>, <code>Bmatrix</code>, <code>vmatrix</code> and <code>Vmatrix</code> have (respectively) ( ), [ ], { }, | |, and || || delimiters built in. There is also a <code>matrix</code> environment sans delimiters, and an <code>array</code> environment that can be used to obtain left alignment or other variations in the column specs. [ed. To produce a matrix with parenthesis around it, use:]</p>
</blockquote>
<pre><code>\begin{pmatrix}
\alpha & \beta^{*}\\
\gamma^{*} & \delta
\end{pmatrix}
</code></pre>
<blockquote>
<p>To produce a small matrix suitable for use in text, there is a <code>smallmatrix</code> environment
[ed. here was a matrix appropriate for text mode] that comes closer to fitting within a single text line than a normal matrix.
This example was produced by</p>
</blockquote>
<pre><code>\bigl( \begin{smallmatrix}
a & b\\
c & d
\end{smallmatrix} \bigr)
</code></pre>
<blockquote>
<p>To produce a row of dots in a matrix spanning a given number of columns, use \hdotsfor.
For example, <code>\hdotsfor{3}</code> in the second column of a four-column matrix will print a row
of dots across the final three columns. </p>
<p><em>Note</em>. The plain TeX form <code>\matrix{...\cr...\cr}</code> and the related commands <code>\pmatrix</code>, <code>\cases</code> should be
avoided in LaTeX (and when the <code>amsmath</code> package is loaded they are disabled). </p>
</blockquote>
<p>Finally, I'd like to mention that, while it is possible to set matrices without AMS LaTeX, just use it. It offers so many benefits that until you get the hang of LaTeX, it's the best single macro package for math.</p>
http://stackoverflow.com/questions/90451/why-would-one-use-rest-instead-of-web-services/90482#90482Comment by Joseph Holsten on Why would one use REST instead of Web services?Joseph Holsten2009-09-04T22:27:04Z2009-09-04T22:27:04ZHoward May: Assuming you call functions using only primitive datatypes, this is certainly true. But in that case you can't exactly argue SOAP is easier than rest. If you have complex datatypes, WSDL processing may work fine between two machines with the same WS stacks. But you'll inevitably have issues as soon as you mix stacks. It stops being so easy once you've got to dig into WSDL by hand to debug incompatibilities.http://stackoverflow.com/questions/924472/paging-in-a-rest-collection/948791#948791Comment by Joseph Holsten on Paging in a Rest CollectionJoseph Holsten2009-09-04T22:16:34Z2009-09-04T22:16:34Z+1 link headers, but I'd also recommend the common first, prev, next, last rels, as well as RFC5005's prev-archive, next-archive, and current.http://stackoverflow.com/questions/285990/parse-html-via-xpath/285992#285992Comment by Joseph Holsten on Parse HTML via XPathJoseph Holsten2009-08-23T11:05:48Z2009-08-23T11:05:48ZAs _why has disappeared from the internet, and as nokogiri is becoming the 800-pound gorilla of ruby xml parsing, I can no longer recommend Hpricot. But it was best when you wrote this.http://stackoverflow.com/questions/1230741/convert-a-nokogiri-document-to-a-ruby-hashComment by Joseph Holsten on Convert a Nokogiri document to a Ruby HashJoseph Holsten2009-08-12T12:18:06Z2009-08-12T12:18:06ZActually, Rails' Hash.from_xml is neatly wrapped up in the MiniXML section of the Rails code. I've been meaning to extract it since I wrote it. Give me a nudge if you don't hear about it soon.http://stackoverflow.com/questions/263347/is-nntp-dead/263430#263430Comment by Joseph Holsten on Is NNTP dead?Joseph Holsten2009-08-05T19:55:13Z2009-08-05T19:55:13ZYou don't need an NNTP account to get access to Usenet, just poke around Google Groups. You might also notice that you can “display a CAPTCHA over NNTP” about as well as you can display one over HTTP. The concepts are unrelated. The issue is that posts will be mirrored between servers, so any one server's attempts to clean up the web are marginal. CAPTCHA can't get spam off Usenet any better that it can keep Google from displaying spam in search results.http://stackoverflow.com/questions/263347/is-nntp-dead/263769#263769Comment by Joseph Holsten on Is NNTP dead?Joseph Holsten2009-08-05T19:49:00Z2009-08-05T19:49:00ZI'll politely disagree instead of downvoting you.
I'm glad you recognize that Google is not some magic solution to errors and failures.
Most “web-based forums” that want distributed, fault-tolerant, and load-balanced services start with those services and built the website on top. Which means they slap a web interface on a usenet group, not the other way around.http://stackoverflow.com/questions/263347/is-nntp-dead/263390#263390Comment by Joseph Holsten on Is NNTP dead?Joseph Holsten2009-08-05T19:44:34Z2009-08-05T19:44:34ZYes, there is a standard way to post to a feed. It's called AtomPub, and it's the access protocol for Atom feeds. It's even got extensions for threading, so you certainly <i>could</i> replace NNTP forums with it. But I don't recommend it.http://stackoverflow.com/questions/171400/which-is-fastest-in-php-mysql-or-mysqli/171403#171403Comment by Joseph Holsten on Which is fastest in PHP- MySQL or MySQLi?Joseph Holsten2009-05-23T09:55:13Z2009-05-23T09:55:13ZAs the first result in google now seems to be <<a href="http://www.mysqlperformanceblog.com/?s=php+pdo+mysqli+benchmark>" rel="nofollow">mysqlperformanceblog.com/?s=php+pdo+mysqli+benchm…</a>;, I don't think that was quite what you meant. Perhaps in the future, you'd refrain from sardonic responses. Especially if this very page rises from being the sixth result under your google search.http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627140#627140Comment by Joseph Holsten on Compute a derivative using discrete methodsJoseph Holsten2009-03-09T17:58:47Z2009-03-09T17:58:47ZKeep in mind that the code in Numerical Recipes is [not public domain][1] or open source. Copy at your own risk.
[1]: <a href="http://www.nr.com/public-domain.html" rel="nofollow">nr.com/public-domain.html</a>
http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627122#627122Comment by Joseph Holsten on Compute a derivative using discrete methodsJoseph Holsten2009-03-09T17:56:40Z2009-03-09T17:56:40ZThese seem to be two variable methods, not multivariate methods as in the question. Am I missing something? If not, I can't recommend adapting a two variable method to more variables. It's really error prone.http://stackoverflow.com/questions/627055/compute-a-derivative-using-discrete-methods/627106#627106Comment by Joseph Holsten on Compute a derivative using discrete methodsJoseph Holsten2009-03-09T17:53:05Z2009-03-09T17:53:05ZUnless you really want to dive into the floating point implementation of whatever language you happen to be using, it is hard to pick a good epsilon. But please post the weird floating point errors you find!http://stackoverflow.com/questions/6327/what-are-your-programming-exercises/7982#7982Comment by Joseph Holsten on What are your programming exercises?Joseph Holsten2008-10-02T17:55:40Z2008-10-02T17:55:40ZOnly two instance vars? That's like lisp with only car and cdr!http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133997#133997Comment by Joseph Holsten on Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T16:14:35Z2008-09-25T16:14:35ZYour guess was right, it's not necessary to append the form. Looks goodhttp://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133979#133979Comment by Joseph Holsten on Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T16:12:49Z2008-09-25T16:12:49ZXMLHTTPRequest doesn't update the window. Are you trying to say I should end with the AJAX with a document.write(http.responseText)?http://stackoverflow.com/questions/5043/how-can-i-get-rich-just-programming/5137#5137Comment by Joseph Holsten on How can I get rich just programmingJoseph Holsten2008-09-19T02:40:37Z2008-09-19T02:40:37ZNo, it won't go under zero. BTW, the faq tells you exactly how reputation works