<?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>Without Boundaries &#187; Blog</title>
	<atom:link href="http://studio.anubisfrommemphis.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://studio.anubisfrommemphis.com</link>
	<description></description>
	<lastBuildDate>Tue, 09 Nov 2010 04:50:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Merivale</title>
		<link>http://studio.anubisfrommemphis.com/blog/site-review/merivale/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/site-review/merivale/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 01:31:48 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Site Review]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=279</guid>
		<description><![CDATA[Merivale is a group owning several club, restaurant and retail stores in Sydney. The website uses simple 3D (possibly PaperVision) and photo-thumbnails as means of navigation. The site was built by deepend and the Hallway.
]]></description>
			<content:encoded><![CDATA[<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/website-screenshot/2009-10-05-merivale.gif" title="" class="thickbox" rel="singlepic37" >
	<img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/37__320x240_2009-10-05-merivale.gif" alt="Merivale" title="Merivale" />
</a>

<p><a href="http://www.merivale.com/">Merivale</a> is a group owning several club, restaurant and retail stores in Sydney. The website uses simple 3D (possibly PaperVision) and photo-thumbnails as means of navigation. The site was built by <a href="http://www.deepend.com.au/">deepend</a> and <a href="http://www.thehallway.com.au/">the Hallway</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/site-review/merivale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer CSS Issue: Float Element Margin Doubled</title>
		<link>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-float-element-margin-doubled/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-float-element-margin-doubled/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 06:08:42 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming Knowledge]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=254</guid>
		<description><![CDATA[Issue
This is, without a doubt, the most notorious IE6 bug that has baffled all CSS developers. Also known as the "Doubled Float-Margin" bug, this issue is about the margin properties of a floating element is doubled in IE6 and IE5 (IE7 has no such issue). For example:

.float-left-element &#123;
	width: 100px;
	height: 100px;
	float: left;
	clear: left;
	margin: 0 0 0 [...]]]></description>
			<content:encoded><![CDATA[<h3>Issue</h3>
<p>This is, without a doubt, the most notorious IE6 bug that has baffled all CSS developers. Also known as the "Doubled Float-Margin" bug, this issue is about the margin properties of a floating element is doubled in IE6 and IE5 (IE7 has no such issue). For example:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.float-left-element</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>The style class above will make a 100x100 pixel block element float to the left with <strong>left margin of 10 pixels</strong>. However, <strong>in IE6 and 5</strong>, the left margin will appear as <strong>20 pixels (doubled the original)</strong> instead.</p>
<p>Internet Explorer (IE) has been well known as the most W3C incompatible browser. In particular Internet Explorer 6 (IE6), is far most the worst of its kind. Most web development jobs involving front-end design, will spend most of their debugging time on issues relating to IE6 and other IE. For a complete list of issues, see <a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issues-solutions/">Internet Explorer CSS Issues &amp; Solutions</a>.</p>
<p><span id="more-254"></span></p>
<h3>Solution</h3>
<h4>Method 1: Display Inline</h4>
<p>Note the definition of the <code>float</code> property:</p>
<blockquote><p>The element generates a block box that is floated to the left. Content flows on the right side of the box, starting at the top (subject to the 'clear' property). <strong>The 'display' is ignored, unless it has the value 'none'</strong>.</p></blockquote>
<p>It is because of the fact that <code>display</code> is ignored, and IE6 also has another weird bug that causes the first line of an inline element to be margined, a beautiful solution was created to fix the bug - add <code>display: inline</code>. This will correct IE6 and 5 but does not affect all other browsers that follow standards.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.float-left-element</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">inline</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>This is an important fix for cross-browser CSS development that all should remember.</p>
<h4>Method 2: Wrapper</h4>
<p>An old solution is to wrap the existing element with a floating wrapper. The wrapper will float and contain the element that wishes to have margins.<br />
The HTML will be:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;float-left-container&quot;&gt;
&lt;div class=&quot;float-left-element&quot;&gt;
	... content ...&lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>This CSS will be:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.float-left-container</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">110px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* inner element width + margin */</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #6666ff;">.float-left-element</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>This method is not recommended since it creates an extra container just to fix the problem.</p>
<h3>References</h3>
<ul>
<li> <a href="http://www.positioniseverything.net/explorer/doubled-margin.html">The IE5/6 Doubled Float-Margin Bug </a></li>
<li><a href="http://www.positioniseverything.net/explorer/floatIndent.html">Floats, Margins and IE</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-float-element-margin-doubled/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet Explorer CSS Issue: Inline Element Has Width</title>
		<link>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-inline-element-has-width/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-inline-element-has-width/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 05:11:22 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming Knowledge]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=250</guid>
		<description><![CDATA[Issue
Inline elements such as &#60;span&#62;, &#60;a&#62;, &#60;label&#62; are not suppose to have width. According to the W3C standards, the following snippet should not work and is invalid:

span &#123;
	width: 40px;
&#125;

However, the above code will actually work in IE, making the inline element 40 pixels wide.
Internet Explorer (IE) has been well known as the most W3C incompatible [...]]]></description>
			<content:encoded><![CDATA[<h3>Issue</h3>
<p>Inline elements such as <code>&lt;span&gt;</code>, <code>&lt;a&gt;</code>, <code>&lt;label&gt;</code> are not suppose to have width. According to the W3C standards, the following snippet should not work and is invalid:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">span <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>However, the above code will actually work in IE, making the inline element 40 pixels wide.</p>
<p>Internet Explorer (IE) has been well known as the most W3C incompatible browser. In particular Internet Explorer 6 (IE6), is far most the worst of its kind. Most web development jobs involving front-end design, will spend most of their debugging time on issues relating to IE6 and other IE. For a complete list of issues, see <a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issues-solutions/">Internet Explorer CSS Issues &amp; Solutions</a>.</p>
<p><span id="more-250"></span></p>
<h3>Solution</h3>
<p>To fix the problem, is to turn the inline into a block element by using the <code>display</code> property.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">span <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">40px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>I strongly recommend not to use this fix unless you absolutely have to, since this essentially breaks the inline and block element definitions.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-inline-element-has-width/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet Explorer CSS Issue: Fixed Width Container Centering</title>
		<link>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-fixed-width-container-centering/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-fixed-width-container-centering/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 04:53:36 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming Knowledge]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=238</guid>
		<description><![CDATA[Issue
When you have a fixed with website that is centered on the page, you would normally use the margin or text-align properties like this:

#container &#123;
	width: 750px;
	margin: 0 auto
&#125;

However, this may not always work since IE has interesting ways of calculating margin and box model.
Internet Explorer (IE) has been well known as the most W3C incompatible [...]]]></description>
			<content:encoded><![CDATA[<h3>Issue</h3>
<p>When you have a fixed with website that is centered on the page, you would normally use the margin or text-align properties like this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#container</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">750px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>However, this may not always work since IE has interesting ways of calculating margin and box model.</p>
<p>Internet Explorer (IE) has been well known as the most W3C incompatible browser. In particular Internet Explorer 6 (IE6), is far most the worst of its kind. Most web development jobs involving front-end design, will spend most of their debugging time on issues relating to IE6 and other IE. For a complete list of issues, see <a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issues-solutions/">Internet Explorer CSS Issues &#038; Solutions</a>.</p>
<p><span id="more-238"></span></p>
<h3>solution</h3>
<p>To fix the problem, first center align content in the <em>body</em> tag then re-assign text alignment to left for the container:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">body <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#container</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">770px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-fixed-width-container-centering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Internet Explorer CSS Issues &amp; Solutions</title>
		<link>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issues-solutions/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issues-solutions/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 04:50:51 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming Knowledge]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=229</guid>
		<description><![CDATA[Internet Explorer (IE) has been well known as the most W3C incompatible browser. In particular Internet Explorer 6 (IE6), is far most the worst of its kind. Most web development jobs involving front-end design, will spend most of their debugging time on issues relating to IE6 and other IE.
This post keeps a record of IE [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer (IE) has been well known as the most W3C incompatible browser. In particular Internet Explorer 6 (IE6), is far most the worst of its kind. Most web development jobs involving front-end design, will spend most of their debugging time on issues relating to IE6 and other IE.</p>
<p>This post keeps a record of IE CSS bugs and fixes. You may find it useful when trying to find or correct styling problems by checking against the following list:</p>
<ul>
<li><a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-fixed-width-container-centering/"><strong><a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-float-element-margin-doubled/">Float Element Margin Doubled</a></strong></a></li>
<li><a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-fixed-width-container-centering/">Fixed Width Container Centering</a></li>
<li><a href="http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issue-inline-element-has-width/">Inline Element Has Width</a></li>
</ul>
<p>I will constantly update this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/internet-explorer-css-issues-solutions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bang &amp; Olufsen - BeoSound 5</title>
		<link>http://studio.anubisfrommemphis.com/blog/bang-olufsen-beosound-5/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/bang-olufsen-beosound-5/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 21:34:47 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Product Design]]></category>
		<category><![CDATA[media device]]></category>
		<category><![CDATA[sound system]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=200</guid>
		<description><![CDATA[This beautifuly crafted music control unit transform your lounge into a command center from Star Trek.
BeoSound 5 is not just a control panel for playing CDs and online radio stations, it is also a DJ who analyzes tracks played scrupulously leading to your own music taste. However, it comes with a price - BeoSound 5 [...]]]></description>
			<content:encoded><![CDATA[<div class="ngg-singlepic ngg-center" style="width: 320px;">
    <a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/referenced-images/2009-04-01-beosound-5.jpg" title="source: www.beosound5.com" class="thickbox" rel="singlepic19" >
        <img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/19__320x240_2009-04-01-beosound-5.jpg" alt="BeoSound 5" title="BeoSound 5" />
        <span class="caption">source: www.beosound5.com</span>
    </a>
</div>

<p>This beautifuly crafted music control unit transform your lounge into a command center from Star Trek.</p>
<p><a href="http://www.beosound5.com">BeoSound 5</a> is not just a control panel for playing CDs and online radio stations, it is also a DJ who analyzes tracks played scrupulously leading to your own music taste. However, it comes with a price - BeoSound 5 requires <a href="http://www.bang-olufsen.com/beomaster5">BeoMaster</a> - a central media storage device.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/bang-olufsen-beosound-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Martini Asti</title>
		<link>http://studio.anubisfrommemphis.com/blog/martini-asti/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/martini-asti/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 04:24:42 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Site Review]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=191</guid>
		<description><![CDATA[www.martiniasti.com
A brilliant Flash product exhibit site built by Ars Thanea, a Poland based creative agency. Though initial e-mail and password registration is somewhat annoying, the refreshing, seemless transitions of animations prove that the site is worth the wait. The centerpiece is a Martini Asti bottle and is surrounded by different sets of ornamental objects depending [...]]]></description>
			<content:encoded><![CDATA[<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/website-screenshot/2009-03-24-martini-asti.jpg" title="" class="thickbox" rel="singlepic18" >
	<img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/18__320x240_2009-03-24-martini-asti.jpg" alt="Martini Asti" title="Martini Asti" />
</a>

<p><a href="http://www.martiniasti.com/">www.martiniasti.com</a></p>
<p>A brilliant Flash product exhibit site built by <a href="http://www.arsthanea.com">Ars Thanea</a>, a Poland based creative agency. Though initial e-mail and password registration is somewhat annoying, the refreshing, seemless transitions of animations prove that the site is worth the wait. The centerpiece is a Martini Asti bottle and is surrounded by different sets of ornamental objects depending on the page viewed.</p>
<p>The drag-and-throw mouse action will rotate the bottle and change the scene.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/martini-asti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who Think JavaScript Cannot Go 3D?</title>
		<link>http://studio.anubisfrommemphis.com/blog/who-think-javascript-cannot-go-3d/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/who-think-javascript-cannot-go-3d/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 23:09:47 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming Knowledge]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=183</guid>
		<description><![CDATA[When I first viewed the demo, my first reaction was to right-click and check whether the 3D canvas is not Flash-based. Amazingly, the demo is constructed purely in JavaScript with a bit of rendering assistance from the new canvas tag in HTML 5. You must check this out and take a glimpse at the future [...]]]></description>
			<content:encoded><![CDATA[<div class="ngg-singlepic ngg-center" style="width: 320px;">
    <a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/referenced-images/gyuque_3d_javascript.jpg" title="source: d.hatena.ne.jp/gyuque" class="thickbox" rel="singlepic17" >
        <img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/17__320x240_gyuque_3d_javascript.jpg" alt="Satoshi Ueyama&#039;s 3D JavaScript Demo" title="Satoshi Ueyama&#039;s 3D JavaScript Demo" />
        <span class="caption">source: d.hatena.ne.jp/gyuque</span>
    </a>
</div>

<p>When I first viewed the demo, my first reaction was to right-click and check whether the 3D canvas is not Flash-based. Amazingly, the demo is constructed purely in JavaScript with a bit of rendering assistance from the new canvas tag in HTML 5. You must check this out and take a glimpse at the future of the 3D web.</p>
<p><span id="more-183"></span>Here are the demo ( The scripts will use a lot of resources, browsing using Google Chrome is recommended ) :</p>
<ul>
<li><a href="http://gyu.que.jp/jscloth/" target="_blank">Demo 1 - 3D texture mapped with physical computing</a></li>
<li><a href="http://gyu.que.jp/jscloth/miku.html" target="_blank">Demo 2 - Hatsune Miku 3D</a></li>
<li><a href="http://gyu.que.jp/jscloth/touch.html" target="_blank">Demo 3 - 3D iPod touch with environment mapping</a></li>
</ul>
<h3>References</h3>
<ul>
<li><a href="http://hemiolia.com/blog/200902/000150">hemiolia.com - 30 Japanese geeks you should follow on Twitter</a></li>
<li><a href="http://kawanet.blogspot.com/2009/02/incredible-javascriptcanvas-3d-demos.html">Kawa.net Tech Blog - Incredible JavaScript+Canvas 3D demos from Japan!<br />
</a></li>
<li><a href="http://d.hatena.ne.jp/gyuque/20090211#1234364019">最速チュパカブラ研究会 - Texture Mapping with HTML Canvas And Performance Tuning</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/who-think-javascript-cannot-go-3d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shit Box</title>
		<link>http://studio.anubisfrommemphis.com/blog/shit-box/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/shit-box/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 12:11:07 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Product Design]]></category>
		<category><![CDATA[paper]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=167</guid>
		<description><![CDATA[I am not swearing. The title is the real name of a cardboard portable toilet.
It might not seem like a pragmatic solution for replacing outdoor long drops due to the inevitable oozing of ... from the biodegradable paper bag. Nevertheless, big hands for the creative design. And who knows, a Shit Box in the backpack [...]]]></description>
			<content:encoded><![CDATA[<div class="ngg-singlepic ngg-center" style="width: 320px;">
    <a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/referenced-images/shit-box.jpg" title="source: thebrowncorporation.com" class="thickbox" rel="singlepic16" >
        <img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/16__320x240_shit-box.jpg" alt="Shit Box" title="Shit Box" />
        <span class="caption">source: thebrowncorporation.com</span>
    </a>
</div>

<p>I am not swearing. The title is the real name of a cardboard portable toilet.</p>
<p>It might not seem like a pragmatic solution for replacing outdoor long drops due to the inevitable oozing of ... from the biodegradable paper bag. Nevertheless, big hands for the creative design. And who knows, a <a href="http://www.thebrowncorporation.com/">Shit Box</a> in the backpack might come handy one day for those nature lovers.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/shit-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ACDSee Products Problems and Solutions</title>
		<link>http://studio.anubisfrommemphis.com/blog/acdsee-products-problems-and-solutions/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/acdsee-products-problems-and-solutions/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 01:37:39 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technical Notes]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=154</guid>
		<description><![CDATA[This is an archive post for keeping records of problems faced while installing or using ACDSee products.

ACDSee Photo Manager 10: Process stays open after closing application problem
Problem
This notorious issue was discovered when certain users are unable to launch Photo Manager due to the presence of a previous instance of the program.
Cause
The cause, mentioned by many, [...]]]></description>
			<content:encoded><![CDATA[<p>This is an archive post for keeping records of problems faced while installing or using ACDSee products.</p>
<p><span id="more-154"></span></p>
<h4>ACDSee Photo Manager 10: Process stays open after closing application problem</h4>
<h5>Problem</h5>
<p>This notorious issue was discovered when certain users are unable to launch Photo Manager due to the presence of a previous instance of the program.</p>
<h5>Cause</h5>
<p>The cause, mentioned by many, is related to other programs that have modified the Windows Explorer's directory structure to include extra root folders. Many of the <strong>Nokia PC Suite</strong> users experienced this issue since an extra mobile phone specific folder was added to the root.</p>
<h5>Solution</h5>
<p>Re-installation may work for some software, but not Nokia PC Suite. Currently, there are no known solution.</p>
<h5>References</h5>
<p><a href="http://community.acdsee.com/forums/topic/process-stays-open-after-closing-application">ACDSee Photo Manager 10 Forum: Process stays open after closing application</a></p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/acdsee-products-problems-and-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Origami Stop Animation: In the Pursuit of Perfection</title>
		<link>http://studio.anubisfrommemphis.com/blog/origami-stop-animation-in-the-pursuit-of-perfection/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/origami-stop-animation-in-the-pursuit-of-perfection/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 02:45:33 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Advertisement]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=141</guid>
		<description><![CDATA[Recently, my buddy Francisco recommended a video that demonstrated stunning origami art and stop animation. Two words to describe it: beautiful and stunning.
In the Pursuit of Perfection is a short film from ASICS to tell the story and vision of the Japanese company. While the film is directed and produced by Tim Schierwater and Nordpol+ [...]]]></description>
			<content:encoded><![CDATA[<div class="ngg-singlepic ngg-center" style="width: 320px;">
    <a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/referenced-images/mabona-origami-octopus.jpg" title="source: mabonaorigami.com" class="thickbox" rel="singlepic15" >
        <img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/15__320x240_mabona-origami-octopus.jpg" alt="Mabona Origami Octopus" title="Mabona Origami Octopus" />
        <span class="caption">source: mabonaorigami.com</span>
    </a>
</div>

<p>Recently, my buddy <a href="http://franciscoflores.sondetagua.com/">Francisco</a> recommended a video that demonstrated stunning origami art and stop animation. Two words to describe it: beautiful and stunning.</p>
<p><a href="http://vimeo.com/2188162">In the Pursuit of Perfection</a> is a short film from <a href="http://www.asics.com/">ASICS</a> to tell the story and vision of the Japanese company. While the film is directed and produced by Tim Schierwater and <a href="http://www.nordpol.com/">Nordpol+ Hamburg</a>, the orignami models were designed by artist <a href="http://www.mabonaorigami.com/en/artist/artist.html">Sipho Mabona</a>. The movie won a Grand Prix at the Eurobest, gold at the New York festival, gold at the London International Awarts, silver at the Clio in Miami and two times bronze at ADC Germany.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/origami-stop-animation-in-the-pursuit-of-perfection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Shortcode API</title>
		<link>http://studio.anubisfrommemphis.com/blog/wordpress-shortcode-api/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/wordpress-shortcode-api/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 22:09:28 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming Knowledge]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=129</guid>
		<description><![CDATA[Though I have been using WordPress for over a year, some of its features still amaze and surprise me.
One of these features is the Shortcode API since version 2.5. As many would have used to insert photo galleries in a post, shortcodes are used to place custom "tags" in the content, which later will be [...]]]></description>
			<content:encoded><![CDATA[<p>Though I have been using <a href="http://www.wordpress.org">WordPress</a> for over a year, some of its features still amaze and surprise me.</p>
<p>One of these features is the <a href="http://codex.wordpress.org/Shortcode_API">Shortcode API</a> since version 2.5. As many would have used to insert photo galleries in a post, shortcodes are used to place custom "tags" in the content, which later will be converted or processed by WordPress or plugins. </p>
<p><span id="more-129"></span></p>
<p>For example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;">[gallery id=&quot;123&quot; size=&quot;medium&quot;]</pre></td></tr></table></div>

<p>The shortcode API processes the 'id' and 'size' attributes without the need to write regular expressions for string matching. Many have utilized this mechanism to construct a user-friendly environment for insert images, thumbnails, Google ads and more.</p>
<h3>References</h3>
<ul>
<li><a href="http://codex.wordpress.org/Shortcode_API">WordPress - Shortcode API</a></li>
<li><a href="http://wordpress.la/shortcodes.html">精通 WordPress 簡碼</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/wordpress-shortcode-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple iPhone Concept Designs</title>
		<link>http://studio.anubisfrommemphis.com/blog/apple-iphone-concept-designs/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/apple-iphone-concept-designs/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 21:33:08 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Product Design]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=126</guid>
		<description><![CDATA[Still waiting for a new generation of iPhone? Or are you still waiting to get yours? Personally, I am still the one answer the later question. However, some enthusists have already dreamed up their next iPhone ...
Read the article "10 Beautiful Apple iPhone Concept Designs" from Toxel.com.
]]></description>
			<content:encoded><![CDATA[<p>Still waiting for a new generation of iPhone? Or are you still waiting to get yours? Personally, I am still the one answer the later question. However, some enthusists have already dreamed up their next iPhone ...</p>
<p>Read the article "<a href="http://www.toxel.com/inspiration/2009/02/15/10-beautiful-apple-iphone-concepts/">10 Beautiful Apple iPhone Concept Designs</a>" from <a href="http://www.toxel.com">Toxel.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/apple-iphone-concept-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Morphing Automobile: BMW GINA</title>
		<link>http://studio.anubisfrommemphis.com/blog/morphing-automobile-bmw-gina/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/morphing-automobile-bmw-gina/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 06:08:38 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Product Design]]></category>
		<category><![CDATA[automobile]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=113</guid>
		<description><![CDATA[Mentioned this concept car to friends a few days ago while talking about cars. GINA, short for "Geometry and functions In 'N' Adaptions", is a sports concept car with shape-shifting capability by BMW. Covered in an elastic skin layer and movable metal frames, GINA is a car without permanent exterior. In theory, car owners can [...]]]></description>
			<content:encoded><![CDATA[<div class="ngg-singlepic ngg-center" style="width: 320px;">
    <a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_02.jpg" title="source: www.baekdal.com" class="thickbox" rel="singlepic7" >
        <img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/7__320x240_bmw_gina_02.jpg" alt="bmw_gina_02.jpg" title="bmw_gina_02.jpg" />
        <span class="caption">source: www.baekdal.com</span>
    </a>
</div>

<p>Mentioned this concept car to friends a few days ago while talking about cars. GINA, short for "Geometry and functions In 'N' Adaptions", is a sports concept car with shape-shifting capability by BMW. Covered in an elastic skin layer and movable metal frames, GINA is a car without permanent exterior. In theory, car owners can adjust the exo-frame to mold their true dream car without being bounded by the original design.</p>
<p><span id="more-113"></span>Nifty, but not really practical. The thin layer of fabric will certainly not guarantee your safety ... perhaps the next step will be utilising some sort of electrical viscoelastic liquid materials ...</p>
<p>The following images are from <a href="http://blog.wired.com/cars/2008/06/bmw-builds-a-ca.html">Wired</a> and <a href="http://www.baekdal.com/design/automotive/bmw-gina">Baekdal.com</a>:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-4-113">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_01.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_01.jpg" alt="bmw_gina_01.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_02.jpg" title="source: www.baekdal.com" class="thickbox" rel="set_4" >
								<img title="bmw_gina_02.jpg" alt="bmw_gina_02.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_04.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_04.jpg" alt="bmw_gina_04.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_05.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_05.jpg" alt="bmw_gina_05.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_06_2.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_06_2.jpg" alt="bmw_gina_06_2.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_06_2.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_07_2.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_07_2.jpg" alt="bmw_gina_07_2.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_07_2.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_08.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_08.jpg" alt="bmw_gina_08.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_08.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_09.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_09.jpg" alt="bmw_gina_09.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_09.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/bmw_gina_12.jpg" title=" " class="thickbox" rel="set_4" >
								<img title="bmw_gina_12.jpg" alt="bmw_gina_12.jpg" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/bmw-gina/thumbs/thumbs_bmw_gina_12.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/morphing-automobile-bmw-gina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase Memory Limit for PHP Scripts</title>
		<link>http://studio.anubisfrommemphis.com/blog/increase-memory-limit-for-php-scripts/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/increase-memory-limit-for-php-scripts/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 01:43:28 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technical Notes]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=108</guid>
		<description><![CDATA[Recently, I have been warned about insufficient memory allocation numerous times while running certain WordPress related PHP scripts. If you are using StatPress or NextGEN Gallery plugins, you might have similar issues as well.
After consulting with my web service provider, the helpdesk kindly gave me a set of clear steps to follow. Note that the [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I have been warned about insufficient memory allocation numerous times while running certain WordPress related PHP scripts. If you are using <a href="http://wordpress.org/extend/plugins/statpress/">StatPress</a> or <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a> plugins, you might have similar issues as well.</p>
<p>After consulting with my web service provider, the helpdesk kindly gave me a set of clear steps to follow. Note that the following instructions are for cPanel  interface only but the principles should be the same when configuring PHP.</p>
<p><span id="more-108"></span></p>
<ol>
<li>Login into your cPanel.</li>
<li>Under the Software/Services category, click on the PHP Config icon.</li>
<li>In this screen, there is a section called 「Install Default php.ini」. Under that section, please check mark the "<strong>IonCube</strong>" and the "<strong>SourceGuardian</strong>" check boxes (Many commercial php scripts need these turned on - if you think your script may not require the IonCube or SourceGuardian packages, it is okay to not check mark the boxes - but it will not hurt anything to check mark both boxes).</li>
<li>Under the same section, click the "<strong>INSTALL PHP.INI MASTER FILE</strong>" button.</li>
<li>You have just successfully installed the "<strong>php.ini.default</strong>" file . But the next step is to rename it from "php.ini.default" to just "php.ini" to make it active. You can do the Rename in the File Manager screens. Under the Files category in your cPanel, please click on the File Manager icon.</li>
<li>When you click on the File Manager icon, you should get a popup dialog titled "File Manager Directory Selection". (If you do not see the popup dialog, then you need to click on the link at the bottom of your cPanel called "reset all interface settings" - and then Refresh your cPanel and click on the File Manager icon again.) In the popup dialog screen, click the "Web Root (public_html/www)" and the "Show Hidden Files (dotfiles)." choices. Finally please click the "Go" button.</li>
<li>If you already have a "php.ini", I would recommend that you Rename the file to "php.iniOld" in case you need ever need it.</li>
<li>Find the file that you just installed called "php.ini.default", Right-Click the file and choose the Rename option.</li>
<li>A new popup dialog called Rename should appear. Please start pressing your Backspace on your keyboard and you will start to see the letters disappear. Keep removing the letters until you see only "php.ini", and then click the Rename File button.</li>
<li><strong>Your php.ini file is now active and fully functional </strong>! Additionally, some users need to make adjustments to this file. To edit the file, you just Righ-Click the php.ini file and choose the Edit option, and then change the value like these examples show:
<ul>
<li>To increase your memory for your php pages:<br />
change <em>memory_limit = 2M</em> to <em>memory_limit = 100M</em>, or</li>
<li>To turn on your Register Globals:<br />
change <em>register_globals = Off </em>to <em>register_globals = On</em> (change this only if you know what you are doing), or</li>
<li>To increase the maximum file size for uploading (there are two flags that you have to change):<br />
change <em>post_max_size = 2M</em> to <em>post_max_size = 100M</em> and<br />
<em>upload_max_filesize = 2M</em> to <em>upload_max_filesize = 100M</em></li>
<li>To turn on PDO, add this line of code to your php.ini file:<br />
<em>extension=pdo_mysql.so<br />
extension=pdo.so<br />
extension=pdo_sqlite.so<br />
extension=sqlite.so</em></li>
</ul>
</li>
<li>Important: The php.ini file is generally directory specific. If you have "PHP5 (Single php.ini)" or "PHP5 (FastCGI)" selected in your Php Config screen, then you should not need to do anything else. If you do NOT have either of those selected, then you may need to copy the php.ini file into all of the subfolders inside your public_html directory. This may be dozens and dozens of subfolders that you have to copy the file into. Also, sometimes it can take between 15-30 minutes before the system recognizes the php.ini file or any changes that you have made in the file.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/increase-memory-limit-for-php-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motherboard Naming Scheme</title>
		<link>http://studio.anubisfrommemphis.com/blog/motherboard-naming-scheme/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/motherboard-naming-scheme/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 23:32:25 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design Knowledge]]></category>
		<category><![CDATA[Hardware Knowledge]]></category>
		<category><![CDATA[Gigabyte]]></category>
		<category><![CDATA[motherboard]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=89</guid>
		<description><![CDATA[Discovering the difference between motherboards of the same product line can be difficult, but decoding the motherboard naming scheme can be even more painful. However, for those who are scrupulous about motherboard functions and expandibilities, knowing what abbreviation represent what function can be extremely useful when hunting down the perfect central nervous system for your [...]]]></description>
			<content:encoded><![CDATA[<p>Discovering the difference between motherboards of the same product line can be difficult, but decoding the motherboard naming scheme can be even more painful. However, for those who are scrupulous about motherboard functions and expandibilities, knowing what abbreviation represent what function can be extremely useful when hunting down the perfect central nervous system for your PC.</p>
<p>Here are some guides to assist you.</p>
<p><span id="more-89"></span></p>
<h4>Gigabyte Motherboard</h4>
<p>Information from <a title="Wikipedia - Gigabyte Technology" href="http://en.wikipedia.org/wiki/Gigabyte_Technology">Wikipedia</a>:</p>
<blockquote><p>Gigabyte use a special system for naming their motherboards. They might be called GA-P35-DS3R. The first segment, GA, simply denotes that it's manufactured by Gigabyte. The second segment indicates what chipset it is using, in this case Intels P35. The third part is the most interesting one, it can tell you what features it has. This is also the most cryptic segment, mostly containing a number of abbrevations.  Available 2nd segment abbrevations:</p>
<ul>
<li>E - Energy saving features</li>
<li>T - Only DDR3 support</li>
<li>C - Both DDR2 and DDR3 support</li>
</ul>
<p>Available 3rd segment abbrevations:</p>
<ul>
<li>D (durability) - Indicates that the motherboard uses only solid state capacitors</li>
<li>S2 (Smart, Safe) - Various features such as Q-Flash BIOS etc</li>
<li>S3 (Smart, Speed, Safe) - Same as above, but includes overclocking features</li>
<li>S4 (Silent Pipe, Smart, Speed, Safe) - Same as above, but uses heat pipe cooling</li>
<li>S5 (CrossFire, Silent Pipe, Smart, Speed, Safe) - Same as above, but with CrossFire support</li>
<li>Q6 (Quad Bios, Quad Cooling, Quad E-SATA2, Quad Triple Phase, Quad-Core Optimized, Quad DDR2 Slots) - Indicates quad-core optimiziation</li>
</ul>
<p>Available 4th segment abbrevations:</p>
<ul>
<li>R - 2 extra SATA2 ports and possibly RAID (ie P35-DS3R)</li>
<li>G - Solid capacitors for the CPU Volt Regulator Module</li>
<li>H - HDMI port</li>
<li>L - Probably "Lite". Could contain less SATA2 (ie P35-DS3L)</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/motherboard-naming-scheme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Security: VirtuMonde / AntiSpywareXP 2009</title>
		<link>http://studio.anubisfrommemphis.com/blog/security-virtumonde/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/security-virtumonde/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 00:33:04 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=57</guid>
		<description><![CDATA[

Details: AntiSpywareXP 2009 is a replica of the widely spread rogue anti-spyware program called XP Antispyware 2009. It is classified as VirtuMonde, an adware program that downloads and displays popup advertisements.
Symptoms: The following message will appear in a popup, luring click through and purchase of the fake antivirus software:
ATTENTION! If your computer is struck by [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-57"></span></p>
<ul>
<li>Details: AntiSpywareXP 2009 is a replica of the widely spread rogue anti-spyware program called XP Antispyware 2009. It is classified as <em>VirtuMonde</em>, an adware program that downloads and displays popup advertisements.</li>
<li>Symptoms: The following message will appear in a popup, luring click through and purchase of the fake antivirus software:<br />
<blockquote><p>ATTENTION! If your computer is struck by the spyware, you could suffer data loss, erratic PC behaviour, PC freezes and crashes.<br />
Detect and remove viruses before they damage your computer!<br />
Antivirus 2009 will perform 100% quick scan of your computer for Viruses, Spyware and Adware.<br />
Do you want to install Antivirus 2009 to scan your computer for malware now? (Recommended)</p></blockquote>
</li>
<li>Solution: Use <a title="Spybot - Search &amp; Destroy" href="http://www.safer-networking.org">Spybot - Search &amp; Destroy</a> to detect and remove the rogue security application. Prior to any scan or deletion of the registries, remember to turn off TeaTimer or any restoration programs.  Some have mentioned that <a href="http://www.superantispyware.com/" target="_blank">SUPERAntiSpyware Free</a> is equally effective.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/security-virtumonde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grid Systems</title>
		<link>http://studio.anubisfrommemphis.com/blog/grid-systems/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/grid-systems/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 23:07:14 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design Knowledge]]></category>
		<category><![CDATA[design tool]]></category>
		<category><![CDATA[grid systems]]></category>
		<category><![CDATA[user interface]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=47</guid>
		<description><![CDATA[Call me ignorant or ill-informed, because this is the first time that I have heard of 'grid systems'. Although the idea is trivial, since all architects, designers, engineers or even musicians make uses of the grids ever so often, it became a movement and powerful tools for producing fast and solid designs in recent years.

As [...]]]></description>
			<content:encoded><![CDATA[<p>Call me ignorant or ill-informed, because this is the first time that I have heard of 'grid systems'. Although the idea is trivial, since all architects, designers, engineers or even musicians make uses of the grids ever so often, it became a movement and powerful tools for producing fast and solid designs in recent years.</p>
<p><span id="more-47"></span></p>
<blockquote><p>As is true in <a href="http://colorcharge.com/2008/02/08/inspiration-charge-of-february-2008-typography/">typography</a>, as is in music, and other forms of human creative expression, the delicate balance between fill and empty spaces, between sound and silence, or isolation and convergence is the soul of a great piece of art.</p>
<p>The Grid System approach can help you organizing your content by making you look to your drawing from the perspective of shapes and empty spaces that need to be balanced, using hidden lines and simple grids that guides and serves as a hidden (sometimes visible) proportional structure.</p>
<p><em>Rick, Creative Director of <a title="ColorCharge" href="http://colorcharge.com/">ColorCharge</a></em></p></blockquote>
<p>Tired of the 2-columns, 3 columns or content-menu layouts? Grid systems might be the way out of the mundane, routined interface design. Using grids to assist in controlling content organization and separation, both typography and layout of a page may transform into a magzine foldout or structural blueprints giving readers a fresh, unconventional experience.</p>
<p>Rick, director of ColorCharge, has kindly collated a set of useful links to grid system related books and websites in <a title="Inspiration Charge of April: Grid Systems" href="http://colorcharge.com/2008/04/14/inspiration-charge-of-april-grid-systems/">Inspiration Charge of April: Grid Systems</a>. He has also recommended the following books:</p>
<ul>
<li><a href="http://www.amazon.com/Systems-Graphic-Design-Josef-Muller-Brockmann/dp/3721201450/">Grid Systems in Graphic Design, by Josef Muller-Brockmann, Josef Muller - Brockmann</a></li>
<li><a href="http://www.amazon.com/Grid-Systems-Principles-Organizing-Design/dp/1568984650/">Grid Systems: Principles of Organizing Type, by Kimberly Elam</a></li>
</ul>
<p>For web design and development tools:</p>
<ul>
<li><a title="Yahoo! UI Library: Grids CSS" href="http://developer.yahoo.com/yui/grids/">Yahoo! UI Library: Grids CSS</a></li>
<li><a title="The Grid System" href="http://www.thegridsystem.org/">The Grid System</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/grid-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SimpleBits</title>
		<link>http://studio.anubisfrommemphis.com/blog/simplebits/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/simplebits/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 06:14:01 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Site Review]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[Minimalism]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=42</guid>
		<description><![CDATA[www.simplebits.com
SimpleBits is a small web design studio based in Massachusetts, USA. I first stumbled on this little site while searching for icons - simple, elegant and unsophisticated icons. SimpleBits provides web services and icon sets for commercial uses. Though there are no freebies, the examples allow viewers to gain some insights to true minimalism design [...]]]></description>
			<content:encoded><![CDATA[<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/website-screenshot/2008-12-24-simplebits.jpg" title="" class="thickbox" rel="singlepic3" >
	<img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/3__320x240_2008-12-24-simplebits.jpg" alt="SimpleBits" title="SimpleBits" />
</a>

<p><a title="SimpleBits" href="http://www.simplebits.com/">www.simplebits.com</a></p>
<p>SimpleBits is a small web design studio based in Massachusetts, USA. I first stumbled on this little site while searching for icons - simple, elegant and unsophisticated icons. SimpleBits provides web services and icon sets for commercial uses. Though there are no freebies, the examples allow viewers to gain some insights to true minimalism design without flowery graphics and decorative arts. The site also posts many design-related articles and referral links to other useful information.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/simplebits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fat-Man Collective</title>
		<link>http://studio.anubisfrommemphis.com/blog/fat-man-collective/</link>
		<comments>http://studio.anubisfrommemphis.com/blog/fat-man-collective/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 12:53:51 +0000</pubDate>
		<dc:creator>Anubis From Memphis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Site Review]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PaperVision3D]]></category>

		<guid isPermaLink="false">http://studio.anubisfrommemphis.com/?p=10</guid>
		<description><![CDATA[
www.fat-man-collective.com
This is one of the best animated Flash web sites that I have seen around. It seems that the 2008 version is using PaperVision3D technology, making it absolutely brilliant and fun to play with. In the the portfolio presentation, items swirl around a 3D centerpiece that allows users to spin around, and site user interface [...]]]></description>
			<content:encoded><![CDATA[<a href="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/website-screenshot/2008-12-20-fat-man-collective.jpg" title="" class="thickbox" rel="singlepic1" >
	<img class="ngg-singlepic ngg-center" src="http://studio.anubisfrommemphis.com/wordpress/wp-content/gallery/cache/1__320x240_2008-12-20-fat-man-collective.jpg" alt="Fat-Man Collective" title="Fat-Man Collective" />
</a>

<p style="text-align: center;">
<p><a title="Fat-Man Collective" href="http://www.fat-man-collective.com/">www.fat-man-collective.com</a></p>
<p>This is one of the best animated Flash web sites that I have seen around. It seems that the 2008 version is using <a title="PaperVision3D" href="http://blog.papervision3d.org/">PaperVision3D</a> technology, making it absolutely brilliant and fun to play with. In the the portfolio presentation, items swirl around a 3D centerpiece that allows users to spin around, and site user interface is intuitive, elegant and relatively simple to navigate.</p>
<p>Fat-Man Collective is, like its name suggested, a group of artistic and innovative designers, animators and developers. Though the group name is called 'Fat-Man', all of its sub-groups have individual names such as 'Iam-Studios', 'Bon-Bon' and, a more subtle noun, ' Fat-Bitch '. The collective operates mainly in the UK and European region.</p>
]]></content:encoded>
			<wfw:commentRss>http://studio.anubisfrommemphis.com/blog/fat-man-collective/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

