User Tom Wright - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:47:23Z http://stackoverflow.com/feeds/user/50151 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1815972/why-does-cakephp-bork-when-i-use-jquery-to-modify-values-of-hidden-inputs 0 Why does CakePHP bork when I use jquery to modify values of hidden inputs? Tom Wright 2009-11-29T16:29:32Z 2009-11-29T16:52:51Z <p>I'm using cakephp to build a survey and want to use javascript (specifically jquery as it's used elsewhere) to modify some hidden inputs.</p> <p>To be clear, commenting out the offending lines of jquery allows cake to do it's thing properly. But when the values are modified with jquery, this happens:</p> <p><img src="http://tdwright.co.uk/cake-error.png" alt="(default) 2 queries took 2 ms"></p> <p>To take just one of the hidden inputs in question, here's the relevant code:</p> <pre><code>&lt;?php echo $form-&gt;hidden('bigLayout', array('value'=&gt;'1')); ?&gt; &lt;script&gt; $('#ResponseBigLayout').val('0');&lt;/script&gt; </code></pre> <p>Additionally, I can use Firebug to replicate the error using just that line of javascript. Using Tamper Data doesn't reveal anything obvious. Lastly, changing the default value in the php doesn't cause the error. </p> <p>Anyone know what might be going on here?</p> http://stackoverflow.com/questions/1702788/fixing-error-c2065-undeclared-identifier -1 Fixing "error C2065: undeclared identifier" Tom Wright 2009-11-09T18:21:18Z 2009-11-10T17:33:45Z <p>First off, I'm completely out of my depth here. So the question might be the wrong one to ask, but here goes...</p> <p>As per the accepted answer to <a href="http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c">this question</a>, I'm trying to compile the bindings for the <a href="http://audiere.sourceforge.net/" rel="nofollow">Audiere library</a>, which are produced by Harald Fielker and available in the <a href="http://sourceforge.net/mailarchive/message.php?msg%5Fname=200710271451.41075.harald.fielker%40web.de" rel="nofollow">mailing list archives</a>.</p> <p>I've opened the .vcproj file in VC++ Express Edition and it converted it to a solution it could use. I've then gone into the properties and added:</p> <ul> <li><p>"C:\Documents and Settings\tdw20\My Documents\audiere-win32\include" to the additional include directories</p></li> <li><p>"C:\Documents and Settings\tdw20\My Documents\Downloads\audiere-win32\lib" to the additional library directories</p></li> </ul> <p>Yet I still get "undeclared identifier" errors. The full output is listed <a href="http://pastebin.ca/1663208" rel="nofollow">on pastebin</a>.</p> <p>Does anyone have any idea what might be wrong?</p> http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c 6 Is it possible to generate complex tones in C#? Tom Wright 2009-10-29T11:37:49Z 2009-11-06T17:30:20Z <p>I need to create a sound containing tones of many different frequencies. Is there any way to do this in C#?</p> <p>The only tone generating methods I've seen so far involve console.beep, which works, but only for pure tones (single frequencies).</p> http://stackoverflow.com/questions/1621741/c-webcam-controls/1680205#1680205 0 Answer by Tom Wright for c# webcam controls? Tom Wright 2009-11-05T12:19:54Z 2009-11-05T12:19:54Z <p>If you really want to write this in C#, I've had a lot of success with <a href="http://www.emgu.com/wiki/index.php/Main%5FPage" rel="nofollow">Egmu</a>.</p> <p>Capturing images is very straightforward - see <a href="http://stackoverflow.com/questions/765107/how-to-display-webcam-images-captured-with-emgu/1666828#1666828">this question</a>. After that, it'd be FTP to the server as usual.</p> <p>I'm curious about Sheng Jiang's Media Encoder solution though. Let me know how you get on.</p> http://stackoverflow.com/questions/765107/how-to-display-webcam-images-captured-with-emgu/1666828#1666828 1 Answer by Tom Wright for How to display webcam images captured with Emgu? Tom Wright 2009-11-03T11:47:30Z 2009-11-03T11:47:30Z <p>I reckon all you're looking for is this:</p> <pre><code>Image&lt;Bgr, Byte&gt; frame = capture.QueryFrame(); pictureBox1.Image = image.ToBitmap(pictureBox1.Width, pictureBox1.Height); </code></pre> http://stackoverflow.com/questions/1170610/limit-width-of-custom-list-itemrenderer-in-flex 0 Limit width of custom list itemrenderer in Flex Tom Wright 2009-07-23T09:22:06Z 2009-07-23T15:03:45Z <p>I'm using a custom itemrenderer to display a list of photos and need to know how to control the width. At the moment it does this:</p> <p><img src="http://tdwright.co.uk/phpplayground/test%5Ftom/img/flex%5Fproblem1.png" alt="Why so wide?" /></p> <p>Which, as I'm sure you'll agree, is eye-bleedingly ugly.</p> <p>The list is created like this:</p> <pre><code>&lt;mx:Panel width="100%" height="100%" layout="absolute" title="Photos"&gt; &lt;mx:List x="0" y="0" width="100%" height="100%" id="photoList" dataProvider="{photos}" itemRenderer="thumbnails" rowHeight="100"/&gt; &lt;/mx:Panel&gt; </code></pre> <p>And the itemrenderer component looks like this:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"&gt; &lt;mx:Image source="{data.src}" id="image" scaleContent="true" toolTip="{data.caption}" height="100%" horizontalAlign="center"/&gt; &lt;/mx:VBox&gt; </code></pre> <p>I've tried placing width="100%" in a whole bunch of places, but without success. If anyone knows how I can control this I'd be very grateful.</p> http://stackoverflow.com/questions/947695/what-tips-can-you-offer-for-programming-on-paper 9 What tips can you offer for programming on paper? Tom Wright 2009-06-03T22:49:08Z 2009-06-23T17:08:21Z <p>In exams and interview situations, it's common to need to either write or review code that's not on a screen.</p> <p>Whether it's on paper or a whiteboard, what tips can you offer for both the writing and reviewing/debugging processes?</p> http://stackoverflow.com/questions/1003885/setting-up-a-git-repo-on-my-godaddy-hosting-plan 3 Setting up a git repo on my GoDaddy hosting plan Tom Wright 2009-06-16T20:53:08Z 2009-06-16T21:18:58Z <p>I have a project which is version-controlled using git.</p> <p>What I want to be able to do is set up a repo on my (ssh-enabled) GoDaddy shared hosting package so that I can deploy with a push rather than dragging and dropping in FTP.</p> <p>Any tips would be appreciated. Best would be an account from someone who's already done it, but I couldn't personally find any online.</p> <p>(Cross-posted from serverfault as suggested.)</p> http://stackoverflow.com/questions/904955/have-we-reached-the-point-that-a-mysite-net-is-as-good-as-mysite-com/904986#904986 0 Answer by Tom Wright for Have we reached the point that a mysite.net is as good as mysite.com? Tom Wright 2009-05-25T00:45:03Z 2009-05-25T00:45:03Z <p>I predict it will become increasingly irrelevant as we more and more onto the web.</p> <p>There'll be less typing addresses and more clicking links.</p> <p>Anything left in RL will have QR tags anyway!</p> <p>&lt;/pipedream></p> http://stackoverflow.com/questions/904920/how-short-can-a-guid-id-be/904978#904978 0 Answer by Tom Wright for How short can a GUID id be? Tom Wright 2009-05-25T00:41:35Z 2009-05-25T00:41:35Z <p>Put very simply, GUIDs are guaranteed to be unique because they act like coordinates.</p> <p>Traditionally*, one half was specific to the machine (by using the MAC address) and one half was derived from the time.</p> <p>Because MACs are unique between machines and each machine can execute one instruction at a time (traditionally remember!) the GUID will definitely be unique.</p> <p>This means however, that if you ditch any part of a GUID, you lose the guarantee of uniqueness. Mr. Martelli gives a good explanation of why this is more of a problem than you might assume.</p> <p>*<sub>I say traditionally, but I've never read an article that indicates a major change. I don't think actual MACs are used nowadays (for security reasons I guess), but I think they're still MAC-derived or at least machine specific.</sub></p> http://stackoverflow.com/questions/855370/in-cakephp-is-it-possible-to-have-internal-and-external-routes 1 In CakePHP, is it possible to have internal and external routes? Tom Wright 2009-05-12T23:16:55Z 2009-05-22T16:45:48Z <p>A Facebook app is hosted on my server at, say, <a href="http://server.com/projects/fbapp/" rel="nofollow">http://server.com/projects/fbapp/</a>, but is only ever viewed <em>in</em> Facebook at, for instance, <a href="http://apps.facebook.com/fbapp/" rel="nofollow">http://apps.facebook.com/fbapp/</a>.</p> <p>Using CakePHP this presents a problem - should routes be prefixed with "/project/fbapp" or just "fbapp"?</p> <p>It's a problem because routes are used not just for routing inbound requests, but also for generating links (and form actions etc).</p> <p>As a kludge, I now have two routing instructions per route:</p> <pre><code>Router::connect('/pages/*', array('controller' =&gt; 'pages', 'action' =&gt; 'display')); Router::connect('projects/fbapp/pages/*', array('controller' =&gt; 'pages', 'action' =&gt; 'display')); </code></pre> <p>With the first not requiring a prefix because of a line I've included to bootstrap.php:</p> <pre><code>Configure::write('App.base', '/fbapp'); </code></pre> <p>Which kicks in during reverse routing operations.</p> <p>My question is whether there's a more elegant way to do this? This seems very ugly and I'm sure it's not very Cakey.</p> http://stackoverflow.com/questions/893625/what-pronoun-should-your-application-use-when-addressing-the-user/897511#897511 1 Answer by Tom Wright for What pronoun should your application use when addressing the user? Tom Wright 2009-05-22T12:02:39Z 2009-05-22T12:02:39Z <p>Whilst I prefer not to use pronouns, there are established guidelines.</p> <p>If the text is an action that the user is carrying out (e.g. a button legend, hyperlink or menu command) then it should be as if the user was saying it:</p> <ul> <li>Check <strong>my</strong> mail.</li> </ul> <p>On the other hand, if it's a message, notification or static text, it should be from the computers "point of view":</p> <ul> <li>Check <strong>your</strong> mail.</li> </ul> <p>You're right that it's inconsistent, but this inconsistency reflects the dichotomy inherent in most users' models of computer interaction. Only geeks like us will notice, and for everyone else it will "just work".</p> http://stackoverflow.com/questions/855871/how-do-i-merge-two-partially-overlapping-lists-in-mysql 1 How do I merge two partially overlapping lists in MySQL? Tom Wright 2009-05-13T03:06:05Z 2009-05-13T07:39:29Z <p>OK, so I have two tables (views actually) that both have the same structure. Each has a column with a date and a column with a numerical value.</p> <p>The dates in both tables will be almost continuous and cover the same period. The data will consequently be largely the same, but a date in one table may not appear in the other.</p> <p>I want to have one table, with one date column and two numerical columns. Where there is no date in one table, the corresponding numerical field should be null.</p> <p>Any approaches out there?</p> <p><hr/></p> <p>PS This is not the same question: <a href="http://stackoverflow.com/questions/725556/how-can-i-merge-two-mysql-tables">http://stackoverflow.com/questions/725556/how-can-i-merge-two-mysql-tables</a></p> http://stackoverflow.com/questions/850848/in-terms-of-user-experience-is-it-better-to-request-new-info-or-prompt-for-permi 1 In terms of user experience, is it better to request new info or prompt for permission for old info? Tom Wright 2009-05-12T02:10:17Z 2009-05-12T02:20:25Z <p>Facebook applications have access to a service they call Proxied Mail. It's basically an email address unique to the user/app pair and forwards to the users registered email address as long as they continue to grant the app permission.</p> <p>So I can use this and prompt for permission, or I can just ask the user for their real email address straight off.</p> <p>Which would you consider a better user experience?</p> http://stackoverflow.com/questions/850835/can-the-cakephp-form-helper-be-coerced-to-include-a-custom-attribute 0 Can the CakePHP form helper be coerced to include a custom attribute? Tom Wright 2009-05-12T02:04:18Z 2009-05-12T02:08:50Z <p>What I need to do is create a form something like this:</p> <pre><code>&lt;form method="post" promptpermission="email" action="blahblah"&gt; </code></pre> <p>(Note the <strong>promptpermission</strong> attribute.)</p> <p>Is there any way I can do this without straying to far from the helper?</p> <pre><code>&lt;?php echo $form-&gt;create(); ?&gt; </code></pre> <p>Since it's only one form, I'm loath to go mod very much. Is there a quick and easy way to do this?</p> http://stackoverflow.com/questions/849335/what-do-you-do-for-inspiration-when-you-get-programmers-block 2 What do you do for inspiration when you get programmers block? [closed] Tom Wright 2009-05-11T18:13:31Z 2009-05-11T18:35:12Z <p>Hitting the wall is an inevitable part of all creative processes, and programming is no exception.</p> <p>I've found that playing with Lego can give me a break from code, without a break from being creative or constructive.</p> <p>I'm curious to know what other people find useful.</p> <p>(I know this is subjective, but I'm genuinely curious, please don't close.) <hr/> OK, so there are these two: <li><a href="http://stackoverflow.com/questions/434464/what-do-you-do-to-take-breaks-from-programming">What do you do to take breaks from programming?</a></li> <li><a href="http://stackoverflow.com/questions/60509/how-do-you-get-in-the-zone-esp-on-saturday-closed">How do you get into the zone?</a></p> <p>But I'm asking specifically about sources of creative inspiration.</p> http://stackoverflow.com/questions/843610/what-does-a-software-architect-do-and-what-programs-do-they-use/843627#843627 1 Answer by Tom Wright for What does a Software Architect do and what programs do they use? Tom Wright 2009-05-09T16:50:46Z 2009-05-09T16:50:46Z <p>My old man called himself a Software Architect when he was working at a large enterprisey group a few years ago. (Now he's gone over to <em>shudder</em> consulting.) So I'm only saying this from an observational POV...</p> <p>He seemed to be the one who liaised with the pre-sales team to gather requirements and organise the spec.</p> <p>He also, as you guessed, drew (in UML) the overarching plan for the system - although I'm not sure what software he used for that.</p> <p>AFAIK, he didn't do very much actual programming. He did oversee a team of programmers though (in conjunction with a lead dev) and could code pretty well himself, so it wouldn't surprise me if he mucked in if he was needed.</p> <p>Like I said, these are just observations. Each organisation probably has a different idea too. But I hope it's useful.</p> http://stackoverflow.com/questions/757782/how-to-preserve-aspect-ratio-when-scaling-image-using-one-css-dimension-in-ie6 2 How to preserve aspect ratio when scaling image using one (CSS) dimension in IE6? Tom Wright 2009-04-16T19:50:03Z 2009-04-29T18:15:01Z <p>Here's the problem. I have an image:</p> <pre><code>&lt;img alt="alttext" src="filename.jpg"/&gt; </code></pre> <p>Note no height or width specified.</p> <p>On certain pages I want to only show a thumbnail. I can't alter the html, so I use the following CSS:</p> <pre><code>.blog_list div.postbody img { width:75px; } </code></pre> <p>Which (in most browsers) makes a page of uniformly wide thumbnails, all with preserved aspect ratios.</p> <p>In IE6 though, the image is only scaled in the dimension specified in the CSS. It retains the 'natural' height.</p> <p>Here's an example of a pair of pages that illustrate the problem:</p> <ul> <li><a href="http://www.escapelondon.co.uk/profiles/blog/list" rel="nofollow">The list, which should show thumbnails</a></li> <li><a href="http://www.escapelondon.co.uk/profiles/blogs/epernay-champagne" rel="nofollow">A single blog post, which shows the full-size image.</a></li> </ul> <p>I'd be very grateful for all suggestions, but would like to point out that (due to the limitations of the clients chosen platform) I'm looking for something that doesn't involve modifying the html. CSS would also be preferable to javascript.</p> <p>EDIT: Should mention that the images are of different sizes and aspect ratios.</p> http://stackoverflow.com/questions/757782/how-to-preserve-aspect-ratio-when-scaling-image-using-one-css-dimension-in-ie6/758148#758148 2 Answer by Tom Wright for How to preserve aspect ratio when scaling image using one (CSS) dimension in IE6? Tom Wright 2009-04-16T21:31:08Z 2009-04-16T21:31:08Z <p>Adam Luter gave me the idea for this, but it actually turned out to be really simple:</p> <pre><code>img { width: 75px; height: auto; } </code></pre> <p>IE6 now scales the image fine and this seems to be what all the other browsers use by default.</p> <p>Thanks for both the answers though!</p> http://stackoverflow.com/questions/738633/is-it-better-to-hook-up-links-to-a-js-function-using-ids-or-relative-paths/738676#738676 3 Answer by Tom Wright for Is it better to hook up links to a JS function using ID's or "relative paths"? Tom Wright 2009-04-10T19:47:53Z 2009-04-10T19:47:53Z <p>Your first suggestion seems to be easiest. If you're dynamically generating the pages then you can easily ensure that all your pairs match.</p> <p>Why not do something like this:</p> <pre><code>&lt;a href="#div123"&gt;Foo&lt;/a&gt; ... &lt;div style="display: none;" id="div123"/&gt; </code></pre> <p>So that it'll degrade more gracefully?</p> <p>If you need more convincing about your original question, DOM traversal operations tend to be more expensive (computationally) than a simple getElementById().</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/737878/can-client-side-javascript-detect-when-server-has-closed-http-connection-while-cl/737964#737964 1 Answer by Tom Wright for can client side Javascript detect when server has closed http connection while client is working? Tom Wright 2009-04-10T15:19:16Z 2009-04-10T15:19:16Z <p>If the clip is streamed to the client, you could just stop serving it.</p> <p>However, it seems like the clip is being downloaded and then played through the browser. In this instance it's probably best to use a watchdog approach as described by CookieOfFortune: Poll the server regularly (once a second or so) and get it to respond with tiny message of confirmation. When the connection is closed, get the server to respond with a negative messgage.</p> <p>Unfortunately, without using a comet-like system, it's very hard to get the server to 'send' a message indicating session closure.</p> <p>Bear in mind though, that as soon as the client has downloaded a clip they will be able to play it in full if they want to. Unfortunately there's no way to stop this besides switching to a streaming approach. If securing your content is a priority, I'd suggest making this change.</p> http://stackoverflow.com/questions/707587/how-would-you-attack-a-domain-to-look-for-unknown-resources/737672#737672 1 Answer by Tom Wright for How would you attack a domain to look for "unknown" resources? Tom Wright 2009-04-10T13:52:08Z 2009-04-10T13:52:08Z <p>When attaching a new box onto "teh interwebs", I always run <a href="http://www.hackingtheuniverse.com/infosec/tools/zenmap" rel="nofollow">(ze)nmap</a>. (I know the site looks sinister - that's a sign of quality in this context I guess...)</p> <p>It's pretty much push-button and gives you a detailed explanation of how vulnerable the target (read:"your server") is.</p> http://stackoverflow.com/questions/735412/how-to-make-an-html-page-open-automatically-on-a-cd-dvd/735423#735423 0 Answer by Tom Wright for How to make an html page open automatically on a CD/DVD Tom Wright 2009-04-09T18:37:50Z 2009-04-09T18:37:50Z <p>It's dead simple. I use a program called Autorun Pro. Check out <a href="http://www.ezau.com/latest/articles/autorun.shtml" rel="nofollow">this guide</a>.</p> http://stackoverflow.com/questions/735216/best-way-to-query-calendar-events/735385#735385 1 Answer by Tom Wright for Best way to query calendar events? Tom Wright 2009-04-09T18:27:27Z 2009-04-09T18:27:27Z <p>I can't think of a good reason you'd need to limit each query to one day. Surely you can just select all the values between a pair of dates.</p> <p>Similarly, you could use a join to get the number of events scheduled events for a given day.</p> <p>Then do the loop (for each day) on the array returned by the database query.</p> http://stackoverflow.com/questions/723925/which-web-development-language-is-best-for-a-c-programmer/723935#723935 1 Answer by Tom Wright for Which web-development language is best for a C programmer? Tom Wright 2009-04-07T02:05:53Z 2009-04-07T02:05:53Z <p>If you settle on PHP, do your sanity a favour and use a decent framework. I highly recommend CakePHP, but I don't want to start any holy wars.</p> <p>You mention experience in Java though - why not apply that? Or, as a C programmer, how about C# and .NET?</p> <p>The world is your mollusc, friend.</p> http://stackoverflow.com/questions/723791/what-are-best-practices-for-self-updating-phpmysql-applications/723859#723859 2 Answer by Tom Wright for What are best practices for self-updating PHP+MySQL applications? Tom Wright 2009-04-07T01:25:28Z 2009-04-07T01:25:28Z <p>I suppose you've already ruled this out, but you could host it as a service. (Think wordpress.com)</p> http://stackoverflow.com/questions/722547/avoiding-form-resubmit-in-php-when-pressing-f5/722567#722567 10 Answer by Tom Wright for Avoiding form resubmit in php when pressing f5 Tom Wright 2009-04-06T18:12:49Z 2009-04-06T18:12:49Z <p>Your method could work in theory, but there's a much easier way.</p> <p>After submitting the form successfully, perform a redirect. It doesn't matter where to, but it'll clear the $_POST.</p> <pre><code>header('Location: http://www.example.com/form.php'); </code></pre> <p>In your case, it sounds like you want to redirect to the page you're already on. Append a $_GET parameter to the URL if you want to display a confirmation message.</p> <p>Hope this helps,</p> <p>Tom</p> http://stackoverflow.com/questions/721549/php-creating-image-from-html-table/721596#721596 1 Answer by Tom Wright for PHP : Creating image from html table Tom Wright 2009-04-06T14:04:58Z 2009-04-06T14:04:58Z <p>At first glance, that's quite a tall order. Here are some pointers:</p> <ul> <li>You'll probably want to get cosy with the GD library</li> </ul> <p>Where is this table coming from? If it's coming from your database originally, this would be easier to work with. Otherwise...</p> <ul> <li>You'll need to get the remote page (I recommend curl)</li> <li>Then you'll need to extract the table data</li> </ul> <p>The complexity of the second step really depends on how similar each page and table is going to be. Regex is probably going to be useful though.</p> <p>Hope this helps,</p> <p>Tom</p> http://stackoverflow.com/questions/659714/multiple-payment-options-within-the-same-order/721491#721491 1 Answer by Tom Wright for Multiple Payment options within the same order Tom Wright 2009-04-06T13:39:55Z 2009-04-06T13:39:55Z <p>Personally, I'd do it like this:</p> <ol> <li>Let the user fill their basket in the ususal way</li> <li>Allow them to add payment types and amounts to a list (2nd basket almost)</li> <li>When the payments balance against the basket, start processing the payments</li> <li>For external sites, try a frame which has a progress indicator at the top.</li> </ol> <p>In an ideal world it wouldn't be linear. But a lot of users might lose a spawned window, or get confused by the parallelism.</p> <p>Better to stick to established IxD principals and rely on good feedback instead. Give the user control from the outset and keep it transparent.</p> <p>Lastly, start the payment process with the most immediate (e.g. paypal) to reduce users giving up. (COD should come last!)</p> <p>Hope this helps,</p> <p>Tom</p> http://stackoverflow.com/questions/715316/how-long-does-one-normally-have-to-wait-for-facebook-to-approve-an-application/721461#721461 2 Answer by Tom Wright for How long does one normally have to wait for facebook to approve an application? Tom Wright 2009-04-06T13:32:47Z 2009-04-06T13:32:47Z <p>I'll second what ceejayoz says. I've never been accepted in less than a week, but it's never been much more than that either.</p> <p>My main point though, is that acceptance really mean jack. So you'll be in their directory, big whoop. Their directory is so swamped you'll never be found unless your incredibly original, but then no-one will be searching for you.</p> <p>Best approach IMHO, is to build virality into the app. Users are one-hundred-fold more likely to add an app that's in their feed than they are to go browsing through the directory.</p> http://stackoverflow.com/questions/1815972/why-does-cakephp-bork-when-i-use-jquery-to-modify-values-of-hidden-inputs Comment by Tom Wright on Why does CakePHP bork when I use jquery to modify values of hidden inputs? Tom Wright 2009-11-29T23:30:13Z 2009-11-29T23:30:13Z Hi Peter. Like I said, changing the default value doesn't prevent it working. &lt;?php echo $form-&gt;hidden('bigLayout', array('value'=&gt;'0')); ?&gt; results in a stored value of 0. That was the first thing I tried - I guess we think alike. http://stackoverflow.com/questions/1815972/why-does-cakephp-bork-when-i-use-jquery-to-modify-values-of-hidden-inputs/1816036#1816036 Comment by Tom Wright on Why does CakePHP bork when I use jquery to modify values of hidden inputs? Tom Wright 2009-11-29T16:58:51Z 2009-11-29T16:58:51Z Unfortunately, that didn't change anything. Strangely though, when I used 'secure'=&gt;'false' and $('#ResponseBigLayout').val('1'); I get a different error with 0 queries. Is this a useful clue to anyone? http://stackoverflow.com/questions/249984/php-framework-decision-analysis-paralysis/547997#547997 Comment by Tom Wright on PHP Framework Decision - Analysis paralysis! Tom Wright 2009-11-29T16:34:30Z 2009-11-29T16:34:30Z I agree that it's a great way to learn, but why start from scratch every time you want to build something? Sucks the fun if you ask me. http://stackoverflow.com/questions/1702788/fixing-error-c2065-undeclared-identifier/1708046#1708046 Comment by Tom Wright on Fixing "error C2065: undeclared identifier" Tom Wright 2009-11-10T14:23:15Z 2009-11-10T14:23:15Z Thanks Jon. 1 tells me it's not define, 2 opens the file, but the phrase &quot;OutputStream&quot; isn't anywhere within that file. (The lack of Downloads was a typo and changing these paths leads to more immediate errors.) http://stackoverflow.com/questions/1702788/fixing-error-c2065-undeclared-identifier Comment by Tom Wright on Fixing "error C2065: undeclared identifier" Tom Wright 2009-11-10T09:21:03Z 2009-11-10T09:21:03Z Hi guys, the first few lines (up to the first error) are listed here: <a href="http://pastebin.ca/1664646" rel="nofollow">pastebin.ca/1664646</a> @Jon, the source isn't the main audiere package, but rather the bindings, which outputstream.cpp is part of. http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c/1669137#1669137 Comment by Tom Wright on Is it possible to generate complex tones in C#? Tom Wright 2009-11-09T14:39:28Z 2009-11-09T14:39:28Z I've accepted this because it's obviously what I need to do. Despite your idiot proof explanation however, I still can't get &quot;libaudieresharpglue.dll&quot; to compile (stops at 100 errors). When I link, it tells me it cannot open input file '.\Release\audiere.obj' - is there something elementary I'm missing? http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c/1669137#1669137 Comment by Tom Wright on Is it possible to generate complex tones in C#? Tom Wright 2009-11-06T12:38:38Z 2009-11-06T12:38:38Z I'm having big problems compiling the &quot;libaudieresharpglue.dll&quot; part of the wrapper to compile. Any idea where I can just grab a binary? http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c/1643325#1643325 Comment by Tom Wright on Is it possible to generate complex tones in C#? Tom Wright 2009-11-03T15:34:03Z 2009-11-03T15:34:03Z This is the most promising so far, but I've been unable to get more than one frequency running together. http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c/1643159#1643159 Comment by Tom Wright on Is it possible to generate complex tones in C#? Tom Wright 2009-10-29T11:59:21Z 2009-10-29T11:59:21Z Do you have a link that refers specifically to generating complex tones with DirectSound? http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c Comment by Tom Wright on Is it possible to generate complex tones in C#? Tom Wright 2009-10-29T11:57:15Z 2009-10-29T11:57:15Z I'd actually prefer to use default audio output. Eventually it will <i>need</i> to be through headphones. http://stackoverflow.com/questions/1643122/is-it-possible-to-generate-complex-tones-in-c/1643162#1643162 Comment by Tom Wright on Is it possible to generate complex tones in C#? Tom Wright 2009-10-29T11:56:29Z 2009-10-29T11:56:29Z I'm new to C# - can synchronous calls be layered using threads? http://stackoverflow.com/questions/1170610/limit-width-of-custom-list-itemrenderer-in-flex/1170628#1170628 Comment by Tom Wright on Limit width of custom list itemrenderer in Flex Tom Wright 2009-07-24T19:13:21Z 2009-07-24T19:13:21Z width=&quot;{this.parent.width - 10}&quot; didn't work. Nor did width=&quot;{this.parent.width}&quot;. Got a warning: &quot;Data binding will not be able to detect assignments to &quot;width&quot;.&quot; http://stackoverflow.com/questions/1170610/limit-width-of-custom-list-itemrenderer-in-flex/1170628#1170628 Comment by Tom Wright on Limit width of custom list itemrenderer in Flex Tom Wright 2009-07-23T11:56:26Z 2009-07-23T11:56:26Z maxWidth seems not to work, but I'd be interested to see an answer based on the other suggestion. http://stackoverflow.com/questions/1170610/limit-width-of-custom-list-itemrenderer-in-flex/1170628#1170628 Comment by Tom Wright on Limit width of custom list itemrenderer in Flex Tom Wright 2009-07-23T10:03:30Z 2009-07-23T10:03:30Z This hides the bars, but doesn't limit the width, which almost makes it worse. Thanks for your answer though. http://stackoverflow.com/questions/947695/what-tips-can-you-offer-for-programming-on-paper/947702#947702 Comment by Tom Wright on What tips can you offer for programming on paper? Tom Wright 2009-06-04T10:48:52Z 2009-06-04T10:48:52Z This sounded overly simple before I started writing. Turned out to be very insightful. Cheers.