User Jason S - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T16:36:13Zhttp://stackoverflow.com/feeds/user/44330http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1874742/eclipse-autoindent-for-xml-particularly-build-xml-files0eclipse: autoindent for xml (particularly build.xml) files?Jason S2009-12-09T15:42:00Z2009-12-09T15:46:24Z
<p>I really like Eclipse's autoindent feature for .java files, but when I hit Ctrl-I with build.xml open, it just erases the selection.</p>
<p>Is there any way to get autoindent for .xml files working in Eclipse?</p>
http://stackoverflow.com/questions/1557082/programmer-friendly-search-engine5programmer-friendly search engine?Jason S2009-10-12T21:37:19Z2009-12-08T19:54:43Z
<p>Google is unfriendly to searching for verbatim strings with characters like $ and #. Is there a search engine that supports searching for verbatim strings?</p>
http://stackoverflow.com/questions/1867458/unicode-document-viewer-tool1unicode document viewer tool?Jason S2009-12-08T14:49:58Z2009-12-08T15:06:58Z
<p>Is there a tool out there that provides unicode codepoint display? Kind of like a hex editor except the codepoints would be displayed rather than bytes.</p>
<p>to clarify: </p>
<p>I want to be able to display a document (either a file, or paste what's in the clipboard), and have two views of that document at once, </p>
<ul>
<li>the original text including unicode characters displayed normally</li>
<li>a list of codepoints corresponding to those characters</li>
</ul>
<p>and it should be able to highlight an individual character in both views so I can see what codepoint corresponds to a particular character I'm interested in.</p>
<p>Read-only features would be fine for what I need, but read-write would also be nice.</p>
http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext0symbols in restructuredTextJason S2009-12-07T19:52:45Z2009-12-08T14:42:49Z
<p>I want to use some symbols in restructuredText; how can I do this? (e.g. <code>&rarr;</code> in Markdown yields the "→" symbol as defined in the <a href="http://en.wikipedia.org/wiki/List%5Fof%5FXML%5Fand%5FHTML%5Fcharacter%5Fentity%5Freferences" rel="nofollow">list of standard HTML character entities</a> -- see also <a href="http://www.w3.org/TR/REC-html40/sgml/entities.html" rel="nofollow">w3c reference</a>)</p>
<p>Note: I don't want to require math formula support as a dependency.</p>
http://stackoverflow.com/questions/1842287/ant-best-way-to-setup-system-dependent-properties1ant: best way to setup system-dependent properties?Jason S2009-12-03T19:25:31Z2009-12-07T08:38:06Z
<p>I have a number of file/executable locations that are likely to be different depending on which computer I am running them on, and I would like to abstract these out through ant properties somehow. What's the best way to do this? Is there a system-wide ant setup script that gets called? Or can I make such a script?</p>
http://stackoverflow.com/questions/713247/what-is-the-best-way-to-programatically-detect-porn-images/1853839#18538391Answer by Jason S for What is the best way to programatically detect porn images?Jason S2009-12-05T23:24:33Z2009-12-05T23:24:33Z<blockquote>
<p>I shall not today attempt further to
define the kinds of material I
understand to be embraced within that
shorthand description ["hard-core
pornography"]; and perhaps I could
never succeed in intelligibly doing
so. But I know it when I see it, and
the motion picture involved in this
case is not that.</p>
</blockquote>
<p>— <a href="http://en.wikipedia.org/wiki/I%5Fknow%5Fit%5Fwhen%5FI%5Fsee%5Fit" rel="nofollow">United States Supreme Court Justice Potter Stewart, 1964</a></p>
http://stackoverflow.com/questions/1852003/java-jvm-for-c-programmer/1852900#18529000Answer by Jason S for Java/JVM for C++ programmer?Jason S2009-12-05T17:51:55Z2009-12-05T17:51:55Z<p>I was in a similar situation as you, and the book I liked the most is O'Reilly's <a href="http://books.google.com/books?id=4nsTY99ProMC&dq=learning+java&printsec=frontcover&source=bn&hl=en&ei=eZ0aS6vaK83DlAfIo-zxCQ&sa=X&oi=book%5Fresult&ct=result&resnum=5&ved=0CCIQ6AEwBA#v=onepage&q=&f=false" rel="nofollow">Learning Java</a>. It's got a pretty good combination of breadth and depth, and is easy to follow.</p>
http://stackoverflow.com/questions/1850096/using-quick-sequence-diagram-editor-for-sequence-diagrams0using Quick Sequence Diagram Editor for sequence diagramsJason S2009-12-04T22:33:10Z2009-12-05T15:40:28Z
<p>Anyone have experience with <a href="http://sdedit.sourceforge.net/" rel="nofollow">Quick Sequence Diagram Editor</a>? The combination of instant display + text source code + Java implementation is very attractive to me, but I can't quite figure out how to make the syntax do what I want, and the documentation's not very clear. Here's a contrived example:</p>
<pre><code>al:Actor
bill:Actor
atm:ATM[a]
bank:Bank[a]
al:atm.give me $10
atm:al has $3=bank.check al's account balance
al:atm.what time is it
atm:al.it's now
atm:al.stop bugging me
atm:al.you only have $3
atm:bill.and don't you open your mouth
bill:atm.who asked you?
bill:atm.give me $20
al:atm.hey, I'm not finished!
atm:bill has $765=bank.check bill's account balance
atm:yes I'm sure, bill has $765=bank.hmm are you sure?
atm:bill.here's $20, now go away
atm:great, he's a cool dude=bank.I just gave Bill $20
al:atm.what about my $10?
atm:al.read my lips: you only have $3
</code></pre>
<p>Here's the result from QSDE in single-threaded mode:</p>
<p><img src="http://farm3.static.flickr.com/2509/4158980988%5F63917ea703%5Fo.png" alt="single-threaded"></p>
<p>and in multi-threaded mode:</p>
<p><img src="http://farm3.static.flickr.com/2606/4158217773%5F2c78a14b96%5Fo.png" alt="multi-threaded"></p>
<p>I guess I'm not clear what starts/ends those vertical bars. I have a situation which is single-threaded, but there's state involved, and all the messages are asynchronous. I guess that means I should use an external object to represent that state and its lifetime. What I want is for one timeline to represent the message sequence</p>
<ol>
<li>al:atm.give me $10</li>
<li>atm:bank.check al's account balance</li>
<li>bank:atm.al has $3</li>
<li>atm:al.you only have $3</li>
</ol>
<p>and another timeline to represent the message sequence</p>
<ol>
<li>bill:atm.give me $20</li>
<li>atm:bank.check bill's account balance</li>
<li>bank:atm.bill has $765</li>
<li>atm:bank.hmm are you sure?</li>
<li>bank:atm.yes I'm sure, bill has $765</li>
<li>atm:bill.here's $20, now go away</li>
<li>atm:bank.I just gave Bill $20</li>
<li>bank:atm.great, he's a cool dude</li>
</ol>
<p>with the other "wisecracks" representing other miscellaneous messages that I don't care about right now.</p>
<p>Is there a way to do this with QSDE?</p>
http://stackoverflow.com/questions/1850534/matlab-storing-results-of-a-operation-in-a-matrix/1850967#18509676Answer by Jason S for [Matlab] Storing Results of a Operation in a MatrixJason S2009-12-05T02:47:44Z2009-12-05T02:47:44Z<pre><code>% vectorized
x = sin((1:100)*pi/180);
</code></pre>
<p>or</p>
<pre><code>% nonvectorized
x=[];
for i = 1:100
x(i) = sin(i*pi/180);
end
</code></pre>
http://stackoverflow.com/questions/1849068/svn-with-preexisting-directory0svn with preexisting directoryJason S2009-12-04T19:17:44Z2009-12-04T19:18:29Z
<p>So I have a whole pre-existing directory, let's call it <code>c:/src/foo</code>, with a bunch of files in it, some I want to put under SVN version control, some I do not.</p>
<p>I created an empty spot in my SVN repository for this to go, let's call it <code>http://myserver/svn/tools/foo/trunk</code>.</p>
<p>How can I checkout the SVN repository into c:/src/foo so I can add the files I want?</p>
<pre><code>c:\src\foo> svn co http://myserver/svn/tools/foo/trunk .
svn: '.' already exists and is not a directory
c:\src\foo> svn co --force http://myserver/svn/tools/foo/trunk .
svn: '.' already exists and is not a directory
c:\src\foo> cd ..
c:\src> svn co --force http://myserver/svn/tools/foo/trunk foo
svn: 'foo' already exists and is not a directory
</code></pre>
<p>WTF? sure, "foo" already exists, but it is a directory.... I am very confused here. I tried with TortoiseSVN and had the same problem</p>
http://stackoverflow.com/questions/1849068/svn-with-preexisting-directory/1849074#18490742Answer by Jason S for svn with preexisting directoryJason S2009-12-04T19:18:29Z2009-12-04T19:18:29Z<p>ARGH -- I just realized my mistake, the directory was a junction point (hardlink in Windows)</p>
http://stackoverflow.com/questions/1223795/using-java-enums-or-public-static-fields-in-matlab1using Java enums or public static fields in MATLABJason S2009-08-03T18:10:25Z2009-12-04T10:39:45Z
<p>I'm wondering how in MATLAB you can get a reference to a Java <code>enum</code> or static public field. In MATLAB, if you are trying to use Java objects/methods, there are equivalents to Java object creation / method call / etc.:</p>
<p>Java: <code>new com.example.test.Foo();</code> </p>
<p>MATLAB: <code>javaObject('com.example.test.Foo');</code> </p>
<p>Java: <code>com.example.test.Foo.staticMethod();</code> </p>
<p>MATLAB: <code>javaMethod('staticMethod', 'com.example.test.Foo');</code></p>
<p>Java: <code>SomeEnum e = com.example.test.SomeEnum.MY_FAVORITE_ENUM;</code></p>
<p>MATLAB: ?????</p>
<p>Java: <code>int n = com.example.test.Foo.MAX_FOO</code>;</p>
<p>MATLAB: ?????</p>
http://stackoverflow.com/questions/1841659/has-anyone-run-sphinx-from-ant1has anyone run sphinx from ant?Jason S2009-12-03T17:47:51Z2009-12-03T18:13:43Z
<p>I'm using <a href="http://sphinx.pocoo.org/" rel="nofollow">sphinx</a> for some software documentation because it seems to work really well... but my project is a java project and I would like to run sphinx from an ant script.</p>
<p>Has anyone written a custom ant task to call sphinx?</p>
http://stackoverflow.com/questions/1834834/need-help-in-converting-mysql-to-mysqli-in-my-php-script/1834908#18349080Answer by Jason S for Need HELP in converting MySQL to MySQLI in my PHP script?Jason S2009-12-02T18:35:16Z2009-12-02T18:35:16Z<p>If you're going to go through the hassle, I would really recommend you consider <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">PDO</a> instead.</p>
http://stackoverflow.com/questions/1833129/how-to-make-sure-im-using-the-server-jvm/1833172#18331728Answer by Jason S for How to make sure I'm using the "server" JVM?Jason S2009-12-02T14:19:12Z2009-12-02T14:19:12Z<p>I had a very similar question <a href="http://serverfault.com/questions/72565/which-jvm-is-best-for-tomcat">which I asked on ServerFault</a>. I would say, if you care which version is run, always use -client or -server.</p>
http://stackoverflow.com/questions/1828322/non-jquery-javascript-cross-browser-livesearch-autocomplete0non-jquery javascript cross-browser livesearch/autocompleteJason S2009-12-01T19:29:18Z2009-12-01T19:29:18Z
<p>Is there a good cross-browser livesearch (autocomplete) library available? I need something that handles these aspects well cross-browser:</p>
<ul>
<li>handles keypress interaction</li>
<li>creates/displays a table and calls back a function when either the tab, enter and/or space keys have been pressed</li>
<li>has hooks for external javascript to hide/destroy the table in question</li>
</ul>
<p>I have a .php file that actually does the search and reports results in XML; I can handle and want to handle the XMLHttpRequest, and the parsing of the results, it's just that I'm lousy with keypresses/event handling/etc.</p>
<p>Thought I'd found one, but by the time I hacked it to do what I wanted in Firefox, it no longer worked in Opera or Internet Explorer 7.</p>
http://stackoverflow.com/questions/826938/interoperation-between-mercurial-and-subversion9interoperation between mercurial and subversionJason S2009-05-05T21:15:38Z2009-12-01T10:29:02Z
<p>A <a href="http://stackoverflow.com/questions/799860/using-mercurial-locally-only-with-subversion-server">similar question</a> has been asked recently, but is not the same.</p>
<p>The Mercurial website has a <a href="http://www.selenic.com/mercurial/wiki/index.cgi/WorkingWithSubversion" rel="nofollow">detailed page</a> listing comparisons for 4 different options for getting Mercurial and Subversion to interoperate.</p>
<p><strong>I am wondering if anyone out there has tried one or more of these, and could relate any really good or really bad experiences.</strong> The note on the <a href="http://bitbucket.org/durin42/hgsubversion/overview/" rel="nofollow">hgsubversion download</a> says</p>
<blockquote>
<p>hgsubversion is an extension for
Mercurial that allows using Mercurial
as a Subversion client. Right now it
is <em>not</em> ready for production use. You
should only be using this if you're
ready to hack on it, and go diving
into the internals of Mercurial and/or
Subversion.</p>
</blockquote>
<p>which is about as inviting to me signs that say "Abandon hope, all ye who enter here" or "Trespassers will be arrested". So I'm just wondering if this or any of the other alternatives are worth trying for someone who doesn't have a lot of extra time to hack around.</p>
http://stackoverflow.com/questions/1817236/best-way-to-determine-lower-uppercase-in-php2best way to determine lower/uppercase in PHP?Jason S2009-11-30T00:07:25Z2009-11-30T00:15:25Z
<p>I have a string that is one of the following forms</p>
<pre><code>ABC // all caps:
// not necessarily "ABC", could be any combination of capital letters
Abc // first letter capitalized, rest are lowercase
abc // all lowercase
</code></pre>
<p>and I need to distinguish which of these three cases it is... what's the best way to do this? There doesn't seem to be an <code>islower()</code> or <code>isupper()</code> function; I suppose I could make one using <code>strtoupper()</code> or <code>strtolower()</code>.</p>
http://stackoverflow.com/questions/1814421/is-there-a-use-case-for-creating-threads-without-synchronization-and-locks/1814427#18144279Answer by Jason S for Is there a use case for creating threads without synchronization and locks?Jason S2009-11-29T02:12:10Z2009-11-29T02:19:37Z<p>Delegation, just as one example. Consider a webserver that gets connect requests. It can delegate to a worker thread a particular request. The main thread can pass all the data it wants to the worker thread, as long as that data is immutable, and not have to worry at all about concurrent data access.</p>
<p>(For that matter, both main thread and worker thread can send all the immutable data to each other they want, it just requires a messaging queue of some sort, so the queue may need synchronization but not the data itself. But you don't need a message queue to get data to a worker thread, just construct the data before the thread starts, and as long as the data is immutable at that point, you don't need any synchronization or locks or concurrency management of any sort, other than the ability to run a thread.)</p>
http://stackoverflow.com/questions/1813305/algorithm-for-logarithmically-converting-a-number-to-a-percentage/1813419#18134192Answer by Jason S for Algorithm for logarithmically converting a number to a percentageJason S2009-11-28T19:00:27Z2009-11-28T19:00:27Z<p>how about <code>y = f(t) = 1 - exp(-t/tau)</code> ?</p>
<p>For t near 0, y is approximately t/tau. For t approaching infinity, y asymptotically approaches 1.</p>
<p>As for the f(1)=0.5 approach, this can be used to solve for tau = 1/log(2).</p>
http://stackoverflow.com/questions/1810330/how-can-i-get-around-the-same-origin-policy/1810378#18103782Answer by Jason S for How can i get around the same origin policy?Jason S2009-11-27T19:38:59Z2009-11-27T19:38:59Z<p>if you control both servers, you can use one of the HTTP header fields for <a href="http://dev.w3.org/2006/waf/access-control/" rel="nofollow">cross-origin resource sharing</a>:</p>
<p><a href="http://www.petefreitag.com/item/703.cfm" rel="nofollow">http://www.petefreitag.com/item/703.cfm</a></p>
<p><a href="https://developer.mozilla.org/En/HTTP%5Faccess%5Fcontrol" rel="nofollow">https://developer.mozilla.org/En/HTTP%5Faccess%5Fcontrol</a></p>
http://stackoverflow.com/questions/1801003/java-biginteger-prime-numbers/1801181#18011812Answer by Jason S for Java BigInteger prime numbersJason S2009-11-26T02:04:51Z2009-11-26T05:24:39Z<p>jprete's answer is fine if your ratio max/min is not close to 1.</p>
<p>If you have a narrow range, your best bet is probably just to do something like the following:</p>
<pre><code>// this is pseudocode:
//
// round min down to multiple of 6, max up to multiple of 6
min6 = floor(min/6);
max6 = ceil(max/6);
maybePrimeModuli = [1,5];
do
{
b = generateRandom(maybePrimeModuli.length);
// generate a random offset modulo 6 which could be prime
x = 6*(min6 + generateRandom(max6-min6)) + b;
// generate a random number which is congruent to b modulo 6
// from 6*min6 to 6*max6-1
// (of the form 6k+1 or 6k+5)
// the other choices 6k, 6k+2, 6k+3, 6k+4 are composite
} while not isProbablePrime(x);
</code></pre>
<p>The <a href="http://en.wikipedia.org/wiki/Prime%5Fnumber%5Ftheorem#Table%5Fof%5F.CF.80.28x.29.2C%5Fx%5F.2F%5Fln%5Fx.2C%5Fand%5Fli.28x.29" rel="nofollow">density of primes</a> is fairly high overall, it's basically 1 in log(x), so you shouldn't have to repeat too many times to find a prime number. (just as an example: for numbers around 10<sup>23</sup>, one in every 52 integers on average is a prime number. The above code only bothers with 2 out of every 6 numbers, so you'd end up looping an average of 17 times for numbers around 10<sup>23</sup>.) </p>
<p>Just make sure you have a good primality test, and the Java BigInteger has one.</p>
<p>As an exercise for the reader, extend the above function so it filters out more composite numbers ahead of time by using 30k + x (modulo 30, there are 22 moduli that are always composite, only 8 remaining that could be prime), or 210k + x.</p>
<p>edit: see also <a href="http://www.freepatentsonline.com/7149763.html" rel="nofollow">US patent #7149763</a> (OMFG!!!)</p>
http://stackoverflow.com/questions/1790256/how-do-i-get-the-latest-updated-revision-via-svn/1790304#17903043Answer by Jason S for How do I get the latest updated revision via SVN?Jason S2009-11-24T14:08:47Z2009-11-24T14:15:41Z<p>svnversion displays a range of numbers</p>
<pre><code>> svnversion
2:3
</code></pre>
<p>The first number is the last updated / checked-out version. The second number is the last checked-in version. If they are the same, you'll only see one number.</p>
<p>edit: be aware that if you are doing complicated checkin/checkout/merges, different parts of your working copy may be at different revisions, and svnversion will tell you the range of revision numbers. see the <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svnversion.re.html" rel="nofollow">svnversion</a> documentation.</p>
http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic/1790241#17902411Answer by Jason S for In C is "i+=1;" atomic?Jason S2009-11-24T13:59:22Z2009-11-24T13:59:22Z<p>The C / C++ language itself makes no claim of atomicity or lack thereof. You need to rely on intrinsics or library functions to ensure atomic behavior.</p>
http://stackoverflow.com/questions/1783633/matlab-apply-a-low-pass-or-high-pass-filter-to-an-array/1783689#17836894Answer by Jason S for MATLAB: Apply a low-pass or high-pass filter to an arrayJason S2009-11-23T15:06:13Z2009-11-23T15:19:40Z<p>sure, look at the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/filter.html" rel="nofollow">filter</a> function.</p>
<p>If you just need a 1-pole low-pass filter, it's</p>
<pre><code>xfilt = filter(a, [1 a-1], x);
</code></pre>
<p>where a = T/τ, T = the time between samples, and τ (tau) is the filter time constant.</p>
<p>Here's the corresponding high-pass filter:</p>
<pre><code>xfilt = filter([1-a a-1],[1 a-1], x);
</code></pre>
<p>If you need to design a filter, and have a license for the Signal Processing Toolbox, there's <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/signal/f9-131178.html" rel="nofollow">a bunch of functions</a>, look at <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/signal/fvtool.html" rel="nofollow">fvtool</a> and <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/signal/fdatool.html" rel="nofollow">fdatool</a>.</p>
http://stackoverflow.com/questions/1779013/check-if-string-contains-only-digits/1779023#17790232Answer by Jason S for Check if string contains only digitsJason S2009-11-22T15:26:55Z2009-11-22T15:26:55Z<pre><code>string.match(/^[0-9]+$/) != null;
</code></pre>
http://stackoverflow.com/questions/1777944/analogy-a-programming-language-without-namespaces-is-like/1777954#17779542Answer by Jason S for Analogy? A programming language without namespaces is like (...)Jason S2009-11-22T06:00:44Z2009-11-22T06:00:44Z<p>...Fred Flintstone and Fred Astaire and Fred Rogers all in a room and getting confused with each other because they're just Freds.</p>
<p>not sure you'll find the ultimate analogy, but good luck. Technically namespaces are just syntactic sugar to offer programmers the ability to refer to a particular identifier/symbol by two names, a full name for disambiguation, and a short name for convenience. Not strictly necessary or really a core part of the language.</p>
http://stackoverflow.com/questions/1775816/how-to-get-the-md5sum-of-a-file-on-amazons-s3/1775831#17758312Answer by Jason S for How to get the md5sum of a file on Amazon's S3Jason S2009-11-21T15:49:11Z2009-11-21T16:06:21Z<p>Hmm... I think you can look at the ETag header. (in which case you can use the HTTP <a href="http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectHEAD.html" rel="nofollow">HEAD</a> method rather than GET.) They don't quite say it explicitly, but it's almost certain Amazon uses MD5 hash for the ETag. From the <a href="http://docs.amazonwebservices.com/AmazonS3/latest/API/index.html?RESTObjectPUT.html" rel="nofollow">PUT Object documentation</a> (dunno why they don't just come right out and say it):</p>
<blockquote>
<p>To ensure data is not corrupted over the network, use the Content-MD5 header. When you use the Content-MD5 header, Amazon S3 checks the object against the provided MD5 value. If they do not match, Amazon S3 returns an error. Additionally, you can calculate the MD5 while putting an object to Amazon S3 and compare the returned Etag to the calculated MD5 value.</p>
</blockquote>
<p>Also, the <a href="http://docs.amazonwebservices.com/AmazonS3/latest/API/SOAPGetObject.html" rel="nofollow">SOAP methods</a> let you request just the metadata and not the data itself.</p>
http://stackoverflow.com/questions/1774430/still-a-future-and-a-present-for-6502-vic-and-sid/1774459#17744590Answer by Jason S for Still a future (and a present) for 6502, VIC and SID ?Jason S2009-11-21T03:58:07Z2009-11-21T04:03:11Z<blockquote>
<p>For example, I remember the 6502 makes a perfect controller chip for small appliances.</p>
</blockquote>
<p>I dunno about the VIC and SID chips (special purpose video / audio chips are different than a CPU), but I don't see any reason to use a 6502. There are tons of cheap low-power microcontrollers (e.g. Microchip PIC, Atmel, TI MSP430, etc) that are readily available, have more CPU horsepower than a 6502, have useful peripherals (ADCs, UARTs, built-in oscillator, etc), and have real-time debugging features. Why use a 30-year-old microcontroller?</p>
http://stackoverflow.com/questions/1771747/resources-to-learn-about-batch-files/1771859#17718591Answer by Jason S for Resources to learn about batch filesJason S2009-11-20T17:02:37Z2009-11-20T17:02:37Z<p>While I usually don't like MSDN, in this case its <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/batch.mspx?mfr=true" rel="nofollow">documentation on batch files</a> seems fairly decent.</p>
http://stackoverflow.com/questions/1874742/eclipse-autoindent-for-xml-particularly-build-xml-files/1874772#1874772Comment by Jason S on eclipse: autoindent for xml (particularly build.xml) files?Jason S2009-12-09T16:22:30Z2009-12-09T16:22:30Zand... er... how do I find out whether my eclipse version is one of the packages you mention? if not how do I modify this?http://stackoverflow.com/questions/1870957/how-does-sqlite-work-it-is-in-memory-database-or-is-it-a-physical-disk-databaseComment by Jason S on How does SQLite work? It is in-memory database, or is it a physical disk database?Jason S2009-12-09T01:13:07Z2009-12-09T01:13:07Zer um... your question and the title of your question are rather different... please fix.http://stackoverflow.com/questions/340923/what-is-the-most-readable-appealing-font/341053#341053Comment by Jason S on What is the most readable, appealing font?Jason S2009-12-08T15:39:58Z2009-12-08T15:39:58ZYou will note (I hope) that the use of Helvetica in all caps looks awful compared to mixed-case. Also, Helvetica Narrow looks even worse.http://stackoverflow.com/questions/1867458/unicode-document-viewer-tool/1867497#1867497Comment by Jason S on unicode document viewer tool?Jason S2009-12-08T15:36:32Z2009-12-08T15:36:32ZI tried that, it's an either-or display. I want to see both at once.http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext/1862568#1862568Comment by Jason S on symbols in restructuredTextJason S2009-12-08T15:14:28Z2009-12-08T15:14:28ZArgh -- a red herring, it has something to do with the CSS or font displays, nothing to do with UTF-8 encoding vs. HTML entity encoding. Thanks!http://stackoverflow.com/questions/1867458/unicode-document-viewer-toolComment by Jason S on unicode document viewer tool?Jason S2009-12-08T15:08:55Z2009-12-08T15:08:55ZAnd my hex editor doesn't display UTF-8 characters properly so instead of one unicode character, I see 3 gobbledygook characters in its place.http://stackoverflow.com/questions/1867458/unicode-document-viewer-tool/1867497#1867497Comment by Jason S on unicode document viewer tool?Jason S2009-12-08T15:03:12Z2009-12-08T15:03:12ZThat looks like a useful character set viewer, but it's not what I'm looking for.http://stackoverflow.com/questions/1867458/unicode-document-viewer-toolComment by Jason S on unicode document viewer tool?Jason S2009-12-08T15:00:01Z2009-12-08T15:00:01ZThey do but it's a PAIN to decode UTF-8 manually. First you have to load the file into a hex editor, then you have to find the area you're interested in, then you figure out which bytes correspond to a specific character, then do all the decoding. e.g. e2 86 92 encodes codepoint 0x2192. http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext/1862568#1862568Comment by Jason S on symbols in restructuredTextJason S2009-12-08T14:45:21Z2009-12-08T14:45:21ZHmm. Both sources claim codepoint 0x2192 for rarr, and the surrounding text is in the same font, yet the symbols look different. Something is fishy, and like I said, I don't have a character codepoint decoder.http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext/1862568#1862568Comment by Jason S on symbols in restructuredTextJason S2009-12-07T21:41:36Z2009-12-07T21:41:36ZI'm looking at this <code>&rarr;</code> on this site, and comparing it against Sphinx (using RST) HTML output of |rarr|. Both are HTML and are using the same default font. I'm not sure if they are the same unicode character, I don't have a character-codepoint-decoder on hand.http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext/1862568#1862568Comment by Jason S on symbols in restructuredTextJason S2009-12-07T20:15:24Z2009-12-07T20:15:24ZHmmm. These look really lousy compared to the Markdown symbols that result.http://stackoverflow.com/questions/1862472/symbols-in-restructuredtext/1862485#1862485Comment by Jason S on symbols in restructuredTextJason S2009-12-07T19:56:35Z2009-12-07T19:56:35Zhmm... I guess I could, but I'd rather stick to ASCII.http://stackoverflow.com/questions/163254/on-32-bit-cpus-is-an-integer-type-more-efficient-than-a-short-type/163356#163356Comment by Jason S on On 32-bit CPUs, is an 'integer' type more efficient than a 'short' type?Jason S2009-12-05T23:07:06Z2009-12-05T23:07:06Z+1 for the link to the memory paper! wow!http://stackoverflow.com/questions/1615621/algorithm-to-minimize-the-space-complexity-of-a-sparse-matrixComment by Jason S on Algorithm to minimize the space complexity of a sparse matrix?Jason S2009-12-05T15:03:11Z2009-12-05T15:03:11ZBad spelling is sometimes just an indication of unfamiliarity with the language. Very repetitive is sometimes just an indication of lack of creativity.http://stackoverflow.com/questions/1615621/algorithm-to-minimize-the-space-complexity-of-a-sparse-matrix/1657869#1657869Comment by Jason S on Algorithm to minimize the space complexity of a sparse matrix?Jason S2009-12-05T15:01:09Z2009-12-05T15:01:09ZThis is not an answer. Please do not post answers unless you are actually answering a question