User SpliFF - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:34:12Z http://stackoverflow.com/feeds/user/108741 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1768161/how-do-i-reset-or-override-ie-css-filters 0 How do I reset or override IE CSS filters? SpliFF 2009-11-20T03:26:53Z 2009-11-20T07:33:50Z <p>I'm using the proprietry MS 'filter' property to try and create a non ugly equivelant to css3 text-shadow and box-shadow;</p> <p>I was actually doing really well until i hit this problem. It looks like when I apply a filter to a div inside another div which also has a filter the filter effects end up being combined on the child object.</p> <p>I can't explain it much better than that, here's a demo: <a href="http://cableflow.dev.arc.net.au/test/filters.html" rel="nofollow">http://cableflow.dev.arc.net.au/test/filters.html</a></p> <p>I've tried using filter:none; to do a reset but no joy. I've also tried different variations on the syntax, ie "-ms-filter: 'progid:...Glow()'", "filter: progid:...Glow()", "filter: Glow()", etc..</p> <p>Testing in IE8</p> http://stackoverflow.com/questions/1768161/how-do-i-reset-or-override-ie-css-filters/1768227#1768227 0 Answer by SpliFF for How do I reset or override IE CSS filters? SpliFF 2009-11-20T03:51:11Z 2009-11-20T03:51:11Z <p>I've had some success by positioning the children absolute or relative. This didn't seem to work earlier though so it may break again once I get more complicated</p> http://stackoverflow.com/questions/905723/most-inappropriate-function-or-variable-names-you-have-encountered/906036#906036 -1 Answer by SpliFF for Most inappropriate function or variable names you have encountered? SpliFF 2009-05-25T09:22:09Z 2009-11-19T07:15:12Z <p>I worked with a designer who had... well .. issues. I found this and others like it in at least three HTML templates he had worked on:</p> <pre><code>&lt;p&gt; Please click on an option below to choose the package you want. Each package offers it's own beneficial moose, if you can't find a moose to suit your needs, go f**k a dead moose. &lt;/p&gt; </code></pre> <p>When I queried him on it he said he puts it in files he's working on so he can search for them later and finish them. Suffice to say he never did.</p> http://stackoverflow.com/questions/1523629/should-i-care-about-html-5/1701100#1701100 0 Answer by SpliFF for Should I care about HTML 5? SpliFF 2009-11-09T13:53:52Z 2009-11-09T13:53:52Z <p>The correct answer is: it depends.</p> <p>There are a lot of stakeholders in the browser arena and some (<em>cough</em> Microsoft <em>cough</em>) have a history of hostility towards public standards. While many tout the video tag as a reason to use HTML5 it should be pointed out that MS don't support it all and Apple and Nokia are being tricky about format support (Apple own Quicktime, Nokia is an MP4-AVC patent holder). </p> <p>Other features like the storage proposal are based on the idea that users and vendors won't simply disable these features out of security concerns (like cookies are often blocked now).</p> <p>The essential problem with HTML5 is that conformance by browser vendors is optional. It can dictate anything it wants but it can't make browser vendors comply. This provides vendors the opportunity to hold the spec to ransom, or ignore it, or "embrace and extend" it as their interests dictate.</p> <p>From what I've seen on the WHATWG list most of HTMLs success will be in areas where there is little or no ability to profit from non-conformance. This basically means things like caption and dialog tags, custom attributes and other things that the majority of web developers will never use, understand, or care about.</p> <p>I basically see it going the path of Open GL 3.0. Being mangled by corporate agendas until it's a shadow of its anticipated glory. It'll come too late to be of much value and there will be a hundred different implementations of HTML5 based on browser vendor and version so that designers 10 years from now will still be writing to HTML4 just to have some consistency in their pages.</p> <p>Pretty much everything depends on Microsoft, since anything not supported by IE will see sporadic and lacklustre adoption. Given Microsoft's history in this area, combined with their apparent absence from the WHATWG discussions, their aggressive promotion of Silverlight and Windows Presentation Framework, their substandard HTML rendering/creation in Office (see the Outlook 2007 controversy) and their slow adoption of CSS3.0 and HTML5 features it's hard to have much confidence they'll play ball.</p> http://stackoverflow.com/questions/1698941/why-do-i-get-no-source-for-error-in-firefox 0 Why do I get no source for error in Firefox SpliFF 2009-11-09T03:23:05Z 2009-11-09T05:19:09Z <p>The Firebug console gives me:</p> <pre><code>------------------------------------------ (X) 0 no source for No element with id 'inline_gallery_image_false' found) ------------------------------------------ </code></pre> <p>When I click this error I get a blank source view window. The 'Stack' pane in the Script tab turns up blank as well.</p> <p>Firefox 3.5.5 + Firebug 1.4.5. All other extensions are disabled.</p> <p>I've turned on 'Stop on All Errors' and 'Show Javascript Errors' and 'Show Stack Trace on Errors' but all I get is the error shown above. Strangely a Google search turned up nothing helpful.</p> <p>Basically I know the error is due to a bad argument passed to a function in an external JS file but I want to know what function called it and how it came to send the wrong argument. I also want to know why it won't show the source or even tell me which file the error is in.</p> http://stackoverflow.com/questions/1698941/why-do-i-get-no-source-for-error-in-firefox/1699095#1699095 1 Answer by SpliFF for Why do I get no source for error in Firefox SpliFF 2009-11-09T04:26:28Z 2009-11-09T05:19:09Z <p>I noticed the standard Firefox console gives the same error so this issue is not an issue with Firebug after all. When I click the error to view source I get:</p> <pre><code>Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIWebNavigation.loadURI]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://global/content/viewSource.js :: viewSource :: line 221" data: no] </code></pre> <p>UPDATE: After searching around I found another site with a JS error. Upon opening source view I get a blank page and:</p> <pre><code>Error: [Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsIRequest.name]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: file:///D:/Apps/Firefox3.5/components/nsLoginManager.js :: anonymous :: line 328" data: no] Source File: file:///D:/Apps/Firefox3.5/components/nsLoginManager.js Line: 328 </code></pre> <p>Seems pretty clear some extension or plugin has screwed up my FF source view. I'm going to reinstall from scratch. Since it's clear this isn't a programming issue any more feel free to close.</p> <p>UPDATE: Turned out it WAS a programming error. The offender was this line of code:</p> <pre><code>if (isStrict &amp;&amp; !o) throw new Error(0,"No element with id '" + ref + "' found"); </code></pre> <p>WTF is that 0 in there? No idea. I must have followed a dodgy tutorial because when I looked into the Error constructor the first argument is supposed to be the message string. The second argument is supposed to be the URL of the offending file (optional) so FF rightly thought there was an error called '0' in the file "No element with ...".</p> http://stackoverflow.com/questions/1698754/html-5-filter-language-or-some-analog-of-filter-language/1698841#1698841 0 Answer by SpliFF for HTML 5 filter language or some analog of filter language? SpliFF 2009-11-09T02:44:07Z 2009-11-09T02:44:07Z <p>No, the closest thing to what you want is SVG filters, or perhaps canvas+JS. You certainly won't find anything standard that will work with IE. You'll probably have to come up with a hybrid of SVG/VML/ActiveX/Canvas and JS or just use Java. Good luck with that.</p> http://stackoverflow.com/questions/1621906/is-there-a-way-to-split-a-string-by-every-nth-seperator-in-python/1621928#1621928 -1 Answer by SpliFF for Is there a way to split a string by every nth seperator in Python? SpliFF 2009-10-25T20:05:52Z 2009-10-25T20:14:07Z <pre><code>l = 'this-is-a-string'.split() nl = [] ss = "" c = 0 for s in l: c += 1 if c%2 == 0: ss = s else: ss = "%s-%s"%(ss,s) nl.insert(ss) print nl </code></pre> http://stackoverflow.com/questions/1610845/how-to-collate-output-in-python-logging-memoryhandler-smtphandler 0 how to collate output in python logging memoryhandler + smtphandler SpliFF 2009-10-23T00:40:58Z 2009-10-23T08:01:56Z <p>I have the logging module MemoryHandler set up to queue debug and error messages for the SMTPHandler target. What I want is for an email to be sent when the process errors that contains all debug statements up to that point (one per line). What I get instead is a separate email for every debug message.</p> <p>This seems like it should be trivial, and part of the logging package, but I can't find anything about it, no examples, nothing on Google.</p> <pre><code>log = logging.getLogger() log.setLevel(logging.DEBUG) debug_format = logging.Formatter("%(levelname)s at %(asctime)s in %(filename)s (line %(lineno)d):: %(message)s") # write errors to email error_mail_subject = "ERROR: Script error in %s on %s" % (sys.argv[0], os.uname()[1]) error_mail_handler = logging.handlers.SMTPHandler(SMTP_HOST, 'errors@'+os.uname()[1], [LOG_EMAIL], error_mail_subject) error_mail_handler.setLevel(logging.ERROR) #error_mail_handler.setLevel(logging.DEBUG) error_mail_handler.setFormatter(debug_format) # buffer debug messages so they can be sent with error emails memory_handler = logging.handlers.MemoryHandler(1024*10, logging.ERROR, error_mail_handler) memory_handler.setLevel(logging.DEBUG) # attach handlers log.addHandler(memory_handler) log.addHandler(error_mail_handler) </code></pre> <p>Related to this:</p> <p>Do I need to add the <code>error_mail_handler</code> to the logger explicitly if it is a target of <code>memory_handler</code> anyway? Should <code>error_mail_handler</code> be set to DEBUG or ERROR target? Does it even need a target when it is being fed from <code>memory_handler</code>?</p> <p>Would love to see some working code from anyone who has solved this problem.</p> http://stackoverflow.com/questions/1610879/how-to-simulate-a-web-browser-so-the-website-feeds-me-the-correct-html-source/1610884#1610884 0 Answer by SpliFF for How to simulate a web browser so the website feeds me the correct HTML source? SpliFF 2009-10-23T00:57:39Z 2009-10-23T00:57:39Z <pre><code>WebClient client = new WebClient (); client.Headers.Add ("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); </code></pre> http://stackoverflow.com/questions/1417239/disable-eclipse-auto-completion 1 disable eclipse auto completion SpliFF 2009-09-13T08:49:55Z 2009-09-13T08:52:16Z <p>I love Eclipse but I HATE auto-completion with a vengeance! I swear though, no matter how hard I look in prefs or Google I can't find where I turn this off!</p> <p>I'm having the problem with both CFEclipse and the PHP editor.</p> <p>How do I completely disable all "smart" quotes/tags/braces auto-inserting. Not some of it.. ALL of it. No matter how many options I untick both editors keep trying to finish my code for me.. usually with irritating results. Like this one (PHP editor):</p> <pre><code>&lt;img alt="banner" src="/images/banner.jpg"&gt;&lt;/img&gt; </code></pre> <p>This is HTML, not XHTML - I don't want, or need, my img tags closed.</p> <p>Anyway this is still happening after I've gone to Preferences | PHP | Editor | Typing and Preferences | PHP | Editor | Code Assist and unchecked every option.</p> <p>I can't be the only one having this issue but I can't find any howtos or help on this.</p> http://stackoverflow.com/questions/1417239/disable-eclipse-auto-completion/1417242#1417242 1 Answer by SpliFF for disable eclipse auto completion SpliFF 2009-09-13T08:52:16Z 2009-09-13T08:52:16Z <p>Well I found how to stop the tags auto-closing. For some reason it's under the Web | HTML Files preferences (even for a PHP file). I realise PHP is embedded in HTML but it seems odd the way the Editor options cross over like this.</p> http://stackoverflow.com/questions/1242677/how-to-match-a-string-wildcard-pattern-in-an-excel-macro 0 How to match a string wildcard pattern in an excel macro SpliFF 2009-08-07T03:08:14Z 2009-09-09T20:00:03Z <p>I have a test like</p> <pre><code>LEFT('F13',2)='F1' </code></pre> <p>I want to change it from a left-side match to a test that supports wildcards</p> <pre><code>'F13'='F?3' </code></pre> <p>Excel doesn't support regex except in VBA code but i'd prefer this was done in a macro. I should point out that the actual test isn't a simple string, but cell references (this may be important, I'm not sure):</p> <pre><code>IF(LEFT($DATA.$A$2:$A$1501,LEN($B$3))=$B$3,... </code></pre> <p>The range actually evaluates to a single cell based on where the macro is called from. $B$3 is the pattern input by the user.</p> http://stackoverflow.com/questions/1387397/how-to-tell-js-to-wait/1387507#1387507 0 Answer by SpliFF for How to tell JS to wait...? SpliFF 2009-09-07T04:03:00Z 2009-09-07T04:03:00Z <p>i've seen solutions to this using for loops with thousands/millions of iterations. However be warned this can make the browser unresponsive if used incorrectly.</p> http://stackoverflow.com/questions/1387433/fastest-way-to-append-html-content-to-a-div-using-javascript/1387498#1387498 0 Answer by SpliFF for Fastest way to append HTML content to a div using JavaScript SpliFF 2009-09-07T03:58:03Z 2009-09-07T03:58:03Z <p>"The entire thing is inside a table, but hopefully that shouldn't matter."</p> <p>Actually it matters alot. Due to the nature of tables a cell can often not be rendered until the width and height of all cells in the column and row are calculated. table-layout: fixed overcomes this at the cost of locking cell width and height based on the first row.</p> <p>In short it may be best not to wrap in a table or if the data really is tabular try fixed layout rendering.</p> <p><a href="http://www.w3schools.com/Css/pr%5Ftab%5Ftable-layout.asp" rel="nofollow">http://www.w3schools.com/Css/pr%5Ftab%5Ftable-layout.asp</a></p> http://stackoverflow.com/questions/1387375/ie-associative-array-initialisation-fails 0 ie associative array initialisation fails SpliFF 2009-09-07T02:52:07Z 2009-09-07T02:53:56Z <p>I have declared an array in the form:</p> <pre><code>var refs = { 'EE810': "Presence Detector 1 Channel", 'EE871': "Motion Detector Outdoor 220/360Deg Blk", 'EE870': "Motion Detector Outdoor 220/360Deg WH", 'EE811': "Presence Detector 2 Channel", 'EE805': "Motion Detector Indoor White Flush", 'EE862': "Motion Detector Alum Outdoor 220 Deg", } </code></pre> <p>ie7 seems to consider this a syntax error as function declarations in the same script block suddenly become undefined. What's the simplest way to reformat this so it's valid in ie?</p> http://stackoverflow.com/questions/1339290/open-pdf-in-the-browser/1339444#1339444 1 Answer by SpliFF for open PDF in the browser SpliFF 2009-08-27T07:41:10Z 2009-08-27T07:41:10Z <p>From some of my code:</p> <pre><code>&lt;!--- Force a download, don't cache ---&gt; &lt;cfheader name="Content-disposition" value="inline; filename=#arguments.name#" /&gt; &lt;cfheader name="Cache-control" value="max-age=10" /&gt;&lt;!--- No cache doesn't work with IE6 due to bug ---&gt; &lt;cfcontent file="#my.safe_path#" type="#arguments.mime#" /&gt; </code></pre> <p></p> <p>It must be the ONLY thing output. The difference here is the file attribute being used with cfcontent</p> http://stackoverflow.com/questions/1251218/css-clearfix-problem-with-firefox-2-and-seamonkey/1251386#1251386 -1 Answer by SpliFF for CSS clearfix problem with Firefox 2 and SeaMonkey SpliFF 2009-08-09T13:32:51Z 2009-08-09T13:49:25Z <p>clearfix is just a hack for the lazy or obsessive purist. Put a clearing div where you need it (at the bottom of your div) and get on with life.</p> <pre><code>&lt;div&gt; ... floated content ... &lt;div style="clear:both"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>BTW. Purist who claim this breaks semantics are incorrect. The HTML specification defines no semantic meaning for <code>&lt;div&gt;</code>. At worst it mixes style/structure but it's hardly a burden to remove when the site is redesign in the future and a pure css solution becomes practical.</p> http://stackoverflow.com/questions/1248851/self-regulation-of-a-mini-economy/1249026#1249026 1 Answer by SpliFF for Self-regulation of a mini economy SpliFF 2009-08-08T14:30:14Z 2009-08-08T14:30:14Z <p>Drain in real-life tends to occur naturally as you accumulate wealth. In theory as your wealth goes up so does your drain because:</p> <ul> <li>Excessive wealth encourages waste. You have too many assets to manage effectively. </li> <li>Hiring people to manage waste is a drain in itself.</li> <li>High wealth makes you a better target for theft, embezzlement, fraud and lawsuits.</li> <li>Hiring security/lawyers to protect against the above is itself a drain.</li> <li>High wealth and luxury items attract more taxes.</li> <li>Markup on luxury items often grows out of proportion to the items actual production costs.</li> <li>Expensive items tend to have high storage, maintenance and running costs.</li> </ul> <p>You could simulate the above "balance" simply by finding realistic ways to increase costs as wealth goes up.</p> <p>In truth most "value" in a virtual economy is prestige. Having millions of dollars isn't worth much if nobody cares and you can't buy anything that would make them care.</p> <p>If wealth in your game represents little more than your "score", then any kind of drain is silly. Very few games artificially reduce your score.</p> http://stackoverflow.com/questions/1242683/css3-layout-module-browser-support/1242741#1242741 2 Answer by SpliFF for CSS3 Layout Module Browser Support SpliFF 2009-08-07T03:25:24Z 2009-08-08T14:06:45Z <p>Opera has the best CSS3 support, followed by webkit (safari). I suggest testing on Opera to see what works.</p> <p>Here's a compatibility chart (may be out of date) <a href="http://geocities.com/seanmhall2003/css3/compat.html" rel="nofollow">http://geocities.com/seanmhall2003/css3/compat.html</a></p> <p>this one seems better: <a href="http://westciv.com/iphonetests/" rel="nofollow">http://westciv.com/iphonetests/</a></p> <p>Be aware that most css3 properties are supported through a prefix (since css3 isn't final). For opera the prefix is -o- and for webkit it is -webkit-. ie: -o-text-shadow.</p> <p>UPDATE: There is a Javascript implementation of the layout module: <a href="http://a.deveria.com/csstpl/" rel="nofollow">http://a.deveria.com/csstpl/</a> . Have not used it myself and it comes with the catch that you must wait for all the page to load before it can render cleanly. If you're writing an intranet application on a LAN this would probably have a negligible impact but on a slow connection that could make your pages appear unresponsive. </p> http://stackoverflow.com/questions/1243305/excel-string-comparison-is-failing-when-it-should-not 0 excel string comparison is failing when it should not SpliFF 2009-08-07T06:55:56Z 2009-08-07T06:59:54Z <p>When I do <code>=RIGHT(DATA!$A$2:$A$1501,1)</code> I get the value 3. When I do <code>=$B$5</code> I get the value 3. When I do <code>=RIGHT(DATA!$A$2:$A$1501,1)=$B$5</code> I get the value FALSE.</p> <p>How the f%^k can 3 not equal 3. Is this a data type issue? Do I need a cast? If so how?</p> http://stackoverflow.com/questions/1242662/linux-move-1-million-files-into-prefix-based-created-folders/1242691#1242691 1 Answer by SpliFF for Linux: Move 1 million files into prefix-based created Folders SpliFF 2009-08-07T03:12:36Z 2009-08-07T03:18:55Z <p>I suggest a short python script. Most shell tools will balk at that much input (though xargs may do the trick). Will update with example in a sec.</p> <pre><code>#!/usr/bin/python import os, shutil src_dir = '/src/dir' dest_dir = '/dest/dir' for fn in os.listdir(src_dir): os.makedirs(dest_dir+'/'+fn[0]+'/'+fn[1]+'/'+fn[2]+'/') shutil.copyfile(src_dir+'/'+fn, dest_dir+'/'+fn[0]+'/'+fn[1]+'/'+fn[2]+'/'+fn) </code></pre> http://stackoverflow.com/questions/1220373/what-does-equality-to-a-range-mean-in-excel-macros 0 what does equality to a range mean in excel macros? SpliFF 2009-08-03T01:25:39Z 2009-08-03T14:57:21Z <p>I have to update this code to do a substring or regex match but I don't even understand the code:</p> <pre><code>INDEX( $DATA.B$2:B$1501; SMALL( IF( $DATA.$A$2:$A$1501=$B$3; ROW($DATA.$A$2:$A$1501)-ROW($DATA.$A$2)+1 ); ROWS($DATA.$A$1:$A1) ) ) </code></pre> <p>The bit that has me scratching my head the most is <code>$DATA.$A$2:$A$1501=$B$3</code> what does it mean to test equality of a single cell with a cell range?</p> <p>In addition, this code is comparing with a string in $B$3, how can I change this to a regex or substring match so that the test is true when $B$3 matches the start of the value in <code>$DATA.$A$2:$A$1501</code>?</p> http://stackoverflow.com/questions/1220300/getting-usercontrol-to-draw-under-html-div/1220395#1220395 0 Answer by SpliFF for Getting UserControl to draw under html div SpliFF 2009-08-03T01:41:30Z 2009-08-03T02:04:26Z <p>There was a trick that used to be common for putting divs over native elements in IE. You put a transparent iframe with nothing in it under the div you're trying to raise;</p> <pre><code>&lt;!-- windows forms garbage here --&gt; &lt;iframe id="underlay" src="javascript:false" frameborder="0" style="Alpha(style=0,opacity=0)"&gt;&lt;/iframe&gt; &lt;div id="overlay"&gt;&lt;/div&gt; </code></pre> <p>This would push overlay into a new directx layer (not to be confused with browser layer, ie z-index).</p> <p><strong>EDIT:</strong> Found why it didn't work: "The other technique, which uses the IFRAME element's ALLOWTRANSPARENCY attribute, actually pertains to making the interior page background of the IFRAME transparent, so that any content inside the IFRAME can have transparency. However, <em>this mode changes the nature of the IFRAME and it no longer serves our purpose for blocking out windowed controls</em>."</p> <p>The fix is to use an alpha filter for the transparency effect instead of ALLOWTRANSPARENCY.</p> http://stackoverflow.com/questions/1140973/how-to-pass-local-variables-when-assigning-mouseover-via-anonymous-function 3 how to pass local variables when assigning mouseover via anonymous function? SpliFF 2009-07-17T00:27:05Z 2009-07-17T01:05:27Z <p>I have a setup function that runs onload to add some behaviours to elements. The setup function passes arguments to the mouseover event but those arguments are being changed during the for loop because they are local references.</p> <pre><code>function setupAreas( image, map, lots ) { // obj is a simple wrapper for doc.getElementById var image = obj(image); // image for imagemap var map = obj(map); // imagemap element var areas = map.getElementsByTagName('area'); for (var i in areas) { var area = areas[i]; // imagemap area element area.id = area.alt; } for (var lot_id in lots) { if (lot_id != 'Lot No' &amp;&amp; lot_id != '') { var area = document.getElementById(lot_id); if (!area || !area.coords) { alert('no map coords for lot '+lot_id); } else { var coords = area.coords.split(","); //alert('tag: '+area.tagName+' id: '+lot_id+' area: '+area); var details = lots[lot_id]; if (details) { // setup mouseover call with complete details of area area.onmouseover = function(){ showLot(lot_id, area, coords, details, image, map, areas, lots) }; ... snip ... </code></pre> <p>The problem is that because of the for loop the references <code>lot_id</code> and <code>area</code> are changed on each iteration. The result is the mouseover event for any element gives the <code>lot_id</code> and area of the <em>last area only</em>.</p> <p>I don't want or need jQuery for this. A simple JS solution that doesn't pollute the global namespace is preferred.</p> http://stackoverflow.com/questions/1067166/using-css-text-overflow-to-vary-the-number-of-lines-of-text-within-an-element-of/1067199#1067199 0 Answer by SpliFF for Using CSS text-overflow to vary the number of lines of text within an element of a set height SpliFF 2009-07-01T03:51:42Z 2009-07-01T03:58:46Z <p>What browser? The text-overflow property is not universally supported.</p> <p>This may help: <a href="http://www.quirksmode.org/css/textoverflow.html" rel="nofollow">http://www.quirksmode.org/css/textoverflow.html</a></p> <p>EDIT: Oh never mind, iphone == safari. Perhaps the version is relevant though.</p> http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/1067175#1067175 1 Answer by SpliFF for What are some funny loading statements to keep users amused? SpliFF 2009-07-01T03:41:37Z 2009-07-01T03:41:37Z <p>Please wait... Your data is currently being probed by the CIA, NSA, Mossad, MI5 and Al Queada. Don't go anywhere.</p> http://stackoverflow.com/questions/1057309/how-to-find-which-process-the-linux-os-running-at-a-given-moment/1057393#1057393 0 Answer by SpliFF for How to find which process the linux os running at a given moment ? SpliFF 2009-06-29T09:28:26Z 2009-06-29T09:28:26Z <p>That's an illogical question. If you are querying the OS from a script/process then the active program is ... YOURS.</p> <p>Though I guess if you want the history you could watch the <code>/proc</code> directory or the output from <code>ps</code></p> http://stackoverflow.com/questions/1056287/howto-rewrite-requests-for-images-css-and-js-to-different-folders-for-each-appl/1056303#1056303 1 Answer by SpliFF for HOWTO: rewrite requests for images, css and js to different folders for each application? SpliFF 2009-06-29T02:09:31Z 2009-06-29T05:46:48Z <p>You can use AliasMatch</p> <pre><code>&lt;VirtualHost myapp1&gt; AliasMatch ^(.*\.)(js|css)$ /path/to/assets/myapp1$1$2 &lt;/VirtualHost&gt; </code></pre> http://stackoverflow.com/questions/1056081/serving-custom-user-controls-on-webpages-how-come-all-of-my-dlls-arent-making-i/1056282#1056282 0 Answer by SpliFF for Serving custom user controls on webpages: How come all of my DLLs aren't making it to the client? SpliFF 2009-06-29T02:01:05Z 2009-06-29T02:01:05Z <p>I don't think an ActiveX control copies DLL's to the client. More likely the clients already had some of the DLLs. You'll need to install the additional DLLs somehow (as a downloadable installer or using custom code). You may run into permissions issues trying to install DLLs via a web page.</p> http://stackoverflow.com/questions/1698941/why-do-i-get-no-source-for-error-in-firefox/1698960#1698960 Comment by SpliFF on Why do I get no source for error in Firefox SpliFF 2009-11-09T03:40:01Z 2009-11-09T03:40:01Z This isn't the first time this has happened either, so it isn't unique to this situation. It seems to be related to my JS files or combining inline and external scripts. Maybe a cache error, I don't know. http://stackoverflow.com/questions/1698941/why-do-i-get-no-source-for-error-in-firefox/1698960#1698960 Comment by SpliFF on Why do I get no source for error in Firefox SpliFF 2009-11-09T03:38:31Z 2009-11-09T03:38:31Z sorry you're missing the point. I KNOW what the error is and with a little work I can find what specifically caused it but I'm trying to enable tracebacks in Firebug and this source view error appears to be blocking that. I don't think the error itself is the problem, I think FF is somehow broken as evidenced by the uncaught chrome exceptions. http://stackoverflow.com/questions/1621906/is-there-a-way-to-split-a-string-by-every-nth-seperator-in-python/1621928#1621928 Comment by SpliFF on Is there a way to split a string by every nth seperator in Python? SpliFF 2009-10-26T11:36:38Z 2009-10-26T11:36:38Z rubbish. it's actually much easier to decipher. length is largely irrelevant and it could be shortened by making it less readable. It should have good performance since the loop only has a simple test condition to deal with. Also it has the most flexibility for handling other processing inside the loop. Also the winning answer will crash on a string with an odd number of hyphens. Iter and list ops might be pythonic but that doesn't necessarily make them 'better'. http://stackoverflow.com/questions/1621906/is-there-a-way-to-split-a-string-by-every-nth-seperator-in-python/1621928#1621928 Comment by SpliFF on Is there a way to split a string by every nth seperator in Python? SpliFF 2009-10-25T20:15:08Z 2009-10-25T20:15:08Z sorry, i misread your question first time and rewrote it, n was a leftover from previous. Now it gives a list of strings. http://stackoverflow.com/questions/1621916/where-can-i-advertise-an-open-source-project Comment by SpliFF on Where can I advertise an open source project? SpliFF 2009-10-25T20:04:02Z 2009-10-25T20:04:02Z perhaps you could explain WHY sourceforge doesn't meet your needs, otherwise it isn't clear what you want. http://stackoverflow.com/questions/1610845/how-to-collate-output-in-python-logging-memoryhandler-smtphandler/1611958#1611958 Comment by SpliFF on how to collate output in python logging memoryhandler + smtphandler SpliFF 2009-10-25T12:36:39Z 2009-10-25T12:36:39Z Great stuff. It isn't every day you get your question answered by the author of the module! http://stackoverflow.com/questions/1610879/how-to-simulate-a-web-browser-so-the-website-feeds-me-the-correct-html-source/1610884#1610884 Comment by SpliFF on How to simulate a web browser so the website feeds me the correct HTML source? SpliFF 2009-10-23T01:18:19Z 2009-10-23T01:18:19Z Sounds like your problem is actually related to cookies, you're proably being redirected and your script isn't providing keys needed to maintain your session. Alternatively there is some javascript involved in the sorting or you haven't correct URL-encoded your parameters. If you want to persue this further it might be helpful to ask as a new question since this one, as worded, has been answered. http://stackoverflow.com/questions/1387375/ie-associative-array-initialisation-fails/1387378#1387378 Comment by SpliFF on ie associative array initialisation fails SpliFF 2009-09-07T03:29:15Z 2009-09-07T03:29:15Z that wouldn't help at all in this situation, it's the last comma that's relevant. at any rate i've already written the required fix. http://stackoverflow.com/questions/1387375/ie-associative-array-initialisation-fails/1387381#1387381 Comment by SpliFF on ie associative array initialisation fails SpliFF 2009-09-07T03:02:59Z 2009-09-07T03:02:59Z actually it doesn't complain at all. it simply ignores everything in the same script block. Even the developer toolbar has nothing to say. That hardly sounds correct in my book. http://stackoverflow.com/questions/1387375/ie-associative-array-initialisation-fails/1387378#1387378 Comment by SpliFF on ie associative array initialisation fails SpliFF 2009-09-07T02:58:35Z 2009-09-07T02:58:35Z thanks, it's just a liitle painful as the array is initialised in a coldfusion loop. Now I'm going to have to test for the last element. http://stackoverflow.com/questions/1251309/anyone-got-anything-how-to-create-drm-protected-mp3-programmaticaly Comment by SpliFF on Anyone got anything how to create DRM protected MP3 programmaticaly? SpliFF 2009-08-09T13:27:39Z 2009-08-09T13:27:39Z always the same thing. You cannot protect any non-interactive that can be seen or heard. It can always be decoded to sound waves and recorded again with practically 0 loss (or exactly 0 loss when your format is inevidably cracked) http://stackoverflow.com/questions/1248851/self-regulation-of-a-mini-economy/1249026#1249026 Comment by SpliFF on Self-regulation of a mini economy SpliFF 2009-08-09T12:35:56Z 2009-08-09T12:35:56Z At it's most basic level &quot;wealth&quot; is the ability to perform &quot;work&quot;. You need to decide whether accumulating the ability to have work done is a measure of skill (the generally accepted meaning of &quot;score&quot;). Most MUD's distinguish your wealth (gold) from your score (XP). You should consider whether success in your game is measured by the ability to accumulate wealth. &quot;Wasting money&quot; is a very non-specific concept so I couldn't even touch that without understanding waste in terms of your game. It's like the old saying: &quot;One mans trash is another mans treasure&quot;. http://stackoverflow.com/questions/1249064/html-frame-source Comment by SpliFF on HTML Frame Source SpliFF 2009-08-08T14:50:21Z 2009-08-08T14:50:21Z perhaps you might consider rewriting your frame as a div. cross-page JS is always a headache. http://stackoverflow.com/questions/1249064/html-frame-source/1249072#1249072 Comment by SpliFF on HTML Frame Source SpliFF 2009-08-08T14:47:47Z 2009-08-08T14:47:47Z yes though i'd check browser support. ie is pretty slow on the uptake of features like this and i'm reasonably sure ie6 doesn't support data: http://stackoverflow.com/questions/1248923/why-isnt-c-used-in-web-developement/1248931#1248931 Comment by SpliFF on Why isn't C++ used in Web-Developement ? SpliFF 2009-08-08T14:44:52Z 2009-08-08T14:44:52Z disagree all you like but in truth C++ requires more lines of code to do the same thing as a high-level language, and typically is harder to debug and prototype.