User SpoonMeiser - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T15:24:07Z http://stackoverflow.com/feeds/user/1170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812357/hyperlink-open-is-seperate-windows/1812368#1812368 2 Answer by SpoonMeiser for hyperlink open is seperate windows SpoonMeiser 2009-11-28T12:02:49Z 2009-11-28T12:10:31Z <p>The name you give to the opened window, <code>open_window</code> in your example, is associated with that windows, so that you can re-use it.</p> <p>If you want a new window to open, give it a new name, or <code>_blank</code> to always open a new window.</p> <p>I struggled finding a source to verify this, but it's <a href="http://www.webreference.com/js/tutorial1/open.html" rel="nofollow">explained on this page</a>.</p> http://stackoverflow.com/questions/1760934/scroll-position-should-unchange/1812354#1812354 0 Answer by SpoonMeiser for Scroll position should unchange SpoonMeiser 2009-11-28T11:57:19Z 2009-11-28T11:57:19Z <p>We really do need some more details to offer good advice. In particular, how your Connect and Cancel buttons are implemented. What elements they use etc. But I'll try and answer anyway.</p> <p>If your page is jumping to the top, then one of two things is likely happening.</p> <p>Either you're submitting a form, and the page is being reloaded. When a new page loads (even if it's the same page), it's initially scrolled to the start.</p> <p>Or you're following a link to a named element. If your Cancel/Connect button is an anchor that looks like this:</p> <pre><code>&lt;a href="#"&gt;Connect&lt;/a&gt; </code></pre> <p>Then that is likely the case.</p> <p>If you see a # at the end of your URL after the page scrolls to the top, then the second option is what's happening. In this case, it's a case of either calling the preventDefault method on the event object, or returning false from the event handler.</p> <p>For example:</p> <pre><code>&lt;a id="connect-button" href="#"&gt;Connect&lt;/a&gt; &lt;script type="text/javascript"&gt; $(function() { $('#connect-button').click(connect_handler); }); function connect_handler(e) { e.preventDefault(); // normal connection code } &lt;/script&gt; </code></pre> <p>If this doesn't apply to your situation, then please provide more information, and I'll try and provide a more suitable answer.</p> http://stackoverflow.com/questions/1812217/how-eq0-works-with-dom/1812280#1812280 2 Answer by SpoonMeiser for how eq(0) works with DOM SpoonMeiser 2009-11-28T11:16:11Z 2009-11-28T11:16:11Z <p>I don't believe so.</p> <pre><code>$(".myclass") </code></pre> <p>Will return a jQuery object that (behind the scenes) contains an array of all matching DOM elements.</p> <p>You are then calling a method on that object to return the first element.</p> <p>If you want to avoid this, you need your selector to only select one element. Take a look at the documentation for selectors:</p> <p><a href="http://docs.jquery.com/Selectors" rel="nofollow">http://docs.jquery.com/Selectors</a></p> <p>Try this instead:</p> <pre><code>$(".myclass:first").eq(0) </code></pre> http://stackoverflow.com/questions/1812245/what-is-the-best-way-to-test-for-an-empty-string-with-jquery-out-of-the-box/1812266#1812266 2 Answer by SpoonMeiser for What is the best way to test for an empty string with jquery-out-of-the-box? SpoonMeiser 2009-11-28T11:09:23Z 2009-11-28T11:09:23Z <p>The link you gave seems to be attempting something different to the test you are trying to avoid repeating.</p> <pre><code>if (a == null || a=='') </code></pre> <p>tests if the string is an empty string or null. The article you linked to tests if the string consists entirely of whitespace (or is empty).</p> <p>The test you described can be replaced by:</p> <pre><code>if (!a) </code></pre> <p>Because in javascript, an empty string, and null, both evaluate to false in a boolean context.</p> http://stackoverflow.com/questions/676826/intercepting-changes-of-attributes-in-classes-within-a-class-python/1112632#1112632 0 Answer by SpoonMeiser for Intercepting changes of attributes in classes within a class - Python SpoonMeiser 2009-07-11T01:07:07Z 2009-11-24T14:19:02Z <p>I think the reason why you have this difficulty deserves a little more information than is provided by the other answers.</p> <p>The problem is, when you do:</p> <pre><code>myObject.attribute.thing = value </code></pre> <p>You're not assigning a value to attribute. The code is equivalent to this:</p> <pre><code>anAttribute = myObject.attribute anAttribute.thing = value </code></pre> <p>As it's seen by myObject, all you're doing it getting the attribute; you're not setting the attribute.</p> <p>Making subclasses of your attributes that you control, and can define __setattr__ for is one solution.</p> <p>An alternative solution, that may make sense if you have lots of attributes of different types and don't want to make lots of individual subclasses for all of them, is to override __getattribute__ or __getattr__ to return a facade to the attribute that performs the relevant operations in its __setattr__ method. I've not attempted to do this myself, but I imagine that you should be able to make a simple facade class that will act as a facade for any object.</p> <p>Care would need to be taken in the choice of <a href="http://docs.python.org/reference/datamodel.html#object.%5F%5Fgetattribute%5F%5F" rel="nofollow">__getattribute__</a> and <a href="http://docs.python.org/reference/datamodel.html#object.%5F%5Fgetattr%5F%5F" rel="nofollow">__getattr__</a>. See the documentation linked in the previous sentence for information, but basically if __getattr__ is used, the actual attributes will have top be encapsulated/obfuscated somehow so that __getattr__ handles requests for them, and if __getattribute__ is used, it'll have to retrieve attributes via calls to a base class.</p> <p>If all you're trying to do is determine if some rects have been updated, then this is overkill.</p> http://stackoverflow.com/questions/1743672/getting-a-list-of-columns-to-show-next-to-the-column-they-are-related-to/1743697#1743697 0 Answer by SpoonMeiser for Getting a list of columns to show next to the column they are related to SpoonMeiser 2009-11-16T17:39:23Z 2009-11-16T17:39:23Z <p>You might be able to do that with a specific flavour of SQL, but I don't think it's supported in any SQL standard.</p> <p>If you're making SQL queries from some program, you're probably better off just doing a simple order by, and then grouping the records in your code.</p> <p>In python, something like:</p> <pre><code>results = dict() for r in rs: if r.ReferrerId not in results: results[r.ReferredId] = list() results[r.ReferredId].append(r.Name) </code></pre> http://stackoverflow.com/questions/1729016/how-to-best-implement-a-11-relationship-in-a-rdbms/1729117#1729117 1 Answer by SpoonMeiser for How to best implement a 1:1 relationship in a RDBMS? SpoonMeiser 2009-11-13T13:07:53Z 2009-11-14T15:06:33Z <p>I think the schema would look like this:</p> <pre><code>create table A ( A_id integer primary key, ... ); create table B ( B_id integer primary key, A_id integer references A (A_id), ... ); alter table B add constraint c1 unique(A_id); </code></pre> <p>B can only reference one row in A, and since the field is unique, A can only be referenced by one row in B.</p> <p>B.A_id is nullable, so rows can exist in A and B that don't reference each other.</p> <p>The unique constraint doesn't preclude multiple NULL records existing. A unique constraint ensures that the values are all either unique, or NULL.</p> http://stackoverflow.com/questions/1686654/is-it-possible-to-upload-image-to-server-without-submitting-the-form/1686744#1686744 0 Answer by SpoonMeiser for Is it possible to upload image to server without submitting the form? SpoonMeiser 2009-11-06T10:32:40Z 2009-11-06T10:32:40Z <p>When you've uploaded the image once, there's no point uploading it a second time, you may as well keep the copy already on the server, so long as you have some way to tie it back to the form once that's submitted, or removing it if the form is never submitted.</p> <p>Cleaning up uploaded images is a problem you will have to solve anyway. Once you've uploaded the image, the server will have to keep it around, as the browser will have to request the image in a second request to be able to display it.</p> <p>I would do this then:</p> <ul> <li>Have a separate form for the image(s), make sure it includes some id field so that you can tie them all together.</li> <li>Have the image(s) form automatically submit using AJAX as part of an onchange event on the file field.</li> <li>When the AJAX call succeeds, add an img element to your page to display the uploaded image.</li> <li>Submit the rest of the form separately.</li> </ul> <p>Cleaning up uploaded images that you don't want (say the user adds a couple of pictures, and then closes the browser without submitting the main form), is a separate issue, and how you deal with it will depend on what sort of application you are developing.</p> http://stackoverflow.com/questions/1661189/how-do-i-add-a-parameter-to-an-ajax-call-using-jquery 1 how do I add a parameter to an ajax call using jquery? SpoonMeiser 2009-11-02T13:02:30Z 2009-11-02T13:39:04Z <p>I want to be able to call a URL be either a standard HTTP GET, or an AJAX call.</p> <p>The server needs to handle the request slightly differently based on whether the request was an AJAX request or not.</p> <p>Using jQuery, I want to automatically add a parameter to all AJAX requests I make, so that the server can identify them, and without me having to add the parameter everywhere I make a call.</p> <p>I've tried doing this with a jQuery.ajaxSend event handler, but at that point, the XMLHttpRequest is already constructed, and making changes to the URL or data members of the ajaxOptions object has no effect, and I don't know how to reliably manipulate the XMLHttpRequest object (I can examine it in Firebug, but I don't know what I can expect work in a cross-browser manner).</p> <p>How should I achieve this? Is there a better way to identify AJAX requests?</p> http://stackoverflow.com/questions/1518858/combine-two-lists-aggregate-values-that-have-similar-keys/1518887#1518887 2 Answer by SpoonMeiser for Combine two lists: aggregate values that have similar keys SpoonMeiser 2009-10-05T08:48:38Z 2009-10-05T08:48:38Z <p>You appear to be using lists like a dictionary. Any reason you're using lists instead of dictionaries?</p> <p>My understanding of this garbled question, is that you want to add up values in tuples where the first element in the same.</p> <p>I'd do something like this:</p> <pre><code>counter = dict( (a[0], (a[1], a[2])) for a in listX ) for key, v1, v2 in listY: if key not in counter: counter[key] = (0, 0) counter[key][0] += v1 counter[key][1] += v2 result = [(key, value[0], value[1]) for key, value in counter.items()] </code></pre> http://stackoverflow.com/questions/1184518/getting-existing-git-branches-to-track-remote-branches 2 Getting existing git branches to track remote branches. SpoonMeiser 2009-07-26T12:58:11Z 2009-07-31T19:56:56Z <p>My usual workflow when working with git, is something like this:</p> <ol> <li>create a local repository</li> <li>do some work in that repository, add/change files etc.</li> <li>decide that I want a central remote location for the repository, and create one</li> <li>push all the commits from my local repository to this new remote repository</li> </ol> <p>Now, however, I want to be able to <code>push</code> and <code>pull</code> from this remote repository without having to specify where I'm pushing to or pulling from; I want my local master to track the remote master.</p> <p>The <em>proper</em> way to do this isn't clear to me, and I've been unable to determine it from the documentation, even though it shouldn't really be more than one command.</p> <p>Because it's something that's only ever done once per repository, I've generally employed one of two simple, but hacky, solutions:</p> <ol> <li>used <code>git clone</code> to make a new local repository, and deleted the old one. After git cloning, the new repository is setup to track the origin.</li> <li>manually edited .git/config to make master track origin.</li> </ol> <p>I think I should be able to run a command, probably some form of <code>git remote</code> to setup an existing repository to have master track a remote master. Can anyone tell me what that command is?</p> http://stackoverflow.com/questions/1206661/calculate-dragable-divs-jquery/1206763#1206763 0 Answer by SpoonMeiser for Calculate dragable divs - jquery SpoonMeiser 2009-07-30T13:53:11Z 2009-07-30T13:53:11Z <p>The jQuery resizable thingy lets you specify a <a href="http://docs.jquery.com/UI/Resizable#event-stop" rel="nofollow" title="Resizable documentation; event-stop">stop callback</a>. I would imagine that the easiest thing to do, would be to write a callback that determines the pixel size of the element, and figures out the relative size and then sets that on the element.</p> <p>Doing this is going to require knowing which element the width or height would be proportional to, which might not be trivial to determine automatically. You might need to make sure that it is a particular element in your HTML; maybe add a specific containing div for this purpose.</p> http://stackoverflow.com/questions/1199695/skipping-a-table-in-sql-inner-joins 2 'skipping' a table in SQL inner joins SpoonMeiser 2009-07-29T11:48:20Z 2009-07-29T11:52:58Z <p>What I mean is, If I had the following schema:</p> <pre><code>create table tableA( A_id number not null primary key ); create table tableB( B_id number not null primary key, A_id number not null references tableA(A_id), B_data text not null ); create table tableC( C_id number not null primary key, A_id number not null references tableA(A_id), C_data text not null ); </code></pre> <p>If I wanted to retrieve <code>B_data</code> and <code>C_data</code> using the relationships described here, is there any difference between the following:</p> <pre><code>select b.B_data, c.C_data from tableB b inner join tableC c on b.A_id = c.A_id; </code></pre> <p>and:</p> <pre><code>select b.B_data, c.C_data from tableB b inner join tableA a on b.A_id = a.A_id inner join tableC c on a.A_id = c.A_id; </code></pre> <p>I suspect that most databases will optimise either query to be the same, but are there cases where the foreign key constraints to <code>tableA</code> will make joining via <code>tableA</code> much more efficient? Are there any cases where these queries could produce different results?</p> http://stackoverflow.com/questions/327973/how-old-are-you-and-how-old-were-you-when-you-started-coding/1170619#1170619 0 Answer by SpoonMeiser for How old are you, and how old were you when you started coding? SpoonMeiser 2009-07-23T09:24:33Z 2009-07-23T09:24:33Z <p>Commodore BASIC on the Vic 20, age 5, I think.</p> http://stackoverflow.com/questions/1112618/import-python-package-from-local-directory-into-interpreter/1112654#1112654 3 Answer by SpoonMeiser for Import python package from local directory into interpreter SpoonMeiser 2009-07-11T01:23:31Z 2009-07-11T01:23:31Z <p>See the documentation for sys.path:</p> <p><a href="http://docs.python.org/library/sys.html#sys.path" rel="nofollow">http://docs.python.org/library/sys.html#sys.path</a></p> <p>To quote:</p> <blockquote> <p>If the script directory is not available (e.g. if the interpreter is invoked interactively or if the script is read from standard input), path[0] is the empty string, which directs Python to search modules in the current directory first.</p> </blockquote> <p>So, there's no need to monkey with sys.path if you're starting the python interpreter from the directory containing your module.</p> <p>Also, to import your package, just do:</p> <pre><code>import mypackage </code></pre> <p>Since the directory containing the package is already in sys.path, it should work fine.</p> http://stackoverflow.com/questions/1109498/whats-a-good-way-to-render-outlined-fonts 2 What's a good way to render outlined fonts? SpoonMeiser 2009-07-10T13:24:56Z 2009-07-10T17:42:50Z <p>I'm writing a game in python with pygame and need to render text onto the screen.</p> <p>I want to render this text in one colour with an outline, so that I don't have to worry about what sort of background the the text is being displayed over.</p> <p>pygame.font doesn't seem to offer support for doing this sort of thing directly, and I'm wondering if anyone has any good solutions for achieving this?</p> http://stackoverflow.com/questions/852600/enable-all-firebug-tools-for-all-webpages/852677#852677 1 Answer by SpoonMeiser for Enable all firebug tools for ALL webpages? SpoonMeiser 2009-05-12T13:06:34Z 2009-05-13T16:34:17Z <p>If you do want to enable parts of Firebug globally, you can do this:</p> <p>Click on the tab you want to enable, the main firebug window will give you the option to enable bit for just this site, and a 'down arrow' icon will appear next to the tab.</p> <p>The down arrow will give you a menu to set its enabled/disabled state.</p> <p>By default it is disabled for console, net etc.</p> <p>The options this menu gives you are to have the tab enabled/disabled just for this site, and enabled/disabled for ALL sites (except for those where you have already set a per-site option).</p> <p>Select enable here, and this tab will be globally enabled. All future sites you visit will have this tab enabled without you having to go through these steps.</p> <p>If you do this for each tab, it'll be enabled for all the tabs, all the time (again, apart from any sites you choose to have per-site settings for)</p> <p>The trouble with having it turned on all the time, is that some sites will use javascript to continuously poll the server via AJAX. For each of these requests, Firebug dutifully stores the request and response in a list.</p> <p>If you spend any time on a site like that (Gmail, for example), that list grows to such an extent that the whole of Firefox starts to become slow and unresponsive.</p> <p>I think Gmail now issues a specific warning if Firebug is active, but other sites may not.</p> http://stackoverflow.com/questions/737303/pygame-sprite-animation-theory-need-feedback/737379#737379 2 Answer by SpoonMeiser for Pygame: Sprite animation Theory - Need Feedback SpoonMeiser 2009-04-10T11:35:13Z 2009-04-10T14:44:31Z <p>It should be easy.</p> <p>If you record the frame number in a variable, you can modulo this with the number of frames you have to get an animation frame number to display.</p> <pre><code>frame_count = 0 animation_frames = 4 while quit == False: # ... # snip # ... area = pygame.Rect( image_number * 100, (frame_count % animation_frames) * 150, 100, 150 ) display.blit(sprite, sprite_pos, area) pygame.display.flip() frame_count += 1 </code></pre> <p>If different actions have different numbers of frames, you'll have to update animation_frames when you update image_number.</p> <p>Also, this assumes that it's ok to play the animation starting at <em>any</em> frame. If this is not the case, you'll need to record what the frame count was when the action started, and take this away from frame count before the modulo:</p> <pre><code> area = pygame.Rect( image_number * 100, ((frame_count - action_start_frame) % animation_frames) * 150, 100, 150 ) </code></pre> <p>A note about your event handling. If you hold down, say, left, and tap right but keep holding down left, the sprite stops moving because the last event you processed was a keyup event, despite the fact that I'm still holding left.</p> <p>If this is not what you want, you can get around it by either keeping a record of the up/down states of the keys you are interested in, or by using the <a href="http://www.pygame.org/docs/ref/key.html#pygame.key.get_pressed" rel="nofollow">pygame.key.get_pressed</a> interface.</p> <p>On another note, you appear to be aiming for a fixed frame rate, and at the same time determining how far to move your sprite based on the time taken in the last frame. In my opinion, this probably isn't ideal.</p> <p>2D action games generally need to work in a predictable manner. If some CPU heavy process starts in the background on your computer and causes your game to no longer be able to churn out 60 frames a second, it's probably preferable for it to slow down, rather then have your objects start skipping huge distances between frames. Imagine if this happened in a 2D action game like Metal Slug where you're having to jump around avoiding bullets?</p> <p>This also makes any physics calculations much simpler. You'll have to make a judgement call based on what type of game it is.</p> http://stackoverflow.com/questions/734893/python-mechanize-two-buttons-of-type-submit/734962#734962 2 Answer by SpoonMeiser for Python mechanize - two buttons of type 'submit' SpoonMeiser 2009-04-09T16:28:42Z 2009-04-09T16:28:42Z <p>I can talk from experience using HTTP, rather than mechanize, but I think this is probably what you want.</p> <p>When there are two submit buttons in a form, a server can determine which one was pressed, because the client should have added an argument for the submit button. So:</p> <pre><code>&lt;form action="blah" method="get"&gt; &lt;p&gt; &lt;input type="submit" name="button_1" value="One" /&gt; &lt;input type="submit" name="button_2" value="Two" /&gt; &lt;/p&gt; &lt;/form&gt; </code></pre> <p>Will take you either the URL:</p> <pre><code>blah?button_1=One </code></pre> <p>or:</p> <pre><code>blah?button_2=Two </code></pre> <p>Depending on which button was pressed.</p> <p>If you're programatically determining what arguments are going to be sent, you need to add an argument with the name of the submit button that was pressed, and it's value.</p> http://stackoverflow.com/questions/699047/right-float-and-container-div/699092#699092 0 Answer by SpoonMeiser for Right Float and container div SpoonMeiser 2009-03-30T21:22:05Z 2009-03-30T21:22:05Z <p>A containing element won't stretch to accommodate floating divs. In your example, the the containing div has no actual content and will thus be 0 pixels high. Try changing the border or background colour to illustrate this.</p> <p>You can force an element to be below any floating divs by giving it the style:</p> <pre><code>clear: both; </code></pre> <p>You can also clear just left or right floating divs.</p> <p>You can add an empty div after your three picture divs that has that style, to make the b_pics container stretch to accommodate the floating elements, or you could just make the b_website div clear both.</p> http://stackoverflow.com/questions/676659/find-out-what-the-cause-is-of-a-certain-calculated-css-style/676694#676694 2 Answer by SpoonMeiser for Find out what the cause is of a certain calculated CSS style SpoonMeiser 2009-03-24T09:40:17Z 2009-03-24T09:40:17Z <p>In the same vein as the IE Developer Toolbar, have a look at <a href="http://getfirebug.com/" rel="nofollow">Firebug for Firefox</a>.</p> <p>That will tell you all of the styles that apply to an element, and show you which ones have been overridden.</p> http://stackoverflow.com/questions/665745/whats-the-best-way-to-do-a-reverse-for-loop-with-an-unsigned-index/665946#665946 0 Answer by SpoonMeiser for What's the best way to do a reverse 'for' loop with an unsigned index? SpoonMeiser 2009-03-20T12:32:42Z 2009-03-20T12:32:42Z <p>This is untested, but could you do the following:</p> <pre><code>for (unsigned int i, j = 0; j &lt; n; i = (n - ++j)) { /* do stuff with i */ } </code></pre> http://stackoverflow.com/questions/645992/bash-sleep-until-a-specific-time-date/646076#646076 2 Answer by SpoonMeiser for Bash: Sleep until a specific time/date SpoonMeiser 2009-03-14T15:19:30Z 2009-03-14T15:19:30Z <p>You can stop a process from executing, by sending it a SIGSTOP signal, and then get it to resume executing by sending it a SIGCONT signal.</p> <p>So you could stop your script by sending is a SIGSTOP:</p> <pre><code>kill -SIGSTOP &lt;pid&gt; </code></pre> <p>And then use the at deamon to wake it up by sending it a SIGCONT in the same way.</p> <p>Presumably, your script will inform at of when it wanted to be woken up before putting itself to sleep.</p> http://stackoverflow.com/questions/645992/bash-sleep-until-a-specific-time-date/646008#646008 8 Answer by SpoonMeiser for Bash: Sleep until a specific time/date SpoonMeiser 2009-03-14T14:47:17Z 2009-03-14T14:47:17Z <p>As mentioned by Outlaw Programmer, I think the solution is just to sleep for the correct number of seconds.</p> <p>To do this in bash, do the following:</p> <pre><code>current_epoch=$(date +%s) target_epoch=$(date -d '01/01/2010 12:00' +%s) sleep_seconds=$(( $target_epoch - $current_epoch )) sleep $sleep_seconds </code></pre> http://stackoverflow.com/questions/635483/what-is-the-best-way-to-implement-nested-dictionaries-in-python/636125#636125 1 Answer by SpoonMeiser for What is the best way to implement nested dictionaries in Python? SpoonMeiser 2009-03-11T20:05:32Z 2009-03-11T20:38:52Z <p>For easy iterating over your nested dictionary, why not just write a simple generator?</p> <pre><code>def each_job(my_dict): for state, a in my_dict.items(): for county, b in a.items(): for job, value in b.items(): yield { 'state' : state, 'county' : county, 'job' : job, 'value' : value } </code></pre> <p>So then, if you have your compilicated nested dictionary, iterating over it becomes simple:</p> <pre><code>for r in each_job(my_dict): print "There are %d %s in %s, %s" % (r['value'], r['job'], r['county'], r['state']) </code></pre> <p>Obviously your generator can yield whatever format of data is useful to you.</p> <p>Why are you using try catch blocks to read the tree? It's easy enough (and probably safer) to query whether a key exists in a dict before trying to retrieve it. A function using guard clauses might look like this:</p> <pre><code>if not my_dict.has_key('new jersey'): return False nj_dict = my_dict['new jersey'] ... </code></pre> <p>Or, a perhaps somewhat verbose method, is to use the get method:</p> <pre><code>value = my_dict.get('new jersey', {}).get('middlesex county', {}).get('salesmen', 0) </code></pre> <p>But for a somewhat more succinct way, you might want to look at using a <a href="http://docs.python.org/library/collections.html#collections.defaultdict" rel="nofollow">collections.defaultdict</a>, which is part of the standard library since python 2.5.</p> <pre><code>import collections def state_struct(): return collections.defaultdict(county_struct) def county_struct(): return collections.defaultdict(job_struct) def job_struct(): return 0 my_dict = collections.defaultdict(state_struct) print my_dict['new jersey']['middlesex county']['salesmen'] </code></pre> <p>I'm making assumptions about the meaning of your data structure here, but it should be easy to adjust for what you actually want to do.</p> http://stackoverflow.com/questions/492558/git-rm-multiple-files-that-have-already-been-deleted-from-disk/492612#492612 1 Answer by SpoonMeiser for git rm multiple files that have already been deleted from disk SpoonMeiser 2009-01-29T17:29:39Z 2009-01-29T17:29:39Z <p>If those are the only changes, you can simply do</p> <pre><code>git commit -a </code></pre> <p>to commit all changes. That will include deleted files.</p> http://stackoverflow.com/questions/439110/is-it-all-right-to-add-custom-html-attributes/443142#443142 0 Answer by SpoonMeiser for Is it all right to add custom Html attributes? SpoonMeiser 2009-01-14T14:32:02Z 2009-01-14T14:32:02Z <p>Adding arbitrary attributes will mean that your HTML is no longer valid.</p> <p>If you are using XHTML, however, I think you can add attributes that have a different XML namespace, which won't cause validation problems.</p> <p>I don't know a great deal about this, but thought I'd mention it as no one else has. Perhaps someone else could expand on, or refute, this if they have a better understanding?</p> http://stackoverflow.com/questions/218025/what-is-the-difference-between-currying-and-partial-application 11 What is the difference between currying and partial application. SpoonMeiser 2008-10-20T10:41:12Z 2009-01-09T12:03:57Z <p>I'm not exactly sure how to word this question.</p> <p>I learnt what currying was in the first year of university, and have been using it where applicable ever since.</p> <p>However, I quite often see on the Internet various complaints that other peoples examples of currying are not currying, but are actually just partial application.</p> <p>I've not found a decent explanation of what partial application is, or how it differs from currying. There seems to be a general confusion, with equivalent examples being described as currying in some places, and partial application in others.</p> <p>Could someone provide me with a definition of both terms, and details of how they differ?</p> http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/424664#424664 1 Answer by SpoonMeiser for What are five things you hate about your favorite language? SpoonMeiser 2009-01-08T15:29:46Z 2009-01-08T15:29:46Z <p>Python.</p> <p>Although the weird way python deals with scope has been mentioned, the worst consequence of it, I feel, is that this is valid:</p> <pre><code>import random def myFunction(): if random.choice(True, False): myString = "blah blah blah" print myString </code></pre> <p>That is, inside the if block is the same scope as the rest of the function, meaning that variable declaration can occur inside condional branches, and be accessed outside of them. Most languages will either prevent you doing this, or at least offer you some kind of strict mode.</p> <p>This function will sometimes succeed, and sometimes throw an exception. Although this is a contrived example, this could lead to some subtle problems.</p> http://stackoverflow.com/questions/340898/automatically-generating-test-cases 0 Automatically generating test cases [closed] SpoonMeiser 2008-12-04T15:08:47Z 2008-12-04T15:27:51Z <p>I'm writing a script a script to test a third party XML interface, using the python unittest module.</p> <p>First of all, is this a reasonable use of unittest, using an API we wrote, but actually testing the interface it's connecting to?</p> <p>Secondly, I have a huge list of fields I want to test. The code to test each field is identical. I want to test each field as a separate test case, so that they all get tested, even if one fails, but I don't want to have to copy and paste the code for each field changing just the field name. What would be the best way of doing this using unittest?</p> http://stackoverflow.com/questions/1812217/how-eq0-works-with-dom/1812280#1812280 Comment by SpoonMeiser on how eq(0) works with DOM SpoonMeiser 2009-11-29T21:29:14Z 2009-11-29T21:29:14Z Does jQuery use this API now? In my experience, selecting by class (for large documents, at least) is slow anyway. http://stackoverflow.com/questions/1800148/how-do-i-fix-bash-perl-myscript-pl-command-not-found Comment by SpoonMeiser on How do I fix "bash: perl myscript.pl: command not found"? SpoonMeiser 2009-11-25T21:52:02Z 2009-11-25T21:52:02Z myscript.pl &gt; myfile.txt will overwrite the content of myfile.txt with the output from the script, which might not be what you intended. http://stackoverflow.com/questions/1782253/how-do-i-order-this-list-in-python/1782274#1782274 Comment by SpoonMeiser on How do I order this list in Python? SpoonMeiser 2009-11-23T10:55:02Z 2009-11-23T10:55:02Z +1 for using key instead of cmp. http://stackoverflow.com/questions/162644/why-cant-i-save-css-changes-in-firebug/162789#162789 Comment by SpoonMeiser on Why can't I save CSS changes in FireBug? SpoonMeiser 2009-11-20T10:00:54Z 2009-11-20T10:00:54Z This isn't entirely true. Firebug shows you all of the styles that apply to an element, including where they came from, and just strikes through them if they've been superseded by a more specific/later/important rule. It lets you change/add rules at any level. You also have the option to view just the computed styles, but the default view is to show all styles. http://stackoverflow.com/questions/1744188/how-can-i-prevent-that-users-browse-my-site-with-a-specific-browser Comment by SpoonMeiser on How can i prevent that users browse my site with a specific browser? SpoonMeiser 2009-11-16T19:19:06Z 2009-11-16T19:19:06Z Have you considered not arbitrarily restricting users? Just a thought. http://stackoverflow.com/questions/1734626/each-looping-return-a-result/1734660#1734660 Comment by SpoonMeiser on Each looping return a result SpoonMeiser 2009-11-14T16:12:41Z 2009-11-14T16:12:41Z +1 for using generators. A much under valued/used feature, in my opinion. http://stackoverflow.com/questions/1734473/on-which-site-i-will-get-more-answer-for-css-question-stackoverflow-com-or-doctyp Comment by SpoonMeiser on On which site i will get more answer for CSS question stackoverflow.com or doctype.com? SpoonMeiser 2009-11-14T15:08:45Z 2009-11-14T15:08:45Z Did you ask this question on doctype.com too? http://stackoverflow.com/questions/1729016/how-to-best-implement-a-11-relationship-in-a-rdbms/1729117#1729117 Comment by SpoonMeiser on How to best implement a 1:1 relationship in a RDBMS? SpoonMeiser 2009-11-14T14:56:27Z 2009-11-14T14:56:27Z @Vilx: yes you can. A unique constraint implies that all values are unique, but you can have multiple NULLs because you can't compare NULL to NULL. http://stackoverflow.com/questions/1729016/how-to-best-implement-a-11-relationship-in-a-rdbms/1729107#1729107 Comment by SpoonMeiser on How to best implement a 1:1 relationship in a RDBMS? SpoonMeiser 2009-11-13T13:10:38Z 2009-11-13T13:10:38Z This is interesting when you need to break a link, you have to change the primary key of one of the records. It's not clear which record you'd alter. I'm guessing you wrote this before that requirement was added to the question? http://stackoverflow.com/questions/1708291/html-link-breaks/1708366#1708366 Comment by SpoonMeiser on html link breaks SpoonMeiser 2009-11-10T14:31:51Z 2009-11-10T14:31:51Z I think the first point is key here. In IE, at least, anchors don't seem to act like anchors (pointer style, for example) unless it actually has a href. Adding a href will fix it for IE, and I suspect that other browsers work regardless. http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash/114861#114861 Comment by SpoonMeiser on count (non-blank) lines-of-code in bash SpoonMeiser 2009-11-10T11:37:53Z 2009-11-10T11:37:53Z Not if you're piping into it though, as standard in counts as just one file. http://stackoverflow.com/questions/1661189/how-do-i-add-a-parameter-to-an-ajax-call-using-jquery/1661228#1661228 Comment by SpoonMeiser on how do I add a parameter to an ajax call using jquery? SpoonMeiser 2009-11-02T15:12:08Z 2009-11-02T15:12:08Z Are you always guaranteed to get this header? Across all browsers? That it's easy to spoof the header is unimportant, there's no extra data exposed, it's just returned in a different format. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/424664#424664 Comment by SpoonMeiser on What are five things you hate about your favorite language? SpoonMeiser 2009-11-02T12:02:10Z 2009-11-02T12:02:10Z @kaleissin I would too, but it's another step to get safe code that you get for free in other languages. http://stackoverflow.com/questions/588263/how-can-i-get-all-a-forms-values-that-would-be-submitted-without-submitting/588300#588300 Comment by SpoonMeiser on How can I get all a form's values that would be submitted without submitting SpoonMeiser 2009-10-20T08:48:31Z 2009-10-20T08:48:31Z Does this work correctly for checkboxes, radio buttons and multi-selects? http://stackoverflow.com/questions/1518858/combine-two-lists-aggregate-values-that-have-similar-keys/1518882#1518882 Comment by SpoonMeiser on Combine two lists: aggregate values that have similar keys SpoonMeiser 2009-10-05T08:49:36Z 2009-10-05T08:49:36Z Curses, beat me to a very similar answer by mere seconds!