<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Blog for web development</title>
	
	<link>http://nik.chankov.net</link>
	<description>Technical weblog for articles and titorials related to web development.</description>
	<lastBuildDate>Mon, 13 Jul 2009 07:39:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<itunes:explicit>no</itunes:explicit><itunes:subtitle>Technical weblog for articles and titorials related to web development.</itunes:subtitle><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/chankov" type="application/rss+xml" /><item>
		<title>Script tag and attributes</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/hmefS6iv83s/</link>
		<comments>http://nik.chankov.net/2009/07/13/script-tag-and-attributes/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 07:39:49 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Javacript]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=907</guid>
		<description><![CDATA[I&#8217;ve lost precious time wondering why a Javascript code is working properly in FireFox, while on IE it&#8217;s not working at all. First thought was that the script is incompatible, but the final result was pretty stupid.
The reason:
The script tag was written this way:
&#60;script type=&#34;application/x-javascript&#34;&#62;
....
&#60;/script&#62;
changing the type attribute to &#8220;text/javascript&#8221; do the magic:
&#60;script type=&#34;text/javascript&#34;&#62;
....
&#60;/script&#62;
The first [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/07/13/script-tag-and-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/07/13/script-tag-and-attributes/</feedburner:origLink></item>
		<item>
		<title>CakePHP ajaxed pagination and sort</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/bhIM-IOBm6c/</link>
		<comments>http://nik.chankov.net/2009/05/16/cakephp-ajaxed-pagination-and-sort/#comments</comments>
		<pubDate>Sat, 16 May 2009 20:55:45 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Pagination]]></category>
		<category><![CDATA[Sort]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=884</guid>
		<description><![CDATA[Here I will describe how I did an Ajaxed pagination for one of my projects using jQuery and Livequery Plugin. Currently I am working on a huge project which, hopefully, will feed me with some ideas for blog posts and this is one of them  .  So:
1. Loading the javascript libs
Loading the jQuery [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/05/16/cakephp-ajaxed-pagination-and-sort/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/05/16/cakephp-ajaxed-pagination-and-sort/</feedburner:origLink></item>
		<item>
		<title>Passing variables to all Models from the Controller – strict MVC way</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/O-wuGWdnm0E/</link>
		<comments>http://nik.chankov.net/2009/04/21/passing-variables-to-all-models-from-the-controller-strict-mvc-way/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 18:49:20 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Behaviour]]></category>
		<category><![CDATA[Soft delete]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=860</guid>
		<description><![CDATA[It&#8217;s really easy to find inspiration when you developing on CakePHP. For the current project I need to create global (for all models) behavior which stores creator and modifier as well as deleter and deleted (for soft-delete).
What are the requirements
1. For every table (or at least the most of them) there are fields 6 fields: [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/04/21/passing-variables-to-all-models-from-the-controller-strict-mvc-way/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/04/21/passing-variables-to-all-models-from-the-controller-strict-mvc-way/</feedburner:origLink></item>
		<item>
		<title>Creating Wholesale Solution with Magento Commerce</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/9jgEJQCgDP8/</link>
		<comments>http://nik.chankov.net/2009/04/17/creating-wholesale-solution-with-magento-commerce/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 16:14:31 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Develoment]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[OsCommerce]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=776</guid>
		<description><![CDATA[My first approach for this post was to explain my first impressions from Magento Commerce, but I decided to explain how I managed to create a Retail/Wholesale solution required for a current project.
The requirement (so far, because it&#8217;s an ongoing project):
The client want to have a shop where regular customers to be able to see [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/04/17/creating-wholesale-solution-with-magento-commerce/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/04/17/creating-wholesale-solution-with-magento-commerce/</feedburner:origLink></item>
		<item>
		<title>Autocompleter plugin v 1.2</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/g8fYo5ga_SE/</link>
		<comments>http://nik.chankov.net/2009/04/03/autocompleter-plugin-v-12/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 09:19:50 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Autocompleter]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=806</guid>
		<description><![CDATA[Hey guys,
today I&#8217;ve released a new version of the Wordpress Plug-in &#8220;Autocompleter&#8221;. 
What is the change?
The new version contains ability to display number of matches per word or phrase in the drop-down. The example is available in this blog (top/left search field). Of course in order to activate this you should go to Admin under [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/04/03/autocompleter-plugin-v-12/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/04/03/autocompleter-plugin-v-12/</feedburner:origLink></item>
		<item>
		<title>5 useful jQuery plugins which saved me a lot of work</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/u37Upe76vNI/</link>
		<comments>http://nik.chankov.net/2009/03/17/5-useful-jquery-plugins-which-saved-me-a-lot-of-work/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 19:19:38 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[10 Things]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=785</guid>
		<description><![CDATA[Recently I was working on some projects which required some advanced techniques. Sometimes you should stop thinking how to make it with HTML and CSS, and just to do it with good JavaScript code.
So far, all of these plug-ins were forced because of design decisions, but anyway important here is the plug-ins and the great [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/03/17/5-useful-jquery-plugins-which-saved-me-a-lot-of-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/03/17/5-useful-jquery-plugins-which-saved-me-a-lot-of-work/</feedburner:origLink></item>
		<item>
		<title>New hosting for this blog</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/oIINvJbSfVE/</link>
		<comments>http://nik.chankov.net/2009/02/25/new-hosting-for-this-blog/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 15:24:00 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[New hosting]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=779</guid>
		<description><![CDATA[Hi guys,
if someone tell you that it&#8217;s easy to start writing in your blog after looong break &#8211; it&#8217;s a lie  
Just wanted to say that this blog was moved to a new host. It was long time planned, but I&#8217;ve always delayed. The reason for movement according to the hosting provider was, that [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/02/25/new-hosting-for-this-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/02/25/new-hosting-for-this-blog/</feedburner:origLink></item>
		<item>
		<title>Strange issue with captcha field</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/p1_Hp1DZBeA/</link>
		<comments>http://nik.chankov.net/2009/01/24/strange-issue-with-captcha-field/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 20:47:27 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Captcha]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Registration]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=756</guid>
		<description><![CDATA[Well, it&#8217;s more an observation than a real problem.
For my current CakePHP project I had to set a captcha field to a user registration form. I decided to be &#8220;creative&#8221; and I set the captcha image as background of the input field. In fact the graphical representation wasn&#8217;t bad at all. Unfortunately when it&#8217;s used, [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/01/24/strange-issue-with-captcha-field/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/01/24/strange-issue-with-captcha-field/</feedburner:origLink></item>
		<item>
		<title>Book review: CakePHP Application Development</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/zB6ssuzYm68/</link>
		<comments>http://nik.chankov.net/2009/01/12/book-review-cakephp-application-development/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 19:53:35 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=689</guid>
		<description><![CDATA[
In the beginning of December I&#8217;ve been asked to write a review of a book called CakePHP Application Development. The interesting thing was that I received a copy of the book exactly on my birthday &#8211; 29-th of December (probably consequence, but it was really nice). In this article I will write about what this [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2009/01/12/book-review-cakephp-application-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2009/01/12/book-review-cakephp-application-development/</feedburner:origLink></item>
		<item>
		<title>The last post for 2008</title>
		<link>http://feedproxy.google.com/~r/chankov/~3/bOQFpSRMR8k/</link>
		<comments>http://nik.chankov.net/2008/12/30/the-last-post-for-2008/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 12:14:19 +0000</pubDate>
		<dc:creator>Nik Chankov</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Dual Screen]]></category>
		<category><![CDATA[New Year]]></category>
		<category><![CDATA[Presents]]></category>

		<guid isPermaLink="false">http://nik.chankov.net/?p=681</guid>
		<description><![CDATA[Merry Christmas and Happy New Year to all readers of this blog!
This is my last post for this year and I could say I am pretty happy with the results achieved. There are 42 posts and 311 comments on them. Hopefully some of the posts helped someone, which is the main goal of this blog.
So, [...]]]></description>
		<wfw:commentRss>http://nik.chankov.net/2008/12/30/the-last-post-for-2008/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://nik.chankov.net/2008/12/30/the-last-post-for-2008/</feedburner:origLink></item>
	<media:rating>nonadult</media:rating></channel>
</rss>
