User mmacaulay - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:02:17Z http://stackoverflow.com/feeds/user/22152 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/279213/best-amazon-s3-file-manager-utility 12 Best Amazon S3 File Manager Utility? [closed] mmacaulay 2008-11-10T21:17:16Z 2009-08-24T02:52:17Z <p>Ever since I started using Amazon's S3 service I've been struggling to find a good solution for simple file management, without having to write my own app to browse my buckets, upload and delete files, etc. </p> <p>The best I've found so far to do this is <a href="https://addons.mozilla.org/en-US/firefox/addon/3247" rel="nofollow">S3Fox</a>. But it's far from perfect, it has problems deleting files and folders. Comments on the Firefox plugin page indicate I'm not the only person with this problem and the developer does not respond to emails.</p> <p>I've looked around briefly, but couldn't find anything that looked any better than S3Fox.</p> <p>Please tell me there's a better way!</p> <p><hr /></p> <p>Edit (07/26/2009): The Firefox S3Fox extension seems to be getting love from its developer again, the problems I was having before have gone away, and I'm using it on a regular basis now with no problems!</p> http://stackoverflow.com/questions/223656/untar-ungz-gz-tar-how-do-you-remember-all-the-useful-options/1249128#1249128 0 Answer by mmacaulay for Untar, ungz, gz, tar - how do you remember all the useful options? mmacaulay 2009-08-08T15:18:26Z 2009-08-08T15:18:26Z <p>The way I remember is that it's always "tar XXvf ", where the two Xs are </p> <ul> <li>x for e**X**tract or c for <strong>C</strong>reate and,</li> <li>either z = gzip, j = bzip2 (gzip is more common so it's usually z, for whatever reason the j = bzip2 is just stuck in my head).</li> </ul> <p>Occasionally you run into compressed but not tarred files where you add <strong>un</strong> to whatever the compression type is. e.g. g**un**zip or b**un**zip2.</p> <p>If anything, I forget the 2 and sometimes type "bzip".</p> http://stackoverflow.com/questions/191260/asp-net-approaches-to-multilingual-websites-with-javascript-and-ajax 1 ASP.Net: Approaches to multilingual websites with Javascript and AJAX mmacaulay 2008-10-10T13:25:29Z 2009-07-20T23:33:54Z <p>We've recently completed phase 1 of a ASP.Net website in English and French. We went with using resource files to store language specific strings, but because the site used ASP.Net AJAX and javascript heavily we rigged up a solution to pass the right files through the ASP.Net pipeline where we could catch "tokens" and replace them with the appropriate text pulled from the resource files. </p> <p>This is the second project I've been involved in that had these kinds of challenges, the first one stored the text strings in a database, and instead of ASP.Net AJAX, it used the AJAX tools that come with the Prototype library and put all Javascript into aspx files so that the tokens could be replaced on the way out.</p> <p>What I'm wondering is, has anyone else encountered a similar scenario? What approach did you take? What lessons were learned? How did you deal with things like internationalized date formats?</p> http://stackoverflow.com/questions/338262/net-framework-version-in-silverlight-no-listt-find-methods 1 .Net framework version in Silverlight: no List<T>.Find methods? mmacaulay 2008-12-03T18:38:55Z 2009-06-29T11:34:00Z <p>Today I discovered something that makes me sad: objects of type System.Generic.Collections.List don't have a number of the useful extension methods I've come to love, such as Find, FindAll, FindIndex, Exists, RemoveAll, etc. </p> <p>The object browser in VS2008 shows that those methods exist in the mscorlib version I'm using, but if I look at the assembly in ildasm they're not there.</p> <p>Am I missing something obvious here or is there some way to make them available to my Silverlight app?</p> <p>Also, I wonder if there's a good reference out there for what's different between Silverlight's runtime and the "real" one.</p> <p>Thanks!</p> http://stackoverflow.com/questions/476163/nant-or-msbuild-which-one-to-choose-and-when/476224#476224 2 Answer by mmacaulay for Nant or MSBuild, which one to choose and when? mmacaulay 2009-01-24T16:13:15Z 2009-01-24T16:13:15Z <p>While I'm not very familiar with MsBuild, I'm under the impression that some of key differences on both sides can be supplemented by additions:</p> <ul> <li><a href="http://msbuildtasks.tigris.org/" rel="nofollow">MsBuildTasks</a></li> <li><a href="http://nantcontrib.sourceforge.net/" rel="nofollow">NantContrib</a></li> </ul> <p>I recently had to build a Silverlight project in Nant. I discovered that life would be easier if I just did this with MsBuild - I ended up calling a MsBuild task from within a Nant script so I suppose it's not too out of the ordinary to mix and match the two.</p> <p>Beyond that, I suppose it's going to be a question of personal preference - obviously you can manage some/most of MsBuild's functionality from within Visual Studio, if that's your thing. Nant seems more flexible and better suited if you prefer to write scripts by hand, and if you come from the Java world you'll likely be right at home with it.</p> http://stackoverflow.com/questions/254935/storing-social-security-numbers/255299#255299 3 Answer by mmacaulay for Storing Social Security Numbers mmacaulay 2008-11-01T00:10:11Z 2008-11-01T00:10:11Z <p>I didn't see it mentioned anywhere, but is it necessary for this information to be online? If not, then you've secured one major avenue of attack by simply having this info stored in a database on a computer that's not connected to the internet. Or, if you can get away with having it stored on your LAN somewhere (so HR can have access to it, or whatever), as opposed to production servers, that's still a step in the right direction. </p> <p>You mentioned that you're at a relatively small company, but it seems like an investment in some cheap hardware wouldn't be too difficult a thing to convince the decision makers of, given the benefits of storing this kind of sensitive info offline. And barring a massive hiring spree in the near future, you don't need a server class computer for storing personal info on ~30 employees by any means.</p> <p>Wherever you store it, I'd still consider some kind of encryption. AES 256 is the standard for secure these days in most applications and is pretty widely supported. It doesn't sound like it's the sort of application to be under any kind of load, so again, there's no harm in going for a larger key size along with the cheap hardware, from the sounds of it.</p> <p>As far as implementation goes, if you're comfortable with MySQL - stick with that, they've got the tools you need to do what you want: <a href="http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html</a></p> <p>In the end, security is all about layers, no single solution is going to be the silver bullet, but you can go a long way by adding some pretty simple, common sense security measures.</p> <p>Edit: after reading what Graeme said, I feel I should add that most security breaches are an inside job - make sure to protect your data at the disk level, through the database, and over the wire.</p> http://stackoverflow.com/questions/245482/asp-net-mvc-post-to-different-views-in-same-form/245679#245679 1 Answer by mmacaulay for asp.net mvc post to different views in same form mmacaulay 2008-10-29T03:12:34Z 2008-10-29T03:22:33Z <p>It sounds like what you want to do is call the Books Controller, with, say, the Search action. So for instance you might want to call /Books/Search/&lt;search expression&gt;/1, or /Books/Search/&lt;search expression&gt;/2, etc. (There's a few different ways you could be formatting these URLs, but it's mostly a matter of personal preference I think) If you want the URLs to appear as you've got them above (without the action in the URL), that can be accomplished with routing, something like this:</p> <pre> <code> routes.MapRoute( "Books", "Books/{searchExpr}/{pageId}", new { controller = "Books", action = "Search", searchExpr = "", pageId = 1 } ); </code> </pre> <p>I think the main problem is that you're trying to use the WebForms PostBack everything paradigm in a situation where you're probably better off sending the information to the server in the URL or query string. The only time you're actually going to be posting form data here is when the user actually types something into the search box and clicks the "Search" button - at that point, the controller will pass the search expression to the appropriate View by stuffing it in ViewData, and from there, the View can pull it out and repopulate that textbox on the results page.</p> http://stackoverflow.com/questions/244777/can-i-comment-a-json-file/244837#244837 0 Answer by mmacaulay for Can I comment a JSON file? mmacaulay 2008-10-28T20:54:26Z 2008-10-28T20:54:26Z <p>Typically, JSON is generated or parsed by some other language where comments are allowed. I've never really heard of a JSON "file", it's usually more of a transient, over-the-wire type thing - and it's kind of nightmarish for humans to read anyway.</p> http://stackoverflow.com/questions/234669/what-unicode-friendly-text-editor-would-you-recommend-for-windows/234738#234738 1 Answer by mmacaulay for What unicode-friendly text editor would you recommend for Windows? mmacaulay 2008-10-24T18:23:34Z 2008-10-24T18:23:34Z <p>Here's a page that describes using <a href="http://www.vim.org/" rel="nofollow">Vim</a> with Chinese language files: <a href="http://blog.wensheng.com/2007/05/vim-gvim-utf8-and-chinese-in-windows-xp.html" rel="nofollow">http://blog.wensheng.com/2007/05/vim-gvim-utf8-and-chinese-in-windows-xp.html</a></p> <p>Disclaimer: I don't actually work with Asian languages, but Vim is the first thing that comes to mind when I think of a featureful and internationalized editor.</p> http://stackoverflow.com/questions/233793/prefilling-dynamically-created-textbox-with-javascript-in-ie/233893#233893 0 Answer by mmacaulay for prefilling dynamically created textbox with javascript in IE mmacaulay 2008-10-24T14:56:48Z 2008-10-24T14:56:48Z <p>I've encountered problems similar to this in the past, and while my memory is a bit fuzzy on why it was happening exactly, I think you may need to make sure the element is actually added to the DOM before modifying its value. e.g:</p> <pre> <code> var txtEmail=document.createElement('input'); document.getElementById('someElementThatAlreadyExists').appendChild(txtEmail); txtEmail.value = 'sample text'; </code> </pre> http://stackoverflow.com/questions/231943/what-is-the-most-disruptive-thing-in-a-developers-day/232160#232160 6 Answer by mmacaulay for What is the most disruptive thing in a developer's day mmacaulay 2008-10-24T01:09:21Z 2008-10-24T01:09:21Z <p>I work close to a busy street, so a common disruption is the sound of traffic. Car horns and especially car alarms. I hate car alarms.</p> http://stackoverflow.com/questions/231760/what-does-a-type-followed-by-t-underscore-t-represent/231789#231789 7 Answer by mmacaulay for What does a type followed by _t (underscore-t) represent? mmacaulay 2008-10-23T22:26:14Z 2008-10-23T22:26:14Z <p>It's a convention used for naming data types, e.g with <code>typedef</code>:</p> <pre> <code> typedef struct { char* model; int year; ... } car_t; </code> </pre> http://stackoverflow.com/questions/219156/nant-with-db-integration-tests-and-eventually-continuous-integration 2 NAnt with DB integration tests, and eventually Continuous Integration mmacaulay 2008-10-20T16:59:29Z 2008-10-21T22:21:39Z <p>I've been exploring different strategies for running integration tests within some Nant build scripts. Typically a number of different scripts are chained in one monolithic build that has separate targets: staging (build a staging version, like build), build (just build the stuff), integration (build the stuff and run the integration tests). This works reasonably well, the build target takes about a third of the time to run as the integration target and it's not painfully long so I don't find myself disinclined to run it frequently.</p> <p>The integration target on the other hand takes long enough that I don't want to do it very often - ideally just before I'm ready to do a deploy. Does this seem like a reasonable strategy? IOW, am I doing it right?</p> <p>The plan is to eventually move this project to Continuous Integration. I'm new to the whole Continuous Integration thing but I think I understand the concept of "breaking the build" so I'm wondering what are some good practices to pick up in order to make the most of it? </p> <p>Any good sources of reading on this subject would be appreciated as well. Thanks!</p> http://stackoverflow.com/questions/216359/break-statements-in-the-real-world/223361#223361 1 Answer by mmacaulay for Break Statements In the real world mmacaulay 2008-10-21T20:25:05Z 2008-10-21T20:25:05Z <p>Out of curiosity, is there anything in your school's guidelines about using <code>continue</code> in loops?</p> http://stackoverflow.com/questions/223317/httpcontext-on-instances-of-controllers-are-null-in-asp-net-mvc/223334#223334 0 Answer by mmacaulay for HttpContext on instances of Controllers are null in ASP.net MVC mmacaulay 2008-10-21T20:17:08Z 2008-10-21T20:17:08Z <p>Is it that you want to use some functionality from the controller? Or have the controller perform an action?</p> <p>If it's the former, maybe that's some code that should be split out into another class. If it's the latter, you can do this to simply have that controller do a specific action:</p> <pre> <code> return RedirectToAction("SomeAction", "SomeOtherController", new {param1 = "Something" }); </code> </pre> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222872#222872 1 Answer by mmacaulay for Notepad replacement for viewing very large text files mmacaulay 2008-10-21T18:12:38Z 2008-10-21T18:12:38Z <p>I once tried to open a >1GB file in NotePad++... no dice. For your purposes NotePad++ should do it, but in the event you ever need to open anything bigger: Vim was able to do it just fine.</p> <p>There is a Windows version here:</p> <p><a href="http://www.vim.org/download.php" rel="nofollow">http://www.vim.org/download.php</a></p> http://stackoverflow.com/questions/221966/user-interface-design-books-resources-for-programmers 4 User Interface design books/resources for programmers mmacaulay 2008-10-21T13:57:02Z 2008-10-21T17:51:42Z <p>Hi,</p> <p>I'm going to make my monthly trip to the bookstore soon and I'm kind of interested in learning some user interface and/or design stuff - mostly web related, what are some good books I should look at? One that I've seen come up frequently in the past is <a href="http://rads.stackoverflow.com/amzn/click/0321344758" rel="nofollow">Don't Make Me Think</a>, which looks promising.</p> <p>I'm aware of the fact that programmers often don't make great designers, and as such this is more of a potential hobby thing than a move to be a professional designer.</p> <p>I'm also looking for any good web resources on this topic. I subscribed to Jakob Nielsen's <a href="http://www.useit.com/alertbox/" rel="nofollow">Alertbox newsletter</a>, for instance, although it seems to come only once a month or so.</p> <p>Thanks!</p> <p>Somewhat related questions:</p> <p><a href="http://stackoverflow.com/questions/75863/what-are-the-best-resources-for-designing-user-interfaces">http://stackoverflow.com/questions/75863/what-are-the-best-resources-for-designing-user-interfaces</a> <a href="http://stackoverflow.com/questions/7973/user-interface-design">http://stackoverflow.com/questions/7973/user-interface-design</a></p> http://stackoverflow.com/questions/222276/how-do-i-compile-an-asp-net-website-into-a-single-dll/222363#222363 0 Answer by mmacaulay for How do I compile an ASP.NET website into a single .DLL? mmacaulay 2008-10-21T15:50:18Z 2008-10-21T15:50:18Z <p>We use build scripts for our websites and run the aspnet_merge.exe from the command line. Here's the MSDN page: <a href="http://msdn.microsoft.com/en-us/library/bb397866.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb397866.aspx</a></p> http://stackoverflow.com/questions/222326/how-do-you-diagnose-network-issues-on-windows/222349#222349 1 Answer by mmacaulay for How do you diagnose network issues on Windows? mmacaulay 2008-10-21T15:47:22Z 2008-10-21T15:47:22Z <p>Windows has a netstat utility which is pretty similar to the Unix netstat and can do a number of different things that might help you solve network issues.</p> <p>Random example:</p> <p>netstat -r displays routing information</p> <p>netstat /? for usage information</p> http://stackoverflow.com/questions/221826/alternatives-to-access/221857#221857 8 Answer by mmacaulay for Alternatives to Access mmacaulay 2008-10-21T13:20:59Z 2008-10-21T13:20:59Z <p>The one that comes with OpenOffice might be what you're looking for, it's called "Base" I believe: <a href="http://dba.openoffice.org" rel="nofollow">http://dba.openoffice.org</a></p> <p>I voted for zacherates because I like SQLite too, though.</p> http://stackoverflow.com/questions/221611/creation-timestamp-and-last-update-timestamp-with-hibernate-and-mysql/221841#221841 1 Answer by mmacaulay for Creation timestamp and last update timestamp with Hibernate and MySQL mmacaulay 2008-10-21T13:16:32Z 2008-10-21T13:16:32Z <p>You might consider storing the time as a DateTime, and in UTC. I typically use DateTime instead of Timestamp because of the fact that MySql converts dates to UTC and back to local time when storing and retrieving the data. I'd rather keep any of that kind of logic in one place (Business layer). I'm sure there are other situations where using Timestamp is preferable though.</p> http://stackoverflow.com/questions/220020/how-to-handle-checkboxes-in-asp-net-mvc-forms/220041#220041 3 Answer by mmacaulay for How to handle checkboxes in ASP.NET MVC forms? mmacaulay 2008-10-20T21:37:58Z 2008-10-20T21:59:51Z <p>Here's what I've been doing.</p> <p>View:</p> <pre> <code> &lt;input type="checkbox" name="applyChanges" /> </code> </pre> <p>Controller:</p> <pre> <code> var checkBox = Request.Form["applyChanges"]; if (checkBox == "on") { ... } </code> </pre> <p>I found the Html.* helper methods not so useful in some cases, and that I was better off doing it in plain old HTML. This being one of them, the other one that comes to mind is radio buttons.</p> <p>Edit: this is on Preview 5, obviously YMMV between versions.</p> http://stackoverflow.com/questions/219915/what-functionality-should-always-be-third-party/219924#219924 3 Answer by mmacaulay for What functionality should always be third-party? mmacaulay 2008-10-20T21:09:25Z 2008-10-20T21:09:25Z <p>I fully agree that encryption should only be done by experts whenever possible. It should also be open source and have undergone a good deal of peer review.</p> http://stackoverflow.com/questions/219868/client-notification-should-i-use-an-ajax-push-or-poll/219892#219892 0 Answer by mmacaulay for Client notification, should I use an AJAX Push or Poll? mmacaulay 2008-10-20T21:00:08Z 2008-10-20T21:00:08Z <p>Because using a push requires an open HTTP connection to be maintained between your server and each client, I'd go for poll as well - not only is that going to consume a lot of server resources but it's also going to be significantly more tricky to implement as matt b mentioned.</p> <p>My experience with polling is that if you have a frequent enough polling interval on a busy enough site your web server logs can get flooded with poll requests real quickly.</p> http://stackoverflow.com/questions/219069/what-are-some-of-the-common-programming-tasks-you-work-with-in-real-world/219091#219091 3 Answer by mmacaulay for What are some of the common programming tasks you work with in Real world? mmacaulay 2008-10-20T16:37:46Z 2008-10-20T18:30:51Z <ul> <li>Database access, CRUD</li> <li>SOAP/Web Services</li> <li>Sorting, searching, and otherwise manipulating collections of objects</li> </ul> <p>These are the first things that come to mind.</p> http://stackoverflow.com/questions/218624/what-do-i-need-to-be-cautious-of-when-creating-a-user-content-driven-site/218710#218710 0 Answer by mmacaulay for What do I need to be cautious of when creating a user-content driven site? mmacaulay 2008-10-20T14:52:39Z 2008-10-20T14:52:39Z <p>You may want to do what you can to prevent bot signups (along with with what @dirtside said about bots flooding), by using captchas for instance. </p> <p>While I know captchas aren't a perfect solution by any means, I've kind of been waiting for a reason to incorporate Recaptcha (<a href="http://recaptcha.net/" rel="nofollow">http://recaptcha.net/</a>) into a project which involves user signups. Looks about as cool a captcha could be and seems like a good cause to boot.</p> <p>As far as a bad word list goes, some googling revealed this one: <a href="http://www.noswearing.com/index.php" rel="nofollow">http://www.noswearing.com/index.php</a> - which claims to have an API coming soon. Censorship is a tricky subject though, and it may or may not be difficult to decide on what you or your users consider acceptable vs bad words. Personally, I'd be a little weary of using a third party list for this sort of thing, and creating my own list doesn't sound like a fun task either.</p> http://stackoverflow.com/questions/218161/how-would-you-recommend-a-novice-get-started-using-css/218484#218484 0 Answer by mmacaulay for How Would You Recommend a Novice Get Started Using CSS? mmacaulay 2008-10-20T13:44:39Z 2008-10-20T13:44:39Z <p>I learned a lot of CSS by downloading free site designs from <a href="http://www.oswd.org/" rel="nofollow">http://www.oswd.org/</a> and trying to implement the same effects on my own. It also gave me some insights into ideas for site-wide design patterns in CSS.</p> http://stackoverflow.com/questions/217414/how-to-use-lightbox-under-mvc/217456#217456 -1 Answer by mmacaulay for How to use Lightbox under MVC mmacaulay 2008-10-20T03:30:13Z 2008-10-20T03:30:13Z <p>Which MVC framework are we talking about here? While I'm not familiar with that particular lightbox library, I'd highly recommend you figure out the proper way to reference the javascript files via an absolute path at the root of your site:</p> <pre> <code> &lt;script type="text/javascript" src="/js/prototype.js"> </code> </pre> <p>If you can figure out how to get that to work, I'll bet it will solve your problem with the images.</p> <p>Also, having copies of the same javascript files littered all over your site is a bad idea. Besides the obvious clutter problem, browsers will have to download the same files over and over again instead of reading them from cache because they're at different URLs.</p> http://stackoverflow.com/questions/207047/what-linux-unix-commands-are-outdated-and-have-powerful-alternatives/216810#216810 5 Answer by mmacaulay for What Linux/Unix commands are outdated and have powerful alternatives? mmacaulay 2008-10-19T19:04:50Z 2008-10-19T19:04:50Z <p>Not really a replacement for an outdated command per se, but screen is a great alternative to opening multiple terminal windows and/or using bg, etc.</p> http://stackoverflow.com/questions/149569/how-can-i-write-net-unit-tests/212036#212036 0 Answer by mmacaulay for How can I write .NET unit tests? mmacaulay 2008-10-17T13:09:13Z 2008-10-17T13:09:13Z <p>SpecUnit makes a good addition to NUnit for BDD style unit tests. I really like the idea of having tests in a class called something like "When_x_happens", and the methods in that class describe the expected results for when x happens - "foo_should_do_bar()". SpecUnit also has a tool for generating reports from your tests, which is a great source of documentation.</p> http://stackoverflow.com/questions/1188551/common-programming-mistakes-for-javascript-developers-to-avoid/1198146#1198146 Comment by mmacaulay on Common programming mistakes for JavaScript developers to avoid? mmacaulay 2009-08-10T15:38:50Z 2009-08-10T15:38:50Z Indeed. Such as relying on Javascript to do validation without server-side validation to back it up. http://stackoverflow.com/questions/223656/untar-ungz-gz-tar-how-do-you-remember-all-the-useful-options/224081#224081 Comment by mmacaulay on Untar, ungz, gz, tar - how do you remember all the useful options? mmacaulay 2009-08-08T15:20:24Z 2009-08-08T15:20:24Z Same. The muscle memory is so strong on that command I don't even think about it. http://stackoverflow.com/questions/244268/free-coderush-express-worth-the-time Comment by mmacaulay on Free CodeRush Express: worth the time? mmacaulay 2008-12-17T19:11:45Z 2008-12-17T19:11:45Z According to his profile, Ilya Ryzhenkov is a Resharper Product Manager. Just FYI. http://stackoverflow.com/questions/338262/net-framework-version-in-silverlight-no-listt-find-methods/338283#338283 Comment by mmacaulay on .Net framework version in Silverlight: no List<T>.Find methods? mmacaulay 2008-12-03T18:56:00Z 2008-12-03T18:56:00Z I likely will just implement the piece I'm missing if there's no alternative. Currently it's only a single method so it's not a lot of work, but it would be nice to not have to do it at all :) http://stackoverflow.com/questions/279213/best-amazon-s3-file-manager-utility/279257#279257 Comment by mmacaulay on Best Amazon S3 File Manager Utility? mmacaulay 2008-11-10T21:47:10Z 2008-11-10T21:47:10Z I signed up for the free trial and am checking it out. It looks like you have to configure one network drive per bucket? That's kind of annoying... but I guess that's due to bucket naming restrictions. http://stackoverflow.com/questions/233188/what-is-different-with-window-and-div-widths-between-firefox-and-ie Comment by mmacaulay on What is different with window and div widths between firefox and IE mmacaulay 2008-10-24T15:21:10Z 2008-10-24T15:21:10Z Is this IE6 or IE7? http://stackoverflow.com/questions/233793/prefilling-dynamically-created-textbox-with-javascript-in-ie/233893#233893 Comment by mmacaulay on prefilling dynamically created textbox with javascript in IE mmacaulay 2008-10-24T15:18:26Z 2008-10-24T15:18:26Z Another thought - I also remember having problems with code that mixes creating DOM elements via createElement/appendChild and inserting inline HTML with someElement.innerHTML. Sorry I couldn't be of more help :/ http://stackoverflow.com/questions/233793/prefilling-dynamically-created-textbox-with-javascript-in-ie/233893#233893 Comment by mmacaulay on prefilling dynamically created textbox with javascript in IE mmacaulay 2008-10-24T15:16:22Z 2008-10-24T15:16:22Z I feel your pain. Like I said, I can remember having a problem similar to this in the past, but I can't remember what I did to solve it. What I'm suggesting is that you try to set the value of the input after the dynamically created table and all of its children have been added to the div. http://stackoverflow.com/questions/233251/how-can-i-create-a-menu-in-html-without-using-javascript/233277#233277 Comment by mmacaulay on How can I create a menu in HTML without using Javascript? mmacaulay 2008-10-24T13:33:23Z 2008-10-24T13:33:23Z Interesting... I looked at this one: <a href="http://www.cssmenumaker.com/builder/menu_info.php?menu=007#" rel="nofollow">cssmenumaker.com/builder/menu_info.php?menu=007#/&hellip;</a> in IE6 and it didn't work, despite the fact that the sidebar claims IE6 compatibility. Buyer beware. http://stackoverflow.com/questions/216359/break-statements-in-the-real-world/223361#223361 Comment by mmacaulay on Break Statements In the real world mmacaulay 2008-10-21T21:00:06Z 2008-10-21T21:00:06Z Oh, I'm not against using continue, or break for that matter. I'm just wondering. http://stackoverflow.com/questions/221966/user-interface-design-books-resources-for-programmers/221977#221977 Comment by mmacaulay on User Interface design books/resources for programmers mmacaulay 2008-10-21T14:10:12Z 2008-10-21T14:10:12Z Thanks, do you think these are useful from a general design perspective as well? e.g. they transcend developing interfaces on the Mac/Iphone/whatever http://stackoverflow.com/questions/219156/nant-with-db-integration-tests-and-eventually-continuous-integration/219167#219167 Comment by mmacaulay on NAnt with DB integration tests, and eventually Continuous Integration mmacaulay 2008-10-20T21:02:32Z 2008-10-20T21:02:32Z Thanks, I'm really looking forward to it. Sadly, I'm not the one who ultimately gets to say go. http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/14473#14473 Comment by mmacaulay on What's your favourite programming language, and its killer feature? mmacaulay 2008-10-20T13:23:15Z 2008-10-20T13:23:15Z &quot;items.each_with_index do |item, index|&quot; - new Ruby thing I learned today. Thanks! http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203370#203370 Comment by mmacaulay on What things didn't you know you needed but are now very glad you have? mmacaulay 2008-10-20T13:03:22Z 2008-10-20T13:03:22Z Compound eyes to see what's going on on all my monitors at the same time. http://stackoverflow.com/questions/217414/how-to-use-lightbox-under-mvc/217456#217456 Comment by mmacaulay on How to use Lightbox under MVC mmacaulay 2008-10-20T11:49:59Z 2008-10-20T11:49:59Z I'm aware of that. I was suggesting you solve the problem of why you can't reference them absolutely and that would solve the image loading problem and increase the scalability of your site.