User Alterlife - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T03:04:16Z http://stackoverflow.com/feeds/user/36848 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1739622/is-there-a-size-limit-for-the-sql-text-in-a-peoplesoft-app-engine-sql-step-action/1879582#1879582 0 Answer by Alterlife for Is there a size limit for the SQL text in a PeopleSoft App Engine SQL Step/Action? Alterlife 2009-12-10T08:50:42Z 2009-12-10T08:50:42Z <p>There is no such limit.</p> <p>You can confirm this yourself by creating an SQL like:</p> <pre><code>select 'x' from PS_INSTALLATION where 1 = 1 and 1 = 1 and 1 = 1 and 1 = 1 and /* ... copy paste '1 = 1 and' 90000 times or so times more */ 1 = 1 </code></pre> <p>Although it makes pside quite slow, It saves and validates just fine.</p> http://stackoverflow.com/questions/1772599/creating-thumbnails-from-video-files-with-python 2 Creating thumbnails from video files with Python Alterlife 2009-11-20T19:02:27Z 2009-12-04T01:33:09Z <p>I need to create thumbnails for a video file once I've uploaded to a webapp running python.</p> <p>How would I go about this... I need a library that can basically either do this for me, or that can read the image frames out of video files (of several formats) automatically.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409521#409521 3 Answer by Alterlife for What's your most controversial programming opinion? Alterlife 2009-01-03T18:18:08Z 2009-10-30T15:00:35Z <p><strong>A majority of the 'user-friendly' Fourth Generation Languages (SQL included) are worthless overrated pieces of rubbish that should have never made it to common use.</strong></p> <p>4GLs in general have a wordy and ambiguous syntax. Though 4GLs are supposed to allow 'non technical people' to write programs, you still need the 'technical' people to write and maintain them anyway.</p> <p>4GL programs in general are harder to write, harder to read and harder to optimize than.</p> <p>4GLs should be avoided as far as possible.</p> http://stackoverflow.com/questions/1117763/is-software-engineering-a-mature-discipline/1117994#1117994 1 Answer by Alterlife for Is Software Engineering a mature discipline? Alterlife 2009-07-13T06:48:09Z 2009-10-25T08:05:31Z <p><strong>Software engineering IS a mature decipline.</strong></p> <p>Software engineering in the context of "software development" has much in common with art. Like an artist who is given a canvas, a programmer is given a theoretically perfect, controlled environment to build his work in. </p> <p>Like an artist, he/she could choose to use tools designed by others... or he/she could build his own tools, or even use his fingers. </p> <p>He/she follows methods and styles set down by others, or he/she could make his own rules.</p> <p>The quality of a product created by a programmer, or a team of programmers is determined by the tools that they chose, the styles that they adopt, and the individual ability to produce quality code.</p> <p><a href="http://en.wikipedia.org/wiki/Civil%5Fengineering" rel="nofollow">Civil engineering</a>: in the context of producing <strong><em>unique structures</em></strong>, is similar to what programmers do -- they would ignore established conventions and create new processes.</p> <p>On the other hand, the process of setting up a wordpress installation, configuring a vanilla ERP, or writing an excel formula is like building a house... There is an obvious, known, accepted and 'easy' way to do it. </p> <p>The difference between software development and other engineering desciplines is that the software engineer who writes excel formulas sometimes doesn't undergo as much training as a civil engineer... because software failure is less serious than structural failure.</p> http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual 2 Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T18:32:47Z 2009-10-23T18:57:40Z <p>I've got a flash application (not written by me) which is accessing a configuration file which present on a http server. There are a lot of settings in the config file which seem to affect its behaviour.</p> <p>I'm not interested in decompiling the swf file or getting too deep into this. </p> <p>Basically I would like to try to alter the behaviour of the application by making it pick up a modified version of the configuration file instead of the one on the server. Is there a way to do this easily (perhaps a firefox extension like firebug?).</p> <p>Basically when the application requests <a href="http://server/config.xml" rel="nofollow">http://server/config.xml</a> I want something that gets in the way and returns ~/myconfig.xml instead.</p> http://stackoverflow.com/questions/1611677/write-browser-plugin-for-a-personal-web-application/1611704#1611704 1 Answer by Alterlife for Write browser plugin for a personal web application. Alterlife 2009-10-23T06:35:50Z 2009-10-23T06:35:50Z <p>For ie: <a href="http://www.codeproject.com/KB/shell/ietoolbartutorial.aspx" rel="nofollow">http://www.codeproject.com/KB/shell/ietoolbartutorial.aspx</a></p> <p>For Firefox: <a href="https://developer.mozilla.org/en/Building%5Fan%5FExtension" rel="nofollow">https://developer.mozilla.org/en/Building%5Fan%5FExtension</a></p> <p>Good luck :-)</p> http://stackoverflow.com/questions/1588058/python-read-two-variables-in-a-single-line 1 python: read two variables in a single line Alterlife 2009-10-19T11:00:21Z 2009-10-19T18:04:29Z <p>I am familiar with the input() function, to read a single variable from user input. Is there a similar easy way to read two variables? </p> <p>I'm looking for the equivalent of:</p> <pre><code>scanf("%d%d", &amp;i, &amp;j); // accepts "10 20\n" </code></pre> <p>One way I am able to achieve this is to use raw_input() and then split what was entered. Is there a more elegant way?</p> <p>This is not for live use. Just for learning.</p> http://stackoverflow.com/questions/892411/breaking-out-of-the-google-app-engine-python-lock-in 6 Breaking out of the Google App Engine Python lock-in? Alterlife 2009-05-21T11:12:59Z 2009-10-08T11:00:06Z <p>Are there any guidelines to writing <a href="http://en.wikipedia.org/wiki/Google%5FApp%5FEngine" rel="nofollow">Google App Engine</a> Python code that would work without Google's infrastructure on other platforms?</p> <p>Is there any known attempt to create an open source framework which can run applications designed for Google App Engine on other platforms?</p> <p>Edit:</p> <p>To clarify, the question really is:</p> <p>If I develop an application on Google App Engine now, will I be able to migrate to another platform later, or is it a lock in?</p> http://stackoverflow.com/questions/1529718/why-are-pointers-and-recursion-looked-upon-as-an-complicated-issues/1529730#1529730 1 Answer by Alterlife for Why are pointers and recursion looked upon as an complicated issues ? Alterlife 2009-10-07T05:54:04Z 2009-10-07T05:54:04Z <p>They are simple concepts, but they're easy to screw up. </p> <p>That makes pointers and recursion a very suitable topic for programming puzzles and interview questions.</p> http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order 0 Python code seems to be getting executed out of order. Alterlife 2009-09-25T11:12:39Z 2009-09-26T11:12:53Z <p>At work I have a programming language encoded in a database record. I'm trying to write a print function in python to display what the record contains. </p> <p>This is the code I'm having trouble with:</p> <pre><code> # Un-indent the block if necessary. if func_option[row.FRML_FUNC_OPTN] in ['Endif', 'Else']: self.indent = self.indent - 1 # if this is a new line, indent it. if len(self.formulatext) &lt;&gt; 0 and self.formulatext[len(self.formulatext) - 1] == '\n': for i in range(1,self.indent): rowtext = ' ' + rowtext # increase indent for 'then', 'else' if func_option[row.FRML_FUNC_OPTN] in ['Then', 'Else']: self.indent = self.indent + 1 </code></pre> <p>When row.FRML____FUNC____OPTN equals 'Else', I expect it to first un-indent, then indent again, so that the 'else' is printed at a lower level of indentation, then the rest of the code is within. Instead this is the type of indentation I get:</p> <pre><code>IfThen IfThen Else EndifComment IfThen Endif IfThen Else Endif Else Endif </code></pre> <p>As you can see the 'Else' is still indented higher than the If / Endif. Any idea why this could be happening?</p> <p>I did try sprinkling the code with debug statements the result of which is: </p> <pre><code>row: Else row.FRML_FUNC_OPTN is : Elsedecrementing indent row.FRML_FUNC_OPTN is : Elseincrementing indent </code></pre> <p>which means that the indent altering if's are indeed being entered...</p> http://stackoverflow.com/questions/1463862/web-2-0-designs/1463989#1463989 1 Answer by Alterlife for Web 2.0 Designs Alterlife 2009-09-23T04:38:24Z 2009-09-23T04:38:24Z <p>There's no specification for web 2.0. It's a buzzword. The definiton of it varies depending on whom you ask. </p> <p>Some people say that syndication is a web2.0 feature.</p> <p>Some people say that tagging is a web2.0 feature.</p> <p>Some people say that live search is a web2.0 feature.</p> <p>Some people say 'user contributed content' is what makes a website web2.0, so if you just put a 'commenting' feature on your website, then your site is web2.0 by this definition.</p> <p>Anyways, who cares. The technology is the same. If you've got a good idea, just build your app however you wanted to. Then when you're ready to market, put a web 2.0 sticker on it. </p> <p>That's how it's done.</p> http://stackoverflow.com/questions/1459087/looking-for-a-bare-bones-open-source-editor-written-in-python 2 Looking for a bare-bones open-source editor written in python Alterlife 2009-09-22T09:38:16Z 2009-09-22T14:43:15Z <p>I'm looking for a bare bones cross platform editor written in python that I can pick up and customize. The fewer dependencies the better.</p> <p>Please note: I'm not looking for a python editor or python IDE. Just a no-frills editor, that I can use as a base for an app that I'm starting on. </p> <p>Must be open source and free to modify for commercial use since I intend to use this for work.</p> http://stackoverflow.com/questions/1425314/is-msn-an-openid-provider/1425362#1425362 4 Answer by Alterlife for Is MSN an OpenID provider? Alterlife 2009-09-15T05:54:03Z 2009-09-22T06:38:58Z <p>Microsoft has an OpenID service attached to Windows Live ID that <a href="http://winliveid.spaces.live.com/Blog/cns!AEE1BB0D86E23AAC!1791.entry?sa=554243812" rel="nofollow">is in beta at the moment</a>. Not every Windows Live ID user seems to be able to use it.</p> <p>To use it, users have to <a href="https://login.live-int.com/beta/ManageOpenID.srf" rel="nofollow">create an OpenID alias</a>, where they will be provided an OpenID URL.</p> http://stackoverflow.com/questions/1451626/pagerank-and-its-mathematics-explanation-needed/1451671#1451671 4 Answer by Alterlife for Pagerank and its mathematics: Explanation needed Alterlife 2009-09-20T18:31:33Z 2009-09-20T18:31:33Z <p>This is the paper that you need: <a href="http://infolab.stanford.edu/~backrub/google.html" rel="nofollow">http://infolab.stanford.edu/~backrub/google.html</a> (If you do not recognise the names of the authors, you will find more information about them here: <a href="http://www.google.com/corporate/execs.html" rel="nofollow">http://www.google.com/corporate/execs.html</a>).</p> <p>The symbols used in the document, are described in the document in lay English.</p> <p>Thanks for making me google this.</p> http://stackoverflow.com/questions/1451488/how-should-a-junior-developer-handle-standup-meetings/1451527#1451527 3 Answer by Alterlife for How should a junior developer handle standup meetings? Alterlife 2009-09-20T17:30:33Z 2009-09-20T17:30:33Z <p>Since you consider your present task 'embaressing', I am assuming that you want some more development responsibility.</p> <p>In my opinion is the stand up is probably a good time to ask for this.</p> <p>I suggest that you say something passive like: before the next standup I will try to put what I have learned thus far in C# 4.0 to good use within some area of the project. </p> <p>You in short order, you will be given something to do... then instead of having nothing to say during the stand ups, you will be too tired to go to them.</p> <blockquote> <p>be careful what you wish for... because some day, you might get it.</p> </blockquote> http://stackoverflow.com/questions/1442577/is-it-possible-to-compare-two-tables-when-no-common-key-exists-between-them/1442625#1442625 1 Answer by Alterlife for Is it possible to compare two tables when no common key exists between them? Alterlife 2009-09-18T04:39:35Z 2009-09-18T04:39:35Z <p><a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function%5Fsoundex" rel="nofollow">SOUNDEX()</a> will help you to a certain extent. But it is far from perfect.</p> <p>soundex(string1) is expected to be equal to soundex(string2) even if string1 and string2 are spelled differantly. But as I said, It is far from perfect.</p> <p>As far as I know, there is no existing algorithm which does this perfectly.</p> http://stackoverflow.com/questions/1434102/how-can-we-teach-managers-how-software-development-works/1436469#1436469 1 Answer by Alterlife for How can we teach managers how Software Development works? Alterlife 2009-09-17T02:40:31Z 2009-09-17T10:38:29Z <blockquote> <p><strong>Malax wrote:</strong></p> <blockquote> <p>"But why can't we develop this from a Indian company? Ferrari does not produce their screws themselves!"</p> </blockquote> <p>Which is somewhat correct, but does not apply to Software development.</p> </blockquote> <p><strong>Ah, but it does!</strong></p> <p>If Ferrari <em>did</em> produce it's own screws, they might get higher quality screws, but they would spend much more money maintaining the screw manufacturing plant.</p> <p>Or if they suddenly jump into screw manufacturing, knowing nothing about the domain, they might even produce worse quality screws that cost more when starting out.</p> <p>Outsourcing <em>does</em> work. Providing that you're outsourcing to a provider that knows what they're doing. </p> <p>If your management looks hard enough for a good service provider with a credible record (the provider has done something similar for other buyers with good results) in whatever you're trying to get done, they will, definitely get it done easier. It doesn't matter where the service provider is located.</p> <p>A little addition from the comments section:</p> <p><strong>Mobbit wrote:</strong></p> <blockquote> <p>I don't doubt that outsourcing might work. But I don't believe that it works for your core >products/components. Like the engine or design of a Ferrari. Screws or seats can perfectly >be outsourced. You still would have to find a partner that delivers you the right quality >at a reasonable price. In terms of software screws would be libraries and seats perhaps a >service or larger component you add to your product. – Mobbit 2 hours ago</p> </blockquote> <p>Ah, but it DOES work. </p> <p>Software Development is design, followed up by code. You: Mr. American have a design that you believe can work. Why do you assume that an American programmer would be better than an Indian programmer in executing that design? If an Indian programmer can execute the same design, but cheaper, why would you not use the Indian designer? </p> <p>The difference in cost between an American and Indian developer isn't because Indian developers are of lower quality, it's because life is cheaper in India, and thus engineers are paid less than the average American.</p> <p><em>Full Disclosure: I live and work in India.</em></p> http://stackoverflow.com/questions/1432122/deleting-files-with-python-scripts/1432128#1432128 6 Answer by Alterlife for deleting files with python scripts Alterlife 2009-09-16T10:13:43Z 2009-09-16T10:13:43Z <p><code>\</code> is the escape char for python. try replacing it with <code>\\</code> .</p> <p>ex:</p> <pre><code>os.remove ('D:\\new.docx') </code></pre> http://stackoverflow.com/questions/1431961/how-to-pack-and-unpack-a-string-with-each-character-taking-7-bits-only/1432089#1432089 3 Answer by Alterlife for How to pack and unpack a string with each character taking 7 bits only? Alterlife 2009-09-16T10:05:14Z 2009-09-16T10:05:14Z <p>The most obvious way to do it is to convert it into a array of bits, and then move the result back appropriately into a byte string.</p> <p>ex: Something similar to this would be in your pack function:</p> <pre><code>int binarystring[BIG_NUMBER]; // could use bool instead if you're in crazy mode. int bin_length = 0; for(int i = 0 ;i &lt; len; i++) { for (int j = 0;j &lt; 7;j++) { binarystring[bin_length++] = buff[i] % 2; buff[i] = buff[i] / 2; // (or you could bitwise shift) } } </code></pre> <p>Then put move the binary string into your result buffer</p> <pre><code>unsigned char packed[BIG_NUMBER]; // make sure this is zero'd out int packed_length = 0; for(int i = 0;i &lt; bin_length;i++) { if(i%8) packed_length++; packed[packed_length] = packed[packed_length] * 2 + buff[i]; // here again you could bitwise shift. } </code></pre> <p>The unpack is similar. Since you're doing this for your job, this hint should be more than enough for you to get it done ;) .</p> http://stackoverflow.com/questions/1431815/how-to-manage-answers-directly-on-email-notifications/1431880#1431880 1 Answer by Alterlife for How to manage answers directly on email notifications Alterlife 2009-09-16T09:17:11Z 2009-09-16T09:27:44Z <p>There's no best way. Depending on what you want to do with the responses, you could as well handle them with thunderbirds message filters ;) .</p> <p>Put a unique identifier into the subject or the body of the notification that you're sending so that you can identify &amp; classify the email correctly when a user replies by email.</p> <p>If you want to stick with php: pick up the php pop3 client class from: <a href="http://www.phpclasses.org/browse/package/2.html" rel="nofollow">http://www.phpclasses.org/browse/package/2.html</a> or find a client elsewhere and then just parse your message responses and classify / handle them however you want to.</p> http://stackoverflow.com/questions/1425240/select-rows-with-maximum-column-value-group-by-another-column/1425268#1425268 1 Answer by Alterlife for Select Rows with Maximum Column Value group by Another Column Alterlife 2009-09-15T05:24:02Z 2009-09-15T07:25:29Z <p>You will have to complicate your query a little bit:</p> <pre><code>select a.docgroupviewid, a.del_index, a.id from table a where a.del_index = (select max(b.del_index) from table where b.docgroupviewid = a.docgroupviewid) </code></pre> http://stackoverflow.com/questions/1425409/developers-social-networking/1425433#1425433 3 Answer by Alterlife for Developers' Social Networking Alterlife 2009-09-15T06:18:07Z 2009-09-15T06:18:07Z <p>I would consider <a href="http://github.com/" rel="nofollow">github</a> the ultimate social network for developers (... though you can fork me even if you don't know me). </p> <p>Stackoverflow could be considered a developers social network as well. We unwittingly group ourselves under the tags we answer questions under and ask questions under, and a very visible heirarchy emerges thanks to the the karma system.</p> <p>Yep... Stackoverflow is a socialnetwork, and <a href="http://stackoverflow.com/users/22656/jon-skeet">Jon Skeet</a> is /root .</p> http://stackoverflow.com/questions/1420205/how-to-convert-a-mysql-db-to-xml/1420227#1420227 0 Answer by Alterlife for How to convert a MySQL DB to XML? Alterlife 2009-09-14T08:00:13Z 2009-09-14T08:00:13Z <p>The command line client that comes with MySQL has a --xml option: <a href="http://dev.mysql.com/doc/refman/5.1/en/mysql-command-options.html#option%5Fmysql%5Fxml" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/mysql-command-options.html#option%5Fmysql%5Fxml</a> </p> <p>If the output format of that does not match what you need, you could just select the data out and concatenate it with your xml tags:</p> <pre><code>select concat('&lt;field1&gt;',field1,'&lt;/field1&gt;&lt;field2&gt;',field2, '&lt;/field2&gt;') from table </code></pre> http://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch/1420046#1420046 13 Answer by Alterlife for How to break out of a loop from inside a switch? Alterlife 2009-09-14T06:56:47Z 2009-09-14T07:53:54Z <p>A neatish way to do this would be to put this into a function:</p> <pre><code>int yourfunc() { while(true) { switch(msg-&gt;state) { case MSGTYPE: // ... break; // ... more stuff ... case DONE: return; } } } </code></pre> <p>Optionally (but 'bad practices'): as already suggested you could use a goto, or throw an exception inside the switch.</p> http://stackoverflow.com/questions/1364561/has-agile-really-worked-for-you-as-a-developer/1364657#1364657 0 Answer by Alterlife for Has Agile really worked for you as a Developer? Alterlife 2009-09-01T21:05:36Z 2009-09-01T21:05:36Z <p>In the so called 'traditional team', Agile development would increase the visibility of individual developers to management. That would probably allow managers and architects to plan their work better. Ofcourse that could be interpreted as micromanagement.</p> <p>But from an organizational perspective, if it produces results, who cares.</p> http://stackoverflow.com/questions/759110/licensing-question-when-running-windows-xp-under-windows-xp-using-vmware 1 Licensing question when running Windows XP under Windows XP (using vmware) Alterlife 2009-04-17T05:14:49Z 2009-08-30T22:15:48Z <p>If I've purchased one license for Windows XP, <strong><em>is it legal</em></strong> to run a second copy on the same machine (in a second partition, under Linux) with vmware?</p> http://stackoverflow.com/questions/1345913/how-many-programmers-do-you-need-in-a-software-company/1345954#1345954 2 Answer by Alterlife for How many programmers do you need in a software company? Alterlife 2009-08-28T09:29:54Z 2009-08-28T09:34:55Z <p>I don't think there's a magic number. You should hire as many as you estimate you need to:</p> <ol> <li>Keep your software usable and current if it's in maintenance mode, </li> <li>Keep your software on schedule and under budget if it's in development mode.</li> </ol> <p>Fewer is better.</p> <p>Ofcourse if you're talking about a 'body-shopping' firm working out of a third world country a formula such as the one you propose might work...</p> http://stackoverflow.com/questions/1240018/svn-to-clearcase-export/1334009#1334009 1 Answer by Alterlife for SVN to Clearcase Export Alterlife 2009-08-26T11:18:39Z 2009-08-28T09:25:55Z <p>If clearcase has command line support you will be able to write a script to check into clearcase, and configure svn to execute it automatically when code is committed (<a href="http://svnbook.red-bean.com/nightly/en/svn.reposadmin.create.html#svn.reposadmin.create.hooks" rel="nofollow">post-commit hook</a>)</p> http://stackoverflow.com/questions/1340407/most-illiterate-code-snippet-that-you-saw-in-your-practice/1340450#1340450 8 Answer by Alterlife for most illiterate code snippet that you saw in your practice Alterlife 2009-08-27T11:25:00Z 2009-08-27T11:25:00Z <p>True story:</p> <pre><code>$name_label = get_label('NAME', $report_lang) // Get the label text if $report_lang = 'EN' then print $name_label; // Print out the english label else if lang = 'FR' then print $name_label; // Print out the french label else if //16 more languages ... end-if </code></pre> http://stackoverflow.com/questions/1338895/is-there-any-way-using-which-i-can-get-last-updated-row-id/1338916#1338916 7 Answer by Alterlife for Is there any way using which I can get Last Updated row Id Alterlife 2009-08-27T04:55:39Z 2009-08-27T09:07:14Z <p>I don't think this feature exists with MySQL. However you can get the same effect by adding a timestamp column:</p> <pre><code>ALTER TABLE yourtable ADD COLUMN last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP </code></pre> <p>This would make the last_update column pretty much automatically maintained. Now you can select from yourtable the last updated row based on the timestamp.</p> http://stackoverflow.com/questions/1772599/creating-thumbnails-from-video-files-with-python/1843043#1843043 Comment by Alterlife on Creating thumbnails from video files with Python Alterlife 2009-12-10T08:42:39Z 2009-12-10T08:42:39Z Much appreciated. http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual/1615230#1615230 Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T19:23:18Z 2009-10-23T19:23:18Z I found this particular application which does what I want: <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">fiddler2.com/fiddler2</a> . Thanks for putting me on the right track wrt search terms. http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T19:03:58Z 2009-10-23T19:03:58Z @snicker well, it is a game... But not farmville! http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual/1615230#1615230 Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T19:00:51Z 2009-10-23T19:00:51Z Unfortunately this does not seem to have the feature that I need. There's a lot of filtering options, but I can find only blocking options and not 'redirect'... http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual/1615308#1615308 Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T19:00:03Z 2009-10-23T19:00:03Z I did think of this... unfortunately the swf application file is on the same server... along with a number of other files which I don't have access to... For sure there must be a way to just replace only config xml without having to mirror the entire server. http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T18:52:01Z 2009-10-23T18:52:01Z And since I know the developer of this particular app personally, if his security is broken, I would love to be the one to tell him :-) . http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual/1615230#1615230 Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T18:44:51Z 2009-10-23T18:44:51Z Thanks, I'll take a quick look at this tool and get back. http://stackoverflow.com/questions/1615188/harmless-hacking-trick-an-application-into-thinking-that-a-local-file-has-actual Comment by Alterlife on Harmless hacking: Trick an application into thinking that a local file has actually come from a server Alterlife 2009-10-23T18:44:17Z 2009-10-23T18:44:17Z Ofcourse it's a security hazzard... This is why this interests me :) . http://stackoverflow.com/questions/1611677/write-browser-plugin-for-a-personal-web-application/1611704#1611704 Comment by Alterlife on Write browser plugin for a personal web application. Alterlife 2009-10-23T08:22:10Z 2009-10-23T08:22:10Z For internet explorer or firefox? http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order/1481005#1481005 Comment by Alterlife on Python code seems to be getting executed out of order. Alterlife 2009-09-26T13:39:29Z 2009-09-26T13:39:29Z Thanks very much for the suggestions. http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order Comment by Alterlife on Python code seems to be getting executed out of order. Alterlife 2009-09-25T14:40:51Z 2009-09-25T14:40:51Z I can't delete it. Stackoverflow says: Sorry, this question cannot be deleted: too many existing answers, or upvoted/accepted answers (click on this box to dismiss) http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order/1476779#1476779 Comment by Alterlife on Python code seems to be getting executed out of order. Alterlife 2009-09-25T11:45:01Z 2009-09-25T11:45:01Z As it turns out, the formula in the table that I'm reading from has an additional row with just a 'Then' without an 'If'. I have code to eliminate Thens without 'If's for the print elsewhere, in my function but I didn't eliminate the 'if'. Thanks for your help. Much appreciated :) . http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order Comment by Alterlife on Python code seems to be getting executed out of order. Alterlife 2009-09-25T11:44:25Z 2009-09-25T11:44:25Z As it turns out, the formula in the table that I'm reading from has an additional row with just a 'Then' without an 'If'. I have code to eliminate Thens without 'If's for the print elsewhere, in my function but I didn't eliminate the 'if'. Thanks for your help chrispy. Much appreciated :) . http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order/1476764#1476764 Comment by Alterlife on Python code seems to be getting executed out of order. Alterlife 2009-09-25T11:31:22Z 2009-09-25T11:31:22Z I'm not doing any formatting after this code. Just appending rowtext to output. http://stackoverflow.com/questions/1476722/python-code-seems-to-be-getting-executed-out-of-order Comment by Alterlife on Python code seems to be getting executed out of order. Alterlife 2009-09-25T11:28:14Z 2009-09-25T11:28:14Z I did think about that possibility... I'm absolutely sure that it doesnt :( . rowtext is just blank at the start of this code