<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" > <channel><title>Comments on: Y2K at DoD</title> <atom:link href="http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/feed/" rel="self" type="application/rss+xml" /><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/</link> <description>tech, science, news and social issues for geeks</description> <lastBuildDate>Mon, 13 Feb 2012 22:30:26 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=</generator> <item><title>By: Kiltak</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4658</link> <dc:creator>Kiltak</dc:creator> <pubDate>Tue, 15 May 2007 00:26:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4658</guid> <description>Wow, they&#039;ve actually listened and implemented my suggested fix :) That was quick! var year=today_date.&lt;b&gt;getFullYear()&lt;/b&gt; </description> <content:encoded><![CDATA[<p>Wow, they&#039;ve actually listened and implemented my suggested fix :) That was quick!</p><p>var year=today_date.<b>getFullYear()</b></p> ]]></content:encoded> </item> <item><title>By: Kiltak</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262219</link> <dc:creator>Kiltak</dc:creator> <pubDate>Tue, 15 May 2007 00:26:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262219</guid> <description>Wow, they&#039;ve actually listened and implemented my suggested fix :) That was quick!var year=today_date.&lt;b&gt;getFullYear()&lt;/b&gt;</description> <content:encoded><![CDATA[<p>Wow, they&#8217;ve actually listened and implemented my suggested fix :) That was quick!</p><p>var year=today_date.<b>getFullYear()</b></p> ]]></content:encoded> </item> <item><title>By: Bryan &#34;bytehead</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4610</link> <dc:creator>Bryan &#34;bytehead</dc:creator> <pubDate>Mon, 14 May 2007 21:33:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4610</guid> <description>Yeah, they fixed it. </description> <content:encoded><![CDATA[<p>Yeah, they fixed it.</p> ]]></content:encoded> </item> <item><title>By: Bryan "bytehead" Price</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262218</link> <dc:creator>Bryan "bytehead" Price</dc:creator> <pubDate>Mon, 14 May 2007 21:33:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262218</guid> <description>Yeah, they fixed it.</description> <content:encoded><![CDATA[<p>Yeah, they fixed it.</p> ]]></content:encoded> </item> <item><title>By: Mackenzie</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4602</link> <dc:creator>Mackenzie</dc:creator> <pubDate>Mon, 14 May 2007 18:13:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4602</guid> <description>And IE probably treats getYear() and getFullYear() the same, confusing the devs who only tested in IE, right? </description> <content:encoded><![CDATA[<p>And IE probably treats getYear() and getFullYear() the same, confusing the devs who only tested in IE, right?</p> ]]></content:encoded> </item> <item><title>By: Mackenzie</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262217</link> <dc:creator>Mackenzie</dc:creator> <pubDate>Mon, 14 May 2007 18:13:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262217</guid> <description>And IE probably treats getYear() and getFullYear() the same, confusing the devs who only tested in IE, right?</description> <content:encoded><![CDATA[<p>And IE probably treats getYear() and getFullYear() the same, confusing the devs who only tested in IE, right?</p> ]]></content:encoded> </item> <item><title>By: Kiltak</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4600</link> <dc:creator>Kiltak</dc:creator> <pubDate>Mon, 14 May 2007 17:54:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4600</guid> <description>---------------------------------- var today_date= new Date() var month=today_date.getMonth() var today=today_date.getDate() var year=today_date.getYear() var months = new Array(&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;, &quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;); SCRIPT language=Javascript document.write(months[month]+&quot; &quot;+today+&quot;, &quot;+year); ------------------------------------ getYear() returns the current year - 1900, so the result you get is exactly what the spec says you should get.  If you want 2007 rather than 107 people have to use getFullYear(): I left them a comment about this issue. Now let&#039;s see how fast they are to resolve it. </description> <content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p><p>var today_date= new Date()</p><p>var month=today_date.getMonth()</p><p>var today=today_date.getDate()</p><p>var year=today_date.getYear()</p><p>var months = new Array(&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;,</p><p>&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;);</p><p>SCRIPT language=Javascript document.write(months[month]+&quot; &quot;+today+&quot;, &quot;+year);</p><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p><p>getYear() returns the current year &#8211; 1900, so the result you get is</p><p>exactly what the spec says you should get.  If you want 2007 rather than</p><p>107 people have to use getFullYear():</p><p>I left them a comment about this issue. Now let&#039;s see how fast they are to resolve it.</p> ]]></content:encoded> </item> <item><title>By: Kiltak</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262216</link> <dc:creator>Kiltak</dc:creator> <pubDate>Mon, 14 May 2007 17:54:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262216</guid> <description>---------------------------------- var today_date= new Date() var month=today_date.getMonth() var today=today_date.getDate() var year=today_date.getYear() var months = new Array(&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;, &quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;);SCRIPT language=Javascript document.write(months[month]+&quot; &quot;+today+&quot;, &quot;+year); ------------------------------------getYear() returns the current year - 1900, so the result you get is exactly what the spec says you should get.  If you want 2007 rather than 107 people have to use getFullYear():I left them a comment about this issue. Now let&#039;s see how fast they are to resolve it.</description> <content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br /> var today_date= new Date()<br /> var month=today_date.getMonth()<br /> var today=today_date.getDate()<br /> var year=today_date.getYear()<br /> var months = new Array(&#8220;January&#8221;,&#8221;February&#8221;,&#8221;March&#8221;,&#8221;April&#8221;,&#8221;May&#8221;,&#8221;June&#8221;,&#8221;July&#8221;,<br /> &#8220;August&#8221;,&#8221;September&#8221;,&#8221;October&#8221;,&#8221;November&#8221;,&#8221;December&#8221;);</p><p>SCRIPT language=Javascript document.write(months[month]+&#8221; &#8220;+today+&#8221;, &#8220;+year);<br /> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p><p>getYear() returns the current year &#8211; 1900, so the result you get is<br /> exactly what the spec says you should get.  If you want 2007 rather than<br /> 107 people have to use getFullYear():</p><p>I left them a comment about this issue. Now let&#8217;s see how fast they are to resolve it.</p> ]]></content:encoded> </item> <item><title>By: Mackenzie</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4598</link> <dc:creator>Mackenzie</dc:creator> <pubDate>Mon, 14 May 2007 17:39:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4598</guid> <description>That means they&#039;re coding some kind of IE-specific Javascript.  Javascript is why it is blank for Lynx but shows on the others.  If IEs are all that have shown &quot;2007&quot; out of Gecko (Firefox), Opera, KHTML (Konqueror, Safari), it has to be that they&#039;re coding to a browser instead of coding to standards which is *bad*practice* </description> <content:encoded><![CDATA[<p>That means they&#039;re coding some kind of IE-specific Javascript.  Javascript is why it is blank for Lynx but shows on the others.  If IEs are all that have shown &quot;2007&quot; out of Gecko (Firefox), Opera, KHTML (Konqueror, Safari), it has to be that they&#039;re coding to a browser instead of coding to standards which is *bad*practice*</p> ]]></content:encoded> </item> <item><title>By: Mackenzie</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262215</link> <dc:creator>Mackenzie</dc:creator> <pubDate>Mon, 14 May 2007 17:39:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262215</guid> <description>That means they&#039;re coding some kind of IE-specific Javascript.  Javascript is why it is blank for Lynx but shows on the others.  If IEs are all that have shown &quot;2007&quot; out of Gecko (Firefox), Opera, KHTML (Konqueror, Safari), it has to be that they&#039;re coding to a browser instead of coding to standards which is *bad*practice*</description> <content:encoded><![CDATA[<p>That means they&#8217;re coding some kind of IE-specific Javascript.  Javascript is why it is blank for Lynx but shows on the others.  If IEs are all that have shown &#8220;2007&#8243; out of Gecko (Firefox), Opera, KHTML (Konqueror, Safari), it has to be that they&#8217;re coding to a browser instead of coding to standards which is *bad*practice*</p> ]]></content:encoded> </item> <item><title>By: Paico</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4592</link> <dc:creator>Paico</dc:creator> <pubDate>Mon, 14 May 2007 16:56:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-4592</guid> <description>Yep...only in firefox...I tried it on IE6 and IE7, and 2007 is displayed using a PC with Windows Vista...Opera, Safari and Chimera 0.6 display 107 in my OS X mac book...weird... </description> <content:encoded><![CDATA[<p>Yep&#8230;only in firefox&#8230;I tried it on IE6 and IE7, and 2007 is displayed using a PC with Windows Vista&#8230;Opera, Safari and Chimera 0.6 display 107 in my OS X mac book&#8230;weird&#8230;</p> ]]></content:encoded> </item> <item><title>By: Paico</title><link>http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262214</link> <dc:creator>Paico</dc:creator> <pubDate>Mon, 14 May 2007 16:56:00 +0000</pubDate> <guid isPermaLink="false">http://www.geeksaresexy.net/2007/05/14/y2k-at-dod/#comment-262214</guid> <description>Yep...only in firefox...I tried it on IE6 and IE7, and 2007 is displayed using a PC with Windows Vista...Opera, Safari and Chimera 0.6 display 107 in my OS X mac book...weird...</description> <content:encoded><![CDATA[<p>Yep&#8230;only in firefox&#8230;I tried it on IE6 and IE7, and 2007 is displayed using a PC with Windows Vista&#8230;Opera, Safari and Chimera 0.6 display 107 in my OS X mac book&#8230;weird&#8230;</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching 9/14 queries in 0.020 seconds using disk: basic
Content Delivery Network via blog.geeksaresexytech.netdna-cdn.com

Served from: www.geeksaresexy.net @ 2012-02-13 17:32:15 -->
