User tlrobinson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T16:39:32Zhttp://stackoverflow.com/feeds/user/113http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1575925/disable-logging-in-java-xerces-fatal-error-11-content-is-not-allowed-in-pr2Disable logging in Java Xerces ("[Fatal Error] :1:1: Content is not allowed in prolog.")tlrobinson2009-10-16T00:51:22Z2009-10-16T01:16:20Z
<p>My application expects that it will sometimes try to parse invalid XML documents. I currently catch the "SAXParseException: Content is not allowed in prolog." exception, which works fine. However, Xerces still feels the need to print it's own message to the console:</p>
<pre><code>[Fatal Error] :1:1: Content is not allowed in prolog.
</code></pre>
<p>Is there any way to disable this?</p>
http://stackoverflow.com/questions/613962/is-jsonp-safe-to-use/1392153#13921530Answer by tlrobinson for Is JSONP safe to usetlrobinson2009-09-08T05:32:02Z2009-09-08T05:32:02Z<p>Yes, you need to be careful, but when used properly with trusted services it's relatively safe.</p>
<p>Here's a summary of the security issues with JSONP, as I understand it:</p>
<p>From the consumer's perspective:</p>
<ul>
<li>You must trust the provider to not return malicious JavaScript instead of the expected JSON wrapped in the JSONP callback you specify.</li>
<li>The same is also true of any third party JavaScript embedded add-ons, such as Google Analytics.</li>
<li>It's only similar to XSS attacks in that it allows a 3rd party to execute arbitrary JavaScript in your application, however, you must first choose to trust that 3rd party by making the request in the first place.</li>
</ul>
<p>From the provider's perspective:</p>
<ul>
<li>You must not assume that even though the clients' cookie(s) are present in the request that the consumer is a webpage under your control. Check the Referer header against a whitelist of authorized URLs, and/or don't rely on cookie-based authentication.</li>
<li>Analogous to a CSRF / confused deputy attack.</li>
</ul>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766708#7667083Answer by tlrobinson for What is the best comment in source code you have ever encountered?tlrobinson2009-04-20T02:52:15Z2009-04-20T02:52:15Z<p><code>// This is confusing, I KNOW, so let me explain it to you.</code></p>
http://stackoverflow.com/questions/659752/programming-challenge-can-you-code-a-hello-world-program-as-a-palindrome/679884#6798840Answer by tlrobinson for Programming challenge: can you code a hello world program as a Palindrome?tlrobinson2009-03-25T01:22:47Z2009-04-03T00:11:56Z<p>JavaScript (cheating):</p>
<pre><code>alert("Hello world"); // ;)"dlrow olleH"(trela
</code></pre>
http://stackoverflow.com/questions/7665/how-to-resolve-symbolic-links-in-a-shell-script/697552#6975521Answer by tlrobinson for How to resolve symbolic links in a shell scripttlrobinson2009-03-30T14:54:59Z2009-03-30T14:54:59Z<p>"pwd -P" seems to work if you just want the directory, but if for some reason you want the name of the actual executable I don't think that helps. Here's my solution:</p>
<pre><code>#!/bin/bash
# get the absolute path of the executable
SELF_PATH=$(cd -P -- "$(dirname -- "$0")" && pwd -P) && SELF_PATH=$SELF_PATH/$(basename -- "$0")
# resolve symlinks
while [ -h $SELF_PATH ]; do
# 1) cd to directory of the symlink
# 2) cd to the directory of where the symlink points
# 3) get the pwd
# 4) append the basename
DIR=$(dirname -- "$SELF_PATH")
SYM=$(readlink $SELF_PATH)
SELF_PATH=$(cd $DIR && cd $(dirname -- "$SYM") && pwd)/$(basename -- "$SYM")
done
</code></pre>
http://stackoverflow.com/questions/408627/llv8call-on-mac-os-x-2nd-try/487200#4872000Answer by tlrobinson for llv8call on Mac OS X - 2nd trytlrobinson2009-01-28T10:44:18Z2009-01-28T10:44:18Z<p>I would also be interested in solving this problem. I haven't had any luck yet :-\</p>
http://stackoverflow.com/questions/392397/arrays-whats-the-point/392755#3927553Answer by tlrobinson for Arrays, What's the point?tlrobinson2008-12-25T11:33:11Z2008-12-25T11:33:11Z<p>Say you have a series of buckets each tied to the next by a piece of rope, and you're holding onto a piece of rope attached to the first bucket, but you want the contents of the 42nd bucket. You'll have to follow the ropes to 42 buckets before you get to the one you want.</p>
<p>This is like a "linked list". The buckets are memory locations that store the value, and the pieces of rope are the pointers to the next bucket. The lookup time for a random access like this is considered O(N) because it takes on the order of N "operations" to get there. As the size of the list increases, so does the lookup time linearly (i.e. linear time).</p>
<p>Now say you have a series of buckets spaced exactly 1 foot apart, as well as a really long ruler with markings every 1 foot, and you want to get to the 42nd bucket. Just go directly to the spot on the ruler marked 42 and you're there!</p>
<p>That's like an "array". Again, the buckets are the memory locations containing the values, but this time since they're in a straight line evenly spaced you can just jump directly to the offset (think of the memory addresses as the "ruler"). The lookup time for a random access is much faster for lots of buckets, only taking a constant number of operations (jumping directly to the right spot), called O(1). As the size of the array increases, the lookup time stays constant (i.e. constant time)</p>
http://stackoverflow.com/questions/35639/using-office-to-programatically-convert-documents1Using Office to programatically convert documents?tlrobinson2008-08-30T03:16:38Z2008-09-26T18:41:12Z
<p>I'm interested in using Office 2007 to convert between the pre-2007 binary formats (.doc, .xls, .ppt) and the new Office Open XML formats (.docx, .xlsx, .pptx)</p>
<p>How would I do this? I'd like to write a simple command line app that takes in two filenames (input and output) and perhaps the source and/or destination types, and performs the conversion.</p>
http://stackoverflow.com/questions/4392/best-debugging-tools-for-javascript-xulrunner-development/4402#44020Answer by tlrobinson for Best Debugging Tools for JavaScript/xulrunner Developmenttlrobinson2008-08-07T04:53:34Z2008-08-07T04:53:34Z<p>The nightly builds of WebKit have some great new debugging tools:</p>
<p><a href="http://nightly.webkit.org/" rel="nofollow">http://nightly.webkit.org/</a></p>http://stackoverflow.com/questions/845/detecting-font-in-javascript/937#9370Answer by tlrobinson for Detecting font in javascripttlrobinson2008-08-04T01:05:30Z2008-08-04T01:05:30Z<p>One thing to keep in mind is that some browsers will replace certain missing fonts with similar fonts, which is impossible to detect using the JavaScript/CSS trick.</p>
<p>For example, Windows browsers will substitute Arial for Helvetica if it's not installed. The trick MojoFilter and dragonmatank mentioned will still report that Helvetica is installed, even though it isn't.</p>http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/245107#245107Comment by tlrobinson on What is the worst interviewee answer?tlrobinson2009-09-26T17:11:06Z2009-09-26T17:11:06ZDo you ever ask them about the Hollywood Principle?http://stackoverflow.com/questions/613962/is-jsonp-safe-to-use/685394#685394Comment by tlrobinson on Is JSONP safe to usetlrobinson2009-09-08T04:50:09Z2009-09-08T04:50:09ZThis is specifically asking about JSONP, not just JSON: <a href="http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/" rel="nofollow">bob.pythonmac.org/archives/2005/…</a>http://stackoverflow.com/questions/1005676/urls-and-plus-signs/1005686#1005686Comment by tlrobinson on URL's and plus signstlrobinson2009-06-17T08:25:57Z2009-06-17T08:25:57ZJonathan: Are you sure 1738 says + is reserved? I see:
safe = "$" | "-" | "_" | "." | "+"
unreserved = alpha | digit | safe | extra
as well as:
Thus, only alphanumerics, the special characters "$-_.+!*'(),", and
reserved characters used for their reserved purposes may be used
unencoded within a URL.http://stackoverflow.com/questions/1005676/urls-and-plus-signs/1005686#1005686Comment by tlrobinson on URL's and plus signstlrobinson2009-06-17T08:10:55Z2009-06-17T08:10:55ZI am not sure that's right. According to RFC2396 (<a href="http://www.ietf.org/rfc/rfc2396.txt" rel="nofollow">ietf.org/rfc/rfc2396.txt</a>) plusses are not reserved characters in the path (segments) of the URI, only the query component. That seems to imply that they don't need to be URL encoded and thus shouldn't be interpreted as spaces in the path, only in the query.