User thomasrutter - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T01:44:11Zhttp://stackoverflow.com/feeds/user/53212http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/771756/what-is-the-difference-between-cygwin-and-mingw/792142#7921426Answer by thomasrutter for What is the difference between cygwin and mingw?thomasrutter2009-04-27T03:15:41Z2009-11-22T15:25:16Z<p>Fairly simple:</p>
<ul>
<li>Compile something in Cygwin and you are compiling it <em>for Cygwin</em>.</li>
<li>Compile something in MingW and you are compiling it <em>for Windows</em>.</li>
</ul>
<p>Cygwin is good when your app absolutely <strong>needs</strong> a POSIX environment to run - it is sometimes easier to port something to Cygwin than it is to port it to Windows, because Cygwin is a layer on top of Windows that emulates a POSIX environment. If you compile something for Cygwin then it will need to be run within the Cygwin environment, as provided by cygwin1.dll. For portability, you <em>could</em> distribute this dll with your project, if you were willing to comply with the relevant license.</p>
<p>MingW is a Windows port of the GNU compiler tools, like GCC, Make, Bash, etc, which run directly in Windows without any emulation layer. By default it will compile to a native Win32 target, complete with .exe and .dll files, though you could also cross-compile with the right settings. It is an alternative to Microsoft Visual C compiler and its associated linking/make tools in a way.</p>
http://stackoverflow.com/questions/1764832/how-do-you-think-google-is-handling-this-encoding-issue/1767594#17675941Answer by thomasrutter for How do you think Google is handling this encoding issue?thomasrutter2009-11-20T00:29:02Z2009-11-20T00:29:02Z<p>Looks like it is using latin-1 unless any characters can't be represented in that encoding, otherwise it is using UTF-8.</p>
<p>If that is indeed the case, the way to get around this at the other end is to assume everything you receive is UTF-8, and validate it as UTF-8. If it fails validation as UTF-8 then assume it is latin-1 (iso-8859-1).</p>
<p>Due to the way UTF-8 is structured, it is highly unlikely that something that is not actually UTF-8 will pass when validated as UTF-8.</p>
<p>Still, the possibility exists and I don't think Firefox's behaviour is a good idea, though no doubt they have done it as a compromise - like for compatibility with servers that wouldn't know UTF-8 if they stepped in it.</p>
http://stackoverflow.com/questions/1747433/why-isnt-c-more-popular-2Why isn't C++ more popular? [closed]thomasrutter2009-11-17T08:51:00Z2009-11-19T22:29:31Z
<p>I've always sort of wondered why C++ didn't become more popular than it is, particularly compared to C, but also to Visual Basic, Delphi etc.</p>
<p>I'm not just looking for technical reasons here; I know lots of the technical arguments as to why C++ is really superior or why it falls behind. I guess I just wondered why, since it aims to extend C to support more programming styles, it never surpassed it in popularity.</p>
<p>Do you think C++ just doesn't differentiate itself enough from C? Do you think it became standardized at the wrong time and wasn't noticed among the Java hype? Do you think all the talented C++ <em>application</em> programmers jumped ship to Java? Do you think that "real" systems programmers "think in C"? Let us know your opinion.</p>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1085134/why-is-c-relatively-harder-to-use-bad-choice-for-a-beginner">Why is C++ relatively “harder” to use/bad choice for a beginner?</a></li>
<li><a href="http://stackoverflow.com/questions/385297/whats-wrong-with-c-compared-to-other-languages">What’s wrong with C++ compared to other languages?</a></li>
</ul>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763394#17633940Answer by thomasrutter for Did you ever switch from one programming language to another?thomasrutter2009-11-19T13:45:07Z2009-11-19T13:45:07Z<p>Why yes of course!</p>
<p><strong>BASIC</strong></p>
<p>Awesome, I can really make useful stuff myself, like this awesome crossword puzzle generator.</p>
<p><strong>Turbo Pascal</strong></p>
<p>Cool, it makes real EXE files! No interpreter required! Bit slow for pixel-by-pixel graphics stuff though...</p>
<p><strong>C++</strong></p>
<p>Now this is awesome. Check out this awesome Star Wars game I made (I was a kid, who cared about copyright back then) - oh and this thing that zooms in on a Mandlebrot image in real time, oh and this thing that is an audio codec/speech recognition thingy but that never really got finished...</p>
<p>Dabbled in <strong>Java</strong>, <strong>C</strong>, even <strong>Haskell</strong> for university</p>
<p>It's amazing how little free time you have when you finish high school. If I'd have kept programming at the rate I'd been going back when I was doing Pascal and C++ stuff I'd probably have created the equivalent of a few operating systems or office suites by now.</p>
<p><strong>PHP</strong></p>
<p>Now I'm coding PHP professionally and I think I'm expert at it.</p>
<p><strong>Javascript</strong></p>
<p>Now here is something I am definitely not expert in yet, but I intend to master.</p>
<p>But then I'm also thinking of going back to C++.</p>
<p>Or learning Python.</p>
<p>...</p>
http://stackoverflow.com/questions/1713252/mysql-order-by-optimisation-on-range0MySQL ORDER BY optimisation on rangethomasrutter2009-11-11T05:34:47Z2009-11-12T19:08:51Z
<p>Hello, I'd like MySQL to use the index to sort these rows.</p>
<pre><code>SELECT
identity_ID
FROM
identity
WHERE
identity_modified > 1257140905
ORDER BY
identity_modified
</code></pre>
<p>However, this is using a filesort for sorting (undesirable).</p>
<p>Now, if I leave off the ORDER BY clause here, the rows come out sorted <em>simply as a consequence of using the index to satisfy the WHERE clause</em>.</p>
<p>So, I can get the behaviour I want by leaving off the WHERE clause, but then I'm relying on MySQL's behaviour to be consistent for the rows to arrive in order, and might get stung in future simply if MySQL changes its internal behaviour.</p>
<p>What should I do? Any way of telling MySQL that since the index is stored in order (b-tree) that it doesn't need a filesort for this?</p>
<p>The table looks like this (simplified):</p>
<pre><code>CREATE TABLE IF NOT EXISTS `identity` (
`identity_ID` int(11) NOT NULL auto_increment,
`identity_modified` int(11) NOT NULL,
PRIMARY KEY (`identity_ID`),
KEY `identity_modified` (`identity_modified`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;
</code></pre>
http://stackoverflow.com/questions/1713252/mysql-order-by-optimisation-on-range/1718697#17186970Answer by thomasrutter for MySQL ORDER BY optimisation on rangethomasrutter2009-11-11T22:59:49Z2009-11-11T22:59:49Z<p>The solution I have so far is to leave off the <code>ORDER BY</code> clause, and add a <code>FORCE INDEX (identity_modified)</code> to the query. This should in theory ensure that the rows are returned in the order they are stored in the index.</p>
<p>It's probably not a <em>best practice</em> way to do it, but it seems to be the only way that works the way I want.</p>
http://stackoverflow.com/questions/237553/google-chrome-and-streaming-http-connections/1469598#14695980Answer by thomasrutter for Google Chrome and Streaming HTTP connections?thomasrutter2009-09-24T03:10:47Z2009-09-24T03:10:47Z<p>I had a similar issue to this, and solved it by adding an HTML tag (in my case <br />) before each flush.</p>
<p>My guess would be that Chrome waits for an element <em>which is being displayed</em> to close before triggering a re-render. That's only a guess though.</p>
<p>It didn't seem to require 1024 bytes - I think I would have had just under 512 bytes when it worked.</p>
http://stackoverflow.com/questions/732979/php-whats-an-alternative-to-empty-where-string-0-is-not-treated-as-empty0PHP: what's an alternative to empty(), where string "0" is not treated as empty?thomasrutter2009-04-09T05:53:11Z2009-09-23T19:37:40Z
<p>In PHP, empty() is a great shortcut because it allows you to check whether a variable is defined AND not empty at the same time.</p>
<p>What would you use when you don't want "0" (as a string) to be considered empty, but you still want false, null, 0 and "" treated as empty?</p>
<p>That is, I'm just wondering if you have your own shortcut for this:</p>
<pre><code>if (isset($myvariable) && $myvariable != "") ;// do something
if (isset($othervar ) && $othervar != "") ;// do something
if (isset($anothervar) && $anothervar != "") ;// do something
// and so on, and so on
</code></pre>
<p>I don't think I can define a helper function for this, since the variable could be undefined (and therefore couldn't be passed as parameter).</p>
http://stackoverflow.com/questions/1263829/if-i-have-two-instance-of-a-class-and-i-use-this-to-reference-one-of-the-instanc/1264719#12647190Answer by thomasrutter for If I have two instance of a class and I use $this to reference one of the instance without specifying which, what will $this take?thomasrutter2009-08-12T07:28:11Z2009-08-12T07:28:11Z<p><code>$this</code> is context-sensitive - it always refers to the current context in which code is running.</p>
<p>It is not possible to refer to <code>$this</code> unless you call it from within a (non-static) class method. When you do, <code>$this</code> refers to whichever instance of the class invoked that method upon run-time.</p>
http://stackoverflow.com/questions/1263353/allowed-characters-in-submit-forms-including-utf-8/1264694#12646942Answer by thomasrutter for Allowed characters in submit forms (including UTF-8)thomasrutter2009-08-12T07:23:59Z2009-08-12T07:23:59Z<p>Make sure it is valid UTF-8 and Unicode? <strong>Yes</strong></p>
<p>Make sure it does not include certain characters, such as control codes? <strong>Probably not necessary</strong></p>
<p>You should be aware that even though you are using UTF-8 in your form, you may not get valid UTF-8 from all user-agents when they send form data to you, and you will have to filter it as necessary. Invalid UTF-8 can take many forms, some of them being</p>
<ul>
<li>Overlong encodings (which can lead to security issues)</li>
<li>Other invalid UTF-8 byte sequences, which may indicate that the user-agent ignored the character encoding and has submitted something like Windows-1252 or ISO-8859-1 encoding instead.</li>
<li>Code points that lie in reserved surrogate space in Unicode</li>
</ul>
<p>All the above need to be filtered out during input, otherwise you are not storing valid Unicode.</p>
<p>If you want to serve valid HTML or XHTML, which use a subset of Unicode, you will need also need to filter out (either at input or output):</p>
<ul>
<li>C0 control codes 0x00 to 0x19 (apart from tab, space, new line, carraige return)</li>
<li>0x7F</li>
<li>C1 control codes 0x80 to 0xBF</li>
<li>(probably) any code point above 0x10FFFF</li>
</ul>
http://stackoverflow.com/questions/1252972/should-i-be-using-libraries-if-im-trying-to-learn-how-to-program/1252984#12529846Answer by thomasrutter for Should I be using libraries if I'm trying to learn how to program?thomasrutter2009-08-10T03:21:40Z2009-08-10T03:21:40Z<p><strong>Yes.</strong></p>
<p>If you are learning how to program, you should be using libraries, because using libraries is <em>what programmers do</em>.</p>
<p>If you want to learn the inner workings of the libraries, then try writing your own libraries. But this should be done only if you are a strange person and you are interested in that sort of thing, otherwise using existing libraries is a good habit to get into.</p>
http://stackoverflow.com/questions/1220969/getting-a-use-of-undefined-constant-error-that-i-cannot-figure-out0Getting a "Use of undefined constant" error that I cannot figure outthomasrutter2009-08-03T06:58:07Z2009-08-03T07:15:10Z
<p>Hello,</p>
<p>I'm getting the following strange looking error.</p>
<ul>
<li>Unexpected PHP error [Use of undefined constant s - assumed 's'] severity [E_NOTICE] in [C:\Documents and Settings\yepthatsme\My Documents\Dev\nicnames\main\resources\includes\name.inc.php line 180]</li>
</ul>
<p>The line it is referring to has:</p>
<pre><code> $types = nicnames_config::$resourcetypes;
</code></pre>
<p>nicnames_config::$resourcetypes is an array. I have no idea where this 's' it talks about is coming from, and I'm beginning to think it may be a PHP bug, though perhaps I have missed something. Where should I look?</p>
<p>I am using SimpleTest to do testing, and this error is occurring during a particular test.</p>
<p>In case you're interested, here is that line in context:</p>
<pre><code>function getstrings()
// returns array of strings suitable for human-readable rendering of this
// piece of informtion. Contains such fields as 'title', 'subtitle',
// 'pre-qualifier', 'post-qualifier', 'comment', etc
{
$types = nicnames_config::$resourcetypes; // line 180
$type = isset($types['name_type'][$this->type]) ?
$types['name_type'][$this->type] : $this->type;
$givens = $this->givennames == '' ? null : $this->givennames;
return array(
'title' => $this->surnamefirst ? ($this->surname . ',') : $givens,
'subtitle' => $this->surnamefirst ? $givens : $this->surname,
'pre-qualifier' => $type,
'post-qualifier' => $this->title == '' ? null : ('(' . $this->title . ')'),
) + $this->getcommonstrings();
}
</code></pre>
<p><strong>Edit: problem is now solved, see my own answer.</strong></p>
http://stackoverflow.com/questions/1220969/getting-a-use-of-undefined-constant-error-that-i-cannot-figure-out/1221017#12210171Answer by thomasrutter for Getting a "Use of undefined constant" error that I cannot figure outthomasrutter2009-08-03T07:14:35Z2009-08-03T07:14:35Z<p>The PHP error message was getting the location of the error wrong - I eventually found a stray letter 's' at the end of a line somewhere in a completely different source file - the one where the nicnames_config class, and this static member, had been defined.</p>
<p>It appears that when using static member variables, the variable value is assigned not when the class is declared but when the variable is first referred to (guess that's a decent optimisation), however if there is an error in assigning the value PHP gets the location of the error wrong.</p>
http://stackoverflow.com/questions/1198109/whats-the-best-way-to-implement-typo-correction-into-a-search-in-php-mysql/1198433#11984330Answer by thomasrutter for Whats the best way to implement typo correction into a search (in php/mysql)?thomasrutter2009-07-29T06:54:27Z2009-07-29T06:54:27Z<p>Presuming that you use MySQL - MySQL has no in-built functionality that is capable of doing this.</p>
<p>This means you will have to implement a full-text search yourself, or use a third party full text search tool.</p>
<ul>
<li>If you implement it yourself, you should look into the <a href="http://en.wikipedia.org/wiki/Metaphone" rel="nofollow">metaphone</a> or <a href="http://en.wikipedia.org/wiki/Double%5FMetaphone" rel="nofollow">double metaphone</a> algorithms (I'd recommend them over soundex, which is not nearly as good at this type of task), to store phoenetic representations of all your words. However, building your own full text search is no task for the faint-hearted. Don't attempt it if you don't consider yourself a database wizard.</li>
<li>If you want a third party tool, <a href="http://lucene.apache.org/java/docs/" rel="nofollow">Lucene</a> is the way to go. It is ported into tons of different languages/platforms <a href="http://framework.zend.com/manual/en/zend.search.lucene.html" rel="nofollow">including PHP</a> - you don't have to use Java.</li>
</ul>
http://stackoverflow.com/questions/1198237/whats-the-php-equivalent-of-a-final-variable-in-c/1198418#11984180Answer by thomasrutter for What's the PHP equivalent of a final variable in C?thomasrutter2009-07-29T06:49:10Z2009-07-29T06:49:10Z<p>The correct answer is that there is no equivalent in PHP to final, but <strong>static</strong> seems like what you wanted in the first place anyway.</p>
<p><em>static</em> has the property that it will have the same value across all instances of a class, because it is not tied to a particular instance.</p>
<p>You will need to use the <strong>::</strong> operator to access it, because being static, you cannot use <strong>-></strong>.</p>
http://stackoverflow.com/questions/1198316/php-specific-could-apply-to-others-which-layer-is-responsible-for-validation/1198362#11983620Answer by thomasrutter for [PHP specific, could apply to others] Which 'layer' is responsible for validation of data thomasrutter2009-07-29T06:36:35Z2009-07-29T06:36:35Z<p>Data should be validated as soon as possible - ie, there should be the minimum amount of distance between when data is read from input (such as user input) and when it is validated. The practical reason for this is it makes it easier to review the validation code.</p>
<p>In MVC, I would say it should go into the 'controller', assuming that the controller is where you read in all the input values (the controller then passes the validated values to the model, when you do it this way).</p>
<p>That said, there will likely be a fair bit of stuff in your validation code that can be shared, and you can write yourself helper code for validation.</p>
http://stackoverflow.com/questions/985298/what-is-encapsulation-with-simple-example-in-php/985319#9853193Answer by thomasrutter for What is encapsulation with simple example in php?thomasrutter2009-06-12T06:52:10Z2009-07-29T06:20:59Z<p>Encapsulation is a way of storing an object or data as a property <strong>within another object</strong>, so that the outer object has full control over what how the internal data or object can be accessed.</p>
<p>For example</p>
<pre><code>class OuterClass
{
private var $innerobject;
function increment()
{
return $this->innerobject->increment();
}
}
</code></pre>
<p>You have an extra layer around the object that is encapsulated, which allows the outer object to control how the inner object may be accessed. This, in combination with making the inner object/property <code>private</code>, enables <strong><a href="http://en.wikipedia.org/wiki/Information%5Fhiding" rel="nofollow">information hiding</a></strong>.</p>
http://stackoverflow.com/questions/588914/optimizing-order-by-when-the-result-set-is-very-large-and-it-cant-be-ordered-b0Optimizing "ORDER BY" when the result set is very large and it can't be ordered by an indexthomasrutter2009-02-26T02:52:46Z2009-07-23T15:38:35Z
<p>How can I make an ORDER BY clause with a small LIMIT (ie 20 rows at a time) return quickly, when I can't use an index to satisfy the ordering of rows?</p>
<p>Let's say I would like to retrieve a certain number of titles from a table 'node' (simplified below). I'm using MySQL by the way.</p>
<pre><code>node_ID INT(11) NOT NULL auto_increment,
node_title VARCHAR(127) NOT NULL,
node_lastupdated INT(11) NOT NULL,
node_created INT(11) NOT NULL
</code></pre>
<p>But I need to limit the rows returned to only those a particular user has access to. Many users have access large numbers of nodes. I have this information pre-calculated in a big lookup table (an attempt to make things easier) where the primary key covers both columns and the presence of a row means that usergroup has access to that node:</p>
<pre><code>viewpermission_nodeID INT(11) NOT NULL,
viewpermission_usergroupID INT(11) NOT NULL
</code></pre>
<p>My query therefore contains something like</p>
<pre><code>FROM
node
INNER JOIN viewpermission ON
viewpermission_nodeID=node_ID
AND viewpermission_usergroupID IN (<...usergroups of current user...>)
</code></pre>
<p>... and I also use a GROUP BY or a DISTINCT so that a node is only returned once even if two of the user's 'usergroups' both have access to that node.</p>
<p>My problem is that there seems to be no way for an ORDER BY clause which sorts results by created or last updated date to use an index, because the rows being returned depend on values in the other viewpermission table.</p>
<p>Therefore MySQL would need to find <em>all</em> rows which match the criteria, then sort them all itself. If there are one million rows for a particular user, and we want to view, say, the latest 100 or rows 100-200 when ordered by last update, the DB would need to figure out which one million rows the user can see, sort this whole result set itself, before it can return those 100 rows, right?</p>
<p>Is there any creative way to get around this? I've been thinking along the lines of:</p>
<ul>
<li>Somehow add dates into the viewpermission lookup table so that I can build an index containing the dates as well as the permissions. It's a possibility I guess.</li>
</ul>
<p><strong>Edit: Simplified question</strong></p>
<p>Perhaps I can simplify the question by rewriting it like this:</p>
<p>Is there any way to rewrite this query or create an index for the following such that an index can be used to do the ordering (not just to select the rows)?</p>
<pre><code>SELECT nodeid
FROM lookup
WHERE
usergroup IN (2, 3)
GROUP BY
nodeid
</code></pre>
<p>An index on (usergroup) allows the WHERE part to be satisfied by an index, but the GROUP BY forces a temporary table and filesort on those rows. An index on (nodeid) does nothing for me, because the WHERE clause needs an index with usergroup as its first column. An index on (usergroup, nodeid) forces a temporary table and filesort because the GROUP BY is not the first column of the index that can vary.</p>
<p>Any solutions?</p>
http://stackoverflow.com/questions/1025494/obfuscating-c-c-code/1025502#1025502-2Answer by thomasrutter for Obfuscating C/C++ Codethomasrutter2009-06-22T04:54:43Z2009-06-22T04:54:43Z<p>It's called a <strong><a href="http://en.wikipedia.org/wiki/Compiler" rel="nofollow">compiler</a></strong>.</p>
http://stackoverflow.com/questions/1016835/search-engine-redirecting/1016860#10168602Answer by thomasrutter for Search engine redirectingthomasrutter2009-06-19T08:10:41Z2009-06-19T08:10:41Z<p>I would be very hesitant to serve up different pages to Google than to a regular visitor. While details are sketchy due to Google's secrecy, your site may be penalised in Google's search engine.</p>
<p>Besides, if the pages those links go to don't have useful content on them yet, you are unlikely to get much benefit from any of the major search engines. And if you did have the content already, you may as well just put it online (soft launch).</p>
http://stackoverflow.com/questions/1016043/are-javascript-date-time-functions-dependent-on-the-client-machine/1016208#10162082Answer by thomasrutter for Are Javascript date/time functions dependent on the client machine?thomasrutter2009-06-19T03:17:23Z2009-06-19T03:17:23Z<p>Javascript only knows as much about the correct time as the environment it is currently running within, and Javascript is <strong><a href="http://en.wikipedia.org/wiki/Client-side%5Fscripting" rel="nofollow">client-side</a></strong>.</p>
<p>So, Javascript is at the mercy of the user having the correct time, AND timezone, settings on the PC on which they are browsing.</p>
<p>If the user has the incorrect time zone, but correct time, then functions depending on time zones like getUTCDate() will be incorrect.</p>
<p>If the user has the incorrect time, then all time-related functions in Javascript will be incorrect.</p>
<p>One could make the argument, however, that if the user wanted correct times on their PC they would have set the correct time. The counter to that is that the user may not know how to do that.</p>
http://stackoverflow.com/questions/1016184/calling-a-changing-function-name-on-an-object-with-php-how/1016193#10161931Answer by thomasrutter for Calling a changing function name on an object with PHP : how?thomasrutter2009-06-19T03:11:15Z2009-06-19T03:11:15Z<p><strong><a href="http://nz.php.net/manual/en/function.call-user-func.php" rel="nofollow">call_user_func</a></strong> allows you to do things like this.</p>
<p>For example,</p>
<pre><code>funcname = 'a';
call_user_func(array($testObj, $funcname));
</code></pre>
<p>The other alternative is to use <strong><a href="http://php.mirrors.ilisys.com.au/manual/en/functions.variable-functions.php" rel="nofollow">variable methods</a></strong></p>
<p>For example,</p>
<pre><code>$funcname = 'a';
$testObj->$funcname();
</code></pre>
http://stackoverflow.com/questions/1010402/how-to-go-about-fixing-a-memory-leak-in-php3How to go about fixing a memory leak in PHPthomasrutter2009-06-18T01:53:30Z2009-06-18T07:11:46Z
<p>My PHP app has an import script that can import records.</p>
<p>At the moment, it is importing from a CSV file. It is reading each line of the CSV file, one line at a time using fgetcsv, and for each line it is doing <em>a lot</em> of processing on that record, including database queries, and then moving on to the next line. It shouldn't need to keep accumulating more memory.</p>
<p>After around 2500 records imported, PHP dies, saying that it has run over its memory limit (132 MB or so).</p>
<p>The CSV file itself is only a couple of megs - the other processing that happens does a lot of string comparisons, diffs, etc. I have a huge amount of code operating on it and it would be difficult to come up with a 'smallest reproducing sample'.</p>
<p>What are some good ways to go about finding and fixing such a problem?</p>
<p><strong><em>Cause of problem found</em></strong></p>
<p><em>I have a debug class which logs all my database queries during runtime. So those strings of SQL, some 30KB long, were staying in memory. I realise this isn't suitable for scripts designed to run for a long time.</em></p>
<p><em>There may be other sources of memory leaks, but I am fairly sure this is the cause of my problem.</em></p>
http://stackoverflow.com/questions/1007425/performance-difference-of-caching-php-objects-on-file/1007472#10074720Answer by thomasrutter for Performance difference of caching PHP Objects on filethomasrutter2009-06-17T14:40:16Z2009-06-17T14:40:16Z<p>Caching objects on disk will give you the additional overhead of a disk write whenever there is a cache miss, whereas on a cache hit you will be able to save the step of instantiating the object.</p>
<p>If construction of the object is enough of a burden that saving it sometimes will more than outweighs the additional burden of a disk write, then go ahead and cache on disk.</p>
<p>I'd be curious, however, to know more about why instantiating your objects is so costly that you would want to do this.</p>
http://stackoverflow.com/questions/985295/can-you-define-literal-tables-in-sql1Can you define "literal" tables in SQL?thomasrutter2009-06-12T06:41:52Z2009-06-12T09:07:05Z
<p>Is there any SQL subquery syntax that lets you define, literally, a temporary table?</p>
<p>For example, something like</p>
<pre><code>SELECT
MAX(count) AS max,
COUNT(*) AS count
FROM
(
(1 AS id, 7 AS count),
(2, 6),
(3, 13),
(4, 12),
(5, 9)
) AS mytable
INNER JOIN someothertable ON someothertable.id=mytable.id
</code></pre>
<p>This would save having to do two or three queries: creating temporary table, putting data in it, then using it in a join.</p>
<p>I am using MySQL but would be interested in other databases that could do something like that.</p>
http://stackoverflow.com/questions/732979/php-whats-an-alternative-to-empty-where-string-0-is-not-treated-as-empty/985364#9853640Answer by thomasrutter for PHP: what's an alternative to empty(), where string "0" is not treated as empty?thomasrutter2009-06-12T07:04:52Z2009-06-12T07:04:52Z<p>The answer to this is that it isn't possible to shorten what I already have.</p>
<p>Suppressing notices or warnings is not something I want to have to do, so I will always need to check if empty() or isset() before checking the value, and you can't check if something is empty() or isset() within a function.</p>
http://stackoverflow.com/questions/973969/yslow-gives-f-grade-to-files-compressed-with-moddeflate/974058#9740581Answer by thomasrutter for YSlow gives F grade to files compressed with mod_deflatethomasrutter2009-06-10T06:56:57Z2009-06-10T23:15:04Z<p>It's possible that mod_deflate has been configured incorrectly.</p>
<p>A typical mod_deflate configuration may be excluding certain browsers based on user-agent strings, and may only be configured to compress certain file types - identified by their MIME type as registered on the server.</p>
<p>You should be compressing all of your HTML, CSS and Javascript files, but not your PNG, GIF or JPEG files, and there are bugs with Netscape 4 you may or may not want to account for. Try using the <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Fdeflate.html#recommended" rel="nofollow">sample code from the documentation</a>:</p>
<pre><code><Location />
# Insert filter
SetOutputFilter DEFLATE
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</Location>
</code></pre>
<p>Note too that the GIDZipTest GZIP test you posted does not test associated Javascript and CSS files, whereas YSlow does - in GIDZipTest GZIP test you'd need to test these individually.</p>
<p>I guess it is also possible that your ISP is using a caching proxy - transparent or not - which is mangling or removing your Accept-Encoding: header. To rule this out as the cause you could get someone to test it from outside of your ISP.</p>
<p>Another thing to note is that when compressing files using gzip you are trading bandwidth for CPU time. Above the lower compression strengths you will see diminishing returns in bandwidth savings, but huge increases in CPU time required. Unfortunately with a compression strength as high as 9, you are almost certainly wasting too much CPU time for very little improved compression - I would always recommend using strength of 1.</p>
http://stackoverflow.com/questions/767327/in-simplexml-how-can-i-add-an-existing-simplexmlelement-as-a-child-element1In SimpleXML, how can I add an existing SimpleXMLElement as a child element?thomasrutter2009-04-20T08:03:57Z2009-06-10T19:26:46Z
<p>I have a SimpleXMLElement object $child, and a SimpleXMLElement object $parent.</p>
<p>How can I add $child as a child of $parent? Is there any way of doing this without converting to DOM and back?</p>
<p>The addChild() method only seems to allow me to create a new, empty element, but that doesn't help when the element I want to add $child also has children. I'm thinking I might need recursion here.</p>
http://stackoverflow.com/questions/961250/program-for-optimal-performance-and-scalability-from-the-start/961262#9612621Answer by thomasrutter for program for optimal performance and scalability from the start?thomasrutter2009-06-07T05:27:16Z2009-06-07T05:34:42Z<p>You make it sound like A) would result in sloppy, poorly thought-out code that works, but will not scale well and is almost certainly going to require a rewrite <em>once you already have users and need to provide reasonable uptime</em>. Fixing prevantable problems once you already have traffic sounds like a nightmare.</p>
<p>I would definitely go with B). Thinking about, researching and planning the architecture of your application, not just for optimisation or performance but also just for sensible overall design, is an absolute must for any non-trivial software application.</p>
<p>There is a common myth that premature optimisation is the root of all evil. This is absolutely false, though it would be more accurate to say that unnecessary optimisation is the root of all evil. Do not make the newbie mistake of optimising where it doesn't matter, which is just going to mess up your code, but do spend the time finding out which optimisations DO matter.</p>
<p>Twitter nearly died when they realised they'd made some poor DB design choices once they already had traffic.</p>
http://stackoverflow.com/questions/961188/disable-browsers-back-button/961245#9612455Answer by thomasrutter for Disable browser's back buttonthomasrutter2009-06-07T05:19:36Z2009-06-07T05:19:36Z<p><em>Others have taken the approach to say "don't do this" but that doesn't really answer the poster's question. Let's just assume that everyone knows this is a bad idea, but we are curious about how to do it anyway...</em></p>
<p>You cannot disable the back button on a user's browser, but you can make it so that your application breaks (displays an error message, requiring the user to start over) if the user goes back.</p>
<p>One approach I have seen for doing this is to pass a token on every URL within the application, and within every form. The token is regenerated on every page, and once the user loads a new page any tokens from previous pages are invalidated.</p>
<p>When the user loads a page, the page will only show if the correct token (which was given to all links/forms on the previous page) was passed to it.</p>
<p>The online banking application my bank provides is like this. If you use the back button at all, no more links will work and no more page reloads can be made - instead you see a notice telling you that you cannot go back, and you have to start over.</p>
http://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task/610769#610769Comment by thomasrutter on Website Image Formats: Choosing the right format for the right task.thomasrutter2009-11-26T10:08:28Z2009-11-26T10:08:28ZFor image animation, there's GIF or there's Flash. The GIF patent's expired pretty much everywhere now, the only problem is that it's limited to 256 colours. SVG would be an option, too, but that's not (yet) all that well supported. You could also come up with a creative way to animate images using Javascript and sprites (all frames of animation in single image).http://stackoverflow.com/questions/1764832/how-do-you-think-google-is-handling-this-encoding-issue/1767594#1767594Comment by thomasrutter on How do you think Google is handling this encoding issue?thomasrutter2009-11-21T06:52:59Z2009-11-21T06:52:59ZI don't know much about Java, but according to Wikipedia, InputStreamReader and OutputStreamWriter classes support native UTF-8. You tell it to interpret as UTF-8 in the constructor, and then presumably if you get an exception, you catch it (and try another encoding).http://stackoverflow.com/questions/366043/what-are-some-of-the-best-cross-platform-c-ui-toolkits-today/366081#366081Comment by thomasrutter on What are some of the "best" cross-platform C++ UI toolkits today?thomasrutter2009-11-18T22:18:29Z2009-11-18T22:18:29ZI found songbird deathly slow to load and put that down to the overhead of loading xulrunner. Not sure if that's what the cause really was though.http://stackoverflow.com/questions/380988/what-programming-language-was-windows-vista-programmed-in/381085#381085Comment by thomasrutter on What programming language was Windows Vista programmed in?thomasrutter2009-11-18T00:29:15Z2009-11-18T00:29:15ZWinCE is a different beast to NT.http://stackoverflow.com/questions/1543098/i-need-a-c-compiler/1544941#1544941Comment by thomasrutter on I need a C++ Compilerthomasrutter2009-11-17T12:02:05Z2009-11-17T12:02:05ZOops just realised that Dev C++ <b>is</b> based on MinGW. I'll shut up now!http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/814124#814124Comment by thomasrutter on What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!thomasrutter2009-11-17T11:58:24Z2009-11-17T11:58:24Z+1 I loved how you described kids these days who have 50,000 songs from bittorrent and Adobe CS4 for nothing, it is of course realityhttp://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/837941#837941Comment by thomasrutter on What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!thomasrutter2009-11-17T11:48:56Z2009-11-17T11:48:56Z@DisgruntledGoat you could probably make this into a one liner easily enough by replacing those semicolons with other operators. Like && perhaps. But then it'd still be sort of based on 3 separate expressions.http://stackoverflow.com/questions/1543098/i-need-a-c-compiler/1544941#1544941Comment by thomasrutter on I need a C++ Compilerthomasrutter2009-11-17T11:31:43Z2009-11-17T11:31:43ZTrue also of the GCC (GNU compiler collection) and its Windows port MinGW. But you can also use pretty powerful build systems with it once your project gets large so it scales well.http://stackoverflow.com/questions/1543098/i-need-a-c-compiler/1545804#1545804Comment by thomasrutter on I need a C++ Compilerthomasrutter2009-11-17T11:30:06Z2009-11-17T11:30:06Z"free for non-commercial use" sounds fishy to me - how does that work? Can they enforce license conditions based on whether you sell the resulting software? If so looks like it would not be possible to use either for open source (well GPL at least which doesn't allow such restrictions) or for commercial software either - only for freeware.http://stackoverflow.com/questions/1543098/i-need-a-c-compiler/1543113#1543113Comment by thomasrutter on I need a C++ Compilerthomasrutter2009-11-17T11:26:49Z2009-11-17T11:26:49ZJust wanted to clarify for peeps who may not know, that GCC == GNU Compiler Collection - ie they are one and the same.http://stackoverflow.com/questions/1254335/gnu-c-compiler/1254349#1254349Comment by thomasrutter on GNU C++ compilerthomasrutter2009-11-17T11:20:54Z2009-11-17T11:20:54ZCompilers under cygwin don't compile natively for Windows, they compile for the cygwin environment. That's fine if that's what you want, but if you want to compile for Windows, you'll want mingw instead, as Gabe said. MingW is a Windows port of GCC which can compile to Windows.http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/993734#993734Comment by thomasrutter on What is your favorite "programmer" t-shirt?thomasrutter2009-11-17T06:06:57Z2009-11-17T06:06:57Zso so classy, how fashionable.http://stackoverflow.com/questions/170818/websites-server-side-coding-why-not-languages-like-java-c-etc/170826#170826Comment by thomasrutter on Websites - server side coding - why not languages like Java, c++, etc?thomasrutter2009-11-16T01:33:59Z2009-11-16T01:33:59ZI think that Fire Lancer means that parsing a string linearly, where you iterate over a string character-by-character say in a big switch statement (as is typical of C parsers), is really horribly slow in PHP. String handling might be much more convenient/flexible in PHP than C++, but if you are iterating over a string character by character it is probably hundreds of times slower.http://stackoverflow.com/questions/630884/vim-help-in-vertical-split/630953#630953Comment by thomasrutter on Vim help in vertical splitthomasrutter2009-11-13T02:51:45Z2009-11-13T02:51:45Z:vs works for mehttp://stackoverflow.com/questions/1713252/mysql-order-by-optimisation-on-range/1713390#1713390Comment by thomasrutter on MySQL ORDER BY optimisation on rangethomasrutter2009-11-11T23:04:33Z2009-11-11T23:04:33ZAdded table def to question. Yes the query above is the full one - all I need is the identity_ID values in order of modified date, where modified date is larger than a certain value.