User andygeers - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:00:45Zhttp://stackoverflow.com/feeds/user/4397http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1368269/applying-modrewrite-rules-after-directoryindex-is-applied0Applying mod_rewrite rules AFTER DirectoryIndex is appliedandygeers2009-09-02T15:04:22Z2009-09-02T18:58:13Z
<p>Hi there,</p>
<p>My hosting company recently upgraded me from Apache 1 to Apache 2, and I've started seeing some quite different behaviour with my mod_rewrite stuff.</p>
<p>Here's my .htaccess file:</p>
<pre><code>DirectoryIndex blog.html
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# Rewrite current-style URLs of the form 'showpage.php?url=x'.
RewriteRule ^(.*\.html)$ showpage.php?url=$1 [L,QSA]
</IfModule>
</code></pre>
<p>Now, previously with Apache 1, if you went to <a href="http://mysite.com/" rel="nofollow">http://mysite.com/</a> then the DirectoryIndex would first take effect (<a href="http://mysite.com/blog.html" rel="nofollow">http://mysite.com/blog.html</a>) and then the RewriteRule would turn that into <a href="http://mysite.com/showpage.php?url=/blog.html" rel="nofollow">http://mysite.com/showpage.php?url=/blog.html</a></p>
<p>Now with Apache 2, if you go to <a href="http://mysite.com/blog.html" rel="nofollow">http://mysite.com/blog.html</a> it gets rewritten as expected, but if you go to <a href="http://mysite.com/" rel="nofollow">http://mysite.com/</a> it serves you the vanilla blog.html file, without rewriting it to showpage.php. So the RewriteRule is being applied <em>before</em> the DirectoryIndex kicks in.</p>
<p>Besides adding an extra rule explicitly to catch the root page (which will be tedious since I'd have to take account of all subdirectories which also have a DirectoryIndex) does anybody know a way to make Apache 2 apply the RewriteRule <em>after</em> applying the DirectoryIndex?</p>
http://stackoverflow.com/questions/949655/cakephp-media-view-download-directly-from-a-string0CakePHP Media view download directly from a stringandygeers2009-06-04T10:10:35Z2009-08-07T21:00:04Z
<p>I have a CakePHP controller action where I would like to let the user download an HTML page for publishing through our internal CMS. I'm thinking that the notion of a <a href="http://book.cakephp.org/view/489/Media-Views" rel="nofollow">Media View</a> is what I want, except that they seem to require a filename and path. I already have the HTML content stored in a string and if possible I would like to be able to avoid saving it to disk just to make this work. Does anybody know a way of passing the content to Media Views as a string rather than as a filename and path?</p>
http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1207394#12073943Answer by andygeers for What are things that make a programmer's life miserable?andygeers2009-07-30T15:34:54Z2009-07-30T15:34:54Z<p>Having to make changes to your software that you <em>know</em> are actually making it worse, just for political reasons or to add a few dollars to the bottom line in a really short-sighted manner.</p>
http://stackoverflow.com/questions/1205595/will-my-pages-table-cause-problem-for-my-cakephp-set-up/1205938#12059382Answer by andygeers for will my "pages" table cause problem for my cakePHP set up andygeers2009-07-30T11:14:05Z2009-07-30T11:14:05Z<p>Even though CakePHP makes intelligent guesses about which database table to use for a given model/controller, you can override it for a specific model if you need to so that it doesn't collide with your existing tables by using the <code>useTable</code> attribute: <a href="http://book.cakephp.org/view/436/useTable" rel="nofollow">docs here</a></p>
http://stackoverflow.com/questions/1205846/what-topic-or-idea-would-you-suggest-for-an-ms-computer-science-thesis/1205895#12058950Answer by andygeers for What topic or idea would you suggest for an MS Computer Science thesis?andygeers2009-07-30T11:05:30Z2009-07-30T11:05:30Z<p>What are your interests? What kind of topics get you excited? What do you find yourself daydreaming about when imagining the future? Or more pragmatically, what have you studied so far and what did you find interesting?</p>
<p>It goes without saying that there's no right answer to a question like this, the real question is what kind of topics are you going to be able to commit to and sustain interest in over the course of writing your thesis?</p>
http://stackoverflow.com/questions/1205864/received-http-headers-incorrect-unexpected-for-xsl-file-type/1205875#12058750Answer by andygeers for received HTTP headers incorrect/unexpected for XSL file typeandygeers2009-07-30T11:01:34Z2009-07-30T11:01:34Z<p>Are you using this to access third-party sites or a site that you configure yourself? If it's your own site, you'd need to set up Apache to serve the appropriate mime types depending on the file extension.</p>
<p>If it's third party sites, I'm not sure you can rely on the mime types, since they could serve whatever they want. Best bet is probably to just get the first few lines of the file and check that the root element is xsl.</p>
http://stackoverflow.com/questions/41701/splitting-tuples-in-python-best-practice5Splitting tuples in Python - best practice?andygeers2008-09-03T13:48:30Z2009-07-17T16:08:40Z
<p>I have a method in my Python code that returns a tuple - a row from a SQL query. Let's say it has three fields: (jobId, label, username)</p>
<p>For ease of passing it around between functions, I've been passing the entire tuple as a variable called 'job'. Eventually, however, I want to get at the bits, so I've been using code like this:
(jobId, label, username) = job</p>
<p>I've realised, however, that this is a maintenance nightmare, because now I can never add new fields to the result set without breaking all of my existing code. How should I have written this?</p>
<p>Here are my two best guesses:
(jobId, label, username) = (job[0], job[1], job[2])
...but that doesn't scale nicely when you have 15...20 fields</p>
<p>or to convert the results from the SQL query to a dictionary straight away and pass that around (I don't have control over the fact that it starts life as a tuple, that's fixed for me)</p>
http://stackoverflow.com/questions/1134989/what-are-my-options-for-working-with-markdown-in-coldfusion/1136897#11368972Answer by andygeers for What are my options for working with markdown in ColdFusion?andygeers2009-07-16T11:13:41Z2009-07-16T11:13:41Z<p>The <a href="http://markdown.infogami.com/" rel="nofollow">Markdown Wiki</a> refers to a Java implementation called <a href="http://sourceforge.net/projects/markdownj/" rel="nofollow">MarkdownJ</a>. I've no idea how mature it is, and I know you'd prefer a native ColdFusion implementation, but if you're running ColdfusionMX then a Java module might be a good compromise.</p>
http://stackoverflow.com/questions/1038877/cakephp-absolute-image-urls0CakePHP Absolute Image URLsandygeers2009-06-24T14:53:58Z2009-07-07T21:06:45Z
<p>I wish to use the <code>$html->image(...)</code> helper function in CakePHP to output images, but I need it to produce an <code>img</code> tag using an absolute rather than relative URL (the resulting HTML will be downloaded and emailed round in a company newsletter). Is this possible?</p>
<p>It's not documented, but I notice from looking at the source code that the <code>image</code> function can take an array as its first argument. It's not entirely clear to me how to get this working though - a naive attempt to do it this way produces image URLs relative to the current page rather than within the <code>webroot/img</code> folder.</p>
http://stackoverflow.com/questions/1073533/performing-validations-for-the-form-in-cakephp/1073547#10735471Answer by andygeers for Performing validations for the form in Cakephpandygeers2009-07-02T10:03:29Z2009-07-02T10:03:29Z<p>CakePHP has built in validation: check out the documentation <a href="http://book.cakephp.org/view/125/Data-Validation" rel="nofollow">here</a>. You basically tell it the various conditions each attribute of your model must satisfy ("is not empty", etc.). These are then checked automatically when you call the <code>save</code> method - so be sure to check for the return value of that function call.</p>
<p>An example from the linked documentation page:</p>
<pre><code><?php
class User extends AppModel {
var $name = 'User';
var $validate = array(
'login' => 'alphaNumeric',
'email' => 'email',
'born' => 'date'
);
}
?>
</code></pre>
http://stackoverflow.com/questions/1073473/tips-for-making-code-last/1073529#10735293Answer by andygeers for Tips for making code last.andygeers2009-07-02T09:57:34Z2009-07-02T09:57:34Z<p>Sometimes the key to making code last is not to try and architect some masterpiece of eternal durability up front, but just to get on and make something that's genuinely <em>useful</em>. It may even be acceptable to make certain assumptions up front, as long as they're all clearly documented, perhaps through comments, assertions or unit tests. Which reminds me: write plenty of unit tests so that as the code evolves over time, the assumptions about how it's supposed to behave are constantly being tested.</p>
<p>Don't assume that anything you write will remain unchanged through the ages. Count on constant refactoring and concentrate on making that as easy as possible.</p>
http://stackoverflow.com/questions/1001931/cakephp-generate-layout-content-as-a-string0CakePHP Generate layout content as a stringandygeers2009-06-16T14:41:11Z2009-06-16T16:54:16Z
<p>I'm building a CakePHP site where users can press a button to "save this newsletter as HTML". It seemed like a good idea to use a combination of <code>requestAction</code> and a media view to serve up the content to them, so that they get the exact same content as the live app. The only downside is that <code>requestAction</code> uses an empty layout, so there are no HTML headers or footers.</p>
<p>Is there an easy way, given a string which contains a body of HTML, to build a new string with the full page contents based upon a given layout?</p>
http://stackoverflow.com/questions/1001931/cakephp-generate-layout-content-as-a-string/1002062#10020621Answer by andygeers for CakePHP Generate layout content as a stringandygeers2009-06-16T15:01:22Z2009-06-16T16:54:16Z<p>There is an undocumented feature that if your <code>options</code> array has <code>0</code> as the value for the <code>bare</code> key, then the returned results will include the layout:</p>
<pre><code>$newsletter_html = $this->requestAction(
array(
'controller' => 'Newsletters',
'action' => 'view'
),
array(
'pass' => array($id),
'return',
'bare' => 0
)
);
</code></pre>
http://stackoverflow.com/questions/949655/cakephp-media-view-download-directly-from-a-string/949912#9499120Answer by andygeers for CakePHP Media view download directly from a stringandygeers2009-06-04T11:15:03Z2009-06-04T11:15:03Z<p>Looking at the source code of <code>media.php</code>, it seems that you can't do this directly using that view. Unless anybody has a better idea, I'm tempted to modify the view to support a <code>content</code> parameter.</p>
http://stackoverflow.com/questions/945460/how-do-i-present-a-tree-in-an-html-table/945478#9454780Answer by andygeers for How do I present a tree in an HTML table?andygeers2009-06-03T15:41:04Z2009-06-03T15:41:04Z<p>I'd try something using nested <code>div</code>s. I think it would be pretty hard to have it look like one big table with column headings only at the top, so you might be better off considering a new table for each level of nesting, or pivoting it round so you show the data as rows rather than columns.</p>
http://stackoverflow.com/questions/239742/c-code-profiler5C++ Code Profilerandygeers2008-10-27T12:39:33Z2009-06-01T13:38:18Z
<p>Can anybody recommend a good code profiler for C++?</p>
<p>I came across Shiny - any good? <a href="http://sourceforge.net/projects/shinyprofiler/" rel="nofollow">http://sourceforge.net/projects/shinyprofiler/</a></p>
http://stackoverflow.com/questions/910000/accessing-remoteuser-from-php-cakephp0Accessing REMOTE_USER from PHP/CakePHPandygeers2009-05-26T10:28:43Z2009-05-27T09:38:14Z
<p>I'm developing a CakePHP site for which I've just enabled VAS authentication using a .htaccess file:</p>
<pre><code>AuthType VAS
AuthVasUseBasic On
AuthVasRemoteUserMap local
Require valid-user
</code></pre>
<p>I'd expect to be able to find out who was logged in by using <code>$_SERVER['REMOTE_USER']</code>, but I'm finding that the key is missing from the <code>$_SERVER</code> structure: all that's there is <code>$_SERVER['REDIRECT_REMOTE_USER']</code>. In fact, the whole structure is full of keys with the <code>REDIRECT_</code> prefix:</p>
<pre><code>echo var_dump($_SERVER);
array(52) {
["REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL"]=> string(37) "/cake_1_2/feedbacks/edit/6"
["REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI"]=> string(55) "http://test/cake_1_2/feedbacks/edit/6"
["REDIRECT_REDIRECT_REDIRECT_STATUS"]=> string(3) "200"
["REDIRECT_REDIRECT_SCRIPT_URL"]=> string(37) "/cake_1_2/feedbacks/edit/6"
["REDIRECT_REDIRECT_SCRIPT_URI"]=> string(55) "http://test/cake_1_2/feedbacks/edit/6"
["REDIRECT_REDIRECT_STATUS"]=> string(3) "200"
["REDIRECT_SCRIPT_URL"]=> string(37) "/cake_1_2/feedbacks/edit/6"
["REDIRECT_SCRIPT_URI"]=> string(55) "http://test/cake_1_2/feedbacks/edit/6"
["REDIRECT_HANDLER"]=> string(8) "php5-cgi"
["REDIRECT_STATUS"]=> string(3) "200"
["SCRIPT_URL"]=> string(37) ...
["REDIRECT_REMOTE_USER"]=> string(9) "andygeers"
...
}
</code></pre>
<p>I'm not exactly sure what's going on! This is generated first thing in a POST request, and it's not doing a redirect on this particular request.</p>
<p>Is this related to CakePHP, or just a general PHP issue? Any ideas what's going on? I've found quite a few pages on the internet now which suggest REDIRECT_REMOTE_USER is normal/common as a place to find this value, but nobody seems to know why!</p>
http://stackoverflow.com/questions/882794/handling-multiple-url-values-in-cakephp0Handling multiple URL values in CakePHPandygeers2009-05-19T13:35:15Z2009-05-19T13:52:25Z
<p>I'm developing a site using the CakePHP framework. I have a form which shows a list of entities, with a tickbox for each one allowing you to select it. You then press a button at the bottom of the form saying "Edit selected".</p>
<p>My usual approach is to give each checkbox input the same name (e.g. <code>row_id</code>) and use the primary ID as the input's <code>value</code>. However, when you submit the form, CakePHP only seems to return <em>one</em> of the checkbox's values to the controller in <code>$this->params['url']</code>, rather than any kind of list like I'd expect.</p>
<p>Any tips on the right way to handle this, so that I can find out which rows were ticked?</p>
http://stackoverflow.com/questions/211625/using-gnu-scientific-multimin-to-find-all-local-minima0Using GNU Scientific "multimin" to find all local minimaandygeers2008-10-17T10:08:48Z2009-05-11T09:21:38Z
<p>The GNU Scientific library has a <a href="http://www.gnu.org/software/gsl/manual/html_node/Multidimensional-Minimization.html" rel="nofollow">multi-dimensional function minimization</a> framework. However, its caveats explicitly says that when used on a function with several different local minima it just returns one arbitrary solution. Does anybody know how you might go about adapting it so that it would return a list of <em>all</em> local minima (subject to some threshold criteria)?</p>
http://stackoverflow.com/questions/626333/embedding-a-ruby-interpreter-in-a-c-app3Embedding a Ruby interpreter in a C++ appandygeers2009-03-09T13:56:59Z2009-05-03T11:50:38Z
<p>I'm hoping to use Ruby as a scripting language for my game engine. I've found the usual articles describing how to call Ruby classes from C++ code and vice versa (e.g. <a href="http://aeditor.rubyforge.org/ruby_cplusplus/index.html" rel="nofollow">here</a>) but I can't quite see how to do what I want with that way of working...</p>
<p>My engine currently uses a little language I wrote myself with Flex and Bison, and a little stack based virtual machine. Scripts don't always run right through from start to finish, for instance they sometimes includes commands like "sleep for 2 seconds" or "wait until character has finished walking", so the scheduler keeps tabs on the status of each script and an instruction pointer, and knows when to resume them, and so on.</p>
<p>So it seems that I really need some kind of embedded Ruby interpreter that I can exercise a certain degree of control over, rather than simply calling Ruby methods. Or am I just being obtuse and missing something?</p>
<p>I'm working in Microsoft Visual C++, so ideally any solution would compile nice and easily in that.</p>
http://stackoverflow.com/questions/801604/how-do-i-tell-what-a-linux-process-is-waiting-for8How do I tell what a Linux process is waiting for?andygeers2009-04-29T09:31:25Z2009-04-29T10:06:18Z
<p>I'm trying to track down the cause of performance bottlenecks in an application I'm debugging under Linux. The various processes involved seem to spend a lot of their time blocking on I/O requests, and I was wondering if anybody knew any Linux tricks that let you see <em>why</em> a particular process is blocked/what resource it's waiting for? Is there anything useful in <code>/proc</code> for instance?</p>
http://stackoverflow.com/questions/782150/innodb-the-table-is-full-error1InnoDB "The Table is Full" errorandygeers2009-04-23T15:03:57Z2009-04-23T16:22:53Z
<p>I have a MySQL InnoDB table on a RedHat Enterprise Linux 4 server, and after trying to import a database previously backed up using <code>mysqldump</code> I got a "the table is full" error. </p>
<p>The table currently has 463,062 rows in it, and the <code>ibdata1</code> file on disk is currently 3.37Gb. A quick "<code>SHOW VARIABLES;</code>" shows that the <code>innodb_data_file_path</code> is set to <code>ibdata1:10M:autoextend</code>, and the filesystem is ext3, so I'd expect it to have plenty of room left to grow.</p>
<p>Any ideas how I can go about establishing exactly what the problem is?</p>
http://stackoverflow.com/questions/778666/raster-operator-to-use-for-maskblt0Raster Operator to use for MaskBltandygeers2009-04-22T18:58:04Z2009-04-23T01:04:13Z
<p>I'm trying to use the GDI MaskBlt command to draw an image with transparency: <a href="http://msdn.microsoft.com/en-us/library/dd145047" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd145047</a>(VS.85).aspx</p>
<p>I can't seem to find anything in the documentation about what raster operator to use for the obvious use case: a sort of <code>MAKEROP4(SRCCOPY, DSTCOPY)</code> - blitting where the mask is 1, and leaving the destination untouched where the mask is 0. SRCCOPY is a valid ROP, but what should I use in place of my fictional <code>DSTCOPY</code> ?</p>
http://stackoverflow.com/questions/778666/raster-operator-to-use-for-maskblt/778908#7789082Answer by andygeers for Raster Operator to use for MaskBltandygeers2009-04-22T19:51:54Z2009-04-22T19:51:54Z<p>The MSDN page "<a href="http://msdn.microsoft.com/en-us/library/dd145130%28VS.85%29.aspx" rel="nofollow">Ternary Raster Operations</a>" explains that the correct value is <code>0x00AA0029</code>.</p>
http://stackoverflow.com/questions/726958/query-lua-userdata-type-from-c3Query Lua userdata type from Candygeers2009-04-07T18:13:30Z2009-04-09T07:20:48Z
<p>I have a Lua userdata object with a certain metatable type (e.g. <code>"stackoverflow.test"</code>). From C code, I want to be able to check exactly which type it is, and behave differently depending on the results. Is there a nice handy function (rather like <code>luaL_checkudata</code>, but without erroring if the answer isn't what you want) that let's me query the metatable type name of the userdata? If not, I guess I need to use <code>lua_getmetatable</code>, but then I'm a bit unclear how I determine the name of the metatable that's just been added to the stack.</p>
<p>Just to clarify: I'm using Lua 5.1, where the behaviour of luaL_checkudata was changed. I understand that in 5.0 it didn't used to error.</p>
http://stackoverflow.com/questions/726958/query-lua-userdata-type-from-c/726973#7269730Answer by andygeers for Query Lua userdata type from Candygeers2009-04-07T18:17:30Z2009-04-07T18:17:30Z<p>I've just looked at the source code to the <code>luaL_checkudata</code> function, and it basically fetches the userdata object's metatable using <code>lua_getmetatable</code>. It then fetches the given type name from the registry using <code>lua_getfield</code>, and does a <code>lua_rawequal</code> call to compare them.</p>
http://stackoverflow.com/questions/719978/lua-registry-not-visible-from-new-states0Lua registry not visible from new statesandygeers2009-04-06T00:59:23Z2009-04-06T15:31:21Z
<p>In a C function called from my Lua script, I'm using <code>luaL_ref</code> to store a reference to a function. However, if I then try to use the returned integer index to fetch that function from a different thread which isn't derived from the same state, all I get back is <code>nil</code>. Here's the simplest example that seems to demonstrate it:</p>
<pre><code>// Assumes a valid lua_State pL, with a function on top of the stack
int nFunctionRef = luaL_ref(pL, LUA_REGISTRYINDEX);
// Create a new state
lua_State* pL2 = luaL_newstate();
lua_rawgeti(pL2, LUA_REGISTRYINDEX, nFunctionRef);
const char* szType = luaL_typename(pL2, -1);
</code></pre>
<p>I'm finding that <code>szType</code> then contains the value 'nil'.</p>
<p>My understanding was that the registry was globally shared between all C code, so can anyone explain why this doesn't work?</p>
<p>If the registry isn't globally shared in that way, how can I get access to my values like I need to from another script?</p>
http://stackoverflow.com/questions/533136/store-a-lua-function/717739#7177392Answer by andygeers for Store a Lua function? andygeers2009-04-04T20:18:52Z2009-04-04T20:18:52Z<p>Building on Javier's answer, Lua has a special universally-accessible table called the registry, accessible through the C API using the pseudo-index <code>LUA_REGISTRYINDEX</code>. You can use the <code>luaL_ref</code> function to store any Lua value you like in the registry (including Lua functions) and receive back an integer that can be used to refer to it from C:</p>
<pre><code>// Assumes that the function you want to store is on the top of stack L
int function_index = luaL_ref(L, LUA_REGISTRYINDEX);
</code></pre>
http://stackoverflow.com/questions/690646/api-to-query-google-reader-shares-for-a-blog-post2API to query Google Reader "shares" for a blog postandygeers2009-03-27T17:09:19Z2009-03-27T17:37:06Z
<p>Is there an API (official or unofficial) that for a given blog post, lets me see how many people have shared it/starred it on Google Reader? I subscribe to a particular blog which is a bit too prolific for my reading habits, so I'd like to produce a new feed which only includes the posts which have reached a certain crowd-sourced threshold of quality.</p>
http://stackoverflow.com/questions/690632/how-do-i-update-a-row-in-a-table-or-insert-it-if-it-doesnt-exist/690665#69066511Answer by andygeers for How do I UPDATE a row in a table or INSERT it if it doesn't exist?andygeers2009-03-27T17:15:03Z2009-03-27T17:22:14Z<p>MySQL (and subsequently SQLite) also support the REPLACE INTO syntax:</p>
<pre><code>REPLACE INTO my_table (pk_id, col1) VALUES (5, '123');
</code></pre>
<p>This automatically identifies the primary key and finds a matching row to update, inserting a new one if none is found.</p>
http://stackoverflow.com/questions/1038877/cakephp-absolute-image-urls/1039216#1039216Comment by andygeers on CakePHP Absolute Image URLsandygeers2009-06-25T09:50:47Z2009-06-25T09:50:47ZWow, that's so simple that's embarassinghttp://stackoverflow.com/questions/949655/cakephp-media-view-download-directly-from-a-string/950523#950523Comment by andygeers on CakePHP Media view download directly from a stringandygeers2009-06-04T13:47:50Z2009-06-04T13:47:50ZNot entirely sure that's what I want, in that it still saves a temporary file (which seems overkill to me). I patched media.php to just output the content directly.http://stackoverflow.com/questions/778666/raster-operator-to-use-for-maskbltComment by andygeers on Raster Operator to use for MaskBltandygeers2009-05-29T11:01:26Z2009-05-29T11:01:26ZI used 0x00AA0029http://stackoverflow.com/questions/910000/accessing-remoteuser-from-php-cakephp/913220#913220Comment by andygeers on Accessing REMOTE_USER from PHP/CakePHPandygeers2009-05-27T08:33:54Z2009-05-27T08:33:54ZWill all of the values be gauranteed to be the same, regardless of how many <code>REDIRECT_</code> prefixes they contain?http://stackoverflow.com/questions/910000/accessing-remoteuser-from-php-cakephpComment by andygeers on Accessing REMOTE_USER from PHP/CakePHPandygeers2009-05-26T11:41:34Z2009-05-26T11:41:34ZSince it's probably relevant: I'm using mod_rewrite within the .htaccess file as wellhttp://stackoverflow.com/questions/782150/innodb-the-table-is-full-errorComment by andygeers on InnoDB "The Table is Full" errorandygeers2009-04-24T08:01:06Z2009-04-24T08:01:06ZD'oh! Really obvious answer is that the disk was full... It wasn't stored on the partition that I expected it to behttp://stackoverflow.com/questions/782418/python-inverse-trigonometry-particularly-arcsin/782466#782466Comment by andygeers on python inverse trigonometry (particularly arcsin)andygeers2009-04-23T16:18:03Z2009-04-23T16:18:03ZYou can then generalise outside of that range by adding multiples of 2π to those resultshttp://stackoverflow.com/questions/782150/innodb-the-table-is-full-errorComment by andygeers on InnoDB "The Table is Full" errorandygeers2009-04-23T15:43:15Z2009-04-23T15:43:15ZUpdated the question to say it's ext3http://stackoverflow.com/questions/778666/raster-operator-to-use-for-maskblt/779913#779913Comment by andygeers on Raster Operator to use for MaskBltandygeers2009-04-23T08:28:54Z2009-04-23T08:28:54ZCare to share why?http://stackoverflow.com/questions/778666/raster-operator-to-use-for-maskbltComment by andygeers on Raster Operator to use for MaskBltandygeers2009-04-22T19:52:46Z2009-04-22T19:52:46ZTurns out my problem wasn't actually with the raster-op I chose, but with my mask bitmap itselfhttp://stackoverflow.com/questions/690646/api-to-query-google-reader-shares-for-a-blog-post/690745#690745Comment by andygeers on API to query Google Reader "shares" for a blog postandygeers2009-03-27T17:45:16Z2009-03-27T17:45:16ZSadly, it only seems to let you see if <i>you</i> shared it, not how many others did.http://stackoverflow.com/questions/690632/how-do-i-update-a-row-in-a-table-or-insert-it-if-it-doesnt-exist/690665#690665Comment by andygeers on How do I UPDATE a row in a table or INSERT it if it doesn't exist?andygeers2009-03-27T17:43:28Z2009-03-27T17:43:28ZSorry - hope that's not considered rude?http://stackoverflow.com/questions/690646/api-to-query-google-reader-shares-for-a-blog-post/690702#690702Comment by andygeers on API to query Google Reader "shares" for a blog postandygeers2009-03-27T17:38:54Z2009-03-27T17:38:54ZThat doesn't include Google Reader, sadlyhttp://stackoverflow.com/questions/682439/how-can-i-prevent-firefoxs-autocomplete/682457#682457Comment by andygeers on How can I prevent Firefox's Autocomplete?andygeers2009-03-25T16:53:09Z2009-03-25T16:53:09ZIs there a way to specify this for specific forms, rather than setting it globally?http://stackoverflow.com/questions/669105/c-this-doesnt-match-object-method-was-called-on/669224#669224Comment by andygeers on C++ "this" doesn't match object method was called onandygeers2009-03-21T12:32:25Z2009-03-21T12:32:25ZWell, it's not working, because the DoStuff method gets confused if "this" isn't the same as what it's seen before. But you're exactly spot on with your explanation - I'll add it to the question, that CMotion has virtual functions, so declaring CWaitable::WakeWaiters as virtual solves the problem.