User Ambrose - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:30:13Z http://stackoverflow.com/feeds/user/19332 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780875/looking-for-a-replacement-for-nms-formmail-pl/1781178#1781178 3 Answer by Ambrose for Looking for a replacement for NMS FormMail.pl Ambrose 2009-11-23T05:00:52Z 2009-11-23T05:00:52Z <p>Far simpler to just add the validation to NMSFormMail than start again with a whole other solution. And maybe nobody's modified it because it just doesn't need modifying?</p> <p>Do you need help modifying the script?</p> http://stackoverflow.com/questions/867046/what-will-you-do-with-the-no-longer-effective-programmer/1767596#1767596 0 Answer by Ambrose for What will you do with the no-longer-effective programmer? Ambrose 2009-11-20T00:30:00Z 2009-11-20T00:30:00Z <p>The obvious, non-funny answer, is to give him training. Not give him a book and tell him to learn the new system, but give him proper training, send him on a course, have him learn the system from the people currently using it, shadow them at their work for a while, ask questions and so on.</p> http://stackoverflow.com/questions/300276/programming-languages-not-in-english 6 programming languages not in english? Ambrose 2008-11-18T21:55:00Z 2009-11-17T22:08:13Z <p>Are there any major languages whose keywords, functions etc. are not in English? Not wrappers or locales, but the original language.</p> <p>There's no particular reason why they have to be. Learning the syntax of <code>open(arg1, arg2, arg3)</code> is far more important than whether the function is <code>open(), ouvrir()</code> or <code>abrir()</code>. But all the languages I have come across are "in" English.</p> http://stackoverflow.com/questions/1746614/use-proxy-with-perl-script/1746960#1746960 6 Answer by Ambrose for Use proxy with perl script Ambrose 2009-11-17T06:25:27Z 2009-11-17T06:25:27Z <p>Use the LWP::UserAgent module, which has built-in proxy support.</p> <p><a href="http://search.cpan.org/~gaas/libwww-perl-5.829/lib/LWP/UserAgent.pm#Proxy%5Fattributes" rel="nofollow">http://search.cpan.org/~gaas/libwww-perl-5.829/lib/LWP/UserAgent.pm#Proxy_attributes</a></p> http://stackoverflow.com/questions/1737074/how-do-i-prevent-html-source-formatting-from-affecting-output/1737411#1737411 0 Answer by Ambrose for How do I prevent HTML source formatting from affecting output? Ambrose 2009-11-15T12:21:22Z 2009-11-15T12:21:22Z <p>Let's say HTML worked the way you want it to work. Then say I want the spaces. How would you have me create them? Add a special character like <code>&amp;nbsp;</code> every time?</p> http://stackoverflow.com/questions/1726096/tri-state-check-box-in-html/1727087#1727087 1 Answer by Ambrose for Tri-state Check box in HTML? Ambrose 2009-11-13T04:09:18Z 2009-11-13T04:09:18Z <p>It's possible to have HTML form elements <em>disabled</em> -- wouldn't that do? Your users would see it in one of three states, i.e. checked, unchecked, and disabled, which would be greyed out and not clickable. To me, that seems similar to "null" or "not applicable" or whatever you're looking for in that third state.</p> http://stackoverflow.com/questions/1565896/override-definition-in-css-file/1568817#1568817 0 Answer by Ambrose for override definition in css file Ambrose 2009-10-14T20:32:54Z 2009-10-14T20:32:54Z <p>What makes this impossible is that there is no "default style".</p> <p>Default styles come from the browser's internal style sheet and the user's preferences. So different browsers and different users have different defaults.</p> <p>You could assume that white/transparent background, black foreground and Arial font were going to be most people's default styles, but you couldn't be sure.</p> <p>So, like other people are saying, you have a fundamental problem because you've got a style for all P elements, and there's no way to code a P which doesn't inherit from that style, you can only over-ride it using CSS of greater specificity.</p> http://stackoverflow.com/questions/1536554/xhtmlcss-validation-warnings/1541581#1541581 0 Answer by Ambrose for (X)HTML+CSS Validation warnings Ambrose 2009-10-09T02:57:05Z 2009-10-09T02:57:05Z <p>In a sense that isn't a validation error, not like you typed "funt" instead of "font" or forgot to close a bracket. It's just telling you that your CSS doesn't really make sense. </p> <p>What's the point in floating something if it's going to take up 100% of the width of the container anyway, as block elements do by default?</p> http://stackoverflow.com/questions/1523823/hidden-divs-reducing-latency-with-style-display-none-javascript/1523944#1523944 0 Answer by Ambrose for Hidden divs - reducing latency with style display none + javascript Ambrose 2009-10-06T06:39:00Z 2009-10-06T06:39:00Z <p>For what it's worth, some people hide the entire <code>&lt;body&gt;</code> element, and then show whatever should be shown later using the Javascript.</p> http://stackoverflow.com/questions/1517754/designing-web-interfaces-for-mobile-devices/1523214#1523214 1 Answer by Ambrose for designing web interfaces for mobile devices Ambrose 2009-10-06T01:33:46Z 2009-10-06T01:33:46Z <p>I don't know if you realise how big a question you're asking -- "the various mobile devices"? That's a lot of devices, a lot of resolutions and a lot of bugs and limitations, all the way from iPhones, which can handle anything a normal browser can handle, to tiny little black-and-white screens.</p> <p>In theory, you can write separate CSS to target hand-held devices </p> <pre><code>&lt;LINK REL="stylesheet" TYPE="text/css" MEDIA="handheld" HREF="handheld.css"&gt; </code></pre> <p>but personally, if you're trying to support a large number of devices I think detecting the device and trying to feed it code it can handle is the only real solution.</p> <p>You can start looking at how big the problem is by getting <a href="http://sourceforge.net/projects/wurfl/files/WURFL/" rel="nofollow">WURLF</a> which is a 13MB XML file of details about the different devices and their capabilities.</p> http://stackoverflow.com/questions/938251/parse-the-httpcookies-string-from-apache-for-use-in-if-clause 0 Parse the HTTP_COOKIES string from Apache for use in #if clause Ambrose 2009-06-02T07:03:13Z 2009-10-04T17:00:05Z <p>I want to be able to read the cookies from Apache's HTTP_COOKIE string and then add includes based on the contents of that string.</p> <p>I've got this far:</p> <pre><code>&lt;!--#set var="cookies" value="HTTP_COOKIE" --&gt; &lt;p&gt;COOKIES: &lt;!--#echo var="$cookies"--&gt;&lt;/p&gt; </code></pre> <p>which gives me a string with all the cookies in it.</p> <p>Now I want to be able to parse the string for something like <code>Name=Bob</code>.</p> <p>I thought I'd be able to do this:</p> <pre><code>&lt;!--#if expr="$cookies = /Name=([a-zA-Z]+)/"--&gt; &lt;p&gt;Your name is &lt;!--#echo var="$1"--&gt;&lt;/p&gt; &lt;!--#endif--&gt; </code></pre> <p>But it doesn't seem to work. What should I be doing -- or isn't this possible?</p> http://stackoverflow.com/questions/1501205/date-popup-module-i-want-a-time-popup-as-well 0 Date Popup module - I want a Time Popup as well Ambrose 2009-09-30T23:33:03Z 2009-10-01T07:24:20Z <p>I've got a field in a form (custom content type built using CCK) configured as a date and time. I have the Date Popup module installed.</p> <p>My field shows up as <em>two</em> fields, one for the date and one for the time.</p> <p>When users click in the date field, the JQuery calendar pops up and all is fine. But nothing happens when they click in the time field, and there are no time fields to work with in the popup.</p> <p>How can I get a time popup, or otherwise assist users in choosing a time when they're filling out this field?</p> <p>The Date Popup module describes itself as "Enables jquery popup calendars and time entry widgets for selecting dates and times" so it should be possible...</p> http://stackoverflow.com/questions/1485115/how-can-i-suppress-empty-leading-fields-in-perls-split 1 How can I suppress empty leading fields in Perl's split()? Ambrose 2009-09-28T02:12:48Z 2009-09-28T14:44:14Z <p>The <a href="http://perldoc.perl.org/perlfunc.html" rel="nofollow">perlfunc</a> entry for <a href="http://perldoc.perl.org/split.html" rel="nofollow">split</a> says:</p> <blockquote> <p>By default, empty leading fields are preserved</p> </blockquote> <p>Hinting that there's a way to over-ride that default, but later on all it says is:</p> <blockquote> <p>Empty leading fields are produced when there are positive-width matches at the beginning of the string</p> </blockquote> <p>...does this mean that there's no way to skip that first field?</p> <p>It's not mission-critical, but I'm splitting a root-relative URL, say <code>/foo/bar/</code>, on the slashes and getting</p> <pre><code>['', 'foo', 'bar'] </code></pre> <p>and wondering if there's a way to <em>not</em> get that blank first item.</p> http://stackoverflow.com/questions/154132/typical-pitfalls-of-cross-browser-compatibility/1442530#1442530 0 Answer by Ambrose for Typical pitfalls of cross-browser compatibility Ambrose 2009-09-18T04:01:10Z 2009-09-18T04:01:10Z <p>The most common one I can think of -- and it's been a problem for me twice this week alone -- is IE6 and the box model bug. Look it up! </p> <p>Specifically, the problem I'm thinking of is when you have floated DIVs which the developer <em>thinks</em> all fit within a wrapper DIV, but they don't in IE6 because they're slightly bigger.</p> <p>So rather than three columns, you end up with two, and your third is down at the bottom of the screen somewhere -- you want:</p> <pre><code> +-------------------------------+ |+------+ +-----------+ +------+| || | | | | || || foo | | bar | | baz || || | | | | || || | | | | || |+------+ +-----------+ +------+| +-------------------------------+ </code></pre> <p>but you get:</p> <pre><code> +-------------------------------+ |+--------+ +------------+ | || | | | | || foo | | bar | | || | | | | || | | | | |+--------+ +------------+ | |+------+ | || | | || | | || baz | | || | | || | | |+------+ | +-------------------------------+ </code></pre> http://stackoverflow.com/questions/1424181/can-par-packer-generate-stand-alone-scripts/1424976#1424976 3 Answer by Ambrose for Can PAR Packer generate stand-alone scripts? Ambrose 2009-09-15T03:32:15Z 2009-09-15T07:26:29Z <p>Well, have you read the <a href="http://search.cpan.org/dist/PAR-Packer/lib/pp.pm" rel="nofollow">documentation</a>? It gives a number of command-line options to include dependencies, and even the option to manually force modules to be included.</p> http://stackoverflow.com/questions/1317281/object-oriented-html-without-server-side-code-possible/1317902#1317902 0 Answer by Ambrose for Object-oriented HTML without server side code. Possible? Ambrose 2009-08-23T06:24:24Z 2009-08-23T06:24:24Z <p>If you want to have include files during development, then compile them into free-standing HTML files, you could do that by spidering your development server with wget: whatever server-side technology you use will combine the files and return the HTML, which wget will saves as one file.</p> http://stackoverflow.com/questions/1215354/how-do-i-include-a-css-file-with-html-email-that-i-send-from-a-perl-cgi-script/1217813#1217813 1 Answer by Ambrose for How do I include a CSS file with HTML email that I send from a Perl CGI script? Ambrose 2009-08-02T00:01:20Z 2009-08-02T00:01:20Z <p>I have to say, if what you're trying to do with your script is send HTML-formatted email, even if you get the CSS files sent as attachments, it's not going to work. </p> <p>The only way to do this with any confidence at all is to send HTML with all external files linked using absolute URLs. And even <em>then</em> it won't work the way you expect it to.</p> http://stackoverflow.com/questions/1207941/are-these-divs-really-necessary/1209806#1209806 0 Answer by Ambrose for Are these DIVs really necessary? Ambrose 2009-07-30T22:42:53Z 2009-07-30T22:42:53Z <p>In the case of a UL, yes, the DIV is unnecessary. They are both block elements, so anything you can do with a DIV wrapped around the outside you can do directly to the UL itself.</p> <p>However, because of the Box Model problem with some IE browsers, some people tell you to add these DIVs as a workaround. When you combine padding and width, IE6 disagrees with other browsers about what the final size of the element will be. So one workaround is to put padding but no width on an inner element, and width but no padding on an outer element.</p> http://stackoverflow.com/questions/1209363/adding-lots-of-css-classes-to-html-elements/1209778#1209778 0 Answer by Ambrose for Adding lots of CSS classes to HTML elements Ambrose 2009-07-30T22:35:15Z 2009-07-30T22:35:15Z <p>Just for a data point, I took a look at GMail's HTML yesterday (their buttons are very nice) and it's full of that kind of thing. </p> <p>Here's an example:</p> <pre><code>class="goog-imageless-button goog-inline-block goog-imageless-button-collapse-left goog-imageless-button-collapse-right" </code></pre> http://stackoverflow.com/questions/1053349/how-can-i-extract-urls-from-plain-text-with-perl/1054755#1054755 0 Answer by Ambrose for How can I extract URLs from plain text with Perl? Ambrose 2009-06-28T11:35:32Z 2009-06-28T16:07:12Z <blockquote> <p>i thought that shouldn't happen because i am using .*? which ought to be non-greedy and give me the smallest match</p> </blockquote> <p>It does, but it gives you the smallest match going <em>right</em>. Starting from the first <code>http</code> and going right, that's the smallest match.</p> <p>Please note for the future, you don't have to escape the slashes, because you don't have to use slashes as your separator. And you don't have to escape the colon either. Next time just do this:</p> <pre><code>m|(http://.*?homepage.com\/.*?\.gif)| </code></pre> <p>or </p> <pre><code>m#(http://.*?homepage.com\/.*?\.gif)# </code></pre> <p>or </p> <pre><code>m&lt;(http://.*?homepage.com\/.*?\.gif)&gt; </code></pre> <p>or one of lots of other characters, see the perlre documentation.</p> http://stackoverflow.com/questions/1043001/what-is-the-meaning-of-cascading-in-css/1051651#1051651 -1 Answer by Ambrose for what is the meaning of "cascading " in CSS Ambrose 2009-06-26T23:02:42Z 2009-06-26T23:02:42Z <p>When I teach CSS, I always tell the students that "cascading style sheets" means something like "<em>fighting</em> style sheets".</p> <p>One rule tells your H3 tag to be red, another rule tells it to be green -- the rules are contradicting each other, who will win!? Style sheet deathmatch!</p> <p>OK maybe that's a slight exaggeration, but it's far more amenable to non-code, non-programming people who are just starting out than any notion of a cascade, or inheritance.</p> <p>I do of course make sure to tell them that it's not a problem for the style sheets to be fighting each other, that's the way the language was designed.</p> http://stackoverflow.com/questions/1015734/windows-media-server-doesnt-stop-after-playing-1-file-from-list 0 Windows media server doesn't stop after playing 1 file from list Ambrose 2009-06-18T23:37:32Z 2009-06-20T00:57:49Z <p>I'm playing Windows Media audio, triggered by an ASX meta-file which looks like this:</p> <pre><code>&lt;asx version="3.0" BannerBar="none"&gt; &lt;title&gt;Foo&lt;/title&gt; &lt;author&gt;Bar&lt;/author&gt; &lt;copyright&gt;Baz&lt;/copyright&gt; &lt;moreinfo href="http://company.com/"/&gt; &lt;entry&gt; &lt;title&gt;Audio Stream&lt;/title&gt; &lt;ref href="mms://media1.company.com/bof.asf"/&gt; &lt;/entry&gt; &lt;entry&gt; &lt;title&gt;Audio Stream&lt;/title&gt; &lt;ref href="mms://media2.company.com/bof.asf"/&gt; &lt;/entry&gt; &lt;entry&gt; &lt;title&gt;Apology&lt;/title&gt; &lt;ref href="http://www.company.com/apology.asf"/&gt; &lt;/entry&gt; &lt;/asx&gt; </code></pre> <p>as you can probably tell, it's supposed to <em>try</em> to play the file on media1.company.com if it can, then try the file on media2.company.com if the first one fails, then play the apology if both fail.</p> <p>What <em>actually</em> happens is, you hear all three. The failover process seems to, well, fail, and the server doesn't know the first file has successfully played.</p> <p>What can be done to fix this? Is it a server setting? Is something wrong with the XML format?</p> http://stackoverflow.com/questions/376763/is-there-a-share-this-for-facebook-which-isnt-a-pop-up 0 Is there a "share this" for Facebook which isn't a pop-up? Ambrose 2008-12-18T02:48:11Z 2009-06-15T23:31:50Z <p>I want to add "share this on Facebook" to a page. I've got this working just fine using this URL format:</p> <p><a href="http://www.facebook.com/sharer.php?u=my.url.here" rel="nofollow">http://www.facebook.com/sharer.php?u=my.url.here</a></p> <p>but the problem is, that's designed specifically to be a popup window, so</p> <ul> <li>the page looks weird at full browser size</li> <li>the buttons are a long way from the fields</li> <li>after submission, the page has messages in it like "this window will close shortly"</li> </ul> <p>So, is there a Facebook URL which can do the same thing, but which isn't intended as a popup?</p> http://stackoverflow.com/questions/968441/should-we-hire-someone-who-writes-c-in-perl/969720#969720 0 Answer by Ambrose for Should we hire someone who writes C in Perl? Ambrose 2009-06-09T12:12:33Z 2009-06-09T12:12:33Z <p>Were candidates allowed to use modules in their code?</p> http://stackoverflow.com/questions/968722/how-do-i-use-and-debug-wwwmechanize/969706#969706 0 Answer by Ambrose for How do I use and debug WWW::Mechanize? Ambrose 2009-06-09T12:10:06Z 2009-06-09T12:10:06Z <p>Are those field names really the field names used in the form? With the dollar signs? If you're trying to use variables there you shouldn't be using single quotes.</p> http://stackoverflow.com/questions/960848/how-do-you-solve-the-problems-of-urls-in-a-css-file-when-using-zf/961512#961512 0 Answer by Ambrose for How do you solve the problems of URLs in a CSS file when using ZF? Ambrose 2009-06-07T08:35:53Z 2009-06-07T08:35:53Z <p>One obvious answer to this is use the purest form of absolute URL, a filename, by putting all your CSS images into the CSS folder. That's used a lot. You gain simplicity in your URLs, you can now move or rename the CSS folder itself without hassle, and your stylesheet gets that little bit smaller.</p> http://stackoverflow.com/questions/958324/stripping-substitution-with-perl-regex/960533#960533 0 Answer by Ambrose for Stripping/Substitution with Perl Regex Ambrose 2009-06-06T21:03:37Z 2009-06-06T21:03:37Z <p>Not sure why this hasn't been mentioned, but the curly bracket has a special meaning in regexes, and therefore needs to be escaped.</p> http://stackoverflow.com/questions/937396/where-can-i-find-a-standard-set-of-rules-for-designing-web-pages/943239#943239 0 Answer by Ambrose for Where can I find a standard set of rules for designing web pages? Ambrose 2009-06-03T05:49:47Z 2009-06-03T05:49:47Z <p>This book was very useful to me when I started, and lots of people I've recommended it to have been happy with it:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/020168859X" rel="nofollow">The Non-Designer's Web Book</a></p> <p>in fact her general book on design is almost as good, as it's mostly about the principles, not so much about the technical details.</p> http://stackoverflow.com/questions/935107/css-difference-between-0-and-0em/937401#937401 3 Answer by Ambrose for CSS difference between 0 and 0em Ambrose 2009-06-02T00:16:44Z 2009-06-02T00:16:44Z <p>Your teacher, it appears, is an idiot.</p> <p>But maybe appearances are deceptive: you should ask your teacher what they meant.</p> <p>I have to ask, why didn't you ask your teacher what they meant when they first said it? Zero is zero, no matter what the units.</p> http://stackoverflow.com/questions/918612/what-is-the-value-of-the-css-ex-unit/918914#918914 0 Answer by Ambrose for What is the value of the css 'ex' unit? Ambrose 2009-05-28T02:14:55Z 2009-05-28T02:14:55Z <p>The value of <em>having it in the CSS spec,</em> if that's what you're really asking, is exactly the same as the value of having the em unit.</p> <p>It enables you to set fonts to <em>relative</em> sizes.</p> <p>You don't know what my base font size is. So one good strategy for web design is to set font sizes which are relative, rather than absolute; the equivalent of "double your normal size" or "a little smaller than your normal size" rather than a fixed size like "ten pixels".</p> http://stackoverflow.com/questions/1799803/how-do-i-extract-links-in-javascript-that-point-to-html-pages-in-perl/1800042#1800042 Comment by Ambrose on How do I extract links in JavaScript that point to HTML pages in Perl? Ambrose 2009-11-25T23:34:07Z 2009-11-25T23:34:07Z It is a great module, and it's FAQ is very funny, particularly because so many people ask for javascript support... <a href="http://search.cpan.org/dist/WWW-Mechanize/lib/WWW/Mechanize/FAQ.pod" rel="nofollow">search.cpan.org/dist/WWW-Mechanize/&hellip;</a> http://stackoverflow.com/questions/867046/what-will-you-do-with-the-no-longer-effective-programmer Comment by Ambrose on What will you do with the no-longer-effective programmer? Ambrose 2009-11-20T00:28:05Z 2009-11-20T00:28:05Z You're talking about me, aren't you? What have you heard?! What are people saying!??! http://stackoverflow.com/questions/1733851/newbie-regex-question-detect-spam/1733852#1733852 Comment by Ambrose on Newbie regex question - detect spam Ambrose 2009-11-14T21:52:19Z 2009-11-14T21:52:19Z Don't forget \W includes underscores. Vi_agra would still get through. http://stackoverflow.com/questions/1731252/xml-dom-parsing-br-tag Comment by Ambrose on XML DOM parsing br tag Ambrose 2009-11-14T01:45:05Z 2009-11-14T01:45:05Z Yes, how exactly are you parsing it? As others have said, that tag is perfectly fine. If you had a br tag without the self-closing slash, that would be different, and it would be an error. http://stackoverflow.com/questions/1504810/why-is-php-used Comment by Ambrose on Why is PHP used? Ambrose 2009-10-02T06:34:32Z 2009-10-02T06:34:32Z I just want to say one incredibly obvious thing -- PHP scripts, normally, run without permissions having to be changed. I seriously think that chmod() barrier makes a huge difference to the very new. http://stackoverflow.com/questions/1501205/date-popup-module-i-want-a-time-popup-as-well/1502311#1502311 Comment by Ambrose on Date Popup module - I want a Time Popup as well Ambrose 2009-10-01T10:58:42Z 2009-10-01T10:58:42Z Hah! I kind of feel silly now because all I ever did was click in the field and nothing happened ... now I see that there is, as you say, a widget in effect, but it only takes effect when you start putting in times. http://stackoverflow.com/questions/1485115/how-can-i-suppress-empty-leading-fields-in-perls-split Comment by Ambrose on How can I suppress empty leading fields in Perl's split()? Ambrose 2009-09-28T03:19:08Z 2009-09-28T03:19:08Z Ah, that at least explains my confusion. http://stackoverflow.com/questions/1369234/are-hr-and-br-inline-or-block-elements/1369239#1369239 Comment by Ambrose on Are <hr> and <br> inline or block elements? Ambrose 2009-09-02T22:19:01Z 2009-09-02T22:19:01Z The support for clearing hasn't been &quot;removed&quot; -- what are you talking about? It doesn't need to be attached to a br tag, but it's a vital part of the toolkit when there are floated elements. http://stackoverflow.com/questions/1364559/how-do-i-remember-the-sigils-for-rray-calar-and-ash/1364571#1364571 Comment by Ambrose on How do I remember the sigils for @rray, $calar, and %ash? Ambrose 2009-09-02T03:59:18Z 2009-09-02T03:59:18Z I was just coming to say, maybe the two little circles stand for two lowercase letter 'a's, as in &quot;associative array&quot;? But, too late it seems. http://stackoverflow.com/questions/1207941/are-these-divs-really-necessary/1207988#1207988 Comment by Ambrose on Are these DIVs really necessary? Ambrose 2009-07-30T22:36:42Z 2009-07-30T22:36:42Z That's not the reason the OP is adding unecessary DIV elements. http://stackoverflow.com/questions/1155825/which-language-is-craigslist-written-in/1155845#1155845 Comment by Ambrose on Which language is Craigslist written in? Ambrose 2009-07-22T09:59:40Z 2009-07-22T09:59:40Z Yeah yeah yeah, we've all read it. It's funny because the numbers are so small and nobody thought to ask what they were before they started. Craiglist bandwidth isn't small and you can't reduce it by 50% for fifty bucks. http://stackoverflow.com/questions/641442/what-are-some-elegant-features-or-uses-of-perl/649488#649488 Comment by Ambrose on What are some elegant features or uses of Perl? Ambrose 2009-07-21T06:45:24Z 2009-07-21T06:45:24Z It's spelled &quot;Hemingway&quot;. http://stackoverflow.com/questions/641442/what-are-some-elegant-features-or-uses-of-perl Comment by Ambrose on What are some elegant features or uses of Perl? Ambrose 2009-07-21T06:42:10Z 2009-07-21T06:42:10Z &quot;the ratio of non-ascii to ascii&quot; ... last time I looked, all these were ASCII characters: { } &lt; &gt; = $ _ @ - http://stackoverflow.com/questions/1148393/what-are-australian-people-called-like-programming-anthropological-question Comment by Ambrose on What are Australian people called like (programming/anthropological question)? Ambrose 2009-07-21T06:34:52Z 2009-07-21T06:34:52Z &quot;What ethnic groups live there?&quot; Er, well, all of them, just like any other country with a modern immigration policy. For the record: arabic, nepalese, portuguese, vietnamese, chinese, indian, islander, greek, african ... and that's just between here and the top of my street. I live at number 23. http://stackoverflow.com/questions/1155825/which-language-is-craigslist-written-in/1155845#1155845 Comment by Ambrose on Which language is Craigslist written in? Ambrose 2009-07-21T01:34:12Z 2009-07-21T01:34:12Z OK, I'm going to bite. Why would it be foolish? Just because bandwidth, processing and storage have become cheaper? You wouldn't try to use the minimum of those things, if you could?