User Xenph Yan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T11:34:40Zhttp://stackoverflow.com/feeds/user/264http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1735#1735611Answer by Xenph Yan for What is the single most influential book every programmer should read?Xenph Yan2008-08-05T00:15:14Z2009-09-09T19:55:23Z<p>The <a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow">Pragmatic Programmer</a>; it's more about your trade, and how to apply it than the code per se, but it's still very good.</p>
<ul>
<li>"This is a great book for programmers who have learned the mechanics of programming, maybe in college, but don't quite feel secure deciding what to do. It's like the difference between drafting and architecture. What you learned in that class in college was drafting, and you can draw beautifully, but if you still feel like you wouldn't quite know where to begin if someone told you to write a P2P music-swapping network all by yourself, this is the book for you." --<a href="http://www.joelonsoftware.com/navLinks/fog0000000262.html" rel="nofollow">Joel</a></li>
</ul>
<p><a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow"><img src="http://www.pragprog.com/images/covers/190x228/tpp.jpg?1184184147" alt="The Pragmatic Programmer" /></a></p>
http://stackoverflow.com/questions/267658/having-both-a-created-and-last-updated-timestamp-columns-in-mysql-4-03Having both a Created and Last Updated timestamp columns in MySQL 4.0Xenph Yan2008-11-06T04:41:16Z2009-07-20T17:07:08Z
<p>I have the following table schema;</p>
<pre><code>CREATE TABLE `db1`.`sms_queue` (
`Id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
`Message` VARCHAR(160) NOT NULL DEFAULT 'Unknown Message Error',
`CurrentState` VARCHAR(10) NOT NULL DEFAULT 'None',
`Phone` VARCHAR(14) DEFAULT NULL,
`Created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`LastUpdated` TIMESTAMP NOT NULL ON UPDATE CURRENT_TIMESTAMP,
`TriesLeft` tinyint NOT NULL DEFAULT 3,
PRIMARY KEY (`Id`)
)
ENGINE = InnoDB;
</code></pre>
<p>It fails with the following error:</p>
<pre><code>ERROR 1293 (HY000): Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause.
</code></pre>
<p>My question is, can I have both of those fields? or do I have to manually set a LastUpdated field during each transaction?</p>
http://stackoverflow.com/questions/190253/jquery-selector-regular-expressions/190255#19025521Answer by Xenph Yan for JQuery selector regular expressionsXenph Yan2008-10-10T05:41:58Z2009-05-07T08:52:34Z<p>James Padolsey created a <a href="http://james.padolsey.com/javascript/regex-selector-for-jquery/" rel="nofollow">wonderful filter</a> that allows regex to be used for selection.</p>
<p>Say you have the following <code>div</code>:</p>
<pre><code><div class="asdf">
</code></pre>
<p>Padolsey's <code>:regex</code> filter can select it like so:</p>
<pre><code>$("div:regex(class, .*sd.*)")
</code></pre>
<p>Also, check the <a href="http://docs.jquery.com/Selectors" rel="nofollow">official documentation on selectors</a>.</p>
http://stackoverflow.com/questions/535004/unix-epoch-time-to-java-date-object2Unix epoch time to Java Date ObjectXenph Yan2009-02-11T00:53:02Z2009-02-11T03:00:11Z
<p>I have a string containing the UNIX Epoch time, and I need to convert it to a Java Date Object.</p>
<pre><code>String date = "1081157732";
DateFormat df = new SimpleDateFormat(""); // This line
try {
Date expiry = df.parse(date);
} catch ( ParseException ex ) {
ex.getStackTrace();
}
</code></pre>
<p>The marked line is where I'm having trouble. I can't work out what the argument to SimpleDateFormat() should be, or even if I should be using SimpleDateFormat().</p>
http://stackoverflow.com/questions/514721/truncate-string-on-closest-word-boundary0Truncate String on closest word boundary.Xenph Yan2009-02-05T05:39:54Z2009-02-05T05:54:04Z
<p>Is it possible to truncate a Java string to the closest word boundary after a number of characters. Similar to the PHP wordwrap() function, shown in this <a href="http://stackoverflow.com/questions/79960/how-to-truncate-a-string-in-php-to-the-word-closest-to-a-certain-number-of-charac">example</a>.</p>
http://stackoverflow.com/questions/4369/how-to-include-php-files-that-require-an-absolute-path6How to include PHP files that require an absolute path?Xenph Yan2008-08-07T03:46:47Z2008-11-17T07:53:40Z
<p>I have a directory structure like the following;</p>
<blockquote>
<p>/script.php</p>
<p>/inc/include1.php<br>
/inc/include2.php</p>
<p>/objects/object1.php<br>
/objects/object2.php</p>
<p>/soap/soap.php</p>
</blockquote>
<p>Now, I use those objects in both script.php and /soap/soap.php, I could move them, but I want the directory structure like that for a different reason. When executing script.php the include path is inc/include.php and when executing /soap/soap.php it's ../inc, absolute paths work, /mnt/webdev/[project name]/inc/include1.php... But it's an ugly solution if I ever move the directory to a different location.</p>
<p>So is there a way to use relative paths, or a way to programically generate the "/mnt/webdev/[project name]/"?</p>
http://stackoverflow.com/questions/283193/evenly-shuffling-a-list-of-mail-address-by-domain/283200#2832000Answer by Xenph Yan for Evenly shuffling a list of mail address by domainXenph Yan2008-11-12T06:54:05Z2008-11-12T07:09:41Z<p>My starting attempt would be a hash map of linked lists, so that once all the domain collisions were grouped, you could iterate though the linked lists one at a time.</p>
<p>If that makes any sense.</p>
<p>The following code is completely <strong>UNTESTED</strong>, and I know there is a bunch of stuff not right in the second loop, but it was faster than trying to explain further.</p>
<pre><code>$sortedList = array();
$tempList
$emailList = array('a@a.com', 'b@a.com', 'c@b.com', 'd@b.com', 'e@c.com', 'f@a.com');
$emailCount = 0;
foreach ( $emailList as $email ) {
list($username, $domain) = explode('@', $email);
$tempList[$domain][] = $user;
$emailCount++;
}
for ( $i = 0; $i < $emailCount; $i++ ) {
$listIndex = $i % count($tempList);
if ( !empty($tempList[$listIndex]) ) {
$sortedList[] = $tempList[$listIndex][0];
unset($tempList[$listIndex][0]);
} else {
unset$tempList[$listIndex]);
}
}
</code></pre>
http://stackoverflow.com/questions/280003/how-do-i-retrieve-the-properties-of-a-photo-taken-on-a-digital-camera-using-net/280013#2800133Answer by Xenph Yan for How do I retrieve the properties of a photo taken on a digital camera using .NET?Xenph Yan2008-11-11T04:34:49Z2008-11-11T04:34:49Z<p>When I built something similar I used this <a href="http://www.codeproject.com/KB/graphics/exifextractor.aspx" rel="nofollow">article</a> quite a bit. But basically you're looking for the EXIF data embedded in the image. </p>
<p>There are a number of great libraries to extract it for you, if you don't want to write it from scratch.</p>
http://stackoverflow.com/questions/279966/phpself-vs-pathinfo-vs-scriptname-vs-requesturi/279986#2799861Answer by Xenph Yan for PHP_SELF vs PATH_INFO vs SCRIPT_NAME vs REQUEST_URIXenph Yan2008-11-11T04:17:09Z2008-11-11T04:17:09Z<p>Personally I use the $REQUEST_URI as it references the URI entered and not the location on the server's disc.</p>
http://stackoverflow.com/questions/277181/how-to-avoid-the-author-not-verified-message-when-installing-a-firefox-xpi-file/277192#2771921Answer by Xenph Yan for How to avoid the (Author not verified) message when installing a Firefox XPI fileXenph Yan2008-11-10T06:21:58Z2008-11-10T22:10:44Z<p>Here is the <a href="http://www.mozdevgroup.com/docs/pete/Signing-an-XPI.html" rel="nofollow">official tutorial</a>, which only deals with signing the XPI. I don't believe it's possible to install the plug in automatically for rather obvious security reasons.</p>
http://stackoverflow.com/questions/241479/what-are-the-best-references-for-using-jquery/241487#2414874Answer by Xenph Yan for What are the best references for using jQuery?Xenph Yan2008-10-27T21:40:43Z2008-10-27T21:40:43Z<p>I've found both the <a href="http://docs.jquery.com/Main_Page" rel="nofollow">official documentation</a> and the <a href="http://visualjquery.com/" rel="nofollow">VisualJQuery</a> references are very solid.</p>
http://stackoverflow.com/questions/196755/how-can-i-search-through-stackoverflow-questions-from-a-script/196758#1967581Answer by Xenph Yan for How can I search through stackoverflow questions from a script?Xenph Yan2008-10-13T05:09:04Z2008-10-13T05:09:04Z<p>You could screen scrape the returned HTML from a valid HTTP request. But that would result in bad karma, and the loss of the ability to enjoy a good night's sleep.</p>
http://stackoverflow.com/questions/196726/hashes-vs-numeric-ids/196736#1967361Answer by Xenph Yan for Hashes vs Numeric id'sXenph Yan2008-10-13T04:44:05Z2008-10-13T04:44:05Z<p>I typically use hashes if I don't want the user to be able to guess the next ID in the series. But for your book sections, I'd stick with numerical id's.</p>
http://stackoverflow.com/questions/181159/generating-a-unique-id-in-php/181163#1811637Answer by Xenph Yan for Generating a unique ID in PHPXenph Yan2008-10-08T02:45:25Z2008-10-08T02:45:25Z<pre><code>string uniqid ([ string $prefix [, bool $more_entropy ]] )
</code></pre>
<p>Gets a prefixed unique identifier based on the current time in microseconds.</p>
<pre><code>USAGE: $id = uniqid(rand(), true);
</code></pre>
http://stackoverflow.com/questions/1108/how-does-database-indexing-work20How does database indexing work?Xenph Yan2008-08-04T10:07:12Z2008-10-07T01:02:24Z
<p>Given that indexing is so important as your dataset increases in size, can someone explain how indexing works at a database agnostic level?</p>
<p>For information on queries to index a field, check out <a href="http://beta.stackoverflow.com/questions/1156/how-do-i-index-a-database-field" rel="nofollow">http://beta.stackoverflow.com/questions/1156/how-do-i-index-a-database-field</a></p>
http://stackoverflow.com/questions/1156/how-do-i-index-a-database-field5How do I index a database fieldXenph Yan2008-08-04T11:21:26Z2008-10-03T13:14:59Z
<p>Hopefully, I can get answers for each database server.</p>
<p>For an outline of how indexing works check out: <a href="http://beta.stackoverflow.com/questions/1108/how-does-database-indexing-work" rel="nofollow">http://beta.stackoverflow.com/questions/1108/how-does-database-indexing-work</a></p>
http://stackoverflow.com/questions/160384/apache-modrewrite-to-catch-xml-requests1Apache mod_rewrite to catch XML requestsXenph Yan2008-10-02T00:34:44Z2008-10-02T00:36:03Z
<p>How do I create a apache RewriteRule that catches any request URL ending in .xml, strips off the .xml and passes it to a specific script?</p>
<pre><code>http://www.example.com/document.xml, becomes http://www.example.com/document passed to script.php
</code></pre>
http://stackoverflow.com/questions/89924/c-editor-compiler-debugger-on-windows-lighter-than-visual-studio/89938#899383Answer by Xenph Yan for C++ Editor, Compiler, Debugger on Windows ( Lighter than Visual Studio)Xenph Yan2008-09-18T04:12:05Z2008-09-18T04:12:05Z<p><a href="http://www.bloodshed.net/devcpp.html" rel="nofollow">Dev C++</a>, it's lighter weight, and still have breakpoint debugging.</p>
http://stackoverflow.com/questions/1108/how-does-database-indexing-work/1130#113035Answer by Xenph Yan for How does database indexing work?Xenph Yan2008-08-04T10:41:04Z2008-09-18T03:52:59Z<p><strong>Why is it needed?</strong></p>
<p>When data is stored on disk based storage devices, it is stored as blocks of data. These blocks are accessed in their entirety, making them the atomic disk access operation. Disk blocks are structured in much the same way as linked lists; both contain a section for data, a pointer to the location of the next node (or block), and both need not be stored contiguously.</p>
<p>Due to the fact that a number of records can only be sorted on one field, we can state that searching on a field that isn’t sorted requires a Linear Search which requires N/2 block accesses, where N is the number of blocks that the table spans. If that field is a non-key field (i.e. doesn’t contain unique entries) then the entire table space must be searched at N block accesses.</p>
<p>Whereas with a sorted field, a Binary Search may be used, this has log2 N block accesses. Also since the data is sorted given a non-key field, the rest of the table doesn’t need to be searched for duplicate values, once a higher value is found. Thus the performance increase is substantial.</p>
<p><strong>What is indexing?</strong></p>
<p>Indexing is a way of sorting a number of records on multiple fields. Creating an index on a field in a table creates another data structure which holds the field value, and pointer to the record it relates to. This index structure is then sorted, allowing Binary Searches to be performed on it.</p>
<p>The downside to indexing is that these indexes require additional space on the disk, since the indexes are stored together in a MyISAM database, this file can quickly reach the size limits of the underlying file system if many fields within the same table are indexed.</p>
<p><strong>How does it work?</strong></p>
<p>Firstly, let’s outline a sample database table schema; </p>
<pre>Field name Data type Size on disk
id (Primary key) Unsigned INT 4 bytes
firstName Char(50) 50 bytes
lastName Char(50) 50 bytes
emailAddress Char(100) 100 bytes
Note: char was used in place of varchar to allow for an accurate size on disk value.
This sample database contains five million rows, and is unindexed. The performance of several queries will now be analyzed. These are a query using the id (a sorted key field) and one using the firstName (a non-key unsorted field).
</pre>
<p><strong><em>Example 1</em></strong></p>
<p>Given our sample database of r = 5,000,000 records of a fixed size giving a record length of R = 204 bytes and they are stored in a MyISAM database which is using the default block size B = 1,024 bytes. The blocking factor of the table would be bfr = (B/R) = 1024/204 = 5 records per disk block. The total number of blocks required to hold the table is N = (r/bfr) = 5000000/5 = 1,000,000 blocks. </p>
<p>A linear search on the id field would require an average of N/2 = 500,000 block accesses to find a value given that the id field is a key field. But since the id field is also sorted a binary search can be conducted requiring an average of log2 1000000 = 19.93 = 20 block accesses. Instantly we can see this is a drastic improvement.</p>
<p>Now the firstName field is neither sorted, so a binary search is impossible, nor are the values unique, and thus the table will require searching to the end for an exact N = 1,000,000 block accesses. It is this situation that indexing aims to correct.</p>
<p>Given that an index record contains only the indexed field and a pointer to the original record, it stands to reason that it will be smaller than the multi-field record that it points to. So the index itself requires fewer disk blocks that the original table, which therefore requires fewer block accesses to iterate through. The schema for an index on the firstName field is outlined below; </p>
<pre>Field name Data type Size on disk
firstName Char(50) 50 bytes
(record pointer) Special 4 bytes
Note: Pointers in MySQL are 2, 3, 4 or 5 bytes in length depending on the size of the table.
</pre>
<p><strong><em>Example 2</em></strong></p>
<p>Given our sample database of r = 5,000,000 records with an index record length of R = 54 bytes and using the default block size B = 1,024 bytes. The blocking factor of the index would be bfr = (B/R) = 1024/54 = 18 records per disk block. The total number of blocks required to hold the table is N = (r/bfr) = 5000000/18 = 277,778 blocks. </p>
<p>Now a search using the firstName field can utilise the index to increase performance. This allows for a binary search of the index with an average of log2 277778 = 18.08 = 19 block accesses. To find the address of the actual record, which requires a further block access to read, bringing the total to 19 + 1 = 20 block accesses, a far cry from the 1,000,000 block accesses required by the non-indexed table.</p>
<p><strong>When should it be used?</strong></p>
<p>Given that creating an index requires additional disk space (277,778 blocks extra from the above example), and that too many indexes can cause issues arising from the file systems size limits, careful thought must be used to select the correct fields to index.</p>
<p>Since indexes are only used to speed up the searching for a matching field within the records, it stands to reason that indexing fields used only for output would be simply a waste of disk space and processing time when doing an insert or delete operation, and thus should be avoided. Also given the nature of a binary search, the cardinality or uniqueness of the data is important. Indexing on a field with a cardinality of 2 would split the data in half, whereas a cardinality of 1,000 would return approximately 1,000 records. With such a low cardinality the effectiveness is reduced to a linear sort, and the query optimizer will avoid using the index if the cardinality is greater than 30% of the record number, effectively making the index a waste of space.</p>http://stackoverflow.com/questions/79455/how-to-select-consecutive-elements-that-match-a-filter/79471#794712Answer by Xenph Yan for How to select consecutive elements that match a filterXenph Yan2008-09-17T02:55:32Z2008-09-17T02:55:32Z<p>I believe looping is your best bet. But you could try, each active, and then move before and after until the condition breaks, which if the set is large enough would be faster.</p>
http://stackoverflow.com/questions/79381/accessing-websites-through-a-different-port/79391#793911Answer by Xenph Yan for Accessing Websites through a Different Port?Xenph Yan2008-09-17T02:43:39Z2008-09-17T02:43:39Z<p>No, as the server decides what port it is run on. Perhaps you could install a proxy, which would redirect the port, but in the end the connection would be made on port 80 from your machine.</p>
http://stackoverflow.com/questions/68583/foreach-access-the-index-or-an-associative-array0foreach access the index or an associative arrayXenph Yan2008-09-16T01:35:07Z2008-09-16T04:45:54Z
<p>I have the following code snippet.</p>
<pre><code>$items['A'] = "Test";
$items['B'] = "Test";
$items['C'] = "Test";
$items['D'] = "Test";
$index = 0;
foreach($items as $key => $value)
{
echo "$index is a $key containing $value\n";
$index++;
}
</code></pre>
<p>Expected output:</p>
<pre><code>0 is a A containing Test
1 is a B containing Test
2 is a C containing Test
3 is a D containing Test
</code></pre>
<p>Is there a way to leave out the $index variable?</p>
http://stackoverflow.com/questions/1108/how-does-database-indexing-work/1144#11441Answer by Xenph Yan for How does database indexing work?Xenph Yan2008-08-04T11:05:52Z2008-09-16T00:19:46Z<p>I'm starting to think that given the fact that self-answerers will be rare that either they agree to conform to a standard (Question, Answer, and article as a tag) or users with 1000+ rep will modify these posts to a standard that most people agree on.</p>
<p>Having the <strong>creators</strong> custom code for a differing use of the website isn't efficient, especially when we can band together and enforce a de-facto standard.</p>http://stackoverflow.com/questions/1108/how-does-database-indexing-work/1118#11181Answer by Xenph Yan for How does database indexing work?Xenph Yan2008-08-04T10:25:30Z2008-09-16T00:19:35Z<p>@sparkes, I am trying to jump start the article process, so there isn't a right or wrong way just yet :)</p>
<p>I thought about doing it the way you suggested, and if enough people think it's the way to go, I'll happily edit it that way. Maybe Jeff can weigh in with an acceptable way of doing things here.</p>http://stackoverflow.com/questions/4369/how-to-include-php-files-that-require-an-absolute-path/5499#54990Answer by Xenph Yan for How to include PHP files that require an absolute path?Xenph Yan2008-08-08T00:02:45Z2008-08-08T00:02:45Z<p>@Flubba, does this allow me to have folders inside my include directory? flat include directories give me nightmares. as the whole objects directory should be in the inc directory.</p>http://stackoverflow.com/questions/4432/csv-string-handling/4461#44611Answer by Xenph Yan for CSV string handlingXenph Yan2008-08-07T06:25:57Z2008-08-07T06:25:57Z<blockquote>
<p>I like the idea of adding the comma by checking if the container is empty, but doesn't that mean more processing as it needs to check the length of the string on each occurrence?</p>
</blockquote>
<p>You're prematurely optimizing, the performance hit would be negligible.</p>http://stackoverflow.com/questions/4371/how-do-i-retrieve-my-mysql-username-and-password/4376#437619Answer by Xenph Yan for How do I retrieve my MySQL username and password?Xenph Yan2008-08-07T04:02:17Z2008-08-07T05:29:18Z<blockquote>
<p>Stop the MySQL process.</p>
<p>Start the MySQL process with the --skip-grant-tables option.</p>
<p>Start the MySQL console client with the -u root option.</p>
</blockquote>
<p>List all the users;</p>
<pre><code>SELECT * FROM mysql.user;<br></code></pre>
<p>Reset password;</p>
<pre><code>UPDATE mysql.user SET Password=PASSWORD('[password]') WHERE User='[username]';<br></code></pre>
<hr>
<p>But <strong>DO NOT FORGET</strong> to</p>
<blockquote>
<p>Stop the MySQL process </p>
<p>Start the MySQL Process normally (i.e. without the --skip-grant-tables option)</p>
</blockquote>
<p>when you are finished. Otherwise, your database's security could be compromised.</p>http://stackoverflow.com/questions/4393/ms-sql-drop-all-tables-whose-names-begin-with-a-certain-string/4394#43947Answer by Xenph Yan for MS-SQL: Drop all tables whose names begin with a certain stringXenph Yan2008-08-07T04:44:48Z2008-08-07T04:44:48Z<p>SELECT 'DROP TABLE "' + TABLE_NAME + '"' FROM INFORMATION_SCHEMA.TABLES WHERE
TABLE_NAME LIKE '[prefix]%'</p>
<p>This will generate a script...</p>http://stackoverflow.com/questions/1237/regex-to-pull-out-a-section-a-substing-from-a-string-between-two-tags/1243#12432Answer by Xenph Yan for Regex: To pull out a section a substing from a string between two tagsXenph Yan2008-08-04T13:55:05Z2008-08-04T13:55:05Z<pre><code>\[start\]\s*(((?!\[start\]|\[end\]).)+)\s*\[end\]<br></code></pre>
<p>This should hopefully drop the [start] and [end] markers as well.</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/1192#11922Answer by Xenph Yan for Decode email address from Gravatar hash?Xenph Yan2008-08-04T12:42:40Z2008-08-04T12:42:40Z<p>@Michael Stum, it is possible, because only one of the values to generate the hash would be a valid email address, so you could avoid collisions.</p>http://stackoverflow.com/questions/267658/having-both-a-created-and-last-updated-timestamp-columns-in-mysql-4-0/807613#807613Comment by Xenph Yan on Having both a Created and Last Updated timestamp columns in MySQL 4.0Xenph Yan2009-05-04T04:47:20Z2009-05-04T04:47:20ZYou aren't really supposed to post links to blog articles (especially your own) it kind of defeats the purpose. +1 anyway as the information was good.http://stackoverflow.com/questions/514721/truncate-string-on-closest-word-boundary/514740#514740Comment by Xenph Yan on Truncate String on closest word boundary.Xenph Yan2009-02-05T06:02:34Z2009-02-05T06:02:34ZThis is great thanks, although would aa bi.truncateAt() have been too much to ask for? :)http://stackoverflow.com/questions/283222/best-way-to-substitute-variables-in-plain-text-using-php/283237#283237Comment by Xenph Yan on Best way to substitute variables in plain text using PHPXenph Yan2008-11-12T07:24:53Z2008-11-12T07:24:53ZI believe so too, but the spec shows the variable is defined by a $ as the starting character, not enclosed by %'shttp://stackoverflow.com/questions/282800/c-odd-compile-error-error-changes-meaning-of-object-from-class-objectComment by Xenph Yan on C++ odd compile error: error: changes meaning of "Object" from class "Object"Xenph Yan2008-11-12T02:16:52Z2008-11-12T02:16:52ZYou might need to include the players.h file also, to see if the problem is in the definition.http://stackoverflow.com/questions/279966/phpself-vs-pathinfo-vs-scriptname-vs-requesturi/279986#279986Comment by Xenph Yan on PHP_SELF vs PATH_INFO vs SCRIPT_NAME vs REQUEST_URIXenph Yan2008-11-11T04:41:39Z2008-11-11T04:41:39ZTypically, you can run into issues with apache on windows, but it's only for URI's that don't resolve.http://stackoverflow.com/questions/277181/how-to-avoid-the-author-not-verified-message-when-installing-a-firefox-xpi-file/277192#277192Comment by Xenph Yan on How to avoid the (Author not verified) message when installing a Firefox XPI fileXenph Yan2008-11-10T22:11:26Z2008-11-10T22:11:26ZI fixed the broken link.http://stackoverflow.com/questions/267658/having-both-a-created-and-last-updated-timestamp-columns-in-mysql-4-0/267663#267663Comment by Xenph Yan on Having both a Created and Last Updated timestamp columns in MySQL 4.0Xenph Yan2008-11-06T04:55:07Z2008-11-06T04:55:07ZI went with the insert NOW() way, mostly as other code might touch these tables and I don't trust people to update them correctly. :)http://stackoverflow.com/questions/267658/having-both-a-created-and-last-updated-timestamp-columns-in-mysql-4-0/267663#267663Comment by Xenph Yan on Having both a Created and Last Updated timestamp columns in MySQL 4.0Xenph Yan2008-11-06T04:49:06Z2008-11-06T04:49:06Z@tvanfosson, I think he meant as part of the insert statement.http://stackoverflow.com/questions/267658/having-both-a-created-and-last-updated-timestamp-columns-in-mysql-4-0/267663#267663Comment by Xenph Yan on Having both a Created and Last Updated timestamp columns in MySQL 4.0Xenph Yan2008-11-06T04:46:26Z2008-11-06T04:46:26ZIs this the only way? I can't have the database look after all that detail?http://stackoverflow.com/questions/267076/what-objects-can-be-tested-with-regular-expressions-in-c/267084#267084Comment by Xenph Yan on What objects can be tested with Regular Expressions in C#Xenph Yan2008-11-05T23:14:44Z2008-11-05T23:14:44ZI have edited your question inline with your comment to this answer.http://stackoverflow.com/questions/257752/visual-studio-whitespace-settingsComment by Xenph Yan on Visual Studio whitespace settingsXenph Yan2008-11-03T04:30:02Z2008-11-03T04:30:02ZHopefully one would pick them up by reading some of the other questions on the site and observing the style.http://stackoverflow.com/questions/257862/java-programmingComment by Xenph Yan on java programmingXenph Yan2008-11-03T04:14:08Z2008-11-03T04:14:08ZOops, but bespoke means, handmade...http://stackoverflow.com/questions/257901/how-to-display-file-names-from-a-folder/257912#257912Comment by Xenph Yan on How to display file names from a folderXenph Yan2008-11-03T04:08:59Z2008-11-03T04:08:59ZIf you aren't answering the question, then comment (when you have enough rep) all these extra answers pollute the question.http://stackoverflow.com/questions/257752/visual-studio-whitespace-settingsComment by Xenph Yan on Visual Studio whitespace settingsXenph Yan2008-11-03T02:05:39Z2008-11-03T02:05:39ZI cleaned this question up, and made it more in keeping with the site, @rbeins, please try to post is keeping with SO's standards and guidelines.http://stackoverflow.com/questions/241897/how-to-alternate-html-table-row-colors-using-jsp/241927#241927Comment by Xenph Yan on How to alternate HTML table row colors using JSP?Xenph Yan2008-10-28T01:12:01Z2008-10-28T01:12:01ZSorry, I edited your code to make it show correctly.