<?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 for Syn.acK</title>
	<atom:link href="http://syn.ac/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://syn.ac</link>
	<description>Syn.acK - Reviews and help about anything</description>
	<lastBuildDate>Mon, 07 Nov 2011 19:25:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Get the week number with JavaScript by Julien de Prabère</title>
		<link>http://syn.ac/tech/19/get-the-weeknumber-with-javascript/comment-page-1/#comment-208</link>
		<dc:creator>Julien de Prabère</dc:creator>
		<pubDate>Mon, 07 Nov 2011 19:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/common/19/get-the-weeknumber-with-javascript/#comment-208</guid>
		<description>After cheks, your program does not need a correction for summer time but is wrong, for example in 2010, with one week too much all year long...</description>
		<content:encoded><![CDATA[<p>After cheks, your program does not need a correction for summer time but is wrong, for example in 2010, with one week too much all year long&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get the week number with JavaScript by Julien de Prabère</title>
		<link>http://syn.ac/tech/19/get-the-weeknumber-with-javascript/comment-page-1/#comment-207</link>
		<dc:creator>Julien de Prabère</dc:creator>
		<pubDate>Mon, 07 Nov 2011 01:02:50 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/common/19/get-the-weeknumber-with-javascript/#comment-207</guid>
		<description>I propose this function, which takes into account the summer(daylight saving) time !

Date.prototype.getWeek = function() {var i,d,firstWeekMonday;
	var i=1;while (new Date(this.getFullYear(),0,i).getDay()!=4) i++;// i the first Thursday;
	var firstWeekMonday = new Date(this.getFullYear(),0,i-3,0,0,0,-1);// one millisecond before 
	d=Math.ceil(((this.valueOf()-firstWeekMonday.valueOf()-(this.getTimezoneOffset()-firstWeekMonday.getTimezoneOffset())*60000)/86400000)/7);
	return d?d:new Date(this.getFullYear()-1,11,31).getWeek();
}</description>
		<content:encoded><![CDATA[<p>I propose this function, which takes into account the summer(daylight saving) time !</p>
<p>Date.prototype.getWeek = function() {var i,d,firstWeekMonday;<br />
	var i=1;while (new Date(this.getFullYear(),0,i).getDay()!=4) i++;// i the first Thursday;<br />
	var firstWeekMonday = new Date(this.getFullYear(),0,i-3,0,0,0,-1);// one millisecond before<br />
	d=Math.ceil(((this.valueOf()-firstWeekMonday.valueOf()-(this.getTimezoneOffset()-firstWeekMonday.getTimezoneOffset())*60000)/86400000)/7);<br />
	return d?d:new Date(this.getFullYear()-1,11,31).getWeek();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating PHP cronjobs without cron and php-cli by RJ</title>
		<link>http://syn.ac/tech/13/creating-php-cronjobs-without-cron-and-php-cli/comment-page-1/#comment-205</link>
		<dc:creator>RJ</dc:creator>
		<pubDate>Mon, 19 Sep 2011 20:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/tech/13/creating-php-cronjobs-without-cron-and-php-cli/#comment-205</guid>
		<description>Why does this only work in the root directory?

Am I doing it wrong, or is it some weird requirement?


I&#039;ve tried

$socketdata = &quot;GET /subdir/cron.php HTTP 1.1\r\nHost: &quot;.$_SERVER[&#039;HTTP_HOST&#039;].&quot;\r\nConnection: Close\r\n\r\n&quot;;

and also

$socketdata = &quot;GET /cron.php HTTP 1.1\r\nHost: &quot;.$_SERVER[&#039;HTTP_HOST&#039;].&quot;/subdir\r\nConnection: Close\r\n\r\n&quot;;

Neither worked</description>
		<content:encoded><![CDATA[<p>Why does this only work in the root directory?</p>
<p>Am I doing it wrong, or is it some weird requirement?</p>
<p>I&#8217;ve tried</p>
<p>$socketdata = &#8220;GET /subdir/cron.php HTTP 1.1\r\nHost: &#8220;.$_SERVER['HTTP_HOST'].&#8221;\r\nConnection: Close\r\n\r\n&#8221;;</p>
<p>and also</p>
<p>$socketdata = &#8220;GET /cron.php HTTP 1.1\r\nHost: &#8220;.$_SERVER['HTTP_HOST'].&#8221;/subdir\r\nConnection: Close\r\n\r\n&#8221;;</p>
<p>Neither worked</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating PHP cronjobs without cron and php-cli by Sam</title>
		<link>http://syn.ac/tech/13/creating-php-cronjobs-without-cron-and-php-cli/comment-page-1/#comment-203</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 10 Aug 2011 15:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/tech/13/creating-php-cronjobs-without-cron-and-php-cli/#comment-203</guid>
		<description>lol this guy literally gave you the code @varadi.peter</description>
		<content:encoded><![CDATA[<p>lol this guy literally gave you the code @varadi.peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PhpMyAdmin problems after upgrading to Ubuntu Feisty by Jeana</title>
		<link>http://syn.ac/tech/14/phpmyadmin-problems-after-upgrading-to-ubuntu-feisty/comment-page-1/#comment-197</link>
		<dc:creator>Jeana</dc:creator>
		<pubDate>Tue, 12 Apr 2011 15:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/common/14/phpmyadmin-problems-after-upgrading-to-ubuntu-feisty/#comment-197</guid>
		<description>That&#039;s way more clever than I was epxecitgn. Thanks!</description>
		<content:encoded><![CDATA[<p>That&#8217;s way more clever than I was epxecitgn. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating PHP cronjobs without cron and php-cli by Capatin</title>
		<link>http://syn.ac/tech/13/creating-php-cronjobs-without-cron-and-php-cli/comment-page-1/#comment-196</link>
		<dc:creator>Capatin</dc:creator>
		<pubDate>Tue, 12 Apr 2011 10:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/tech/13/creating-php-cronjobs-without-cron-and-php-cli/#comment-196</guid>
		<description>Thanks alot - your answer solved all my prbomlse after several days struggling</description>
		<content:encoded><![CDATA[<p>Thanks alot &#8211; your answer solved all my prbomlse after several days struggling</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get the week number with JavaScript by ray</title>
		<link>http://syn.ac/tech/19/get-the-weeknumber-with-javascript/comment-page-1/#comment-195</link>
		<dc:creator>ray</dc:creator>
		<pubDate>Fri, 04 Feb 2011 16:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/common/19/get-the-weeknumber-with-javascript/#comment-195</guid>
		<description>I been looking for a weekly script. What is the code to display the current week on the page. document.write?

thx</description>
		<content:encoded><![CDATA[<p>I been looking for a weekly script. What is the code to display the current week on the page. document.write?</p>
<p>thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get the week number with JavaScript by Lasse Ebert</title>
		<link>http://syn.ac/tech/19/get-the-weeknumber-with-javascript/comment-page-1/#comment-180</link>
		<dc:creator>Lasse Ebert</dc:creator>
		<pubDate>Tue, 05 Oct 2010 22:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/common/19/get-the-weeknumber-with-javascript/#comment-180</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get the week number with JavaScript by Monty</title>
		<link>http://syn.ac/tech/19/get-the-weeknumber-with-javascript/comment-page-1/#comment-175</link>
		<dc:creator>Monty</dc:creator>
		<pubDate>Sat, 04 Sep 2010 19:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/common/19/get-the-weeknumber-with-javascript/#comment-175</guid>
		<description>It doesnt work, for the date of 9/4/2010 it gives 35, its 36....</description>
		<content:encoded><![CDATA[<p>It doesnt work, for the date of 9/4/2010 it gives 35, its 36&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSN / Live Messenger &#8211; How to fix error 80072efd by In behandeling hijack this log - Pagina 2 - 9lives - Games Forum</title>
		<link>http://syn.ac/common/66/msn-live-messenger-how-to-fix-error-80072efd/comment-page-1/#comment-171</link>
		<dc:creator>In behandeling hijack this log - Pagina 2 - 9lives - Games Forum</dc:creator>
		<pubDate>Wed, 12 May 2010 16:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://syn.ac/?p=66#comment-171</guid>
		<description>[...] is je msn denk ik.  MSN / Live Messenger &#8211; How to fix error 80072efd  Hier staan allerlei tips hier [...]</description>
		<content:encoded><![CDATA[<p>[...] is je msn denk ik.  MSN / Live Messenger &#8211; How to fix error 80072efd  Hier staan allerlei tips hier [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

