User Richard Harrison - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:05:04Z http://stackoverflow.com/feeds/user/19624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/448284/how-can-i-use-awk-or-perl-to-increment-a-number-in-a-large-xml-file/448369#448369 0 Answer by Richard Harrison for How can I use awk or Perl to increment a number in a large xml file? Richard Harrison 2009-01-15T20:38:02Z 2009-11-24T18:20:58Z <p>Something akin to the following will work. It may need tweaking if there is extra spacing, but that is left as an exercise for the reader.</p> <pre><code>function update_after(in_string, locate_string, delta) { local_pos = index(in_string,locate_string); leadin = substr(in_string,0,local_pos-1); leadout = substr(in_string,local_pos+length(locate_string)); new_value = leadout+delta; quote_pos = index(leadout,"\""); leadout = substr(leadout, quote_pos + 1); return leadin locate_string new_value"\"" leadout; } /^ *\&lt;VALUE/{ print update_after($0, "DECIMAL_VALUE=\"",0.4); } </code></pre> http://stackoverflow.com/questions/621690/boolean-column-in-microsoft-access-and-filtering-data-using-linq/621740#621740 0 Answer by Richard Harrison for Boolean column in Microsoft Access and filtering data using linq Richard Harrison 2009-03-07T11:50:32Z 2009-03-07T11:50:32Z <p>As Russ noted it looks like a problem with different representation of booleans.</p> <p>Try changing the "Where p.active" into "Where p.active &lt;> 0"</p> http://stackoverflow.com/questions/611873/ruby-like-question-make-this-function-shorter-actionscript-3/614770#614770 1 Answer by Richard Harrison for Ruby-like Question: Make this function shorter (ActionScript 3) Richard Harrison 2009-03-05T13:36:20Z 2009-03-05T13:36:20Z <p>I've always done this by taking a string that is the maximum padded width of zeros containing all zeros, then appeneding the string to padded to the end of the zeros string and then using substring to get the right hand Length digits.</p> <p>Something like:</p> <pre><code>function pad(num:int, length:unit):String{ var big_padded:String "0000000000000000000000000000" + num.toString(); return big_padded.substring(big_padded.length - length); } </code></pre> http://stackoverflow.com/questions/613682/punish-developers-or-fix-it-up-automatically-trigger-vs-constraint/613796#613796 1 Answer by Richard Harrison for "Punish" developers or fix it up automatically? Trigger vs constraint Richard Harrison 2009-03-05T06:44:01Z 2009-03-05T06:44:01Z <p>This is best implemented as a constraint, it avoids extra load and does what you want - force the data to be in the format you require.</p> <p>I think it's the wrong approach to force conversion in the database because data that can be converted with no loss of integrity should be handled in the database layer. If the case is insignificant then handle as such - and a constraint helps to catch errors.</p> <p>Adding a case insensitive index maybe a better solution (cf. <a href="http://stackoverflow.com/questions/12855/database-case-insensitive-index">Database Case Insensitive Index</a>)</p> http://stackoverflow.com/questions/540848/optimize-mysql-search-process/540914#540914 3 Answer by Richard Harrison for Optimize MySQL search process Richard Harrison 2009-02-12T11:28:05Z 2009-02-18T10:05:40Z <p>The first method will be faster - but IMO it's not the right way of doing it. I'm in agreement with tehvan about that.</p> <p>I'd recommend keeping the item_id as is, but add two extra fields one for the code and one for the size, then you can do:</p> <pre><code>select * from items where item_code = 'S' and item_size = 'm' </code></pre> <p>With indexes the performance will be greatly increased, and you'll be able to easily match a range of sizes, or codes.</p> <pre><code>select * from items where item_code = 'S' and item_size IN ('m','s') </code></pre> <p>Migrate the db as follows:</p> <pre><code>alter table items add column item_code varchar(1) default ''; alter table items add column item_size varchar(1) default ''; update items set item_code = SUBSTRING(item_id, 1, 1); update items set item_size = SUBSTRING(item_id, 2, 1); </code></pre> <p>The changes to the code should be equally simple to add. The long term benefit will be worth the effort.</p> <p><hr /></p> <p>For scenario 2 - that is not an efficient way of storing and retrieving data from a database. When used in this way the database is only acting as a storage engine, by encoding multiple data into fields you are precluding the relational part of the database from being useful.</p> <p>What you should do in that circumstance is to have another table, call it 'items_collected'. The schema would be along the lines of</p> <pre><code>CREATE TABLE items_collected ( id int(11) NOT NULL auto_increment KEY, userid int(11) NOT NULL, item_code varchar(10) NOT NULL, FOREIGN KEY (`userid`) REFERENCES `user`(`id`), FOREIGN KEY (`itemcode`) REFERENCES `items`(`item_code`) ); </code></pre> <p>The foreign keys ensure that there is <a href="http://en.wikipedia.org/wiki/Referential_integrity" rel="nofollow">Referential integrity</a>, it's essential <a href="http://rapidapplicationdevelopment.blogspot.com/2007/07/referential-integrity-data-modeling.html" rel="nofollow">to have referential integrity</a>.</p> <p>Then for the example you give you would have multiple records.</p> <pre><code> user_id | username | items_collected U0001 | Alex | Ss001 U0001 | Alex | Tm002 U0002 | Daniel | Sb002 U0002 | Daniel | Tb001 U0003 | Michael | ... U0004 | Thomas | ... </code></pre> http://stackoverflow.com/questions/547270/what-is-the-time-it-takes-you-to-write-a-line-of-code/547368#547368 0 Answer by Richard Harrison for What is the time it takes you to write a line of code? Richard Harrison 2009-02-13T19:37:57Z 2009-02-13T19:37:57Z <p>To give an accurate answer appropriate for the question:</p> <p>Coding rate varies between 0 and infinity in a ratio roughly equivalent to the complexity of the problem being solved and how well the brain is working.</p> http://stackoverflow.com/questions/450835/how-do-you-stop-scripters-from-slamming-your-website-hundreds-of-times-a-second/547330#547330 1 Answer by Richard Harrison for How do you stop scripters from slamming your website hundreds of times a second? Richard Harrison 2009-02-13T19:26:17Z 2009-02-13T19:26:17Z <p>I'm in agreement with OP here - no captcha's please - it's not a very woot way of doing things.</p> <p>Firstly set a few bot traps. I'd mention BOC more often on the home page, to trap the bots into looking as bots aren't intelligent, so again wording different each time e.g. "BOC complaints up!" - so bots just scanning for keywords will get trapped.</p> <p>However, I think the real issue here is twofold, firstly the performance issues that you have need to be addressed, today it's bots causing a problem, but it indicates to me that there is a performance issue to be addressed.</p> <p>Secondly it's a business opportunity to shift some real crap at a profit. So I'd keep with the overall woot style and state "we check for bots. If we think you are a bot you will get a box of botcrap."</p> <p>The bot checking would be done offline sometime after the sale has been made, using bot traps, IP numbers, cookies, sessions, browser strings etc. Do some serious analysis with the data that you've got of purchasers to decide who gets botcrap. If you decide to ship botcrap - then you can free up some normal crap to sell to someone else.</p> http://stackoverflow.com/questions/541472/php-and-outputting-one-to-many-results/541557#541557 0 Answer by Richard Harrison for PHP and outputting one-to-many results Richard Harrison 2009-02-12T14:43:22Z 2009-02-12T14:58:08Z <p>use an array keyed on the id and url iterate through the values and add to it as follows:</p> <pre><code>$link_categories[ $id ] .= $category." "; $result = mysql_query("SElECT * FROM LINKS"); $link_categories = array(); while ($row = mysql_fetch_array($result,MYSQL_ASSOC)) { if (!isset($link_categories[$row['link']])) $link_categories[$row['link']] = " "; else $link_categories[$row['link']] .= " "; $link_categories[$row['link']] .= $row['category']; } print_r($link_categories); </code></pre> <p>Results in:</p> <pre><code>Array ( [http://a.com] =&gt; test evaluate performance [http://b.com] =&gt; classify reduce [http://c.com] =&gt; allocate ) </code></pre> <p>This isn't the 'right' way of doing this - really the relationships should be defined in a seperate table with a 1-many relationship. </p> http://stackoverflow.com/questions/523222/coding-priorities-performance-maintainability-reusability/523702#523702 1 Answer by Richard Harrison for Coding Priorities: Performance, Maintainability, Reusability? Richard Harrison 2009-02-07T12:56:38Z 2009-02-07T12:56:38Z <p>I think you missed one from the list: reliability;</p> <p>so my order is</p> <ul> <li>Reliability and accuracy</li> <li>Maintainability</li> <li>Reusability</li> <li>Performance</li> </ul> <p>It doesn't matter how fast code is when it isn't right, firstly the code has to be reliable. </p> <p>Performance is at the bottom of the list. Never optimise too early, and only improve performance when performance is a problem. </p> <p>I've worked on real-time systems including flight simulation, and even in that environment performance is taken into consideration but is not an overriding primary concern <sup>1</sup>. </p> <p>I would say that in my experience I've only ever had to optimise less than 1% of the code that I've written.</p> <p><hr /></p> <p><sup>1</sup> sometimes something isn't quick enough, and of course performance is taken into consideration when designing and coding, it's just not at the top of the list.</p> http://stackoverflow.com/questions/499687/dns-http-requests/499717#499717 3 Answer by Richard Harrison for DNS HTTP Requests Richard Harrison 2009-01-31T22:35:19Z 2009-01-31T22:35:19Z <p>dev.example.com may be resolved (if it is not already in the local cache) by sending it to your DNS server (which will almost certainly refer to another DNS Server).</p> <p>Only the "dev.example.com" is sent, the rest will be passed only to the resolved IP number as an HTTP request.</p> <p>So, you do not need to hide any parameters, except of course that these parameters could well end up on another website if a user visits it from your page (as a referer). If these parameters are really sensitive encode them or (ab)use POST,</p> http://stackoverflow.com/questions/499411/sql-what-do-you-use-to-store-a-ratio-percentage-in-a-database/499452#499452 0 Answer by Richard Harrison for SQL: What do you use to store a ratio (percentage) in a database? Richard Harrison 2009-01-31T20:07:32Z 2009-01-31T20:07:32Z <p>I never use floats in a database, maybe it's an old habit that technology has addressed, I'm not 100% sure. </p> <p>Either ints, scaled ints or decimals. There are times when a rounding error seems insignificant but it could fail matches on certain values or introduce cumulative errors.</p> http://stackoverflow.com/questions/499417/how-can-i-have-subversion-keep-only-the-latest-version-of-a-file/499445#499445 1 Answer by Richard Harrison for How can I have Subversion keep only the latest version of a file? Richard Harrison 2009-01-31T20:04:23Z 2009-01-31T20:04:23Z <p>You can't - and rightly so. </p> <p>If a file doesn't change then only one version is stored. If a file does change then surely the point of using version control of any form is so that you can retrieve and earlier version. It may seem now that you would never want to do this, but the chances are that at some point in the future you will want to retrieve it.</p> <p>If space is a problem get a bigger disk or upgrade your plan. It will be worth it in the long run.</p> http://stackoverflow.com/questions/459669/do-you-only-update-the-changed-fields-or-all-the-fields/459689#459689 2 Answer by Richard Harrison for Do you only update the changed fields or all the fields? Richard Harrison 2009-01-20T00:06:05Z 2009-01-20T00:12:12Z <p>I think it's worth changing - but probably not worth doing a select before insert.</p> <p>I only update the fields that have changed, it's part of the operation of my DbEntity class which follows an activerecord pattern. It costs little extra to do this because I hold the current record and original records -simply copying whenever a record is loaded.</p> <p>Reasons are brevity - not really performance. Also you can check for concurrent modification by adding a where clause on the old value of the updated fields and throw the appropriate error. </p> <p>In the write/update method:</p> <pre><code>$s1 = ""; foreach ($this-&gt;record as $key =&gt; $value) { // only update fields that have been changed if ($value != $this-&gt;orig_record[$key]) { $s1 .= $comma."`$key`='".mysql_real_escape_string($value)."'"; $comma = ", "; } } $query = "UPDATE ".$this-&gt;table." SET $s1 where {$this-&gt;id_field}='".$this-&gt;get_keyfield()."'"; $query .= $this-&gt;extra_sql_update; mysql_query($query); $ar = mysql_affected_rows(); // // the number of affected rows is actually those changed by the update operation, which will // either be zero, or 1. If the query affects more than one row then we have a problem. if ($ar &lt; 0 || $ar &gt; 1) { cbf_error("cbf_dbentity: {$this-&gt;table} :: only one row (not $ar) must be affected by an insert operation. $query", E_USER_ERROR); } else { $new_id = $this-&gt;get_keyfield(); GlobalEventBus::notify_all(new AuditLogSQL($this-&gt;table, "update", $query)); } $this-&gt;orig_record = Array(); foreach ($this-&gt;record as $key =&gt; $value) $this-&gt;orig_record[$key] = $value; // // sanity check - ensure that what we have just written is actually there. $this-&gt;load($new_id); foreach ($this-&gt;orig_record as $key =&gt; $value) if (trim($this-&gt;record[$key]) != trim($value) &amp;&amp; (!$this-&gt;record[$key] == "0" &amp;&amp; $value="")) cbf_error("cbf_dbentity: {$this-&gt;table} :: record differs during write after reload: field $key was \"$value\", after write it is now \"". $this-&gt;record[$key]."\"",E_USER_ERROR); </code></pre> <p>In the load method</p> <pre><code>$this-&gt;orig_record = Array(); foreach ($this-&gt;record as $key =&gt; $value) $this-&gt;orig_record[$key] = $value; </code></pre> http://stackoverflow.com/questions/454836/sum-value-from-mysql-in-php/454846#454846 4 Answer by Richard Harrison for sum value from mysql in php Richard Harrison 2009-01-18T09:05:15Z 2009-01-18T10:29:05Z <p>Get the database to do the work: </p> <pre><code>select sum(CASE WHEN package = 3 THEN 5 ELSE 0 END) + sum(CASE WHEN package = 4 THEN 10 ELSE 0 END) + sum(CASE WHEN package = 1 THEN 1 ELSE 0 END) AS total from table_name </code></pre> <p>The right way of doing it, if you've got more than a few values be to modify the table to contain the amount field so you can do:</p> <pre><code>select sum(amount) from table_name </code></pre> <p>Alternatively have another table that you contained the relationship between the values (package, amount), and then do</p> <pre><code>select sum(package_amount) from table_name, lookup_values where table_name.package = lookup_values.package </code></pre> <p>Or, if you really want to do it in PHP:</p> <pre><code>$amount = array(3=&gt;5, 4=&gt;10, 1=&gt;1); // define the amount of each value $result = mysql_query("SELECT id FROM table_name"); $sum = 0; while ($row = mysql_fetch_assoc($result)) { $sum += $amount[ $row['id'] ]; } </code></pre> http://stackoverflow.com/questions/454811/opening-an-opendialog-from-vis-c-console-app/454845#454845 3 Answer by Richard Harrison for Opening an OpenDialog from Vis C++ console app? Richard Harrison 2009-01-18T09:04:07Z 2009-01-18T09:04:07Z <p>There isn't really any difference between a console application and a GUI application, except for entry point (WinMain in a 'GUI' app), and a console app will have a console window opened during startup if not started from a console.</p> <p>All of the Win32 API is available, so you need to use the <a href="http://msdn.microsoft.com/en-us/library/ms646927.aspx" rel="nofollow">GetOpenFileName</a> call, as follows:</p> <blockquote> <p>OPENFILENAME ofn; char <em>FilterSpec ="Object Files(</em>.obj)\0*.obj\0Text Files(<em>.txt)\0</em>.txt\0All Files(<em>.</em>)\0*.*\0"; char *Title ="Open...."; char szFileName[MAX_PATH]; char szFileTitle[MAX_PATH]; int Result;</p> <p>*szFileName = 0; *szFileTitle = 0;</p> <pre><code>/* fill in non-variant fields of OPENFILENAME struct. */ ofn.lStructSize = sizeof(OPENFILENAME); ofn.hwndOwner = GetFocus(); ofn.lpstrFilter = FilterSpec; ofn.lpstrCustomFilter = NULL; ofn.nMaxCustFilter = 0; ofn.nFilterIndex = 0; ofn.lpstrFile = szFileName; ofn.nMaxFile = MAX_PATH; ofn.lpstrInitialDir = "."; // Initial directory. ofn.lpstrFileTitle = szFileTitle; ofn.nMaxFileTitle = MAX_PATH; ofn.lpstrTitle = Title; ofn.lpstrDefExt = default_extension; ofn.Flags = OFN_FILEMUSTEXIST|OFN_HIDEREADONLY; if (!GetOpenFileName ((LPOPENFILENAME)&amp;ofn)) { return (-1); // Failed or cancelled } else { this-&gt;filename.Set(szFileName); } </code></pre> </blockquote> http://stackoverflow.com/questions/446027/can-mysql-5-0-community-edition-scale-up-to-meet-a-large-user-base/446053#446053 0 Answer by Richard Harrison for Can MySQL 5.0 Community Edition scale up to meet a large user base? Richard Harrison 2009-01-15T08:45:45Z 2009-01-15T08:45:45Z <p>MySQL will cope with heavy usage. </p> <p>More importantly your system should be structured in such a way that you place the minimum load on the database and so that you could change the database if needed.</p> http://stackoverflow.com/questions/445911/piracy-protection-using-usb-based-hardware-solution/446043#446043 2 Answer by Richard Harrison for Piracy protection using USB based hardware solution Richard Harrison 2009-01-15T08:43:14Z 2009-01-15T08:43:14Z <p>I've used such products and they are a pain. I personally wouldn't spend any money at all on a hardware scheme or a 3rd party protection scheme. </p> <p>Do not be tempted by a hardware based protection scheme.</p> <p>The only things that are certain:</p> <ul> <li>Any protection schemes will be cracked.</li> <li>You will annoy legitimate customers</li> <li>You will lose time supporting problems related to the protection</li> <li>There will be problems when a legitimate customer cannot use your product because of the protection.</li> <li>It is a better investment to use any time and funds that you would have spent on protection on improving the product or finding more customers.</li> </ul> <p>The <strong>golden rule</strong> of protection is to make it painless for your customers. Hardware protection schemes make life inconvenient for your customers and easier for those who've ripped you off, which clearly isn't right.</p> http://stackoverflow.com/questions/199331/is-it-worth-learning-bash-when-i-know-perl/199368#199368 6 Answer by Richard Harrison for Is it worth learning BASH when I know Perl? Richard Harrison 2008-10-13T23:03:22Z 2009-01-13T00:21:25Z <p>You shouldn't feel that you have to learn something just because other people use it. I've been using unix since 1988 and have probably written less than 1000 lines of shell script.</p> <p>All I use bash (ksh) for is as a shell - the scripting side is not useful - simple stuff is done with awk and pipes, and complex stuff requires C. Mostly awk though.</p> <p>I can't think of a compelling reason to learn how to write bash scripts - beyond the basics.</p> <p>The beauty and power of unix is that we can use whatever we are comfortable with and achieve about the same results.</p> http://stackoverflow.com/questions/437416/c-builder-or-visual-studio-for-native-c-development/437572#437572 5 Answer by Richard Harrison for C++ Builder or Visual Studio for native C++ development? Richard Harrison 2009-01-13T00:20:06Z 2009-01-13T00:20:06Z <p>The simple answer is that for pure C++ development it has to be VC++.</p> <p>To expand: as a pure C++ development environment you simply cannot beat VC++, the debugger is better, the IDE is superior (all IMHO, of course). I've used it to develop libraries that I then use from C++Builder because of these reasons.</p> <p>However once you start into UI development, or anything that you can solve using the VCL or components C++B is the better choice. Compared to the VCL, MFC or ATL are horrible by comparison, and so that leaves you to use .NET, which is probably a better option, but not </p> <p>I'm not sure that I'd recommend building a new product using C++B or Delphi based on the last few years of 'direction' from the vendors. However that appears to be changing for the better, but until a little more time has passed it is hard to tell how the promises translate into reality.</p> http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/432961#432961 3 Answer by Richard Harrison for Significant new inventions in computing since 1980 Richard Harrison 2009-01-11T13:52:50Z 2009-01-12T00:09:09Z <p>The changes to infrastructure to allow accessible internet from home and office.</p> <p>Documented and accepted standards from W3C through to APIs</p> <p>Apart from that most of what we'd think of as new dates back a lot longer than you'd think (e.g. GUI, OOP).</p> http://stackoverflow.com/questions/432982/is-it-feasible-to-convert-a-desktop-based-mfc-c-application-to-a-web-app/434074#434074 3 Answer by Richard Harrison for Is it feasible to convert a desktop based MFC C++ application to a web app Richard Harrison 2009-01-12T00:01:38Z 2009-01-12T00:01:38Z <p>The short answer is that it is feasible, don't use java, and that it will be a considerable amount of work.</p> <p>A good few years ago (around the time of IE5) I was asked by a client to answer a similar question to this one. The application in question was a well structured three tier desktop application.</p> <p>The upshot of the study was that it is possible. The options considered were Java, and CGI, using either CORBA or COM/DCOM. Building a Java applet was considered, but ruled out because it wouldn't have been too different to the C++ desktop version.</p> <p>The approach taken was to take the backend tier and turn that into a server application sitting behind a cgi layer. The UI was largely re-written using what we now know as Ajax, i.e. Javascript and HTML. The UI was split between browser elements and server elements.</p> <p>I did consider writing a tool to convert documents, views and dialogs and wrapping these into a compatible format, however after much analysis it became obvious that it wasn't really feasible to do this because the MFC is actually quite closely coupled to the Win32 API, and itself. Depending on the amount of dialogs it may be worth writing something to convert these.</p> <p>I did find, that even in a well structured system that a fair bit of code that should have been in the backend had leaked into the front end. </p> <p>If I were to do the same thing now, there are some excellent javascript libraries that would help, but I'd still take the same approach of doing as much as possible in the browser using Ajax, with possibly something like <a href="http://qooxdoo.org/" rel="nofollow">qooxdoo</a> or <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>. I'd also probably move look at using <a href="http://en.wikipedia.org/wiki/Xul" rel="nofollow">XUL</a> and moving at least most of the dialogs into the backend.</p> <p>The only thing that concerns me from your list of requirements is the 3d vector graphics, although there maybe some mileage in <a href="http://ctho.ath.cx/toys/3d.html" rel="nofollow">this JS toy</a> or <a href="http://www.wxs.ca/js3d/" rel="nofollow">JS3D</a>.</p> <p>This is only a brief summary, as I'm trying to avoid writing a dissertation.</p> http://stackoverflow.com/questions/432835/how-do-you-ensure-that-you-as-programmer-have-written-quality-c-code/432914#432914 2 Answer by Richard Harrison for How do you ensure that you as programmer have written quality C code? Richard Harrison 2009-01-11T13:18:36Z 2009-01-11T13:18:36Z <p>Use a static analysis tool, traditionally called lint, however I've used <a href="http://splint.org/" rel="nofollow">splint</a> which is good. See recommendations in this <a href="http://stackoverflow.com/questions/147864/tools-for-ensuring-c-code-quality">question</a>. Personally I'd recommend enabling warnings and fixing them.</p> <p>In terms of the rules </p> <ul> <li>Do not trust input data - validate everything, size, type, content.</li> <li>Protect against buffer overruns - strcat and many others aren't safe.</li> <li>Do use unit testing,<a href="http://www.ddj.com/windows/208403755" rel="nofollow">ddj article</a>.</li> <li>Do get your code reviewed by someone else</li> <li>Do not make assumptions.</li> <li>Do keep functions short, and test each one thoroughly.</li> <li>Use meaningful names.</li> <li>Write readable code.</li> <li>Don't be lazy - if you need to change a something to make it more meaningful then do it sooner rather than later.</li> </ul> <p>Edit: Specific to C, this list of <a href="http://www.greenend.org.uk/rjk/2001/02/cfu.html" rel="nofollow">C gotchas</a> is essential reading, and even though it is for C++ it is worth going through the <a href="https://www.securecoding.cert.org/confluence/pages/viewpage.action?pageId=637" rel="nofollow">CERT C++ Secure Coding Standard</a></p> http://stackoverflow.com/questions/432649/need-a-time-management-solution/432754#432754 1 Answer by Richard Harrison for Need a time management solution Richard Harrison 2009-01-11T11:08:00Z 2009-01-11T11:08:00Z <p>I rather like <a href="http://www.slifelabs.com/" rel="nofollow">Slife</a>, it gives me enough information to make timesheets. </p> http://stackoverflow.com/questions/419312/how-a-windows-developer-can-most-easily-get-his-software-to-work-well-under-wine/427250#427250 3 Answer by Richard Harrison for How a Windows Developer can most easily get his software to work well under Wine Richard Harrison 2009-01-09T06:33:40Z 2009-01-10T13:56:22Z <p>I was rather surprised when one of my Delphi5 applications just worked out of the zip.</p> <p>The only real way this is going to work is to do it yourself, i.e. install vmware and a linux distro as Sean suggested. Linux isn't actually that hard, and we're all here to help.</p> <p>Having done a quick test I can confirm that it largely works. There is an ACCVIO reading 0x34 during start up, the error dialog can be ignored and the application runs, I opened the Steve McCarthy GEDCOM.</p> <p><a href="http://chateau-logic.com/images/behold-screenshot-linux.png" rel="nofollow">Screenshot</a></p> <p>This was using Wine 1.1.12 under MEPIS 7.9.94-rc1_32 under VMWare. Highly recommend to use VMWare for this sort of thing. </p> http://stackoverflow.com/questions/427262/can-i-just-make-up-attributes-on-my-html-tags/427265#427265 3 Answer by Richard Harrison for Can I just make up attributes on my HTML tags? Richard Harrison 2009-01-09T06:50:48Z 2009-01-09T06:50:48Z <p>You can. The page will not pass verification, however most browsers will accept it.</p> <p>It is almost certainly the wrong way of doing it. Try using class="hasTooltip_yes tipcolour_yellow"</p> http://stackoverflow.com/questions/427229/how-to-outsource-a-periodic-task-i-e-in-the-cloud/427261#427261 1 Answer by Richard Harrison for How to outsource a periodic task (i.e., in the 'cloud')? Richard Harrison 2009-01-09T06:49:15Z 2009-01-09T06:49:15Z <p>I'd bite the bullet and get a VPS, after 6 months you'll almost certainly find that you've found a lot more uses for it.</p> <p>I use a shared hosting service that allows this, and use it for a nightly sync.</p> http://stackoverflow.com/questions/419322/whats-the-best-practice-for-handling-system-specific-information-under-version-c/419439#419439 2 Answer by Richard Harrison for What's the best practice for handling system-specific information under version control? Richard Harrison 2009-01-07T06:55:36Z 2009-01-07T06:55:36Z <p>Avoid absolute paths wherever possible.</p> <p>Don't rely on your current version control to do something magic - you may change version control systems in the future.</p> <p>The simplest approach works for me: have a 'config.live' and the 'config' is configured for development. During deployment simply move the config.live to config and all is fine. For more complex configurations a sub-directory for each configuration may be required.</p> <p>A set of deployment procedures is essential - as the configuration is only one area that will be different.</p> <p>Anything more complex is almost certainly likely to cause more problems than it solves.</p> http://stackoverflow.com/questions/316517/does-stl-in-c-have-tree-data-structure-if-not-any-c-implementation-for-tree-s/316530#316530 0 Answer by Richard Harrison for Does stl in c++ have tree data structure.If not any c++ implementation for tree structure? Richard Harrison 2008-11-25T06:50:09Z 2008-11-25T06:50:09Z <p>I've used this before <a href="http://www.aei.mpg.de/~peekas/tree/" rel="nofollow">tree.hh: an STL-like C++ tree class</a></p> http://stackoverflow.com/questions/316422/using-sql-server-2008-and-sql-server-2005-and-date-time/316506#316506 8 Answer by Richard Harrison for Using SQL Server 2008 and SQL Server 2005 and date time Richard Harrison 2008-11-25T06:31:11Z 2008-11-25T06:31:11Z <p>A quick google points me to what looks like the <a href="http://alexduggleby.com/2008/08/11/entity-data-model-generated-against-sql-2008-used-against-sql-2005/" rel="nofollow">solution</a>.</p> <p>Open your EDMX in a file editor (or “open with…” in Visual Studio and select XML Editor). At the top you will find the storage model and it has an attribute ProviderManifestToken. This has should have the value 2008. Change that to 2005, recompile and everything works.</p> http://stackoverflow.com/questions/142710/can-i-implement-a-cooperative-multi-tasking-system-in-vxworks/313159#313159 0 Answer by Richard Harrison for Can I implement a cooperative multi-tasking system in VxWorks? Richard Harrison 2008-11-24T00:19:58Z 2008-11-24T00:19:58Z <p>What you describe is essentially:</p> <pre><code>void scheduler() { while (1) { int st = microseconds(); a(); b(); c(); sleep(microseconds() - st); } } </code></pre> <p>However if you don't already have a scheduler, now is a good time to implement one. In the simplest case, each entry point can be either multiply inherited from a Task class, or implement a Task interface (depending on the language).</p> http://stackoverflow.com/questions/216478/gettext-is-it-a-good-idea-for-the-message-id-to-be-the-english-text/216481#216481 Comment by Richard Harrison on Gettext: Is it a good idea for the message ID to be the english text? Richard Harrison 2009-11-15T10:55:49Z 2009-11-15T10:55:49Z My method loads all of the translations at the start via a call to load_phrases(). Each translation replacement then uses the phrases array. If performance becomes an issue then optimisations could be applied in the phrase_op routine. http://stackoverflow.com/questions/216478/gettext-is-it-a-good-idea-for-the-message-id-to-be-the-english-text/216481#216481 Comment by Richard Harrison on Gettext: Is it a good idea for the message ID to be the english text? Richard Harrison 2009-04-08T12:37:34Z 2009-04-08T12:37:34Z to me the code is readable but MRDA applies. I would have thought that to anyone proficient in SQL that the code was self explanatory.. Am I really that wrong? http://stackoverflow.com/questions/611873/ruby-like-question-make-this-function-shorter-actionscript-3/614770#614770 Comment by Richard Harrison on Ruby-like Question: Make this function shorter (ActionScript 3) Richard Harrison 2009-03-05T22:27:56Z 2009-03-05T22:27:56Z put in as many zeros as you may possibly ever need. You can check for errors by comparing the zero string length to that of the length parameter for safety. http://stackoverflow.com/questions/540848/optimize-mysql-search-process/540914#540914 Comment by Richard Harrison on Optimize MySQL search process Richard Harrison 2009-02-18T09:50:36Z 2009-02-18T09:50:36Z For small values of huge you don't need indexes - however if the data is primarily static then even with a few (&lt;100) rows it is worth it. Prepend &quot;EXPLAIN&quot; onto the select to see what is happening. http://stackoverflow.com/questions/448963/has-recaptcha-been-cracked-hacked-ocrd-defeated-broken Comment by Richard Harrison on Has reCaptcha been cracked / hacked / OCR'd / defeated / broken? Richard Harrison 2009-02-13T10:53:12Z 2009-02-13T10:53:12Z +1 to reopen the question; it is programming related, very much so. http://stackoverflow.com/questions/499417/how-can-i-have-subversion-keep-only-the-latest-version-of-a-file/499445#499445 Comment by Richard Harrison on How can I have Subversion keep only the latest version of a file? Richard Harrison 2009-01-31T22:12:42Z 2009-01-31T22:12:42Z That's not really the same situation because when using version control you commit your changes when they are finished. Versioning large (media) files is almost a separate discipline and I'm not sure that I'd use subversion for it. http://stackoverflow.com/questions/454836/sum-value-from-mysql-in-php/454846#454846 Comment by Richard Harrison on sum value from mysql in php Richard Harrison 2009-01-18T10:30:41Z 2009-01-18T10:30:41Z sometimes for a few values it is better to do it in the SQL using the method I describe - that way if you do decide to add a table the PHP code stays the same and you just change the SQL... http://stackoverflow.com/questions/419312/how-a-windows-developer-can-most-easily-get-his-software-to-work-well-under-wine/427250#427250 Comment by Richard Harrison on How a Windows Developer can most easily get his software to work well under Wine Richard Harrison 2009-01-10T13:53:42Z 2009-01-10T13:53:42Z There is. It appears during startup and will terminate the app if you click ok. However if you leave it open the app appears to work fine. http://stackoverflow.com/questions/310607/peer-to-peer-methods-of-finding-peers/310670#310670 Comment by Richard Harrison on Peer to Peer: Methods of Finding Peers Richard Harrison 2008-11-22T20:23:26Z 2008-11-22T20:23:26Z Fair comment - however I think I've had a better idea. http://stackoverflow.com/questions/255771/what-is-the-best-way-to-pass-data-between-a-mainframe-or-main-dialog-and-a-moda/255782#255782 Comment by Richard Harrison on What is the best way to pass data between a MainFrame (or Main Dialog) and a Modal Dialog? Richard Harrison 2008-11-01T18:21:35Z 2008-11-01T18:21:35Z I can provide a concrete example - it uses inheritance or interfaces and four basic classes that do all of the work. I'll revise my answer to add an example later on today. http://stackoverflow.com/questions/248693/double-negation-in-c-code/248720#248720 Comment by Richard Harrison on Double Negation in C++ code. Richard Harrison 2008-11-01T17:03:54Z 2008-11-01T17:03:54Z My definition of a trick is something that not everyone can understand at the first reading. Something that needs figuring out is a trick. Also horrible because the ! operator could be overloaded... http://stackoverflow.com/questions/223618/perl-ado-thinks-printed-output-in-stored-procedure-is-an-error/227041#227041 Comment by Richard Harrison on Perl ADO thinks printed output in stored procedure is an error! Richard Harrison 2008-10-22T19:42:15Z 2008-10-22T19:42:15Z accept it - the whole point here is to share our problems and solutions, quoting references as appropriate. http://stackoverflow.com/questions/223618/perl-ado-thinks-printed-output-in-stored-procedure-is-an-error/223690#223690 Comment by Richard Harrison on Perl ADO thinks printed output in stored procedure is an error! Richard Harrison 2008-10-22T09:06:14Z 2008-10-22T09:06:14Z The article also says &quot;In addition, to work around the issue of specifying no RAISERROR statements and a combination of PRINT statements, default RAISERROR statements are generated in order to provide a context for returning the PRINT statement via ADO.&quot; maybe try a RAISEERROR with a value of 1... http://stackoverflow.com/questions/223215/c-example-of-coding-horror-or-brilliant-idea/223756#223756 Comment by Richard Harrison on C++ example of Coding Horror or Brilliant Idea? Richard Harrison 2008-10-21T23:24:57Z 2008-10-21T23:24:57Z That's probably the best solution to the original question - the way I'd do it. http://stackoverflow.com/questions/223673/internal-dns-configuration-woes Comment by Richard Harrison on Internal DNS configuration woes Richard Harrison 2008-10-21T22:16:03Z 2008-10-21T22:16:03Z add all of the config files to the end of the post (removing the IN A etc.) Otherwise it is impossible to know what is going on.