User Cruachan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:13:11Zhttp://stackoverflow.com/feeds/user/7315http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1868747/single-vs-double-datatypes/1868958#18689580Answer by Cruachan for Single vs Double datatypesCruachan2009-12-08T18:34:05Z2009-12-08T18:34:05Z<p>If you're coding OpenGL then it's normal to use GLSingle (eg single) rather than GLDouble. In nearly all circumstances single precision is more than enough for most graphics applications and should be faster - although I confess I'm not certain of this on the latest generation of GPUs. </p>
<p>My favourite citation on this is that single precision was sufficient to navigate to the moon and back, so in practise it's unusual to cause a real issue. That said in most circumstances I'd reach for a double nowadays as storage is cheap and there's less likely to be any odd binary to decimal issues.</p>
http://stackoverflow.com/questions/1855859/curving-from-one-point-to-another/1855989#18559892Answer by Cruachan for Curving from one point to anotherCruachan2009-12-06T17:39:09Z2009-12-06T17:39:09Z<p>You're looking for <a href="http://en.wikipedia.org/wiki/Bezier%5Fcurves" rel="nofollow">Bezier Curves</a>, or some other similar parametric curve. These are programatically quite easy to code and have the advantage of being intuitively straightforward to manipulate. The best treatise I know of is in the classic book <a href="http://rads.stackoverflow.com/amzn/click/0070535302" rel="nofollow">Mathematical Elements of Computer Graphics</a>, but any textbook on computer graphics will probably include a basic introduction.</p>
http://stackoverflow.com/questions/1855884/determine-font-color-based-on-background-color/1855929#18559290Answer by Cruachan for Determine font color based on background colorCruachan2009-12-06T17:21:02Z2009-12-06T17:21:02Z<p>If you're manipulating color spaces for visual effect it's generally easier to work in HSL (Hue Separation and Lightness) than RGB. Moving colours in RGB to give naturally pleasing effects tends to be quite conceptually difficult, whereas converting into HSL, manipulating there, then converting back out again is more intuitive in concept and invariably gives better looking results. </p>
<p>Wikipedia has a <a href="http://en.wikipedia.org/wiki/HSL%5Fand%5FHSV" rel="nofollow">good introduction</a> to HSL and the closely related HSV. And there's free code around the net to do the conversion (for example <a href="http://www.mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript" rel="nofollow">here is a javascript implementation</a>)</p>
<p>What precise transformation you use is a matter of taste, but personally I'd have thought reversing the Hue and Lightness components would be certain to generate a good high contrast colour as a first approximation, but you easily go for more subtle effects. </p>
http://stackoverflow.com/questions/156994/whats-the-easiest-way-to-import-a-new-table-into-mysql-v5-from-csv/1848606#18486060Answer by Cruachan for What's the easiest way to import a new table into MySQL v5 from CSV?Cruachan2009-12-04T17:57:07Z2009-12-04T17:57:07Z<p><a href="http://www.toadsoft.com/toadmysql/" rel="nofollow">Toad for MySQL</a> will do this nicely, with considerable control over the import (selectively matching columns for example) and most enduringly it's free.</p>
<p>I've also used SQLYog, but you have to have the commercial version for this as import from file isn't available in the community edition.</p>
<p>Toad is an excellent bit of software which comes in versions for all major databases and I've used both the MSSQL and Oracle versions in the past too. Recommended.</p>
http://stackoverflow.com/questions/1839537/exclude-files-from-rewrite-rule-in-htaccess0exclude files from rewrite rule in .htaccessCruachan2009-12-03T12:12:17Z2009-12-03T16:46:55Z
<p>I'm modifying an existing website that uses a fairly complex .htaccess file to implement a custom MVC type framework so all urls are redirected to index.php?[some parameters] or a 404 page. I'd like to add ajax support to a limited area of the site using <a href="http://xajaxproject.org/" rel="nofollow">XAJAX</a>, and to implement that I need to place two files in the root which are ignored by the rewrite rules. How do I do that? </p>
http://stackoverflow.com/questions/1835103/php-and-mysql-warning-question-help/1835224#18352240Answer by Cruachan for PHP and MySQL warning question Help?Cruachan2009-12-02T19:24:52Z2009-12-02T19:24:52Z<p>May I suggest you take a step backwards and use a wrapper for mysqli? I've been using Rob Poyntz <a href="http://www.robpoyntz.com/blog/?p=189" rel="nofollow">codesense_mysqli</a> wrapper consistently in recent months and I've found it to be excellent for reducing the sheer amount of cruft that mysqli otherwise dumps into your code. </p>
<p>Of course it's good to know what's going on under the hood, but sometimes one just needs the cleanest method of getting the car to work.</p>
http://stackoverflow.com/questions/1827993/random-decision-algorithm/1828031#18280310Answer by Cruachan for Random Decision AlgorithmCruachan2009-12-01T18:38:14Z2009-12-01T18:38:14Z<p>As with most questions on randomness it's worth while asking if what you're looking for is true randomness, i.e. white noise, or turbulence (aka <a href="http://en.wikipedia.org/wiki/Perlin%5Fnoise" rel="nofollow">Perlin Noise</a>). Generally in most domains you're more likely to get something that looks like more 'natural' behaviour from turbulence than white noise.</p>
http://stackoverflow.com/questions/434647/essential-math-for-excelling-as-a-programmer/434783#43478317Answer by Cruachan for Essential Math for excelling as a Programmer?Cruachan2009-01-12T08:19:20Z2009-12-01T18:25:44Z<p>I think it can be more subtle than just the obvious 'Essential Maths'. I've done a fair amount of graphics coding - 2D and 3D, mainly non-gaming, quite a lot heavily fractal-based - and got by fine on the maths I'd been taught at college plus self-education of anything else I needed (like most coders I guess I'm pretty good with maths) - so the usual Linear Algebra, Logic, Basic Calculus etc - and I've never felt particularly constrained by what I knew or could teach myself.</p>
<p>However at one point I had the opportunity to work with a young guy who'd just done a joint maths/computing degree to develop an atmosphere engine (one that models light decay and other atmospheric/light interactions). What particularly impressed me was his <strong>familiarity</strong> with a vastly wider range of mathematical functions than a 'normal' coder - and consequently when a particular behaviour was required he was able to reach for a just the right mathematical function and implement that to solve a problem in hand. None of the maths he used was actually that complex - I could understand it fine when shown it - but rather because he knew his mathematical vocabulary with such depth and breadth he was able to reach for 'le mot juste' effortlessly whenever he needed it rather than floundering around looking for it like most of us.</p>
<p>So I have a suspicion that, certainly in some problem domains, and possibly a wider selection than is obvious, a greater familiarity with maths than is common knowledge would lead to the implementation of better algorithms. We may only see a problem in terms of the tools in the toolbox and don't actually realise we're missing anything we don't have.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use20Language features you should never use?Cruachan2008-11-23T11:41:20Z2009-11-26T23:08:49Z
<p>A recent post about the 'with' statement in Delphi - which in practice I never use because it trades clarity and ease of debugging for superficially 'cleaner' looking code got me thinking; what other language features, in any language, do you think should never be touched? - or at least avoided where at all possible?</p>
<p>The classic example of this would be the COBOL ALTER statement, which dynamically rewrites the executing code to change the destination of a GOTO. Use of ALTER was just about a sackable offense in every COBOL shop I ever worked in.</p>
<p>My supposition would be that as language design is better understood nowadays there may be fewer of these 'features' coming through - but is that true of the newer more exotic paradigms such as the functional programming languages? </p>
http://stackoverflow.com/questions/285442/css-cleaner7CSS cleanerCruachan2008-11-12T21:28:10Z2009-11-24T20:10:38Z
<p>I've taken over looking after a fairly complex site developed by another company, and frankly it's a mess. One of my problems is that there seems to have been no discipline when writing the html so that although they have used css extensively, there are half a dozen css files and a cursory analysis reveals that there is a significant number of styles in the css files that are not referenced by any of the html - rather they contain trail of false redesign starts and old, now redundant, styles mixed in with the current items.</p>
<p>I'd really like to clean all this up before moving onwards. Does there exists any tool, open source or otherwise, that can take a bunch of html and css files and cross reference them so as to highlight the cruft in the css? </p>
http://stackoverflow.com/questions/1778868/access-and-classic-asp-error-80004005-system-resource-exceeded0Access and classic ASP error 80004005 System resource exceeded.Cruachan2009-11-22T14:37:06Z2009-11-23T19:11:23Z
<p>An old site on shared hosting has developed an error when executing a simple SQL statement</p>
<pre><code>Microsoft JET Database Engine error '80004005'
System resource exceeded.
/411971/users1.asp, line 68
</code></pre>
<p>Line 68 is Set objCon = objCommand.Execute</p>
<p>The Access database isn't large (less than 2Mb), this is a single table query and the table only contains around 500 records. Field count is only about 20 too with no memo fields. Nothing has changed in the script. A compact/repair on the database has no effect, as does creating a new database and copying the table in question too it.</p>
<p>Looking round in the web this would appear to be most likely a web server issue rather than the code (and the behaviour would indicate this too) but I'm not finding anything conclusive - and knowing how shared hosting support works I'd like to have a definitive case before I go to them. Has anyone else seen this error/behaviour before and what was the problem/solution.</p>
<p>OUTCOME: I made sure I'd tried all the obvious approaches then emailed the ISP support who confirmed it was a server issue and restarted services, which fixed the problem</p>
http://stackoverflow.com/questions/1778478/c-unsigned-int-array-and-bit-shifts/1778511#17785110Answer by Cruachan for C unsigned int array and bit shiftsCruachan2009-11-22T11:58:02Z2009-11-22T11:58:02Z<p>Be aware that the C definition of the int data type does not specify how many bits it contains and is system dependent. An int was originally intended to be the "natural" word size of the processor, but this isn't always so and you could find int contains 16, 32, 64 or even some odd number like 24 bits. </p>
<p>The only thing you are guaranteed is an unsigned int can hold all the values between 0 and UINT_MAX inclusive, where UINT_MAX must be at least 65535 - so the int types must contain at least 16 bits to hold the required range of values.</p>
<p>So shifting an array of integer by 8 bits will change each int individually, but be aware that this shift will not necessarily be 'half of the array'</p>
http://stackoverflow.com/questions/1765667/mysql-date-function-running-insanely-slow-in-left-join/1765693#17656930Answer by Cruachan for MYSQL DATE function running insanely slow in LEFT JOINCruachan2009-11-19T18:55:22Z2009-11-19T18:55:22Z<p>It's probably because you're forcing a full table scan on both tables whereas previously you were using an index as part of the query. You need to examine the plan (and provide us with a little more detail too) so run it through EXPLAIN to see what's happening.</p>
http://stackoverflow.com/questions/1749453/access-against-mysql-or-postgres0Access against MySQL or Postgres?Cruachan2009-11-17T15:01:07Z2009-11-18T05:41:28Z
<p>I have a (potential) client who has had several a several Access applications previously developed which they want to upgrade to use a database back end. Unfortunately because of costs they don't want to use SQL Server, and SQL Express is likely inappropriate due to licensing restrictions.</p>
<p>They have mentioned using MySQL and an option - which I am sceptical of, and I'm considering recommending Postgres although my direct experience of that combination is limited.</p>
<p>Are either of these two databases feasible options? Which would be preferred and is there any other alternatives that should be considered?</p>
<p>ADDED: They are looking to replace the database but keep the Access front end. Apparently these would seem to be fairly simple applications but used across a large number of users (80+) hence the cost implications of SQL Server and unsuitability of SQL Express.</p>
http://stackoverflow.com/questions/1750670/how-do-you-specify-table-padding-in-css-table-not-cell-padding/1750732#17507320Answer by Cruachan for How do you specify table padding in CSS? ( table, not cell padding )Cruachan2009-11-17T18:12:20Z2009-11-17T18:12:20Z<p>Funny, I was doing precisely this yesterday. You just need this in your css file</p>
<pre><code>.ablock table td {
padding:5px;
}
</code></pre>
<p>then wrap the table in a suitable div</p>
<pre><code><div class="ablock ">
<table>
<tr>
<td>
</code></pre>
http://stackoverflow.com/questions/1714709/specific-programming-text-editor-for-simple-open-close-editing/1718161#17181610Answer by Cruachan for Specific programming text editor for simple open/close editingCruachan2009-11-11T21:21:37Z2009-11-11T21:21:37Z<p>Given you've got rid of the ESC issue I'd suggest taking a look at <a href="http://www.jedit.org/" rel="nofollow">jedit</a>. It's fairly lightweight (well, compared to a full IDE), nicely configurable and runs on any OS. Generally one of the first things I install on any box I'm going to be working on because I know I'll always have a familiar environment.</p>
http://stackoverflow.com/questions/1709075/database-design-exposing-primary-key/1710823#17108230Answer by Cruachan for Database design - exposing Primary Key Cruachan2009-11-10T20:05:49Z2009-11-10T20:05:49Z<p>The strong argument against using the primary key is it's easily hackable, well, hardly even hacking - just a matter of guessing input by changing the number a little. You're even exposing yourself unintentionally to a miss-type if the user tries to enter the link somewhere else manually - say if they print the email off to give to their boss who then types in the code for customer B instead of A.</p>
<p>That alone should be sufficient. At the very least I'd add a check-digit to the end of the code you send out to the users - the usual recursively add the digits algorithm is cheap and helps (a little).</p>
<p>Myself however I'd err towards using a generated GUID. Thanks to Microsoft and many others the concept of entering a 36 character string isn't as offensive to users now as it once was, most people will just be hitting a link anyway, and you have a simple, to hand. function that guarantees uniqueness so you're never going to trip over yourself in future. Simple and robust.</p>
http://stackoverflow.com/questions/1710538/small-footprint-php-framework-suggestions/1710579#17105791Answer by Cruachan for Small footprint php framework suggestionsCruachan2009-11-10T19:32:37Z2009-11-10T19:41:35Z<p>For this sort of sized site (and for somewhat larger ones too) I'd just use a template system and not worry about an MVC framework - even the lightest are lot of overhead for a few pages. I'd highly recommend <a href="http://www.tinybutstrong.com" rel="nofollow">TinyButStrong</a>. It's simply superb - perfect separation of code and design, powerful but not overly complex, and integrates perfectly with Dreamweaver so you, or your designer, can design templates wysiwyg.</p>
<p>I've had a fair bit of success combining this with <a href="http://www.xajaxproject.org/" rel="nofollow">XAJAX</a>, which isn't one of your more popular AJAX frameworks, but has some nice features. The beauty of just using a template system like TBS though is you can pull in whatever, and just whatever, libraries you need. Personally I dislike abstracting out SQL, but there's a fair number of stand-alone libraries to choose from if you so desire.</p>
http://stackoverflow.com/questions/1703674/wrestling-with-sql/1703722#17037224Answer by Cruachan for Wrestling with SQLCruachan2009-11-09T20:51:58Z2009-11-09T20:58:25Z<p>Try this</p>
<pre><code>SELECT distinct recipient_id
FROM Message
WHERE sender_id = @id
UNION
SELECT distinct sender_id
FROM Message
WHERE recipient_id = @id
</code></pre>
<p>The union clause will remove duplicates across the two queries. Actually looking at it you won't need the distinct's either as the union will do that for you too (anyone any idea if it's more efficient to use distinct to pre-filter the clauses or just let the union handle all the duplication?)</p>
http://stackoverflow.com/questions/1703492/templated-html-editor/1703582#17035821Answer by Cruachan for Templated HTML EditorCruachan2009-11-09T20:30:55Z2009-11-09T20:30:55Z<p>Dreamweaver will do this for you, it's had HTML templating of the type your describe built in from very early versions (because from how you phrase the question I do not think you're thinking along the lines of a PHP templating engine such as Smarty, but some sort of HTML layout formating)</p>
<p>Although I regularly look around for Dreamweaver replacements, and I've certainly been impressed by Aptana, I still tend to use Dreamweaver in my development stack simply because whereas I can compensate for some of the more coding-orientated features it misses, I find the WYSIWYG nature of the editor invaluable. </p>
http://stackoverflow.com/questions/1703088/what-is-the-state-of-non-objective-c-programming-for-iphone/1703193#17031933Answer by Cruachan for What is the state of non-Objective-C programming for iPhone?Cruachan2009-11-09T19:26:00Z2009-11-09T19:26:00Z<p>MonoTouch looks good, but it's excruciatingly slow. I've been playing around with XCode on my last generation MacBook for a while (ca 2007) and it's quick and responsive. I downloaded MonoTouch last week as I'd like to convert an existing large Mono codebase to run on the iPhone and whilst it installs and runs fine, using it is painful in the extreme as everything in the IDE is sludgy and unresponsive.</p>
<p>YMMV if you've newer and more powerful kit, but it doesn't bode well.</p>
http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1702698#17026981Answer by Cruachan for what happens to older software engineers?Cruachan2009-11-09T18:04:31Z2009-11-09T18:04:31Z<p>I'll be 50 in January</p>
<p>For the past 10+ years I've been working for myself as a consultant/developer. I've no shortage of clients, I've never advertised, and I make a quite comfortable living thank-you - maybe not as much as if I'd stayed in the run of the blue chips (where I got my first 15 years of experience) but I work in my own office on the side of my house in a quite stunning part of the Scottish Highlands (I can code and see both deer and eagles from my office window). My development kit has to be seen to be believed (<a href="http://www.codinghorror.com/blog/archives/000740.html" rel="nofollow">three monitors</a> pah, I have four).</p>
<p>The <em>great</em> advantage you have over young coders by the time you get past 40 is even the most geeky should by then have developed enough social skills to communicate well with clients. If you've been around for 25 years coding you should know what works and what doesn't <strong>in practice</strong> <em>and</em> be able to communicate that clearly. Of course a certain fascination with new tech is essential and positively cultivating a flexible, inquisitive outlook is necessary too, but isn't that a good thing in itself?</p>
<p>If you can find an employer that will let you stay relevant inside a company that's great, and I've certainly seen a few - I once worked as a developer for a large blue-chip that had a policy of keeping one or two old coders around who were allocated part of their time specifically for general mentoring and that worked an absolute treat - otherwise strike out an be your own boss as soon as you think you're reaching an issue working for employers. There's plenty of people who will appreciate you.</p>
http://stackoverflow.com/questions/1700903/sql-performance-issue-for-in-and-or/1700924#17009241Answer by Cruachan for SQL performance issue for IN and ORCruachan2009-11-09T13:15:27Z2009-11-09T13:15:27Z<p>The critical point in this case is not the use of IN or OR, but that you have the ID field appropriately indexed.</p>
http://stackoverflow.com/questions/1700824/firebird-or-nexusdb/1700887#17008871Answer by Cruachan for Firebird or NexusDBCruachan2009-11-09T13:08:15Z2009-11-09T13:08:15Z<p>I used NexusDB (well it's immediate predecessor) as the embedded server in a <a href="http://www.geomantics.com/genesis4.htm" rel="nofollow">GIS Visualization program</a> I wrote some time back now, and I found the system software to be generally excellent. I was certain throwing a lot of datapoints in and out of it (landscape height grids and other spatial data) and the performance was fine. We're two generations at least of CPU beyond that now too.</p>
<p>I evaluated Firebird at the same time, but as I recall NexusDB simply integrated more cleanly and easily (in particular deployment was simpler) and they offered similar performance so I went with that. </p>
http://stackoverflow.com/questions/1657413/nested-or-not-nested-if-blocks/1657531#16575312Answer by Cruachan for Nested or not nested if-blocks?Cruachan2009-11-01T16:10:10Z2009-11-02T09:02:33Z<p>Any modern compiler, and by that I mean anything built in the past 20 years, will compile these to the same code. </p>
<p>As to which you should use then it depends whichever is more readable and logical in the context of the project). Generally I would go for the second myself, but that would vary.</p>
<p>A strong point worth consideration though arises from maintenance. One of the more common bugs I have hunted down is a dangling if/else in the middle of a block of nested ifs. This arises if you have a complex series of if else conditions which has been amended by different programmers over a period - often several years. For example using pseudo-code for a simple case:</p>
<pre><code>IF condition_a
IF condition_b
Do something
ELSE
Do something
END IF
ELSE
IF condition_b
Do something
END IF
END IF
</code></pre>
<p>you'll notice for the combination !condition_a && !condition_b the code will fall through the conditions doing nothing. This is quite easy to spot for just the pair of conditions, but can get very easy to miss very quickly once you have 3, 4 or more if/else conditions to check. What commonly happens is the nested structure is correct when first coded, but becomes incorrect (in terms of the business outputs) at some later point because the maintenance programmers will not understand or allow for the full range of options.</p>
<p>It's therefore generally more robust, over time, to code using combined conditions in the if structure adopting the flatest feasible structure and keep nesting to a minimum, hence with your example as there's no logical reason not to combine the two conditions into a single statement then you should do so</p>
http://stackoverflow.com/questions/1654023/does-mono-run-on-64-bit-linux-any-issues0does mono run on 64-bit linux? any issues?Cruachan2009-10-31T10:43:01Z2009-10-31T17:57:54Z
<p>I need to run/develop a mono-based application on a new dedicated server, and the ISP I usually use only offers 64bit Linux (of which I'll take Ubuntu)</p>
<p>Is there any problems running mono on this configuration?</p>
http://stackoverflow.com/questions/1638972/is-there-a-very-lightweight-ide-for-net/1639024#16390240Answer by Cruachan for Is there a *very* lightweight IDE for .net?Cruachan2009-10-28T18:05:42Z2009-10-28T18:05:42Z<p><a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a> is pretty nice. I've not used it for C# (I mainly work on the OS stack) but I used it for small console IronPython program a couple of months back and it was a joy to work with.</p>
http://stackoverflow.com/questions/1638602/web-development-should-i-learn-php/1638966#16389660Answer by Cruachan for Web development: Should I learn PHP?Cruachan2009-10-28T17:57:22Z2009-10-28T17:57:22Z<p>You should certainly know it, not least because there's a wealth of code out there which uses it and this can be a major advantage when assembling the code for a project (who writes everything from scratch nowadays?). And if you already code C++ and Java reasonably well you're pretty much innoculated to the badness of PHP already.</p>
<p>I pretty often make my language choice based on what utilities are available in what language for reuse in a particular project. Any reasonably competent coder should be able to get to a 'comfortable' stage with most languages pretty quickly. Expertese takes longer and much practice of course, but for many projects 'comfortable' is just fine.</p>
http://stackoverflow.com/questions/1632019/sql-write-protect-row-of-data-possible/1638729#16387291Answer by Cruachan for SQL: "Write Protect" row of data possible?Cruachan2009-10-28T17:16:41Z2009-10-28T17:45:10Z<p>Do this by relational integrity - do <strong>NOT</strong> use triggers as they're always a real pain to maintain afterwards (they have their place, just not here). Relation integrity will do everything you need.</p>
<p>Using relational integrity can be quite elegent, but what you need to do is slightly counter-intuitive so easily missed.</p>
<p>Create your main table table, tblMain, with a numeric primary key. For simplicity I tested this with a table with one column, intID, and I populated it with values 0,1 and 2.</p>
<p>Next create a second table, tblGuard, with a similar numeric primary key. I added one row into this table, value 1.</p>
<p>Now the reverse logic bit. Create a foreign key on the <strong>tblGuard</strong> table that reference the tblMain table </p>
<pre><code>ALTER TABLE [dbo].[tblGuard] ADD
CONSTRAINT [FK_tblGuard_tblMain] FOREIGN KEY
(
[intID]
) REFERENCES [dbo].[tblMain] (
[intID]
)
</code></pre>
<p>The constraint will ensure that the row with intID value 1 cannot be deleted from the tblMain table because the tblGuard table referential integrity requires that the value 1 exists in tblMain. This works with deletes and truncates.</p>
http://stackoverflow.com/questions/738106/recommended-live-chat-software-to-add-to-a-website0Recommended Live Chat software to add to a website?Cruachan2009-04-10T16:02:10Z2009-10-27T02:15:50Z
<p>I need to add Live Chat support to a clients e-commerce site. It doesn't need to be too complex as the website is only managed by a couple of people. A FOSS solution would be prefered, but that's not a showstopper. </p>
<p>The site is coded in PHP, but Python/Ruby/Perl would be available for this if necessary. and we're running on a dedicated Ubuntu Server.</p>
<p>Any recommendations or otherwise?</p>
http://stackoverflow.com/questions/1457097/lightbox-not-working-in-ajax-updater-div-prototype/1458660#1458660Comment by Cruachan on Lightbox not working in Ajax.Updater div (prototype)Cruachan2009-12-07T13:53:03Z2009-12-07T13:53:03ZThanks for this, it just solved the exact same problem for me. Also in my case I needed to remove the existing events as if not the lightbox was called twicehttp://stackoverflow.com/questions/1855967/how-do-i-find-good-graphic-designers-for-my-web-application-projectsComment by Cruachan on How Do I Find Good Graphic Designers for my Web Application Projects?Cruachan2009-12-06T17:48:46Z2009-12-06T17:48:46ZPlease, DO NOT CLOSE THIS. I'm aware it's subjective, but I've run across the exact same problem on countless occasions.http://stackoverflow.com/questions/1805612/weird-sql-server-behaviorComment by Cruachan on Weird SQL Server behaviorCruachan2009-11-26T21:07:50Z2009-11-26T21:07:50ZWhy do you think it's weird?http://stackoverflow.com/questions/1778868/access-and-classic-asp-error-80004005-system-resource-exceeded/1778951#1778951Comment by Cruachan on Access and classic ASP error 80004005 System resource exceeded.Cruachan2009-11-22T15:28:28Z2009-11-22T15:28:28ZOh absolutely and amen to that. I didn't write this and in fact I'm working on a replacement system, but we need to fix the current issue in the meantimehttp://stackoverflow.com/questions/1778868/access-and-classic-asp-error-80004005-system-resource-exceededComment by Cruachan on Access and classic ASP error 80004005 System resource exceeded.Cruachan2009-11-22T15:26:02Z2009-11-22T15:26:02ZSet objCon = objCommand.Executehttp://stackoverflow.com/questions/1778870/how-can-i-connect-a-snow-leopard-computer-to-a-windows-7-homegroupComment by Cruachan on How can I connect a Snow Leopard computer to a Windows 7 homegroup?Cruachan2009-11-22T14:43:33Z2009-11-22T14:43:33ZDefiantly Superuserhttp://stackoverflow.com/questions/1393069/what-was-trickiest-code-youve-ever-written/1393091#1393091Comment by Cruachan on What was trickiest code you've ever written?Cruachan2009-11-21T20:14:43Z2009-11-21T20:14:43ZActually you know, if this was the first ever code you wrote there would be an argument for saying it's the trickiest 'cause you've got to grasp the concept of a programming language to get this farhttp://stackoverflow.com/questions/1765667/mysql-date-function-running-insanely-slow-in-left-joinComment by Cruachan on MYSQL DATE function running insanely slow in LEFT JOINCruachan2009-11-19T18:53:24Z2009-11-19T18:53:24ZHow many rows in each table and which columns are indexed?http://stackoverflow.com/questions/1750214/can-i-use-js-encryption-instead-of-ssl-for-credit-card-paymentsComment by Cruachan on Can I use JS encryption instead of SSL for credit card payments?Cruachan2009-11-17T18:03:51Z2009-11-17T18:03:51ZIf this doesn't make the Podcast I'll be very surprised - question of the week please Joel/Jeff!!http://stackoverflow.com/questions/1703088/what-is-the-state-of-non-objective-c-programming-for-iphone/1703193#1703193Comment by Cruachan on What is the state of non-Objective-C programming for iPhone?Cruachan2009-11-11T15:09:18Z2009-11-11T15:09:18ZI replied to @minguel but heard nothing backhttp://stackoverflow.com/questions/1245463/how-do-you-become-a-programmer/1245521#1245521Comment by Cruachan on How do you become a programmer?Cruachan2009-11-10T19:47:39Z2009-11-10T19:47:39ZThis is true, to some extent. However it's a fact that not everyone can be taught to code. It's not a superior/inferior thing it's just a that some people have minds which work the right way to code, but most don't. http://stackoverflow.com/questions/1703492/templated-html-editor/1703582#1703582Comment by Cruachan on Templated HTML EditorCruachan2009-11-10T13:18:03Z2009-11-10T13:18:03ZI don't know, because I work almost exclusively in the code editor part of Dreamweaver using the wysiwyg panel for previewing. I find it's just a lot faster and more integrated than using Aptana or whatever then previewing in a browser window. The latest version is pretty neat for editing css in a similar wysiwyg manner to htmlhttp://stackoverflow.com/questions/1703674/wrestling-with-sql/1703722#1703722Comment by Cruachan on Wrestling with SQLCruachan2009-11-09T21:11:28Z2009-11-09T21:11:28Zheh, I posted my original answer before he added the rider about created. But I still think using this as a view and joining back is simpler to understand for ongoing maintenance purposeshttp://stackoverflow.com/questions/1703674/wrestling-with-sql/1703722#1703722Comment by Cruachan on Wrestling with SQLCruachan2009-11-09T21:02:22Z2009-11-09T21:02:22ZUnless there are tens of thousands of rows involved then there's not going to be a big efficiency hit and having a view of distinct ids available for use elsewhere is nicely modular and easy to understand http://stackoverflow.com/questions/1703674/wrestling-with-sql/1703722#1703722Comment by Cruachan on Wrestling with SQLCruachan2009-11-09T21:00:06Z2009-11-09T21:00:06ZMyself I'd just make a view then use that to join back to the tables for any additional fields