User Paul Fisher - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:30:54Z http://stackoverflow.com/feeds/user/39808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1301117/how-can-i-automatically-answer-a-password-prompt-from-an-embedded-item-in-an-xh/1301163#1301163 0 Answer by Paul Fisher for How can I automatically answer a password prompt from an embedded item in an (X)HMTL page? Paul Fisher 2009-08-19T16:40:31Z 2009-08-19T16:40:31Z <p>You can include the authentication in the URL:</p> <pre><code>&lt;img src="http://paulfisher:tastybacon@internalwebs/path/to/image.png"&gt; </code></pre> <p>Where, of course, <code>paulfisher</code> is my username and my password is <code>tastybacon</code>.</p> http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe 2 Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T02:50:16Z 2009-08-16T03:27:58Z <p>I saw use of this pattern to concatenate onto a string in some code I was working on:</p> <pre><code>sprintf(buffer, "%s &lt;input type='file' name='%s' /&gt;\r\n", buffer, id); sprintf(buffer, "%s&lt;/td&gt;", buffer); </code></pre> <p>and I'm fairly certain it's not safe C. You'll notice that <code>buffer</code> is both the output and the first input.</p> <p><em>Apart from the obvious possibility of a buffer overflow</em>, I believe there is no guarantee that buffer doesn't get changed between the start and the end of the function (i.e., there is no guarantee as to what the state of buffer will be during the execution of the function). The signature of sprintf additionally specifies that the target string is <code>restrict</code>ed.</p> <p>I also recall a report of a <a href="http://blogs.sun.com/dave/entry/memcpy%5Fconcurrency%5Fcuriosities" rel="nofollow">speculative writing in memcpy</a>, and I see no reason why some C library might do the same thing in a sprintf. In this case, of course, it would be writing to its source. So <strong>is this behaviour safe?</strong></p> <p>FYI, I proposed:</p> <pre><code>char *bufEnd = buffer + strlen(buffer); /* sprintf returns the number of f'd and print'd into the s */ bufEnd += sprintf(bufEnd, " &lt;input type='file' name='%s' /&gt;\r\n", id); </code></pre> <p>to replace this.</p> http://stackoverflow.com/questions/1235978/are-there-any-advantages-to-using-gif-over-png/1236019#1236019 1 Answer by Paul Fisher for Are there any advantages to using GIF over PNG? Paul Fisher 2009-08-05T22:05:06Z 2009-08-05T22:05:06Z <p>If you use PNG's alpha transparency, Internet Explorer &lt;7 will display them with a gray background, rather than clear. These versions of IE do support binary transparency. For this reason, there is no reason to use GIF other than for animation.</p> http://stackoverflow.com/questions/1202988/get-ie6-quirks-mode-positionabsolute-rendering-in-standards-mode 0 Get IE6 quirks-mode position:absolute rendering in standards mode Paul Fisher 2009-07-29T20:57:18Z 2009-07-29T22:52:44Z <p>I have an absolutely-positioned navigation on my menu that is sent off to the left side.*</p> <pre><code>#menu { position: absolute; display:inline-block; /* I can hasLayout? */ top: 0; left: 0; width: 265px; height: 100%; background: #ffc; } html&gt;body #menu { height: auto; min-height: 100%; } </code></pre> <p>It should look something like this:</p> <pre><code>+-------------------------------+ | N | | | | content content content | | A | content content content | | | | | V | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | +-------------------------------+ </code></pre> <p>And in every browser but IE6, it does. In IE6 standards mode, it looks more like this:</p> <pre><code>+-------------------------------+ | N | | | | content content content | | A | content content content | | | | | V | | | | | |----+ | | | | | | | | | | | | | | | | | | | +-------------------------------+ </code></pre> <p>Here's where it gets tricky. In IE6 in <em>quirks mode</em>, it looks correct (so far as that box is concerned; everything else is garbage).</p> <p>How do I get the correct behavior from IE6 without forcing quirks mode?</p> <p>* Yes, I know I should be using floats for this, and not caring that it stretches the entire document. But it's apparently sacred that the background of the navbar reach the bottom of the page, and that it not be a tiled <code>background-image</code>.</p> http://stackoverflow.com/questions/1182387/replacing-a-html-tag-with-another-tag-using-js-dom/1182562#1182562 2 Answer by Paul Fisher for Replacing a html tag with another tag using JS DOM Paul Fisher 2009-07-25T17:26:54Z 2009-07-25T17:26:54Z <p>As for the reason that your resultant document ended up missing a few nodes, I can tell you why:</p> <p>When you <code>appendChild</code> to another node, the DOM removes it from wherever it used to be. So when you go through the first node, it's removing children at the same time as it advances <code>i</code> down the DOM. Assume that <code>A</code>, <code>B</code>, <code>C</code>, etc. are child nodes, and this is what happens at the start of your loop:</p> <pre><code> i=0 ↓ MARQUEE: A B C D E F DIV: i=1 ↓ MARQUEE: B C D E F DIV: A i=2 ↓ MARQUEE: B D E F DIV: A C i=3 ↓ MARQUEE: B D F (accessing this gives you an exception!) DIV: A C E </code></pre> <p>You can fix this in one of two ways. Firstly, you could make this change:</p> <pre><code>fixedElement.appendChild(marqueeElement.childNodes[i]); // becomes fixedElement.appendChild(marqueeElement.childNodes[i].cloneNode()); </code></pre> <p>so you're always manipulating a cloned node, and the original <code>&lt;marquee&gt;</code> doesn't have elements removed, or you can make this change:</p> <pre><code>fixedElement.appendChild(marqueeElement.firstChild); </code></pre> <p>so that you always take the first item in the <code>&lt;marquee&gt;</code> and don't lose elements that way.</p> http://stackoverflow.com/questions/1182387/replacing-a-html-tag-with-another-tag-using-js-dom/1182542#1182542 0 Answer by Paul Fisher for Replacing a html tag with another tag using JS DOM Paul Fisher 2009-07-25T17:17:58Z 2009-07-25T17:17:58Z <p>If your goal is to get rid of <code>&lt;marquee&gt;</code>s on all web sites, perhaps the best way to do so is to just edit your <a href="http://kb.mozillazine.org/UserContent.css" rel="nofollow"><code>userContent.css</code></a> file to include the following:</p> <pre><code>marquee { -moz-binding: none; display: block; height: auto !important; /* This is better than just display:none !important; * because you can still see the text in the marquee, * but without scrolling. */ } </code></pre> <p>(I think that's actually already included in that file as a template, even :)</p> http://stackoverflow.com/questions/1166636/only-request-needed-permissions-in-air-app 0 Only request needed permissions in AIR app Paul Fisher 2009-07-22T16:50:08Z 2009-07-22T16:50:08Z <p>When I create an AIR app using the Aptana packager, it seems to request every permission ever from the runtime, meaning the installation step warns users that if they install it, their computer will catch fire after sending me all their personal information, or something to that effect.</p> <p>My app needs none of these permissions. Is there a way to configure it so that it requests nothing? It's a static-HTML-and-CSS-app, so it won't read or write anything anywhere else.</p> http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption/1115122#1115122 14 Answer by Paul Fisher for C++ using NOT (~) on char for encryption..... Paul Fisher 2009-07-12T01:43:12Z 2009-07-12T16:03:41Z <p>Rather than putting all this effort on an undocumented "encryption" scheme, you really, <em>really</em> should just use a high-quality algorithm with a good key. <a href="http://en.wikipedia.org/wiki/Security%5Fthrough%5Fobscurity" rel="nofollow">Security through obscurity</a> is a bad, bad idea. The additional rounds of ciphering are a waste of time.</p> <p>It also seems likely that you might misplace your code, and be unable to decipher/decrypt the information you've encrypted yourself.</p> <blockquote> <p>because proven tested algorithms are used by too many poeple, so there are too many people that have been working on cracking them</p> </blockquote> <p>The fact that it's a proven algorithm means that even though people are "working on cracking it", they haven't been able to. Better to wait for news that Very Smart People™ have found a <em>significant</em> flaw in the algorithm you're using than to waste development time and effort and processor time over it right now.</p> <p>ADDENDUM: If you're concerned about the fact that encryption algorithms can be broken (and they do get broken from time to time!) consider the fact that when the encryption scheme you're using is broken, then the simple cipher you're using is probably useless anyway, because if people are intent enough to get your data that they break your encryption scheme, then they'll doubtless be able to see through your simplistic cipher scheme.</p> <p>ADDITIONAL ADDENDUM: You also say you're using a "random number generator written by a friend." This is not a dig at your friend, but I doubt that it's a good RNG. Random number generators, like encryption, are outrageously hard to do right. Please, please, please just use a standard encryption algorithm, for your own sake.</p> http://stackoverflow.com/questions/1114667/making-a-makefile/1115223#1115223 2 Answer by Paul Fisher for Making a Makefile Paul Fisher 2009-07-12T03:06:30Z 2009-07-12T03:06:30Z <p>For Python programs, they're usually distributed with a <code>setup.py</code> script which uses <code>distutils</code> in order to build the software. <code>distutils</code> has extensive <a href="http://docs.python.org/distutils/" rel="nofollow">documentation</a> which should be a good starting point.</p> http://stackoverflow.com/questions/1114561/inline-svg-in-html-with-firefox-3-5/1114613#1114613 0 Answer by Paul Fisher for Inline SVG in HTML, with Firefox 3.5 Paul Fisher 2009-07-11T20:48:21Z 2009-07-11T20:48:21Z <p>As Greg said, it needs to be a file that Firefox recognises as an XHTML file, not just regular HTML, which is what that renaming accomplished. In order to get that from a server-side app, you need to set the response's <code>Content-type</code> header to <code>application/xhtml+xml</code>.</p> http://stackoverflow.com/questions/1111810/cheaper-alternative-to-visual-studio-team-foundation/1111898#1111898 0 Answer by Paul Fisher for Cheaper Alternative to Visual Studio Team Foundation? Paul Fisher 2009-07-10T20:46:17Z 2009-07-10T20:46:17Z <p>From what I hear, <a href="http://sharesource.org/project/visualhg/wiki/" rel="nofollow">VisualHg</a> is a good Visual Studio addin for the <a href="http://www.selenic.com/mercurial/" rel="nofollow">Mercurial</a> distributed source-control system. You just need to <a href="http://bitbucket.org/tortoisehg/stable/downloads/TortoiseHg-0.8-hg-1.3.exe" rel="nofollow">install TortoiseHg</a> and then <a href="http://dl.sharesource.org/visualhg/visualhg-1.0.6.msi" rel="nofollow">VisualHg</a>, and you'll be up and running.</p> http://stackoverflow.com/questions/1098560/marginal-browser-support-by-the-bbc-and-why-the-bbc-they-cant-use-jquery/1098844#1098844 5 Answer by Paul Fisher for Marginal browser support by the BBC (and why the BBC they can't use jQuery) Paul Fisher 2009-07-08T15:31:28Z 2009-07-08T15:31:28Z <p>The BBC's primary duty is not to make money, instead, it is to serve the license-payer. In order to reach the widest possible audience, they have to support those older browsers. There's a large number of people in this world who couldn't be bothered—or don't even know how—to upgrade their web browsers from IE 5.old or whatever they're using now. The BBC can't just say "well too bad for you" to these people, even though private broadcasters can.</p> <p>(Disclaimer: I'm from the US so this is mostly conjecture based on what I've learned about the BBC from other sources, e.g. Wikipedia. Please correct me in the comments if I'm wrong, or downvote me mercilessly. Either works.)</p> http://stackoverflow.com/questions/1054106/code-golf-adding-non-negative-numbers-from-a-set/1054158#1054158 1 Answer by Paul Fisher for Code golf: adding non negative numbers from a set Paul Fisher 2009-06-28T03:24:55Z 2009-06-29T05:47:14Z <p>59 characters of Python. Feel free to edit-in-place.</p> <pre><code>import sys;print(sum(int(i)for i in sys.stdin if int(i)&gt;0)) </code></pre> <p>EDIT: Uh oh! I didn't notice the "given an integer N" part. Somebody fix this to deal with that, I'm too tired ;)</p> http://stackoverflow.com/questions/1028487/sub-elements-and-namespaces-in-xsd 1 Sub-elements and namespaces in XSD Paul Fisher 2009-06-22T17:34:44Z 2009-06-23T16:39:32Z <p>I've been trying to figure out how to use an XML Schema to validate XML files as I load them into an application. I've got that part working, but I can't seem to get the schema to recognise anything other than the root element as valid. For instance, I have the following XML file:</p> <pre><code>&lt;fun xmlns="http://ttdi.us/I/am/having/fun" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ttdi.us/I/am/having/fun test.xsd"&gt; &lt;activity&gt;rowing&lt;/activity&gt; &lt;activity&gt;eating&lt;/activity&gt; &lt;activity&gt;coding&lt;/activity&gt; &lt;/fun&gt; </code></pre> <p>with the following (admittedly generated from the visual editor—I am but a mere mortal) XSD:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsd:schema targetNamespace="http://ttdi.us/I/am/having/fun" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://ttdi.us/I/am/having/fun"&gt; &lt;xsd:element name="fun" type="activityList"&gt;&lt;/xsd:element&gt; &lt;xsd:complexType name="activityList"&gt; &lt;xsd:sequence&gt; &lt;xsd:element name="activity" type="xsd:string" maxOccurs="unbounded" minOccurs="0"&gt;&lt;/xsd:element&gt; &lt;/xsd:sequence&gt; &lt;/xsd:complexType&gt; &lt;/xsd:schema&gt; </code></pre> <p>But now, using Eclipse's built-in (Xerces-based?) validator, I get the following error:</p> <pre><code>cvc-complex-type.2.4.a: Invalid content was found starting with element 'activity'. One of '{activity}' is expected. </code></pre> <p>So how do I fix my XSD so that it…works? All the search results I've seen so far seem to say "…so I just turned off validation" or "…so I just got rid of namespaces" and that's not something I want to do.</p> <p>ADDENDUM:</p> <p>Now let's say I change my schema to this:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsd:schema targetNamespace="http://ttdi.us/I/am/having/fun" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://ttdi.us/I/am/having/fun"&gt; &lt;xsd:element name="activity" type="xsd:string"&gt;&lt;/xsd:element&gt; &lt;xsd:element name="fun"&gt; &lt;xsd:complexType&gt; &lt;xsd:sequence&gt; &lt;xsd:element ref="activity" minOccurs="0" maxOccurs="unbounded"/&gt; &lt;/xsd:sequence&gt; &lt;/xsd:complexType&gt; &lt;/xsd:element&gt; &lt;/xsd:schema&gt; </code></pre> <p>Now it works, but does that method mean that I'm allowed to have <code>&lt;actvity&gt;</code> at the root of my document? And if the <code>ref</code> should just be substituted as-is, then why can't I replace <code>ref="actvity"</code> with <code>name="activity" type="xsd:string"</code>?</p> <p>ADDITIONAL ADDENDUM: ALWAYS do this, or else you will spend hours and hours banging your head on a wall:</p> <pre><code>DocumentBuilderFactory dbf; // initialize dbf dbf.setNamespaceAware(true); </code></pre> http://stackoverflow.com/questions/1015280/what-is-the-best-web-viewable-format-to-save-a-tif-with-a-1-bit-depth/1018621#1018621 4 Answer by Paul Fisher for What is the best web viewable format to save a TIF with a 1 bit depth? Paul Fisher 2009-06-19T15:34:25Z 2009-06-19T15:34:25Z <p>PNG is certainly your best choice here.</p> <p>The reason your PNG ends up larger than the original TIF might be that the runtime doesn't do all the compression it possibly could. If you really need to compress every last little byte out of the PNG file, I would suggest using a tool like <a href="http://advancemame.sourceforge.net/comp-readme.html" rel="nofollow">AdvancePNG</a> or <a href="http://optipng.sourceforge.net/" rel="nofollow">OptiPNG</a> in order to compress the PNGs after you write them out. The author of OptiPNG has written a good article with links to a <a href="http://optipng.sourceforge.net/pngtech/optipng.html" rel="nofollow">few other PNG optimizers</a>.</p> http://stackoverflow.com/questions/1007338/can-i-use-apache-software-license-2-0-lib-in-commercial-application/1007376#1007376 2 Answer by Paul Fisher for can i use Apache Software License 2.0 lib in Commercial application Paul Fisher 2009-06-17T14:26:37Z 2009-06-17T14:26:37Z <p>You can use Apache-licensed libraries in your program so long as you include a copy of the Apache license, and you display a copy of the required copyright notice wherever your program displays copyright notices, for example in an installer package or "about" screen.</p> http://stackoverflow.com/questions/996948/live-sorting-of-jtable 0 Live sorting of JTable Paul Fisher 2009-06-15T16:06:21Z 2009-06-16T15:36:21Z <p>I've figured out how to get a <code>JTable</code> to be sorted properly, but I can't figure out how to get it to automatically update the sort order when a table cell is changed. Right now, I have this (admittedly long) code, mostly based on that in the Java Tutorial's <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/table.html" rel="nofollow">How to Use Tables</a>. I've highlighted the changes I've made with <code>// ADDED</code>. In this case, newly-added values sort properly, but when I go in to edit a value, it doesn't seem to resort, even though I call <code>fireTableCellUpdated</code>?</p> <p>In short, how can I get a table to re-sort when a data value changes in the model?</p> <pre><code>/* * Copyright (c) 1995 - 2008 Sun Microsystems, Inc. All rights reserved. * See the standard BSD license. */ package components; /* * TableSortDemo.java requires no other files. */ import java.awt.Dimension; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.table.AbstractTableModel; public class TableSortDemo extends JPanel { private boolean DEBUG = false; public TableSortDemo() { super(); setLayout(new BoxLayout(TableSortDemo.this, BoxLayout.PAGE_AXIS)); final MyTableModel m = new MyTableModel(); JTable table = new JTable(m); table.setPreferredScrollableViewportSize(new Dimension(500, 70)); table.setFillsViewportHeight(true); table.setAutoCreateRowSorter(true); //Create the scroll pane and add the table to it. JScrollPane scrollPane = new JScrollPane(table); //Add the scroll pane to this panel. add(scrollPane); // ADDED: button to add a value JButton addButton = new JButton("Add a new value"); addButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { m.addValue( JOptionPane.showInputDialog( TableSortDemo.this, "Value?")); } }); // ADDED button to change a value JButton setButton = new JButton("Change a value"); setButton.addActionListener(new ActionListener() { /* (non-Javadoc) * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ public void actionPerformed(ActionEvent e) { m.setValueAt( JOptionPane.showInputDialog( TableSortDemo.this, "Value?"), Integer.parseInt( JOptionPane.showInputDialog( TableSortDemo.this, "Which?")), 0); } }); add(addButton); add(setButton); } class MyTableModel extends AbstractTableModel { private static final long serialVersionUID = -7053335255134714625L; private String[] columnNames = {"Column"}; // ADDED data as mutable ArrayList private ArrayList&lt;String&gt; data = new ArrayList&lt;String&gt;(); public MyTableModel() { data.add("Anders"); data.add("Lars"); data.add("Betty"); data.add("Anna"); data.add("Jon"); data.add("Zach"); } // ADDED public void addValue(Object v) { data.add(v.toString()); int row = data.size() - 1; fireTableRowsInserted(row, row); } public int getColumnCount() { return columnNames.length; } public int getRowCount() { return data.size(); } public String getColumnName(int col) { return columnNames[col]; } public Object getValueAt(int row, int col) { return data.get(row) + " " + row; } /* * JTable uses this method to determine the default renderer/ * editor for each cell. If we didn't implement this method, * then the last column would contain text ("true"/"false"), * rather than a check box. */ public Class&lt;String&gt; getColumnClass(int c) { return String.class; } /* * Don't need to implement this method unless your table's * editable. */ public boolean isCellEditable(int row, int col) { //Note that the data/cell address is constant, //no matter where the cell appears onscreen. if (col &lt; 2) { return false; } else { return true; } } /* * Don't need to implement this method unless your table's * data can change. */ public void setValueAt(Object value, int row, int col) { if (DEBUG) { System.out.println("Setting value at " + row + "," + col + " to " + value + " (an instance of " + value.getClass() + ")"); } data.set(row, value.toString()); // ADDED: uncommented this line, despite warnings to the contrary fireTableCellUpdated(row, col); if (DEBUG) { System.out.println("New value of data:"); printDebugData(); } } private void printDebugData() { int numRows = getRowCount(); int numCols = getColumnCount(); for (int i=0; i &lt; numRows; i++) { System.out.print(" row " + i + ":"); for (int j=0; j &lt; numCols; j++) { System.out.print(" " + data.get(i)); } System.out.println(); } System.out.println("--------------------------"); } } /** * Create the GUI and show it. For thread safety, * this method should be invoked from the * event-dispatching thread. */ private static void createAndShowGUI() { //Create and set up the window. JFrame frame = new JFrame("TableSortDemo"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //Create and set up the content pane. TableSortDemo newContentPane = new TableSortDemo(); newContentPane.setOpaque(true); //content panes must be opaque frame.setContentPane(newContentPane); //Display the window. frame.pack(); frame.setVisible(true); } public static void main(String[] args) { //Schedule a job for the event-dispatching thread: //creating and showing this application's GUI. javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); } } </code></pre> http://stackoverflow.com/questions/996948/live-sorting-of-jtable/997835#997835 1 Answer by Paul Fisher for Live sorting of JTable Paul Fisher 2009-06-15T19:11:31Z 2009-06-16T15:36:21Z <p>This took a two-step solution:</p> <p>First I had the TableSorter sort on data change, by using this rather than <code>autoCreateRowSorter</code>:</p> <pre><code>sorter = new TableRowSorter&lt;MyTableModel&gt;(m); table.setRowSorter(sorter); sorter.setSortsOnUpdates(true); </code></pre> <p>Then, I had to change the update method to update the entire table. The <code>fireTableCellUpdated</code> and the <code>fireTableRowsUpdated</code> would only redraw the specific rows that were updated, not the entire table (meaning you'd get a duplicate-appearing entry that changed as soon as it was redrawn later. So, I changed</p> <pre><code>fireTableCellUpdated(row, col); </code></pre> <p>to</p> <pre><code>fireTableRowsUpdated(0, data.size() - 1); </code></pre> <p>and now it sorts properly, even upon data changes, and selection is preserved.</p> http://stackoverflow.com/questions/997234/using-an-associative-array-as-php-functions-input/997277#997277 1 Answer by Paul Fisher for Using an associative array as php function's input Paul Fisher 2009-06-15T17:17:06Z 2009-06-15T17:17:06Z <p>This isn't necessarily that bad of an idea, since PHP lacks the "keyword arguments" feature found in many other modern programming languages (Python, Ruby, etc.). However, there are definitely a few problems with it:</p> <ol> <li><p>If you change the parameters that a function accepts, then it's likely you'll have to change some code where it's called anyway, to match the new parameters.</p></li> <li><p>If you're using these arrays extensively, and in many function calls taking an array and simply "passing it along," that might be a sign that you should think about turning some of those parameters into a structured class.</p></li> <li><p>If you're using these arrays as a mutable data structure, you don't necessarily know that the array you have after calling the function is the same as the one you passed in. This will probably come back to get you at some point.</p></li> </ol> http://stackoverflow.com/questions/990867/closing-file-opened-by-configparser/990959#990959 2 Answer by Paul Fisher for Closing file opened by ConfigParser Paul Fisher 2009-06-13T16:21:01Z 2009-06-13T16:21:01Z <p>The difference between <code>ConfigParser</code> and <code>RawConfigParser</code> is that <code>ConfigParser</code> will attempt to "magically" expand references to other config variables, like so:</p> <pre><code>x = 9000 %(y)s y = spoons </code></pre> <p>In this case, <code>x</code> will be <code>9000 spoons</code>, and <code>y</code> will just be <code>spoons</code>. If you need this expansion feature, the docs recommend that you instead use <code>SafeConfigParser</code>. I don't know what exatly the difference between the two is. If you don't need the expansion (you probably don't) just need <code>RawConfigParser</code>.</p> http://stackoverflow.com/questions/981852/why-is-showing-as-lt/981958#981958 0 Answer by Paul Fisher for why is '<' showing as &lt; Paul Fisher 2009-06-11T15:52:54Z 2009-06-11T15:52:54Z <p>It might be better to send back a raw string with your message, and leave the client Javascript to create a <code>div</code> with class <code>message1</code> to put it in. This will also help if you ever decide to change the layout or the style of your notices.</p> http://stackoverflow.com/questions/976395/best-way-to-get-the-name-of-a-button-that-called-an-event/977110#977110 2 Answer by Paul Fisher for Best way to get the name of a button that called an event? Paul Fisher 2009-06-10T17:38:56Z 2009-06-10T17:38:56Z <p>I recommend that you use different event handlers to handle events from each button. If there is a lot of commonality, you can combine that into a function which <em>returns</em> a function with the specific behavior you want, for instance:</p> <pre><code>def goingTo(self, where): def goingToHandler(event): self.SetTitle("I'm going to " + where) return goingToHandler def __init__(self): buttonA.Bind(wx.EVT_BUTTON, self.goingTo("work")) # clicking will say "I'm going to work" buttonB.Bind(wx.EVT_BUTTON, self.goingTo("home")) # clicking will say "I'm going to home" </code></pre> http://stackoverflow.com/questions/969121/eclipse-local-cvs-pydev/976996#976996 0 Answer by Paul Fisher for Eclipse + local CVS + PyDev Paul Fisher 2009-06-10T17:21:03Z 2009-06-10T17:21:03Z <p>I would definitely recommend switching over to a different VCS—I prefer <a href="http://selenic.com/mercurial/" rel="nofollow">Mercurial</a>, along with a lot of the Python community. That way, you'll be able to work locally, but still have the ability to publish your changes to the world later.</p> <p>You can install <a href="http://bitbucket.org/tortoisehg/stable/wiki/Home" rel="nofollow">TortoiseHg</a> for Windows Explorer, and the <a href="http://www.vectrace.com/mercurialeclipse/" rel="nofollow">MercurialEclipse</a> plugin for Eclipse.</p> <p>There's even a <a href="http://www.selenic.com/mercurial/wiki/CvsConcepts" rel="nofollow">Mercurial for CVS users</a> document to help you change over, and a <a href="http://www.selenic.com/mercurial/wiki/CvsCommands" rel="nofollow">list of mostly-equivalent commands</a>.</p> http://stackoverflow.com/questions/973551/writing-to-a-file-via-ftp-in-python/973576#973576 1 Answer by Paul Fisher for writing to a file via FTP in python Paul Fisher 2009-06-10T03:34:54Z 2009-06-10T03:59:01Z <p>It looks like the original code should have worked, <em>if you were trying to download a file from the server</em>. The <code>retrbinary</code> command accepts a function object you specify (that is, the name of the function with no <code>()</code> after it); it is called whenever a piece of data (a binary file) arrives. In this case, it will call the <code>write</code> method of the file you <code>open</code>ed. This is slightly different than <code>retrlines</code>, because <code>retrlines</code> will assume the data is a text file, and will convert newline characters appropriately (but corrupt, say, images).</p> <p>With further reading it looks like you're trying to write to a file on the server. In that case, you'll need to pass a file object (or some other object with a <code>read</code> method that behaves like a file) to be called by the store function:</p> <pre><code>ftp.storbinary("STOR test.txt", open("file_on_my_computer.txt", "rb")) </code></pre> http://stackoverflow.com/questions/967858/why-are-my-arrays-showing-up-as-0-in-php/968092#968092 1 Answer by Paul Fisher for Why are my arrays showing up as 0 in php? Paul Fisher 2009-06-09T04:07:58Z 2009-06-09T04:07:58Z <p>By using the <code>+</code> operator, you're asking PHP to "coerce" all those variables into numeric values and add them up. Any thing that is not a number or a string that is a well-formed number will be converted to 0, and added together. Beware of this pitfall when comparing strings: use triple-equals rather than double-equals, lest you find that <code>"fish" == "0"</code>.</p> http://stackoverflow.com/questions/963039/does-the-speed-of-a-programming-language-matter-for-web-applications/963252#963252 1 Answer by Paul Fisher for Does the speed of a programming language matter for web applications? Paul Fisher 2009-06-08T02:20:07Z 2009-06-08T02:20:07Z <p>There's a couple of different arguments here: because the code is running on your server, and if your code is inefficient, then it's going to overload and degrade the experience for everybody.</p> <p>The other side of the coin is that <a href="http://teddziuba.com/2008/04/im-going-to-scale-my-foot-up-y.html" rel="nofollow">you need to be successful for it to matter</a>, as Ted Dziuba so eloquently and profanely said. "Slow" languages tend to be much faster to develop in and more expressive than compiled languages, so they allow a team to get a site up and running more quickly.</p> http://stackoverflow.com/questions/963211/header-location-redirect-with-anchor-tag-and-ie7/963231#963231 1 Answer by Paul Fisher for header Location redirect with anchor tag and IE7 Paul Fisher 2009-06-08T02:06:17Z 2009-06-08T02:06:17Z <p>The <code>Location</code> header requires an absolute path per the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.30" rel="nofollow">HTTP specification</a>. Try using an absolute path. The <a href="http://www.w3.org/Protocols/HTTP/1.1/rfc2616bis/issues/" rel="nofollow">errata</a> says that document fragments (#id) are allowed in the Location header, but the behaviour when a user is linked to a page with a fragment (e.g. <code>http://example.org/a_redirector#this</code> where <code>a_redirector</code> redirects to <code>http://example.com/destination#that</code>) is undefined.</p> http://stackoverflow.com/questions/963214/how-to-show-one-div-if-javascript-enabled-and-a-different-div-if-its-not/963220#963220 3 Answer by Paul Fisher for How to Show One <div> if Javascript Enabled and a Different <div> if It's Not? Paul Fisher 2009-06-08T01:57:50Z 2009-06-08T01:57:50Z <p>Just give the no-Javascript <code>div</code> its own class and put its style definition in your stylesheet. Include it in a <code>&lt;noscript&gt;</code> block. You can dynamically insert the other <code>div</code> with your script.</p> http://stackoverflow.com/questions/962456/adding-html-encoding-to-the-business-layer/962715#962715 0 Answer by Paul Fisher for Adding HTML encoding to the business layer Paul Fisher 2009-06-07T20:10:47Z 2009-06-07T20:10:47Z <p>Learn the lessons of PHP's <code>magic_quotes_gpc</code> feature: such encoding will doubtless only confuse things more, cause you to unescape when you shouldn't, forget to escape when you should, and generally be a pain. Don't encode your data until it's about to be sent where it needs to go, be it the database, the Web, or somewhere else.</p> http://stackoverflow.com/questions/958755/in-what-os-should-i-host-subversion/958779#958779 3 Answer by Paul Fisher for In what OS should I host subversion? Paul Fisher 2009-06-06T01:35:19Z 2009-06-06T01:35:19Z <p>I imagine the installation and configuration process might go off with fewer hitches if installed on Linux, just because of the package management, but that's assuming some experience with the package system of $whatever_distro. If you're comfortable with Windows, Subversion works perfectly well on there. I've set it up on both, but prefer the Linux installation process (easier Apache integration, in my view), but I had pre-existing Linux experience.</p> <p>If you're familiar with Windows, I bet you'll find the installation and configuration process easier there. As others have said, many of the tools are cross-platform.</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/312780#312780 Comment by Paul Fisher on Worst UI You've Ever Used Paul Fisher 2009-11-12T23:41:11Z 2009-11-12T23:41:11Z No it was not. Apparently there's a lot of suck to be had in the point-of-sale market. http://stackoverflow.com/questions/931105/tortoisegit-tortoisebzr-tortoisehg-are-any-solid-enough-to-switch-from-tortois/931242#931242 Comment by Paul Fisher on TortoiseGit, TortoiseBzr, TortoiseHg. Are any solid enough to switch from TortoiseSVN? Paul Fisher 2009-08-18T16:45:26Z 2009-08-18T16:45:26Z I've only used the import tool personally, but there are lots of options available. hgsubversion appears to be the most complete. <a href="http://mercurial.selenic.com/wiki/WorkingWithSubversion" rel="nofollow">mercurial.selenic.com/wiki/WorkingWithSubversion/&hellip;</a> http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe/1283397#1283397 Comment by Paul Fisher on Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T03:47:56Z 2009-08-16T03:47:56Z I think your suggestion is functionally the same as my proposed replacement, but using slightly different notation. I can see why some might prefer to see it written this way, though. http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe/1283371#1283371 Comment by Paul Fisher on Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T03:24:09Z 2009-08-16T03:24:09Z it's not about buffer-overflow-safety, but it is about whether a certain behaviour has the possibility of corrupting data, which seems like safety to me. But now we're nitpicking. http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe/1283369#1283369 Comment by Paul Fisher on Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T03:15:50Z 2009-08-16T03:15:50Z Unless you're seeing something I don't, which is entirely possible. http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe/1283369#1283369 Comment by Paul Fisher on Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T03:14:08Z 2009-08-16T03:14:08Z Actually, I'm not overlapping buffers in my second one—it's a strictly different buffer. I don't use the original. http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe/1283371#1283371 Comment by Paul Fisher on Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T03:02:37Z 2009-08-16T03:02:37Z I understand about the possibility of buffer overflows. That wasn't the question I asked—I wanted to know whether the overwriting behaviour was safe. http://stackoverflow.com/questions/1283354/is-sprintfbuffer-s-buffer-safe/1283369#1283369 Comment by Paul Fisher on Is sprintf(buffer, "%s […]", buffer, […]) safe? Paul Fisher 2009-08-16T03:00:24Z 2009-08-16T03:00:24Z Okay, just wanted a sanity check. [POSIX says the same thing](<a href="http://www.opengroup.org/onlinepubs/9699919799/functions/sprintf.html" rel="nofollow">opengroup.org/onlinepubs/9699919799/&hellip;</a>): &gt; If copying takes place between objects that overlap as a result of a call to sprintf() or snprintf(), the results are undefined. http://stackoverflow.com/questions/327700/how-to-dynamically-generate-a-pdf-from-googles-appengine/327747#327747 Comment by Paul Fisher on How to dynamically generate a pdf from Google's appengine? Paul Fisher 2009-08-09T11:39:28Z 2009-08-09T11:39:28Z You can write to any file-like object, meaning that you could write to, say, <code>response.out</code>. For example, <a href="http://konryd.blogspot.com/2008/04/outputting-pdfs-with-google-app-engine.html" rel="nofollow">konryd.blogspot.com/2008/04/&hellip;</a> http://stackoverflow.com/questions/1242078/preventing-one-hours-one-minutes-one-days/1242099#1242099 Comment by Paul Fisher on Preventing "One Hours" "One MInutes" "One Days" Paul Fisher 2009-08-07T00:19:39Z 2009-08-07T00:19:39Z And I even messed it up the first time. Silly me! http://stackoverflow.com/questions/1242078/preventing-one-hours-one-minutes-one-days/1242099#1242099 Comment by Paul Fisher on Preventing "One Hours" "One MInutes" "One Days" Paul Fisher 2009-08-07T00:18:55Z 2009-08-07T00:18:55Z I applied your suggested edit, Phillipe, and made it even a bit shorter :) http://stackoverflow.com/questions/1202988/get-ie6-quirks-mode-positionabsolute-rendering-in-standards-mode/1203093#1203093 Comment by Paul Fisher on Get IE6 quirks-mode position:absolute rendering in standards mode Paul Fisher 2009-07-29T21:59:08Z 2009-07-29T21:59:08Z That still won't bring the yellow bit down all the way to the bottom of the window, without which the world will literally catch on fire and kill us all. Or so I've been led to believe. http://stackoverflow.com/questions/1202988/get-ie6-quirks-mode-positionabsolute-rendering-in-standards-mode/1203093#1203093 Comment by Paul Fisher on Get IE6 quirks-mode position:absolute rendering in standards mode Paul Fisher 2009-07-29T21:22:24Z 2009-07-29T21:22:24Z I would, but I can't use a background-image. Thanks for playing. http://stackoverflow.com/questions/1145722/simulating-pointers-in-python/1145862#1145862 Comment by Paul Fisher on Simulating Pointers in Python Paul Fisher 2009-07-17T22:00:33Z 2009-07-17T22:00:33Z This probably isn't the greatest idea, because changes to locals() aren't guaranteed to be reflected in the environment. http://stackoverflow.com/questions/1145722/simulating-pointers-in-python/1145848#1145848 Comment by Paul Fisher on Simulating Pointers in Python Paul Fisher 2009-07-17T21:59:13Z 2009-07-17T21:59:13Z You might not want to use the name &quot;ref&quot;, since that's the same name as the weakref reference. Perhaps &quot;ptr&quot; or something. A sensible implementation, though.