User mjs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:55:30Z http://stackoverflow.com/feeds/user/11543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1794050/applescript-to-open-named-terminal-window 0 AppleScript to open named terminal window mjs 2009-11-25T01:07:14Z 2009-11-25T14:55:03Z <p>I have two windows/tabs set up to run in Terminal.app, "syd" and "mel". i.e. in Shell | New Window, "syd" and "mel" are listed. How can I open these terminal configurations with AppleScript?</p> http://stackoverflow.com/questions/1285497/how-to-use-the-alt-option-key-as-the-meta-key-in-netbeans-on-os-x-with-emacs-ke 0 How to use the alt/option key as the "meta" key in NetBeans on OS X with emacs keybindings? mjs 2009-08-16T22:26:28Z 2009-11-22T19:52:08Z <p>NetBeans supports emacs-style keybindings, but for some reason it uses cmd as the "meta" key instead of alt, which seems to be the standard on OS X. (Terminal.app has a checkbox for "use option as meta key", for example.) How can I switch to using alt/option as the "meta" key for emacs-style keybindings?</p> http://stackoverflow.com/questions/901244/grabbing-status-code-without-using-a-server-side-language-javascript-perhaps/1779412#1779412 0 Answer by mjs for Grabbing status code without using a server-side language (javascript, perhaps?) mjs 2009-11-22T17:53:04Z 2009-11-22T17:53:04Z <p>As far as I know, there's no way to figure out the status code of a page itself using code embedded on that page. (An Ajax request to a URL will return the status code, so theoretically you could to an Ajax request to the page you're on (i.e request it twice), but that's a bit wacky if you need to do it on every page load...)</p> <p>I think the only solution is to do as you suggest and modify your server-side 404, 500, etc. handlers to embed information about the status code within the page itself (e.g. <code>&lt;script&gt;document.status = "404";&lt;/script&gt;</code>), which you can then extract with JavaScript.</p> http://stackoverflow.com/questions/1732526/netbeans-unicode-problems/1734959#1734959 0 Answer by mjs for Netbeans unicode problems mjs 2009-11-14T17:34:43Z 2009-11-14T17:34:43Z <p>NetBeans FAQ: <a href="http://wiki.netbeans.org/FaqI18nProjectEncoding" rel="nofollow">How do I set or modify the character encoding for a project?</a></p> <p>(Right click project, change the encoding from the properties menu.)</p> <p>Looks like this needs to be done per-project. (Though XML files can specify their own encoding if they wish.)</p> http://stackoverflow.com/questions/1481251/what-does-document-domain-document-domain-do 5 What does document.domain = document.domain do? mjs 2009-09-26T13:44:47Z 2009-11-03T19:18:42Z <p>The client-side JS component of <a href="http://orbited.org/" rel="nofollow">Orbited</a> (a Comet server), requires that if the server is running on a different domain or port to the JS itself, you must execute</p> <pre><code>document.domain = document.domain; </code></pre> <p>before any other JS is loaded. (See the <a href="http://orbited.org/wiki/Deployment" rel="nofollow">documentation</a>.)</p> <p>What does this do? It looks like a NOOP! (I've checked and it is in fact necessary.) </p> http://stackoverflow.com/questions/354547/print-ruby-object-members/1528759#1528759 1 Answer by mjs for Print Ruby object members mjs 2009-10-06T23:54:29Z 2009-10-06T23:54:29Z <p>The <code>to_yaml</code> method seems to be useful sometimes:</p> <pre><code>$foo = {:name =&gt; "Clem", :age =&gt; 43} puts $foo.to_yaml </code></pre> <p>returns</p> <pre><code>--- :age: 43 :name: Clem </code></pre> <p>(Does this depend on some <code>YAML</code> module being loaded? Or would that typically be available?)</p> http://stackoverflow.com/questions/1519818/how-do-check-if-a-php-session-is-empty/1519903#1519903 2 Answer by mjs for How do check if a php session is empty? mjs 2009-10-05T12:49:43Z 2009-10-05T12:49:43Z <p>If you want to check whether sessions are available, you probably want to use the <a href="http://php.net/session%5Fid" rel="nofollow"><code>session_id()</code></a> function: </p> <blockquote>session_id() returns the session id for the current session or the empty string ("") if there is no current session (no current session id exists).</blockquote> http://stackoverflow.com/questions/1437913/how-to-show-reveal-hidden-or-invisible-characters-in-netbeans 0 How to show/reveal hidden or invisible characters in NetBeans? mjs 2009-09-17T10:19:49Z 2009-09-17T10:19:49Z <p>How can you show/reveal hidden characters in NetBeans? In other editors, if this feature is turned on, a space might be shown as a small centered dot, and a tab as a right arrow. (This feature is useful to see if a file uses tabs or spaces for indentation, among other things.)</p> http://stackoverflow.com/questions/598444/how-to-share-apc-cache-between-several-php-processes-when-running-under-fastcgi 2 How to share APC cache between several PHP processes when running under FastCGI? mjs 2009-02-28T18:35:20Z 2009-09-04T02:48:27Z <p>I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I share cache between the processes? How can I check if it's shared already? (I think the <code>apc.mmap_file_mask</code> ini setting might be involved, but I don't know how to use it.)</p> <p>(One of the reasons I think its <em>not</em> shared at the moment is that the <code>apc.mmap_file_mask</code>, as reported by the apc.php web interface flips between about 3 different values as I reload.)</p> http://stackoverflow.com/questions/126100/how-to-efficiently-count-the-number-of-keys-properties-of-an-object-in-javascript 7 How to efficiently count the number of keys/properties of an object in JavaScript? mjs 2008-09-24T08:56:21Z 2009-08-26T17:23:45Z <p>What's the fastest way to count the number of keys/properties of an object? It it possible to do this without iterating over the object? i.e. without doing</p> <pre><code>var count = 0; for (k in myobj) if (myobj.hasOwnProperty(k)) count++; </code></pre> <p>Firefox provides a magic <code>__count__</code> property, but this isn't available in other implementations.</p> http://stackoverflow.com/questions/590313/how-to-link-opened-file-with-project-tree-in-netbeans/1299011#1299011 0 Answer by mjs for How to link opened file with project tree in NetBeans mjs 2009-08-19T10:31:33Z 2009-08-22T12:49:44Z <p>As described in <a href="http://stackoverflow.com/questions/1268046/netbeans-link-with-editor-feature">http://stackoverflow.com/questions/1268046/netbeans-link-with-editor-feature</a>, if you want the link to be permanent or persistent, use View | Synchronize Editor with Views. (In NetBeans >= 6.7.1, at least.)</p> http://stackoverflow.com/questions/586231/how-can-i-convert-a-string-to-upper-or-lower-case-with-xslt 7 How can I convert a string to upper- or lower-case with XSLT? mjs 2009-02-25T14:43:02Z 2009-06-08T07:11:06Z <p>How do you do case conversion in XSL?</p> <pre><code>&lt;xsl:variable name="upper"&gt;UPPER CASE&lt;/xsl:variable&gt; &lt;xsl:variable name="lower" select="???"/&gt; </code></pre> http://stackoverflow.com/questions/588062/google-latitude-api/837427#837427 7 Answer by mjs for Google Latitude API mjs 2009-05-07T22:38:46Z 2009-05-07T22:38:46Z <p>There is now a (primitive) API for Google Latitude; see the links at the bottom of</p> <p><a href="http://www.google.com/latitude/apps/badge" rel="nofollow">http://www.google.com/latitude/apps/badge</a></p> <p>You can retrieve a URL that gives you (in JSON) the location (latitude and longitude) of a specified user.</p> http://stackoverflow.com/questions/221921/grep-exclude-include-syntax-do-not-grep-through-certain-files/721012#721012 0 Answer by mjs for grep --exclude/--include syntax (do not grep through certain files) mjs 2009-04-06T11:15:46Z 2009-04-07T11:04:44Z <p>The <code>--binary-files=without-match</code> option to GNU <code>grep</code> gets it to skip binary files. (Equivalent to the <code>-I</code> switch mentioned elsewhere.)</p> <p>(This might require a recent version of <code>grep</code>; 2.5.3 has it, at least.)</p> http://stackoverflow.com/questions/118305/convert-a-utf-8-string-to-from-7-bit-xml-in-php 2 Convert a UTF-8 string to/from 7-bit XML in PHP mjs 2008-09-22T23:55:02Z 2009-01-26T15:46:59Z <p>How can UTF-8 strings (i.e. 8-bit string) be converted to/from XML-compatible 7-bit strings (i.e. printable ASCII with numeric entities)?</p> <p>i.e. an <code>encode()</code> function such that:</p> <pre><code>encode("“£”") -&gt; "&amp;#8220;&amp;#163;&amp;#8221;" </code></pre> <p><code>decode()</code> would also be useful:</p> <pre><code>decode("&amp;#8220;&amp;#163;&amp;#8221;") -&gt; "“£”" </code></pre> <p>PHP's <code>htmlenties()</code>/<code>html_entity_decode()</code> pair does not do the right thing:</p> <pre><code>htmlentities(html_entity_decode("&amp;#8220;&amp;#163;&amp;#8221;")) -&gt; "&amp;amp;#8220;&amp;pound;&amp;amp;#8221;" </code></pre> <p>Laboriously specifying types helps a little, but still returns XML-incompatible named entities, not numeric ones:</p> <pre><code>htmlentities(html_entity_decode("&amp;#8220;&amp;#163;&amp;#8221;", ENT_QUOTES, "UTF-8"), ENT_QUOTES, "UTF-8") -&gt; "&amp;ldquo;&amp;pound;&amp;rdquo;" </code></pre> http://stackoverflow.com/questions/132504/how-to-reformat-multi-line-comments-in-eclipse-pdt 2 How to reformat multi-line comments in Eclipse PDT? mjs 2008-09-25T10:27:52Z 2008-10-09T22:34:50Z <p>In Eclipse PDT, Ctrl-Shift-F reformats code. However, it doesn't modify comments at all. Is there some way to reformat ragged multi-line comments to 80 characters per line (or whatever)?</p> <p>i.e. convert</p> <pre><code>// We took a breezy excursion and // gathered Jonquils from the river slopes. Sweet Marjoram grew // in luxuriant // profusion by the window that overlooked the Aztec city. </code></pre> <p>to</p> <pre><code>// We took a breezy excursion and gathered Jonquils // from the river slopes. Sweet Marjoram grew in // luxuriant profusion by the window that overlooked // the Aztec city. </code></pre> <p>(I think this applies to regular Eclipse as well.)</p> <p><strong>Update</strong> Turns out that Eclipse in Java mode will reformat the lines above, but only if they're /* */-style comments. It will shorten // lines that are too long, but it won't join lines that are too short together.</p> http://stackoverflow.com/questions/124326/how-to-convert-an-object-into-a-function-in-javascript 4 How to convert an "object" into a function in JavaScript? mjs 2008-09-23T22:30:54Z 2008-09-23T23:37:05Z <p>JavaScript allows functions to be treated as objects--if you first define a variable as a function, you can subsequently add properties to that function. How do you do the reverse, and add a function to an "object"?</p> <p>This works:</p> <pre><code>var foo = function() { return 1; }; foo.baz = "qqqq"; </code></pre> <p>At this point, <code>foo()</code> calls the function, and <code>foo.baz</code> has the value "qqqq".</p> <p>However, if you do the property assignment part first, how do you subsequently assign a function to the variable?</p> <pre><code>var bar = { baz: "qqqq" }; </code></pre> <p>What can I do now to arrange for <code>bar.baz</code> to have the value "qqqq" <em>and</em> <code>bar()</code> to call the function?</p> http://stackoverflow.com/questions/1794050/applescript-to-open-named-terminal-window/1797463#1797463 Comment by mjs on AppleScript to open named terminal window mjs 2009-11-26T22:47:27Z 2009-11-26T22:47:27Z I'm on Snow Leopard (10.6) and I don't have a <code>~/Library/Application Support/Terminal</code> directory--did that change? The config seems to be in <code>~/Library/Preferences/com.apple.Terminal.plist</code> now. http://stackoverflow.com/questions/1479788/using-php-within-xsl/1479828#1479828 Comment by mjs on Using PHP within XSL mjs 2009-11-18T14:23:49Z 2009-11-18T14:23:49Z Can you modify your original question to add this information? http://stackoverflow.com/questions/165779/are-the-put-delete-head-etc-methods-available-in-most-web-browsers/1212921#1212921 Comment by mjs on Are the PUT, DELETE, HEAD, etc methods available in most web browsers? mjs 2009-11-17T11:57:58Z 2009-11-17T11:57:58Z Can anyone confirm which version of Safari gained support for PUT and DELETE? http://stackoverflow.com/questions/185533/how-does-the-dropbox-mac-client-work/187943#187943 Comment by mjs on How does the DropBox Mac client work? mjs 2009-11-17T00:11:19Z 2009-11-17T00:11:19Z Regarding conflicts, Dropbox apparently won't (ever) [attempt to merge changes](<a href="https://www.dropbox.com/help/36" rel="nofollow">dropbox.com/help/36</a>). Instead it'll create two file. http://stackoverflow.com/questions/1724680/go-language-benchmarks/1735267#1735267 Comment by mjs on Go language benchmarks? mjs 2009-11-14T19:17:25Z 2009-11-14T19:17:25Z I have no idea how valid this is but the [FAQ](<a href="http://golang.org/doc/go_faq.html" rel="nofollow">golang.org/doc/go_faq.html</a>) says: &quot;We also considered using LLVM for 6g but we felt it was too large and slow to meet our performance goals.&quot; http://stackoverflow.com/questions/667992/rsync-error-failed-to-set-times-on-foo-txt-operation-not-permitted/668044#668044 Comment by mjs on rsync error: failed to set times on "foo.txt": Operation not permitted mjs 2009-11-13T23:32:35Z 2009-11-13T23:32:35Z The Apple-provided rsync (at least on 10.5 and 10.6) has an <code>--extended-attributes</code> option that copies file attributes across. http://stackoverflow.com/questions/1617157/how-to-get-the-first-item-from-an-associative-php-array/1617167#1617167 Comment by mjs on How to get the first item from an associative PHP array? mjs 2009-10-24T23:40:29Z 2009-10-24T23:40:29Z Probably because reset() is simpler. http://stackoverflow.com/questions/354547/print-ruby-object-members/354592#354592 Comment by mjs on Print Ruby object members mjs 2009-10-06T21:33:58Z 2009-10-06T21:33:58Z Link is entirely spam, as far as I can tell. http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a-given-lat-lng-location/238280#238280 Comment by mjs on How to calculate the bounding box for a given lat/lng location? mjs 2009-10-05T12:34:12Z 2009-10-05T12:34:12Z This probably happened in an edit after the original question was posted, but the question is after a function that converts latitude, longitude, radius to a bounding box. http://stackoverflow.com/questions/860405/are-the-first-32-bits-of-an-md5-hash-just-as-random-as-any-other-substring Comment by mjs on Are the first 32 bits of an md5 hash just as "random" as any other substring? mjs 2009-10-05T10:29:29Z 2009-10-05T10:29:29Z I don't know whether you knew about this already, but 1% chance of a collision with 10,000 entries is in fact pretty much exactly what you'd expect with a 32-bit hash--see <a href="http://en.wikipedia.org/wiki/Birthday_problem" rel="nofollow">en.wikipedia.org/wiki/Birthday_problem</a> http://stackoverflow.com/questions/298788/saving-meta-in-os-x-terminal/299023#299023 Comment by mjs on Saving Meta in OS X Terminal mjs 2009-09-12T14:53:12Z 2009-09-12T14:53:12Z In detail: go to Settings | Shell, and enter something like &quot;ssh example.com&quot; in the &quot;Run Command&quot; box. http://stackoverflow.com/questions/1285497/how-to-use-the-alt-option-key-as-the-meta-key-in-netbeans-on-os-x-with-emacs-ke/1349857#1349857 Comment by mjs on How to use the alt/option key as the "meta" key in NetBeans on OS X with emacs keybindings? mjs 2009-08-30T23:10:37Z 2009-08-30T23:10:37Z Those files somehow represent keybindings? There don't seem to be enough of them. Also, what do I do? The files have names like A-W.shadow_hidden D-6.shadow DS-F.shadow OS-D.shadow, etc. http://stackoverflow.com/questions/1336207/finding-common-prefix-of-array-of-strings/1336234#1336234 Comment by mjs on finding common prefix of array of strings mjs 2009-08-26T17:17:24Z 2009-08-26T17:17:24Z Also, the questioner is after the longest common prefix, which should be somewhat easier. http://stackoverflow.com/questions/1226539/tokyo-cabinet-vs-sqlite3-on-iphone/1237168#1237168 Comment by mjs on Tokyo Cabinet vs SQLite3 on iPhone mjs 2009-08-23T00:57:55Z 2009-08-23T00:57:55Z It's not true that TC only provides a key-value store; TC's table database <i>does</i> support simple queries. They are equivalent to SELECT ... WHERE x &lt;OPERATOR&gt; y where the operator can be equality, string prefix, string suffix, string regexp, numeric greater than, numeric less than. Search for tcrdbqryaddcond in <a href="http://tokyocabinet.sourceforge.net/tyrantdoc/" rel="nofollow">tokyocabinet.sourceforge.net/tyrantdoc</a>. http://stackoverflow.com/questions/598444/how-to-share-apc-cache-between-several-php-processes-when-running-under-fastcgi/1004353#1004353 Comment by mjs on How to share APC cache between several PHP processes when running under FastCGI? mjs 2009-08-22T13:07:08Z 2009-08-22T13:07:08Z According to another comment, to configure mod_fastcgi to only start up one instance of php-cgi (so that php-cgi itself handles the workers, and hence share cache), is with &quot;FastCgiConfig -maxClassProcesses 1&quot; in the httpd.conf. See also <a href="http://www.fastcgi.com/mod_fastcgi/docs/mod_fastcgi.html" rel="nofollow">fastcgi.com/mod_fastcgi/docs/&hellip;</a>.