<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>shesek</title>
	<atom:link href="http://www.shesek.info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shesek.info</link>
	<description>Just another web developer blog</description>
	<lastBuildDate>Thu, 10 Jun 2010 16:56:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to hide Facebook&#8217;s Like Box social plugin border</title>
		<link>http://www.shesek.info/web-development/how-to-hide-facebooks-like-box-social-plugin-border</link>
		<comments>http://www.shesek.info/web-development/how-to-hide-facebooks-like-box-social-plugin-border#comments</comments>
		<pubDate>Wed, 26 May 2010 22:32:49 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[hide border]]></category>
		<category><![CDATA[like box]]></category>
		<category><![CDATA[social plugin]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=269</guid>
		<description><![CDATA[I was trying to make my own rounded-colored-cooler-looking border for the Like Box social plugin, and Facebook&#8217;s default border was getting in the way. That&#8217;s what I eventually used: &#38;lt;div id=&#34;likebox&#34; style=&#34;background-image: url(../images/likebg.png); width: 286px; height: 156px; padding: 7px;&#34;&#38;gt; &#38;lt;div id=&#34;likebox-frame&#34; style=&#34;width: 286px; height: 156px; overflow: hidden;&#34;&#38;gt; &#38;lt;iframe style=&#34; width: 288px; height: 155px; margin: -1px [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/how-to-hide-facebooks-like-box-social-plugin-border/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>8 Websites you need to stop building</title>
		<link>http://www.shesek.info/general/8-websites-you-need-to-stop-building</link>
		<comments>http://www.shesek.info/general/8-websites-you-need-to-stop-building#comments</comments>
		<pubDate>Wed, 12 May 2010 23:52:04 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=260</guid>
		<description><![CDATA[I really liked that post and just wanted to share it That one is hilarious (site #7):]]></description>
		<wfw:commentRss>http://www.shesek.info/general/8-websites-you-need-to-stop-building/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet Explorer &#8220;Unspecified Error&#8221; with jQuery and getBoundingClientRect</title>
		<link>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect</link>
		<comments>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect#comments</comments>
		<pubDate>Sat, 08 May 2010 18:15:14 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[getBoundingClientRect]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[offset]]></category>
		<category><![CDATA[offsetParent]]></category>
		<category><![CDATA[unspecified error]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=255</guid>
		<description><![CDATA[I&#8217;ve been getting &#8220;Unspecified Error&#8221; errors from Internet Explorer with some jQuery code. I traced the cause to jQuery&#8217;s &#8220;getBoundingClientRect&#8221; which comes from a call to $(&#8230;).offset({top: X, left: T}). After looking around in some forums/blogs, it seems the error is coming from some handling of internet explorer with offsetParent in some specific cases. to [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/internet-explorer-unspecified-error-with-jquery-and-getboundingclientrect/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toodledo API implemented in PHP</title>
		<link>http://www.shesek.info/php/toodledo-api</link>
		<comments>http://www.shesek.info/php/toodledo-api#comments</comments>
		<pubDate>Mon, 29 Mar 2010 08:46:48 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[php api]]></category>
		<category><![CDATA[toodledo]]></category>
		<category><![CDATA[toodledo api]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=246</guid>
		<description><![CDATA[I couldn&#8217;t find one, so I decided to write a PHP class that talks with Toodledo API. its not very well documented/commented, but quite simple and works well. Works on PHP5+ only. Uses the built-in stream wrapper for making HTTP requests (I&#8217;ll probably add support for requests with CURL and POST method too), and returns [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/php/toodledo-api/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HTTP error 417 with PHP&#8217;s curl</title>
		<link>http://www.shesek.info/php/http-error-417-with-php-curl</link>
		<comments>http://www.shesek.info/php/http-error-417-with-php-curl#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:59:42 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[http error 417]]></category>
		<category><![CDATA[http response 417]]></category>
		<category><![CDATA[http status]]></category>
		<category><![CDATA[http status 417]]></category>
		<category><![CDATA[php curl]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=241</guid>
		<description><![CDATA[I&#8217;ve been getting 417 response codes (Expectation failed) while making requests with PHP/curl to tinyurl.com (I&#8217;ll probably publish that project here in a week or two). Well, its very annoying. took me some time to figure that one out. If someone else wonders about it, that&#8217;s the deal: If the content length (of the request [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/php/http-error-417-with-php-curl/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blog publishing platforms and Google Sets</title>
		<link>http://www.shesek.info/online-marketing/blog-publishing-platforms-and-google-sets</link>
		<comments>http://www.shesek.info/online-marketing/blog-publishing-platforms-and-google-sets#comments</comments>
		<pubDate>Sun, 07 Mar 2010 05:37:56 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog platforms]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google labs]]></category>
		<category><![CDATA[google sets]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=229</guid>
		<description><![CDATA[I was looking for a list of blog publishing platforms and thought Google Sets, a little-known Google labs experiment that takes a list of items as input and outputs a larger set of items of the same kind, might be useful. I gave it WordPress, pivot, geeklog and greymatter as input and got a pretty [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/online-marketing/blog-publishing-platforms-and-google-sets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disk Free Human User</title>
		<link>http://www.shesek.info/online-marketing/disk-free-human-user</link>
		<comments>http://www.shesek.info/online-marketing/disk-free-human-user#comments</comments>
		<pubDate>Sun, 07 Mar 2010 03:54:28 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[dfhu]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=216</guid>
		<description><![CDATA[I really don&#8217;t know how I haven&#8217;t heard of that blog until now. Very interesting, high-quality and inspiring content. this is definitely going to be one of the very few blogs I&#8217;m regularly following.]]></description>
		<wfw:commentRss>http://www.shesek.info/online-marketing/disk-free-human-user/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My implementation of PHP Chainable</title>
		<link>http://www.shesek.info/php/my-implementation-of-php-chainable</link>
		<comments>http://www.shesek.info/php/my-implementation-of-php-chainable#comments</comments>
		<pubDate>Tue, 02 Mar 2010 21:49:28 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[chainable]]></category>
		<category><![CDATA[method chainability]]></category>
		<category><![CDATA[php chainable]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=177</guid>
		<description><![CDATA[I needed a way to use method chainability on objects without having to modify the actual class (e.g. extending an Chainable class or implementing one) and without having to &#8220;return $this&#8221; on every method. I came up with, what I believe to be, an elegant simple solution &#8211; a generic approach that can be used [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/php/my-implementation-of-php-chainable/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery shake() function</title>
		<link>http://www.shesek.info/web-development/jquery-shake-function</link>
		<comments>http://www.shesek.info/web-development/jquery-shake-function#comments</comments>
		<pubDate>Tue, 29 Dec 2009 09:46:03 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[shake]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=165</guid>
		<description><![CDATA[I needed a quick function for jQuery to shake an absolute or static positioned (can be easily modified to support other positions too, but it doesn&#8217;t at the moment) element up&#038;down that isn&#8217;t depended on jQuery UI (I&#8217;m using to shake simplemodal&#8216;s container). This is what I came up with that: 1 2 3 4 [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/web-development/jquery-shake-function/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick random WordPress post hack</title>
		<link>http://www.shesek.info/wordpress/quick-random-wordpress-post-hack</link>
		<comments>http://www.shesek.info/wordpress/quick-random-wordpress-post-hack#comments</comments>
		<pubDate>Sat, 26 Dec 2009 20:16:31 +0000</pubDate>
		<dc:creator>shesek</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress hacks]]></category>

		<guid isPermaLink="false">http://www.shesek.info/?p=124</guid>
		<description><![CDATA[A friend of mine, Dima, was looking for a plugin that&#8217;ll make it possible to link to random post for his new site, shlat.im. He told me over IRC that he couldn&#8217;t find any simple plugin to do it, and I replied with this quick hack: &#60;?php require&#40;'wp-load.php'&#41;; header&#40;'Location: index.php?p='.$wpdb-&#62;get_var&#40;'SELECT ID FROM '.$wpdb-&#62;posts.' WHERE post_type=\'post\' [...]]]></description>
		<wfw:commentRss>http://www.shesek.info/wordpress/quick-random-wordpress-post-hack/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
