<?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>stoimen&#039;s web log &#187; portfolio</title>
	<atom:link href="http://www.stoimen.com/blog/category/what-i-make/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stoimen.com/blog</link>
	<description>about web development</description>
	<lastBuildDate>Mon, 06 Feb 2012 20:50:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery debug plugin</title>
		<link>http://www.stoimen.com/blog/2009/07/27/jquery-debug-plugin/</link>
		<comments>http://www.stoimen.com/blog/2009/07/27/jquery-debug-plugin/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 13:11:29 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=704</guid>
		<description><![CDATA[Console.log() Almost everybody using Firebug extension of Firefox is familiar with console object and in common with console.log method, who&#8217;s taking an object parameter and dumps it into the Firebug console. It&#8217;s perfect for debugging and it&#8217;s really useful.The problem &#8230; <a href="http://www.stoimen.com/blog/2009/07/27/jquery-debug-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2010/02/01/writing-a-jquery-plugin-part-2-sample-plugin/' rel='bookmark' title='Writing a jQuery plugin &#8211; (part 2). Sample plugin.'>Writing a jQuery plugin &#8211; (part 2). Sample plugin.</a></li>
<li><a href='http://www.stoimen.com/blog/2009/07/16/jquery-browser-and-os-detection-plugin/' rel='bookmark' title='jQuery browser and OS detection plugin'>jQuery browser and OS detection plugin</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/12/how-to-detect-a-variable-existence-in-javascript/' rel='bookmark' title='How to detect a variable existence in JavaScript?'>How to detect a variable existence in JavaScript?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Console.log()</h2>
<p>Almost everybody using Firebug extension of Firefox is familiar with console object and in common with console.log method, who&#8217;s taking an object parameter and dumps it into the Firebug console. It&#8217;s perfect for debugging and it&#8217;s really useful.The problem is that if you don&#8217;t have Firebug installed or it&#8217;s disabled the console object is undefined. The same may occur if you&#8217;re using other browser. That&#8217;s why I decided to make a simple plugin for jQuery with the $.log interface which checks for the console and opera objects and if they don&#8217;t exists just alert the message. It&#8217;s nothing special.</p>
<p><a href="http://www.stoimen.com/blog/wp-content/uploads/2009/07/jquery-log-html.png"><img class="alignnone size-full wp-image-708" title="jquery-log-html" src="http://www.stoimen.com/blog/wp-content/uploads/2009/07/jquery-log-html.png" alt="" width="430" height="122" /></a><span id="more-704"></span></p>
<h2>jQuery log</h2>
<p>the code is really simple and small:</p>
<blockquote>
<pre>(function(jQuery) {

	/**
	 * log
	 *
	 * write debug errors to the console or
	 * alert them if the browser does not support
	 * the console object
	 *
	 * @public
	 * @param {Object}
	 * @return {Void}
	 */
	var log = function( object ) {
		if ( typeof console == 'object' )
			console.log( object );
		else if ( typeof opera == 'object' )
			opera.postError( object );
		else
			alert(object);
	}

	jQuery.fn.log = log;
	jQuery.log = log;

})(jQuery);</pre>
</blockquote>
<h2>Demo page</h2>
<p>The demo of the page is <a href="http://www.stoimen.com/jquery.log.plugin/">here</a>.</p>
<p><a href="http://www.stoimen.com/blog/wp-content/uploads/2009/07/jquery-log-plugin.png"><img class="alignnone size-full wp-image-709" title="jquery-log-plugin" src="http://www.stoimen.com/blog/wp-content/uploads/2009/07/jquery-log-plugin.png" alt="" width="430" height="262" /></a></p>
<p>Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2010/02/01/writing-a-jquery-plugin-part-2-sample-plugin/' rel='bookmark' title='Writing a jQuery plugin &#8211; (part 2). Sample plugin.'>Writing a jQuery plugin &#8211; (part 2). Sample plugin.</a></li>
<li><a href='http://www.stoimen.com/blog/2009/07/16/jquery-browser-and-os-detection-plugin/' rel='bookmark' title='jQuery browser and OS detection plugin'>jQuery browser and OS detection plugin</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/12/how-to-detect-a-variable-existence-in-javascript/' rel='bookmark' title='How to detect a variable existence in JavaScript?'>How to detect a variable existence in JavaScript?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2009/07/27/jquery-debug-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MaYoMo released</title>
		<link>http://www.stoimen.com/blog/2009/07/01/mayomo-released/</link>
		<comments>http://www.stoimen.com/blog/2009/07/01/mayomo-released/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 10:57:21 +0000</pubDate>
		<dc:creator>Stoimen</dc:creator>
				<category><![CDATA[portfolio]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[mayomo]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=639</guid>
		<description><![CDATA[The project I&#8217;m working on finally released as Beta &#8211; www.mayomo.com MaYoMo is a “social news network” for journalists and their readers that empowers a new era of Internet news creation and distribution. With an ever-expanding corps of citizen and &#8230; <a href="http://www.stoimen.com/blog/2009/07/01/mayomo-released/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2008/12/01/mayomo-map-your-moments/' rel='bookmark' title='MaYoMo &#8211; Map Your Moments'>MaYoMo &#8211; Map Your Moments</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/15/jquery-1-4-released/' rel='bookmark' title='jQuery 1.4 released'>jQuery 1.4 released</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/26/now-jquery-1-4-1-is-released/' rel='bookmark' title='Now jQuery 1.4.1 is released!'>Now jQuery 1.4.1 is released!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The project I&#8217;m working on finally released as Beta &#8211; <a title="MaYoMo" href="http://www.mayomo.com" target="_blank">www.mayomo.com</a></p>
<p><a href="http://www.stoimen.com/blog/wp-content/uploads/2009/07/mayomo_logo.jpg"><img class="alignnone size-medium wp-image-640" title="mayomo_logo" src="http://www.stoimen.com/blog/wp-content/uploads/2009/07/mayomo_logo-300x111.jpg" alt="" width="300" height="111" /></a></p>
<blockquote><p>MaYoMo is a “social news network” for journalists and their readers that empowers a new era of Internet news creation and distribution. With an ever-expanding corps of citizen and independent journalists based in every corner of the globe, MaYoMo is shaping the evolution of journalism and delivering the world’s most inspired multimedia news content. Now, thanks to MaYoMo’s highly unique and entrepreneurial “news channel approach,” professional, amateur, and student journalists can create and manage their own custom news channel, unleashing new career and business opportunities based on the company’s shared revenue advertising model. MaYoMo lets you discover the power of news like never before and experience the new future of journalism and news content distribution.</p></blockquote>
<p>Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2008/12/01/mayomo-map-your-moments/' rel='bookmark' title='MaYoMo &#8211; Map Your Moments'>MaYoMo &#8211; Map Your Moments</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/15/jquery-1-4-released/' rel='bookmark' title='jQuery 1.4 released'>jQuery 1.4 released</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/26/now-jquery-1-4-1-is-released/' rel='bookmark' title='Now jQuery 1.4.1 is released!'>Now jQuery 1.4.1 is released!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2009/07/01/mayomo-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My new Zen site</title>
		<link>http://www.stoimen.com/blog/2008/12/10/zen-site/</link>
		<comments>http://www.stoimen.com/blog/2008/12/10/zen-site/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 05:59:58 +0000</pubDate>
		<dc:creator>stoimen</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[buddhism]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[zen]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=125</guid>
		<description><![CDATA[My newest site, I made for almost 40 minutes, you can find on http://stoimen.com/zen Related posts: JavaScript Zen Treality Web Site javascript: detect browser speed and load the &#8220;slow connection&#8221; site version
Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2010/03/17/javascript-zen/' rel='bookmark' title='JavaScript Zen'>JavaScript Zen</a></li>
<li><a href='http://www.stoimen.com/blog/2008/03/10/treality-web-site/' rel='bookmark' title='Treality Web Site'>Treality Web Site</a></li>
<li><a href='http://www.stoimen.com/blog/2009/07/24/javascript-detect-browser-speed-and-load-the-slow-connection-site/' rel='bookmark' title='javascript: detect browser speed and load the &#8220;slow connection&#8221; site version'>javascript: detect browser speed and load the &#8220;slow connection&#8221; site version</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>My newest site, I made for almost 40 minutes, you can find on <a href="http://stoimen.com/zen">http://stoimen.com/zen</a></p>
<p>Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2010/03/17/javascript-zen/' rel='bookmark' title='JavaScript Zen'>JavaScript Zen</a></li>
<li><a href='http://www.stoimen.com/blog/2008/03/10/treality-web-site/' rel='bookmark' title='Treality Web Site'>Treality Web Site</a></li>
<li><a href='http://www.stoimen.com/blog/2009/07/24/javascript-detect-browser-speed-and-load-the-slow-connection-site/' rel='bookmark' title='javascript: detect browser speed and load the &#8220;slow connection&#8221; site version'>javascript: detect browser speed and load the &#8220;slow connection&#8221; site version</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2008/12/10/zen-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MaYoMo &#8211; Map Your Moments</title>
		<link>http://www.stoimen.com/blog/2008/12/01/mayomo-map-your-moments/</link>
		<comments>http://www.stoimen.com/blog/2008/12/01/mayomo-map-your-moments/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 12:06:48 +0000</pubDate>
		<dc:creator>stoimen</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[citizen journalism]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mayomo]]></category>
		<category><![CDATA[moments]]></category>
		<category><![CDATA[web media]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/?p=122</guid>
		<description><![CDATA[please visit MaYoMo Related posts: MaYoMo released Change the sea/ocean color of OpenLayers (OSM) map
Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2009/07/01/mayomo-released/' rel='bookmark' title='MaYoMo released'>MaYoMo released</a></li>
<li><a href='http://www.stoimen.com/blog/2009/08/07/change-the-sea-ocean-color-of-openlayers-osm-map/' rel='bookmark' title='Change the sea/ocean color of OpenLayers (OSM) map'>Change the sea/ocean color of OpenLayers (OSM) map</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>please visit <a href="http://mayomo.com">MaYoMo</a></p>
<p>Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2009/07/01/mayomo-released/' rel='bookmark' title='MaYoMo released'>MaYoMo released</a></li>
<li><a href='http://www.stoimen.com/blog/2009/08/07/change-the-sea-ocean-color-of-openlayers-osm-map/' rel='bookmark' title='Change the sea/ocean color of OpenLayers (OSM) map'>Change the sea/ocean color of OpenLayers (OSM) map</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2008/12/01/mayomo-map-your-moments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Treality Web Site</title>
		<link>http://www.stoimen.com/blog/2008/03/10/treality-web-site/</link>
		<comments>http://www.stoimen.com/blog/2008/03/10/treality-web-site/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 20:20:26 +0000</pubDate>
		<dc:creator>stoimen</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[treality]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.stoimen.com/blog/archives/5</guid>
		<description><![CDATA[Official web site of the company I&#8217;m working for. Treality.com is still beta but online. Take a look! Related posts: My new Zen site What should be optimized in one web page? What if your site doesn&#8217;t use all of &#8230; <a href="http://www.stoimen.com/blog/2008/03/10/treality-web-site/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2008/12/10/zen-site/' rel='bookmark' title='My new Zen site'>My new Zen site</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/11/what-should-be-optimized-in-one-web-page/' rel='bookmark' title='What should be optimized in one web page?'>What should be optimized in one web page?</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/18/what-if-your-site-doesnt-use-all-of-the-css-selectors/' rel='bookmark' title='What if your site doesn&#8217;t use all of the CSS selectors?'>What if your site doesn&#8217;t use all of the CSS selectors?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.stoimen.com/blog/wp-content/uploads/2008/09/treality.jpg" target="_blank"><img class="aligncenter size-full wp-image-100" title="treality" src="http://www.stoimen.com/blog/wp-content/uploads/2008/09/treality.jpg" alt="" width="465" height="350" /></a></p>
<p>Official web site of the company I&#8217;m working for. <a title="Treality Web Address" href="http://www.treality.com" target="_blank">Treality.com</a> is still beta but online. Take a look!</p>
<p>Related posts:<ol>
<li><a href='http://www.stoimen.com/blog/2008/12/10/zen-site/' rel='bookmark' title='My new Zen site'>My new Zen site</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/11/what-should-be-optimized-in-one-web-page/' rel='bookmark' title='What should be optimized in one web page?'>What should be optimized in one web page?</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/18/what-if-your-site-doesnt-use-all-of-the-css-selectors/' rel='bookmark' title='What if your site doesn&#8217;t use all of the CSS selectors?'>What if your site doesn&#8217;t use all of the CSS selectors?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.stoimen.com/blog/2008/03/10/treality-web-site/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

