<?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>iWonder Designs &#187; Random</title>
	<atom:link href="http://iwonderdesigns.com/category/random/feed/" rel="self" type="application/rss+xml" />
	<link>http://iwonderdesigns.com</link>
	<description>A (one man) team of designers and developers specializing in web applications</description>
	<lastBuildDate>Wed, 25 May 2011 15:19:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Layers of Web Apps</title>
		<link>http://iwonderdesigns.com/2011/02/04/layers-of-web-apps/</link>
		<comments>http://iwonderdesigns.com/2011/02/04/layers-of-web-apps/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 19:40:10 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/2011/02/04/layers-of-web-apps/</guid>
		<description><![CDATA[How many layers is too many?&#160; Retail websites sell merchandise.&#160; Other websites review and rate retail website merchandise.&#160; Still more websites rate rating websites.&#160;&#160; I know this is how it always happens – we are inundated after a good idea with other similar ideas and knockoffs and eventually the useless and the crap disappear.&#160; But [...]]]></description>
			<content:encoded><![CDATA[<p>How many layers is too many?&#160; Retail websites sell merchandise.&#160; Other websites review and rate retail website merchandise.&#160; <em>Still more</em> websites rate rating websites.&#160;&#160; I know this is how it always happens – we are inundated after a good idea with other similar ideas and knockoffs and eventually the useless and the crap disappear.&#160; But seeing it happen before my eyes is both fascinating and frustrating especially when there are probably lots of actual beneficial websites waiting in the wings but hidden in the shadow of the huge mound of crap that’s out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2011/02/04/layers-of-web-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PyCharm&#8217;s Mac Install DMG</title>
		<link>http://iwonderdesigns.com/2010/12/23/pycharms-mac-install-dmg/</link>
		<comments>http://iwonderdesigns.com/2010/12/23/pycharms-mac-install-dmg/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 01:52:47 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/2010/12/23/pycharms-mac-install-dmg/</guid>
		<description><![CDATA[Nice:]]></description>
			<content:encoded><![CDATA[<p style="clear: both">Nice:</p>
<p style="clear: both"><a href="http://iwonderdesigns.com/wp-content/uploads/2010/12/Screen_shot_2010-12-23_at_8.36.53_PM.png" class="image-link"><img class="linked-to-original" src="http://iwonderdesigns.com/wp-content/uploads/2010/12/Screen_shot_2010-12-23_at_8-thumb.36.53_PM.png" height="255" align="left" width="380" style=" display: inline; float: left; margin: 0 10px 10px 0;" /></a></p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/12/23/pycharms-mac-install-dmg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Templates and Files</title>
		<link>http://iwonderdesigns.com/2010/12/22/templates-and-files/</link>
		<comments>http://iwonderdesigns.com/2010/12/22/templates-and-files/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 20:24:29 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/2010/12/22/templates-and-files/</guid>
		<description><![CDATA[Something I always wondered about was why STL piles implementations into the same file as the declarations.&#160; Never had a good reason to investigate until today when my class template implementation – which was located in a separate file from the class declaration &#8211; compiled fine (seemingly) but the linker couldn’t find any of the [...]]]></description>
			<content:encoded><![CDATA[<p>Something I always wondered about was why STL piles implementations into the same file as the declarations.&#160; Never had a good reason to investigate until today when my class template implementation – which was located in a separate file from the class declaration &#8211; compiled fine (seemingly) but the linker couldn’t find any of the template class’s method implementations (needless to say I spend little or no time implementing my own template classes – just never had much of a need).&#160; But today I did and stumbled on this excellent explanation of what’s going on:</p>
<blockquote><p>To answer your initial question and to provide a condensed explanation for the reason behind your compile problem.     </p>
<p>From the point of view of the compiler, templates are not normal functions or classes. They are compiled on demand, meaning that the code of a template function is not compiled until an instantiation with specific template arguments is required. At that moment, when an instantiation is required, the compiler generates a function specifically for those arguments from the template.     </p>
<p>When projects grow it is usual to split the code of a program in different source code files. In these cases, the interface and implementation are generally separated. Taking a library of functions as example, the interface generally consists of declarations of the prototypes of all the functions that can be called. These are generally declared in a &quot;header file&quot; with a .h extension, and the implementation (the definition of these functions) is in an independent file with c++ code.     </p>
<p><strong>Because templates are compiled when required, this forces a restriction for multi-file projects: the implementation (definition) of a template class or function must be in the same file as its declaration</strong>. That means that we cannot separate the interface in a separate header file, and that we must include both interface and implementation in any file that uses the templates.      </p>
<p>Since no code is generated until a template is instantiated when required, compilers are prepared to allow the inclusion more than once of the same template file with both declarations and definitions in a project without generating linkage errors.</p>
</blockquote>
<p><a href="http://www.codingforums.com/archive/index.php/t-185375.html">Thanks saige</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/12/22/templates-and-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Is Your Brain on Metaphors &#8211; NYTimes.com</title>
		<link>http://iwonderdesigns.com/2010/11/14/this-is-your-brain-on-metaphors-nytimes-com/</link>
		<comments>http://iwonderdesigns.com/2010/11/14/this-is-your-brain-on-metaphors-nytimes-com/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 02:28:23 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/?p=608</guid>
		<description><![CDATA[An insanely interesting article about the human brain and the connections it makes.  Here&#8217;s one of many awesome points: Another truly interesting domain in which the brain confuses the literal and metaphorical is cleanliness. In a remarkable study, Chen-Bo Zhong of the University of Toronto and Katie Liljenquist of Northwestern University demonstrated how the brain [...]]]></description>
			<content:encoded><![CDATA[<p>An insanely interesting article about the human brain and the connections it makes.  Here&#8217;s one of many awesome points:</p>
<blockquote><p>Another truly interesting domain in which the brain confuses the literal and metaphorical is cleanliness. In a remarkable study, Chen-Bo Zhong of the University of Toronto and Katie Liljenquist of Northwestern University demonstrated how the brain has trouble distinguishing between being a dirty scoundrel and being in need of a bath. Volunteers were asked to recall either a moral or immoral act in their past. Afterward, as a token of appreciation, Zhong and Liljenquist offered the volunteers a choice between the gift of a pencil or of a package of antiseptic wipes. And the folks who had just wallowed in their ethical failures were more likely to go for the wipes. In the next study, volunteers were told to recall an immoral act of theirs. Afterward, subjects either did or did not have the opportunity to clean their hands. Those who were able to wash were less likely to respond to a request for help that the experimenters had set up that came shortly afterward. Apparently, Lady Macbeth and Pontius Pilate weren’t the only ones to metaphorically absolve their sins by washing their hands.</p></blockquote>
<p>via <a href="http://opinionator.blogs.nytimes.com/2010/11/14/this-is-your-brain-on-metaphors/?hp">This Is Your Brain on Metaphors &#8211; NYTimes.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/11/14/this-is-your-brain-on-metaphors-nytimes-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A peak into Ann Coulter&#8217;s fandom</title>
		<link>http://iwonderdesigns.com/2010/09/16/a-peak-into-ann-coulters-fandom/</link>
		<comments>http://iwonderdesigns.com/2010/09/16/a-peak-into-ann-coulters-fandom/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 23:57:23 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Political]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/?p=589</guid>
		<description><![CDATA[From a Michael Gross: I wish you all the in-box peace you have denied me these last few weeks. For all those who dislike hate and foul language, stop reading here, please. via Michael Gross : An Open Letter to Ann Coulter.]]></description>
			<content:encoded><![CDATA[<p>From a Michael Gross:</p>
<blockquote><p>I wish you all the in-box peace you have denied me these last few weeks. For all those who dislike hate and foul language, stop reading here, please.</p></blockquote>
<p>via <a href="http://www.mgross.com/gripebox/an-open-letter-to-ann-coulter/">Michael Gross : An Open Letter to Ann Coulter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/09/16/a-peak-into-ann-coulters-fandom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well. That was fast, Oracle</title>
		<link>http://iwonderdesigns.com/2010/09/01/well-that-was-fast-oracle/</link>
		<comments>http://iwonderdesigns.com/2010/09/01/well-that-was-fast-oracle/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 19:00:53 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/2010/09/01/well-that-was-fast-oracle/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwonderdesigns.com/wp-content/uploads/2010/09/91201025621PM.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="9-1-2010 2-56-21 PM" border="0" alt="9-1-2010 2-56-21 PM" src="http://iwonderdesigns.com/wp-content/uploads/2010/09/91201025621PM_thumb.png" width="526" height="397" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/09/01/well-that-was-fast-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fiz on iPad using SketchBook Pro</title>
		<link>http://iwonderdesigns.com/2010/08/29/fiz-on-ipad-using-sketchbook-pro/</link>
		<comments>http://iwonderdesigns.com/2010/08/29/fiz-on-ipad-using-sketchbook-pro/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 01:27:36 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/?p=570</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://iwonderdesigns.com/wp-content/uploads/2010/08/fiz.png"><img class="alignnone size-medium wp-image-571" style="border: 1px solid black;" title="fiz" src="http://iwonderdesigns.com/wp-content/uploads/2010/08/fiz-300x225.png" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/08/29/fiz-on-ipad-using-sketchbook-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What growth!</title>
		<link>http://iwonderdesigns.com/2010/08/28/what-growth/</link>
		<comments>http://iwonderdesigns.com/2010/08/28/what-growth/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 00:50:58 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/?p=560</guid>
		<description><![CDATA[Checked out my google analytics dashboard today for the first time in a while. This is what I see: Now, what I&#8217;m not showing here is the actual number of uniques.  And I won&#8217;t because I want to maintain the illusion that I have a wildly popular site.]]></description>
			<content:encoded><![CDATA[<p>Checked out my google analytics dashboard today for the first time in a while.  This is what I see:<br />
<a href="http://iwonderdesigns.com/wp-content/uploads/2010/08/Screen-shot-2010-08-28-at-6.11.58-PM1.png"><img class="size-full wp-image-564 alignnone" style="border: 1px solid black;" title="Screen shot 2010-08-28 at 6.11.58 PM" src="http://iwonderdesigns.com/wp-content/uploads/2010/08/Screen-shot-2010-08-28-at-6.11.58-PM1.png" alt="" width="212" height="36" /></a></p>
<p>Now, what I&#8217;m not showing here is the actual number of uniques.  And I won&#8217;t because I want to maintain the illusion that I have a wildly popular site.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/08/28/what-growth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deja vu, science or magic?</title>
		<link>http://iwonderdesigns.com/2010/08/21/deja-vu-science-or-magic/</link>
		<comments>http://iwonderdesigns.com/2010/08/21/deja-vu-science-or-magic/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 19:08:29 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/?p=544</guid>
		<description><![CDATA[Spoiler alert: science.  Also, fascinating and another reminder 0f how we are prisoners of our own perception (and it&#8217;s limitations): When these cooperating processes get out of sync, we can experience déjà vu, the intense and often disconcerting feeling that a situation is familiar even though it has never happened before. This feeling can occur [...]]]></description>
			<content:encoded><![CDATA[<p>Spoiler alert: science.  Also, fascinating and another reminder 0f how we are prisoners of our own perception (and it&#8217;s limitations):</p>
<blockquote><p>When these cooperating processes get out of sync, we can experience déjà vu, the intense and often disconcerting feeling that a situation is familiar even though it has never happened before. This feeling can occur when a brand-new situation is very similar to other events stored in our memory. For example, a Texas airport may seem vaguely familiar to you even though you have never been to Texas. It is possible the airport is strikingly similar to a single event stored in memory—perhaps you recently saw the airport in a movie or magazine. It is also possible that many memories of visiting similar airports create the sensation that you have been to this one. Déjà vu is a stronger version of this kind of memory error.</p></blockquote>
<p>via <a href="http://www.scientificamerican.com/article.cfm?id=what-is-going-on-in-the-brain">What is going on in the brain when we experience déjà vu?: Scientific American</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/08/21/deja-vu-science-or-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A perfect drawing</title>
		<link>http://iwonderdesigns.com/2010/08/16/a-perfect-drawing/</link>
		<comments>http://iwonderdesigns.com/2010/08/16/a-perfect-drawing/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 22:38:33 +0000</pubDate>
		<dc:creator>Karim</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://iwonderdesigns.com/?p=531</guid>
		<description><![CDATA[I like how realistic Arsenic looks.  I also like&#8230;.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://couch.graphic.ly/post/949288614/i-like-how-realistic-arsenic-looks-i-also-like"><img src='http://iwonderdesigns.com/wp-content/uploads/2010/08/tumblr_l70qvrBcXW1qcrzobo1_500.jpg' alt='' /></a></p>
<p><a href="http://couch.graphic.ly/post/949288614/i-like-how-realistic-arsenic-looks-i-also-like">I like how realistic Arsenic looks.  I also like&#8230;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://iwonderdesigns.com/2010/08/16/a-perfect-drawing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

