<?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>Los Angeles Web Designer | Web Designer &amp; Front-end Developer &#8211; Soh Tanaka</title>
	<atom:link href="http://sohtanaka.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sohtanaka.com/web-design</link>
	<description>Servicing All of Los Angeles County, South Bay Torrance, and more.</description>
	<lastBuildDate>Fri, 17 Nov 2017 13:21:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.9.6</generator>
	<item>
		<title>Advanced Columns using the :nth-child(N)</title>
		<link>http://sohtanaka.com/web-design/advanced-columns-w-css/</link>
		<comments>http://sohtanaka.com/web-design/advanced-columns-w-css/#comments</comments>
		<pubDate>Fri, 17 Nov 2017 13:16:32 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=205</guid>
		<description><![CDATA[I recently developed a site for a client who requested their product listings be displayed similar to how Johnny Cupcakes (Street wear brand from Boston/Los Angeles) lays out their products (columns laid out in a...]]></description>
				<content:encoded><![CDATA[<p>I recently developed a site for a client who requested their product listings be displayed similar to how <a href="http://shop.johnnycupcakes.com/shop/" target="_blank" rel="noopener">Johnny Cupcakes</a> (Street wear brand from Boston/Los Angeles) lays out their products (columns laid out in a zig zag pattern). My first instinct was to split each section into its own list, but since this site was running on a CMS, all products had to be spit out in one giant list. <span id="more-4458"></span>Given this scenario I decided to use pseudo-selectors <code><a href="http://reference.sitepoint.com/css/pseudoclass-nthchild" target="_blank" rel="noopener">:nth-child(N)</a></code> and a bit of jQuery to help with IE support. I thought this was a great example of when to use <code>:nth-child(N)</code>, so I would like to go over this technique today.<br />
<a href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank" rel="noopener"><br />
<img class="center" title="Advanced Columns w/ CSS" src="http://sohtanaka.com/web-design/examples/advanced-lists-css/demo3.jpg" alt="Advanced Columns w/ CSS" /></a></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank" rel="noopener">View Demo</a></p>
</div>
<h3>HTML</h3>
<p>As stated above, this layout required that each product column be spit out in one big list. To achieve this zigzag effect, the first list item of every 26 items must be floated to the right.<br />
<img class="center" title="Advanced Columns w/ CSS - Zigzag Columns" src="http://sohtanaka.com/web-design/examples/advanced-lists-css/html-view.gif" alt="Advanced Columns w/ CSS - Zigzag Columns" /></p>
<blockquote>
<pre>&lt;ul class="prodlist"&gt;
    &lt;!--List #1 Large/Float Right--&gt;
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="lrg.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;!--List #2~13 Small/Float Left--&gt;
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="sm.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    ...
    &lt;!--List #14 Large/Float Left--&gt;
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="lrg.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;!--List #15~26 Small/Float Left--&gt;
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="sm.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    ...
    &lt;!--List #27 Large/Float Right--&gt;
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="lrg.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    &lt;!--List #28~39 Small/Float Left--&gt;
    &lt;li&gt;&lt;a href="#"&gt;&lt;img src="sm.jpg" alt="" /&gt;&lt;/a&gt;&lt;/li&gt;
    ...
&lt;/ul&gt;</pre>
</blockquote>
<h3>CSS</h3>
<p>Style the columns using a list and take note of the last line of CSS using <code>:nth-child(N)</code>. To read further on how the <code>:nth-child(N)</code> works, take a look at <a href="http://css-tricks.com/how-nth-child-works/" target="_blank" rel="noopener">Chris Coyier’s article</a>.<br />
<img class="center" title=":nth-child() CSS Tutorial " src="http://sohtanaka.com/web-design/examples/advanced-lists-css/css-view.gif" alt=":nth-child() CSS Tutorial " /></p>
<blockquote>
<pre>ul.prodlist {
	margin: 0; padding: 0;
	list-style: none;
}
ul.prodlist li {
	margin: 10px; padding: 0;
	float: left;
}
ul.prodlist li img {float: left;}
ul.prodlist li:nth-child(26n+1) {float: right;}</pre>
</blockquote>
<h3>Browser Support?</h3>
<p>Almost all modern browsers support <code>:nth-child(N)</code> except our red headed step child Internet Explorer. To cater for IE, we can write a quick line of jQuery.</p>
<h3>jQuery – IE Support</h3>
<p><small>For those who are not familiar with <a href="http://www.jquery.com/" target="_blank" rel="noopener">jQuery</a>, do check out their site first and get an overview of how it works. I’ve shared a <a href="http://www.sohtanaka.com/web-design/category/jquery-tutorials/" target="_blank" rel="noopener">few tricks</a> that I have picked up along the way, you can check those out as well.</small></p>
<p><strong>Initial Step – Call the jQuery file</strong></p>
<p>You can choose to <a href="http://jquery.com/" target="_blank" rel="noopener">download</a> the file from the jQuery site, or you can use this one hosted on Google.</p>
<blockquote>
<pre>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"&gt;&lt;/script&gt;</pre>
</blockquote>
<p>Directly after the line where you called your jQuery, start a new &lt;script&gt; tag and start your code by using the $(document).ready event. This allows your jQuery code to run the instant the DOM is ready to be manipulated. All we do now is add a <code>float: right;</code> to the <code>:nth-child(26n+1)</code>.</p>
<blockquote>
<pre>$(document).ready(function() {
	$('ul.prodlist li:nth-child(26n 1)').css({'float' : 'right'});
});</pre>
</blockquote>
<p><a href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank" rel="noopener"><br />
<img class="center" title="Advanced Columns w/ CSS" src="http://sohtanaka.com/web-design/examples/advanced-lists-css/demo3.jpg" alt="Advanced Columns w/ CSS" /></a></p>
<div class="highlight">
<p><a class="view" href="http://www.sohtanaka.com/web-design/examples/advanced-lists-css/" target="_blank" rel="noopener">View Demo</a></p>
</div>
<h3>Conclusion</h3>
<p>I decided to call this post advanced columns since it was out of the norm for me to style columns this way, but as you can see the technique of achieving this effect was quite simple. I also thought this was a good example of how to use the <code>:nth-child(N)</code> in a real life example, I hope you can take something from this tutorial and learn to use pseudo-selectors for your future projects. Props to the design/dev team at <a href="http://shop.johnnycupcakes.com/shop/" target="_blank" rel="noopener">Johnny Cupcakes</a> for coming up with a complex and unique layout.</p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/advanced-columns-w-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Site – New Direction</title>
		<link>http://sohtanaka.com/web-design/new-site-new-direction/</link>
		<comments>http://sohtanaka.com/web-design/new-site-new-direction/#comments</comments>
		<pubDate>Sat, 08 Jul 2017 08:40:24 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=165</guid>
		<description><![CDATA[So I finally got around to redesigning my site with the sacrifice of being overworked and silence on my blog over the past month. For those who still stuck around, I appreciate your support very...]]></description>
				<content:encoded><![CDATA[<p>So I finally got around to redesigning my site with the sacrifice of being overworked and silence on my blog over the past month. For those who still stuck around, I appreciate your support very much!</p>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/2010-launch/08vs01.jpg" alt="Soh Tanaka Redesign 2010" /></p>
<h3>Why the Redesign?</h3>
<p>I try to keep a tradition of redesigning my site every year to test my skills and also to look back at my progress. <span id="more-3611"></span>Another reason for the redesign was to fix some usability issues as well as re-organizing my categories and posts. I felt some posts were hard to find and the categories were getting a bit mixed up. This redesign was way over due and I’m happy I’ve finally finished it off so I can move on with my other projects.</p>
<h3>The Color Scheme</h3>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/2010-launch/color.jpg" alt="Colors" /><br />
The main reason why I chose this color scheme was to tie <a href="http://designbombs.com/">Design Bombs</a> back into my personal website. I wanted to have my blog and the gallery side by side, and having similar color schemes and having the gas mask mascot seemed to tie things into place.</p>
<h4>The Blog</h4>
<ul>
<li>
<h5>Blog Top Navigation / Sub categories</h5>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/2010-launch/topnav.gif" alt="Top Nav" /><br />
I reorganized the top navigation so you can easily find the articles you are looking for. I also created a <a href="http://www.sohtanaka.com/web-design/tag/beginner/">Beginners</a> and <a href="http://www.sohtanaka.com/web-design/tag/intermediate/">Intermediate</a> section for those who are trying to filter tutorials by their learning levels.</li>
<li>
<h5>Side Column – Design Bomb Gallery + Resources</h5>
<p>I have been wanting to integrate some good finds on Design Bombs on the site, so now you can keep up to date with the latest and greatest <a href="http://www.designbombs.com/">design entries</a> as well as the <a href="http://www.designbombs.com/resources/">resources</a>.</li>
<li>
<h5>Full Archives</h5>
<p>I’m not sure why I never had <a href="http://www.sohtanaka.com/archives/">this page</a> but now that I have a decent amount of articles, it was a good time to list them for those who wanted to quickly browse.</li>
<li>
<h5>RSS Subscriptions (All posts vs Tutorials only)</h5>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/2010-launch/rss.gif" alt="Top Nav" /><br />
You can now subscribe in three ways: <a href="http://feeds2.feedburner.com/sohtanaka">All feeds</a>, <a href="http://feeds.feedburner.com/Soh_Tanaka_Tutorials">tutorials only</a> or by <a href="http://feedburner.google.com/fb/a/mailverify?uri=sohtanaka">email</a>.</li>
<li>
<h5>Sticky Tool Box &amp; Switch Article View</h5>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/2010-launch/stickytoolbox.gif" alt="Top Nav" /><br />
In the post level pages (like this page for example), I added a sticky tool box on the left side so you can easily access them as you read the article.</p>
<p>Since the site is dark, I wanted the users to still be able to have a choice of reading text on a white background. Reading long articles on a dark background can be straining on the eyes, so now you have a choice on how you can view each post.</li>
</ul>
<h3>Specs</h3>
<p>This site was my first attempt at HTML5. I had a lot of fun coding it and I also learned some great things about the new features and benefits. One of my favorite places to research about HTML5 was <a href="http://html5doctor.com/" target="_blank" rel="noopener">www.HTML5Doctor.com</a>. It was an excellent source and they do a great job breaking it down. Some CSS3 were also sprinkled on top for those with modern browsers.</p>
<p>I stopped supporting IE6 (if you are a regular visitor and still on IE6, <a href="http://www.mozilla.com/">please upgrade</a>!). Knowing that 2% of my visitors were IE6, I felt it was now time to lay this browser to rest. Good bye ol’ friend…</p>
<p>Big thanks goes out to <a href="http://perishablepress.com/" target="_blank" rel="noopener">Jeff Star</a> for all the great WordPress tutorials on <a href="http://perishablepress.com/" target="_blank" rel="noopener">www.perishablepress.com</a>. I was on his site many times researching various functions and custom hacks.</p>
<p>Also thanks to Rogie at <a href="http://www.komodomedia.com/blog/2009/06/social-network-icon-pack/" target="_blank" rel="noopener">Komodo Media</a>, Nick at <a href="http://icondock.com/free/vector-social-media-icons" target="_blank" rel="noopener">Icon Dock</a>, Mark at <a href="http://www.famfamfam.com/lab/icons/silk/" target="_blank" rel="noopener">famfamfam</a>, and <a href="http://p.yusukekamiyamane.com/" target="_blank" rel="noopener">Yusuke Kamiyamane</a> for their beautiful icons.</p>
<h3>A New Direction</h3>
<p>As I was redesigning this site, I tried to view this as if I was the client. I felt the previous site didn’t really show my true personality and didn’t represent who I really was. I would like to switch gears and make this more of a personal blog (on top of the regular tutorials of course). I won’t bombard you with personal gibberish day after day, but I am planning on sharing something I find inspiring or interesting once a week (maybe on Fridays).</p>
<h3>Critiques, Comments, &amp; Feedback</h3>
<p>I am always open to constructive criticism and feedback. If you have any, please don’t hold back!</p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/new-site-new-direction/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cebu Philippines was Amazing</title>
		<link>http://sohtanaka.com/web-design/cebu-philippines-was-amazing/</link>
		<comments>http://sohtanaka.com/web-design/cebu-philippines-was-amazing/#respond</comments>
		<pubDate>Sat, 08 Jul 2017 08:28:34 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=162</guid>
		<description><![CDATA[For those who were interested, I would like to recap on my recent vacation to Cebu City, Philippines. As mentioned before, my wife is originally from there, and this was my first time visiting and...]]></description>
				<content:encoded><![CDATA[<p>For those who were interested, I would like to recap on my recent vacation to Cebu City, Philippines. As mentioned before, my wife is originally from there, and this was my first time visiting and meeting her relatives and friends.</p>
<p>Starting from the Los Angeles airport we flew to Seoul Korea (13 hours + 5 hour layover), then to Cebu Philippines (5 hours), pretty much the entire day of traveling.<span id="more-2773"></span><br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/1.gif" alt="LA to Cebu" /></p>
<h4>The City</h4>
<p>What shocked me the most was the large beautiful shopping centers/plazas on one block and shacks on the other. It was a diverse combination of the poor (referred as “squatters” by the locals) and the rich.<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/2.jpg" alt="LA to Cebu" /><br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/4.jpg" alt="Cebu City" /></p>
<p>Traffic there was pretty wild as well; everything on a first come first serve basis (no such thing as the Right-of-way), traffic lights and signs didn’t seem to matter as we drove through the city. The convenient thing was the fact that most places were only a few minutes away and the taxis there were very cheap.</p>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/3.jpg" alt="Cebu City" /></p>
<p>We stayed at a hotel across the street from a big indoor/outdoor shopping center called “Ayala” and it was probably one of the nicest malls I have ever been to. Not too far from where we stayed is a spot called “IT Park” where it got its name from all the call centers that are located there. Call centers are one of the fastest growing job markets in Cebu, and the restaurants and bars there are open 24/7 to cater mainly for the call center workers.</p>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/5.jpg" alt="Cebu City" /></p>
<p>A friend also took us to a local skateboarding/BMXing practice spot/park where I got to play a game of horse (S.K.A.T.E) with the locals. There were also a group of kids who were practicing backflips in a pile of grass. It was definitely a cool vibe there.</p>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/6.jpg" alt="Cebu City" /></p>
<h4>The Night Life</h4>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/7.jpg" alt="Cebu City" /><br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/19.jpg" alt="Cebu City" /><br />
The entire vacation blew by pretty quickly with each night having bar/club hopping on the agenda. The bars and clubs in Cebu do not close at any given time like here in Los Angeles, and people party till the sun comes up. Drinks were fairly cheap and house music was blaring everywhere you went. I was told that January was a big party month in Cebu since a lot of people are in town for <a href="http://en.wikipedia.org/wiki/Sinulog_festival" target="_blank" rel="noopener">Sinulog</a> (A huge annual festival with over 8 Million people attending).</p>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/8.jpg" alt="Cebu City" /><br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/20.jpg" alt="Cebu City" /><br />
Each night (around 5am) somehow ended with us cruising to the local street food stand and getting our grub on. Each spot we hit up was in some sort of alley way or street corner but the food was ridiculously on point. From grilled chicken/pork/beef/fish to shumai, noodles, etc, these guys served it up proper.</p>
<h4>Island Hopping</h4>
<p>By far one of my most memorable days was the day we went island hopping. We started in Maribago Beach where we had a private boat where they took us to three islands.<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/9.jpg" alt="Cebu City" /><br />
Snorkeling felt like I was in Hawaii, the water was clear and there were colorful fish all around us.<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/11.jpg" alt="Cebu City" /><br />
We later stopped at a floating restaurant where we picked our fresh fish, lobster, crab, clam, and had them cook it on the spot. It was delicious!<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/10.jpg" alt="Cebu City" /><br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/18.jpg" alt="Cebu City" /><br />
Our last stop was at Pandanon Island (a sandbar beach); we were the only tourists on the island for that afternoon. We kayaked, swam, and ate some lechon (roasted pig) which was awesome.<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/17.jpg" alt="Cebu City" /></p>
<h4>The Grand Finale – Sinulog</h4>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/12.jpg" alt="Cebu City" /><br />
As the days got closer and closer to the day of <a href="http://en.wikipedia.org/wiki/Sinulog_festival" target="_blank" rel="noopener">Sinulog</a>, the city seemed to get crazier and crazier. Sinulog this year reached about 8 million people from around the world. This wild street parade starts in the afternoon and lasts until early morning, with people drinking, eating, dancing, and blasting music on every block. I would compare this as almost like a riot, but all in good vibes. Face paint was smeared everywhere from friends and strangers and we roamed the jam packed streets.<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/13.jpg" alt="Cebu City" /></p>
<h4>Detox and Some Relaxation – Shangri-la Resort</h4>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/14.jpg" alt="Cebu City" /></p>
<p>After all of the madness that went down in the first 2 weeks, the last few days were reserved for relaxation at the <a href="http://www.shangri-la.com/en/property/cebu/mactanresort" target="_blank" rel="noopener">Shangri-la</a> resort. The beach was crystal clear and it was the perfect setting to just kick back and relax.<br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/16.jpg" alt="Cebu City" /><br />
<img class="center" src="http://www.sohtanaka.com/web-design/examples/cebu/15.jpg" alt="Cebu City" /></p>
<h4>Reflecting Back…</h4>
<p>Being labeled as a Third World Country, I flew down there not really knowing what to expect. What really struck me the most was how diverse Cebu is. From the beautiful beaches to the city life it was all an amazing experience and I loved every moment of it. If anyone is looking to vacation anytime soon, I would highly recommend checking out Cebu Philippines!</p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/cebu-philippines-was-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year</title>
		<link>http://sohtanaka.com/web-design/happy-new-year/</link>
		<comments>http://sohtanaka.com/web-design/happy-new-year/#respond</comments>
		<pubDate>Sat, 08 Jul 2017 08:20:24 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=156</guid>
		<description><![CDATA[Its been quite a while since I wrote my last blog post back in October. Some of you may be wondering whats been up on my plate and so I would like to do a...]]></description>
				<content:encoded><![CDATA[<p>Its been quite a while since I wrote my last blog post back in October. Some of you may be wondering whats been up on my plate and so I would like to do a lil recap of the past few months to get up to speed. <span id="more-4583"></span></p>
<h3>Taking a Dive into the Deep End</h3>
<p>Every year has its ups and downs, but 2010 was by far the toughest year for me. There were a few major f***d up incidents that went down in 2010, some I can’t mention since its a bit personal but one of them was my mother being diagnosed with stage 4b breast cancer. Just when I thought things can’t get any worse, the news of my mom really drilled me to the ground. There were many complications, we were unsure of how far the cancer had grown, many calls with multiple doctors, waiting for results, thinking about survival rates, etc it was an incredibly stressful time (and still is). Dealing with multiple issues from various angles, I had a really rough time balancing everything in my life. The obvious thing was to back off from work, and really attend to what was important. My mom is now on her second treatment of chemo (the first type was not very effective), and will be going through radiation in a couple of months.</p>
<p>Since then I’ve come to a realization of how much family really means to me. I often get lost in my personal life, work, friends, and sometimes I start to take things for granted. My goal now is to enjoy family and spend quality time with people that I love. I feel most of us designers/developers are so involved in our work lifestyle, that we forget we are still humans. Work hard but never let it become your life, this is something that I’ve been working hard to balance. One of my new years resolution is to slow it down and really find the right balance with work, family, and take some time for my self.</p>
<p>Here is a photo of my mom and dad, please keep her in your prayers.</p>
<p><img class="center" title="Kathy" src="http://sohtanaka.com/web-design/wp-content/uploads/2017/07/mom.jpg" alt="Kathy" /></p>
<p>Now that the bad news is out of the bag, here are some good news.</p>
<h3>The Transition</h3>
<p>After graduating college, my first professional design job was at <a href="http://www.4wheelparts.com/" target="_blank" rel="noopener">4 Wheel Parts</a> (a large e-Commerce retailer specializing in off road products). 4 Wheel Parts had been my training ground, I learned everything from Design to SEO, and even writing my first line of CSS there. After serving them for about 4 years, I was ready to move forward to my next big challenge. The thought of going full force with freelance did cross my mind, but I’ve always loved working in a team environment and surrounding myself with people that are smarter.</p>
<p>I’ve taught myself for the past 5 years and was incredibly hungry to be surrounded and schooled by the top designers and developers in my area. I’ve realized that to get the schooling and creative environment that I was seeking, I had to join a creative agency. I applied to many agencies in Los Angeles, denied by some, interviewed with some, and even turned down some. It was a truly humbling experience and I got to meet and interview with some very talented people on the way. After a long and patient journey, I finally found myself at <a href="http://www.soapcreative.com/" target="_blank" rel="noopener">Soap Creative</a>.</p>
<h4>Soap Creative</h4>
<p><a href="http://www.soapcreative.com/" target="_blank" rel="noopener"><img class="center" title="Soap Creative" src="http://sohtanaka.com/web-design/wp-content/uploads/2017/07/soap.jpg" alt="Soap Creative" /></a><br />
<a href="http://www.soapcreative.com/" target="_blank" rel="noopener">Soap Creative</a> is originally based in Sydney Australia but has a Los Angeles team here in Culver City. The talent here is very diverse, the team is well balanced with concept artists, 3-D motion graphic designers, developers, vector illustrators, Flash devs and more. Although Soap is well known for its online arcades and interactive flash sites, the clients are seeking more accessible sites these days so I feel I jumped on board at the right time to contribute my design and CSS skills. I am proud to be here and look forward to learning tons from the creatives here at soap!</p>
<h3>Exploring Other Creative Exercises</h3>
<p>To get through the stressful times, I don’t know what I would do without my trusty skateboard and good music to dance to. Skateboarding and popping has been my way to release the stress and it has helped me in many ways both physically and mentally. After quitting skateboarding for about 8 years, I picked it up again this year and I’ve been enjoying relearning old tricks and learning new ones as well. Here is a quick video of me skating at a local high school.</p>
<p><object width="500" height="400" data-mce-fragment="1"><embed src="http://www.youtube.com/v/WD3_2Ws7-uM?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="allowfullscreen" width="500" height="400" /></object></p>
<p>On the dance tip, my good buddy Madd Chadd from Step up 3D had recruited me to take part in a street dance webisode called “<a href="http://thelxd.com/" target="_blank" rel="noopener">The LXD</a>” which showcases some of the best bboys and poppers in the states. I was in the last episode of the second season called “<a href="http://thelxd.com/episodes/the-good-the-bad-and-the-ra-part-2/" target="_blank" rel="noopener">The Good, the Bad and the Ra, Part 2</a>“. Enjoy my butt tight jeans and bandit outfit lol.</p>
<p><a href="http://thelxd.com/episodes/the-good-the-bad-and-the-ra-part-2/" target="_blank" rel="noopener"><img class="center" title="The LXD" src="http://sohtanaka.com/web-design/wp-content/uploads/2017/07/tightjeans5.jpg" alt="The LXD" /></a></p>
<p>Lastly, here is a short segment I did with some local dancers for Myka9′s latest music video “I Must Cross”.</p>
<p><object width="500" height="306" data-mce-fragment="1"><embed src="http://www.youtube.com/v/aod--8bFNCU?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="allowfullscreen" width="500" height="306" /></object></p>
<h3>and Finally… I Quit Smoking</h3>
<p>I picked up my first cigarette back when I was about 15 or so. I was a social smoker up to about end of highschool, then started smoking regularly. I finally put an end to it last month and hope to never return to it again!</p>
<h3>Thanks for All of the Support</h3>
<p>I’m very blessed to have all my friends and readers support me during tough times. There were many who kept in touch and checked on how I was doing, I really appreciate it and it really did make a big difference. To all my readers who still stuck around after 3 months of dead silence, I apologize for that and I am looking forward to writing some new tutorials very soon.</p>
<p>Thank you always, I hope you all have a great year ahead of you. Goodbye 2010, hello 2011 <img src="https://s.w.org/images/core/emoji/2.4/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Update on the New Portfolio &#038; Blog</title>
		<link>http://sohtanaka.com/web-design/quick-update-on-the-new-portfolio-blog/</link>
		<comments>http://sohtanaka.com/web-design/quick-update-on-the-new-portfolio-blog/#comments</comments>
		<pubDate>Sat, 08 Jul 2017 08:16:52 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Site Update]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=153</guid>
		<description><![CDATA[It’s already turning into a crazy month, but this time around I am focused on finishing my new portfolio and blog. I would like to release some sneak previews for those who are interested. I am...]]></description>
				<content:encoded><![CDATA[<p>It’s already turning into a crazy month, but this time around I am focused on finishing my new portfolio and blog. I would like to release some sneak previews for those who are interested.</p>
<p>I am developing in HTML5, a few CSS3 tricks, and a mixture of my jQuery widgets and features.<span id="more-2876"></span> I will be writing a full review of my process once I am complete. Stay tuned, thank you for your patience!</p>
<h4>Home</h4>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/sneak-10/sample1.jpg" alt="Sneak Preview - Soh Tanaka" /></p>
<h4>Blog</h4>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/sneak-10/sample2.jpg" alt="Sneak Preview - Soh Tanaka" /></p>
<h4>Portfolio</h4>
<p><img class="center" src="http://www.sohtanaka.com/web-design/examples/sneak-10/sample3.jpg" alt="Sneak Preview - Soh Tanaka" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/quick-update-on-the-new-portfolio-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fell Off the Face of the Earth…</title>
		<link>http://sohtanaka.com/web-design/fell-off-the-face-of-the-earth/</link>
		<comments>http://sohtanaka.com/web-design/fell-off-the-face-of-the-earth/#comments</comments>
		<pubDate>Sat, 08 Jul 2017 08:12:29 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Site Update]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=150</guid>
		<description><![CDATA[As you may have noticed I have been MIA for the past month on my blog and also been hiding out on the social media tip. I would like to update you guys with some...]]></description>
				<content:encoded><![CDATA[<p>As you may have noticed I have been MIA for the past month on my blog and also been hiding out on the social media tip. I would like to update you guys with some news on what I have been doing and whats coming up next.</p>
<h4>Soh Went Missin. WTH happened?</h4>
<p>I’ve been battling “<a href="http://www.alistapart.com/articles/burnout/" target="_blank" rel="noopener">Burnout</a>” for a while, and it finally caught up to me around December. <span id="more-2759"></span>Juggling a day job, freelance, personal/guest blog, family/friends, and holidays has always been a challenge for me and this is something I would like to improve on this year. I know there are many others in the same shoes, and for those who are handling business while maintaining a healthy balance between work and life, I applaud you and give you the utmost respect. If you have any advice on how to better handle this, I would love to hear about them <img src="https://s.w.org/images/core/emoji/2.4/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<h4>What Have I been Working On Recently?</h4>
<p>I recently met <a href="http://www.youtube.com/watch?v=2aLmQ5tP3hg" target="_blank" rel="noopener">DStyles</a> who is a famous turntablist (Beat Junkies/Invisibl Skratch Piklz) at a weekly underground hiphop/electronica spot here in Los Angeles. Dstyles works for <a href="http://vestax.com/" target="_blank" rel="noopener">Vestax</a> and they were in need of a website for their new product “<a href="http://store.apple.com/us/product/TX742VC/A" target="_blank" rel="noopener">Spin</a>” which is a mixer strictly for the Mac. With a tight deadline of 3 weeks, I was able to pull this project off for them. I’ll have an update later when the site is live.</p>
<p>I also decided to redesign my portfolio and started messing around with ideas here and there. The main reason for my redesign was to first test how far I’ve come since my last redesign, but also to make my tutorials easier to find. This may take me a little while longer since clients always come first, but its something that I would like to accomplish within the next few months. Updates coming soon!</p>
<h4>Whats Up Now?</h4>
<p>I’m going on vacation to Cebu City, Philippines with my wife starting today! Its a vacation long overdue, and I am planning to enjoy every moment of it. I will be gone for 2 1/2 weeks, when I return, I will back in action with new tutorials and projects. Thank you for your patience and again I apologize about the silent moments on this blog. This is my time to decompress, reorganize my thoughts, set goals for 2010, and hopefully find new inspirations. I hope to come back refreshed and ready to take on the new year. If you guys are interested, I will be happy to post some pictures of my adventure.</p>
<h4>Whats Coming up?</h4>
<p>I have another exciting project lined up around Feb/March. I would like to keep it on the down low for now but will keep you updated. I also wrote a tutorial for .Net Magazine on a portfolio image slider which should be out this month (Issue #197). I will be releasing a tutorial to follow up with that piece very soon.</p>
<h4>Final Thoughts</h4>
<p>All in all, I hope my burnout will pass, and I will be back in the game shortly. 2009 was a great year and I learned a ton from the design/dev community. Big thanks goes out to <a href="http://designm.ag/" target="_blank" rel="noopener">Steven Snell</a> for bringing me up when I was just starting to blog, <a href="http://css-tricks.com/" target="_blank" rel="noopener">Chris Coyier</a> for his fantastic tutorials and all the lessons I have learned over the years, <a href="http://www.smashingmagazine.com/author/vitaly-friedman/" target="_blank" rel="noopener">Vitaly Friedman</a> for inviting me to write for SM and being so patient with my schedule, and to all my readers, I appreciate all of the support, feedback, and patience. I wish you all a healthy and successful 2010!! Its time to make moves, lets make it happen!</p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/fell-off-the-face-of-the-earth/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Surviving the 1st Year</title>
		<link>http://sohtanaka.com/web-design/surviving-the-1st-year/</link>
		<comments>http://sohtanaka.com/web-design/surviving-the-1st-year/#comments</comments>
		<pubDate>Sat, 08 Jul 2017 08:05:27 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Site Update]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=147</guid>
		<description><![CDATA[I was looking back at some of my old posts and noticed I have now been blogging for a year. Now that I am reflecting back, I would like to comment on the things that...]]></description>
				<content:encoded><![CDATA[<p>I was looking back at some of my old posts and noticed I have now been blogging for a year. Now that I am reflecting back, I would like to comment on the things that I have learned and experienced.</p>
<h4>What I Learned from Blogging</h4>
<p>My director at my day job always told me that it’s important to give back to the community. <span id="more-2429"></span>I’ve had a great year being able to do just that, and in return I’ve had the opportunity to get to know some brilliant and talented people. I ended up learning more about the technique I was sharing from reader feedback and comments, <strong>and most importantly it made me overcome my fear of writing</strong>.</p>
<p>I was never the type to write, I actually hated it and avoided it at all costs. Although I still make stupid spelling/grammar errors, I am now able to communicate my thoughts much easier than ever before. Not only did it help my verbal and writing skills, but it has also helped me effectively teach people and allowed me to understand usability in a new light. <strong>Good communication is good usability</strong> (whether its written or demonstrated graphically), I never thought of it this way till now.</p>
<p>For those who hate or fear writing the way I did, its never too late to change. Get your blog started and see where it takes you. When you write about things you love, its much more enjoyable and your words will flow more naturally. Communication is key in dealing with clients and working in a team, blogging may be your gateway to overcome those fears.</p>
<h4>Thank You</h4>
<p>To all of those who have supported me, I truly appreciate your support and encouragement. Thank you for all of the comments, feedback, suggestions, calling out my fails, etc. this blog would not be where it’s at without you. Looking forward to another great year, feel free to <a href="http://twitter.com/sohtanaka">catch me anytime</a>!</p>
<h4>Post Highlights</h4>
<p>Just in case you missed some of my older posts here are some highlights:</p>
<h5>CSS</h5>
<ul>
<li><a href="http://www.sohtanaka.com/web-design/css-ordered-list-enhancement-tutorial/">Sexy Ordered Lists with CSS</a></li>
<li><a href="http://www.sohtanaka.com/web-design/markup-hierarchy-advantages-seo/">Markup Hierarchy – Advantages in SEO</a></li>
<li><a href="http://www.sohtanaka.com/web-design/css-on-hover-image-captions/">CSS On-Hover Image Captions</a></li>
<li><a href="http://www.sohtanaka.com/web-design/optimizing-css-tutorial/">5 Step Style Sheet Weight Loss Program</a></li>
<li><a href="http://web.archhttp://www.sohtanaka.com/web-design/fixed-footer-backgrounds-with-css/">Fixed Footer Backgrounds with CSS</a></li>
<li><a href="http://www.sohtanaka.com/web-design/achieving-double-background-effect-with-css/">Achieving Double Background Effect with CSS</a></li>
<li><a href="http://www.sohtanaka.com/web-design/beginners-checklist-debugging-css-bug/">Beginner’s Checklist Before Debugging CSS</a></li>
<li><a href="http://www.sohtanaka.com/web-design/css-vertical-navigation-with-teaser/">CSS Vertical Navigation with Teaser</a></li>
<li><a href="http://www.sohtanaka.com/web-design/print-css-javascript-icons/">Using Print Stylesheets Effectively</a></li>
<li><a href="http://www.sohtanaka.com/web-design/debugging-css-tips-tricks/">Debugging CSS – The Plan of Attack</a></li>
<li><a href="http://www.sohtanaka.com/web-design/liquid-fixed-two-column-layouts/">Liquid + Fixed Two Column Lists with CSS</a></li>
<li><a href="http://www.sohtanaka.com/web-design/spice-up-your-images-with-css/">5 Ways to Spice up Your Images with CSS</a></li>
</ul>
<h5>jQuery</h5>
<ul>
<li><a href="http://www.sohtanaka.com/web-design/simple-page-peel-effect-with-jquery-css/">Simple Page Peel Effect with jQuery &amp; CSS</a></li>
<li><a href="http://www.sohtanaka.com/web-design/smart-columns-w-css-jquery/">Smart Columns w/ CSS &amp; jQuery</a></li>
<li><a href="http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/">Simple Tabs w/ CSS &amp; jQuery</a></li>
<li><a href="http://www.sohtanaka.com/web-design/animate-navigation-with-css-jquery/">Animated Navigation with CSS &amp; jQuery</a></li>
<li><a href="http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/">Fancy Thumbnail Hover Effect w/ jQuery</a></li>
<li><a href="http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/">Simple Toggle with CSS &amp; jQuery</a></li>
<li><a href="http://www.sohtanaka.com/web-design/side-navigation-tooltip-popup-bubble/">Side Navigation Tooltip / Popup Bubble</a></li>
</ul>
<h5>Thoughts on Web Design</h5>
<ul>
<li><a href="http://www.sohtanaka.com/web-design/do-you-eat-and-run/" target="_blank" rel="noopener">Do You Eat and Run?</a></li>
<li><a href="http://www.sohtanaka.com/web-design/so-youve-mastered-css-whats-next/" target="_blank" rel="noopener">So You’ve Mastered CSS. What’s Next?</a></li>
<li><a href="http://www.sohtanaka.com/web-design/passion-web-design-career-success/" target="_blank" rel="noopener">Passion – It’s What Drives Your Success</a></li>
<li><a href="http://www.sohtanaka.com/web-design/bullet-proof-design-procedure/" target="_blank" rel="noopener">Bullet Proof Design Procedure</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/surviving-the-1st-year/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Always Backup Your Files and Database!</title>
		<link>http://sohtanaka.com/web-design/always-backup-your-files-and-database/</link>
		<comments>http://sohtanaka.com/web-design/always-backup-your-files-and-database/#respond</comments>
		<pubDate>Sat, 08 Jul 2017 08:00:39 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Site Update]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=144</guid>
		<description><![CDATA[I just want to do a recap of what happened about a week ago. I had been sharing a dedicated machine with my partner for a few months, until one Friday morning, the site just...]]></description>
				<content:encoded><![CDATA[<p>I just want to do a recap of what happened about a week ago. I had been sharing a dedicated machine with my partner for a few months, until one Friday morning, the site just never came up. I had assumed it had something to do with exceeding bandwidth and running out of memory, little did I know, the entire machine had crapped out and had wiped everything out. <span id="more-2121"></span>Now I don’t want to go over details of how it happened since I still don’t have a clear answer to that, but I would just like to remind everyone to BACKUP all your files and your database.</p>
<p>This blog was luckily backed up once a week with this <a href="http://wordpress.org/extend/plugins/wp-db-backup/">awesome plugin</a>, but unfortunately <a href="http://www.designbombs.com/blog-bombs/design-bombs-is-back-in-action/">DesignBombs.com</a> was not. I had to enter all its entries from the ground up. If this site went down completely without a backup I really don’t know if I would have had the patience to write all of my tutorial all over again. Please let my mistake and foolishness be a lesson to anyone out there that is not in a routine backing up!</p>
<h4>WordPress Backup Plugins</h4>
<p>If you don’t have a backup system yet, I highly suggest you set something up. If you are on WordPress like me, here are two that people are highly recommending.</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank" rel="noopener">WP-DBManager</a></li>
<li><a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank" rel="noopener">WP-DB-Backup</a></li>
</ul>
<h4>Where am I hosted Now?</h4>
<p>I asked a couple people I really trust with large communities, and they had pointed me to a couple good hosting companies to look into. I decided to run with <a href="http://mediatemple.net/" target="_blank" rel="noopener">Media Temple</a>, and am now on their Dedicated-Virtual setup.</p>
<h4>Other recent articles related to backing up</h4>
<ul>
<li><a href="http://www.freelanceswitch.com/freelancing-essentials/belts-and-suspenders-backing-up-your-data/" target="_blank" rel="noopener">Belts and Suspenders: Backing Up Your Data</a></li>
<li><a href="http://www.smashingmagazine.com/2008/12/18/8-useful-wordpress-sql-hacks/" target="_blank" rel="noopener">8 Useful WordPress SQL Hacks</a></li>
<li><a href="http://www.smashingmagazine.com/2009/03/10/ultimate-round-up-for-version-control-with-subversion/" target="_blank" rel="noopener">Ultimate Round-Up For Version Control with Subversion</a></li>
<li><a href="http://www.noupe.com/php/10-ways-to-automatically-manually-backup-mysql-database.html" target="_blank" rel="noopener"> 10 Ways to Automatically &amp; Manually Backup MySQL Database</a></li>
<li><a href="http://codex.wordpress.org/WordPress_Backups" target="_blank" rel="noopener">WordPress Backups Explained</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/always-backup-your-files-and-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Gallery Site: Design Bombs</title>
		<link>http://sohtanaka.com/web-design/new-gallery-site-design-bombs/</link>
		<comments>http://sohtanaka.com/web-design/new-gallery-site-design-bombs/#respond</comments>
		<pubDate>Sat, 08 Jul 2017 07:58:42 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Site Update]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=141</guid>
		<description><![CDATA[I have been working on a new web gallery site called DesignBombs the past few weeks. It all started from buying a domain name sporadically (was an inside joke between co-workers), moving on to experimenting...]]></description>
				<content:encoded><![CDATA[<p>I have been working on a new <a href="http://www.designbombs.com/" target="_blank" rel="noopener">web gallery</a> site called <a href="http://www.designbombs.com/" target="_blank" rel="noopener">DesignBombs</a> the past few weeks. It all started from buying a domain name sporadically (was an inside joke between co-workers), moving on to experimenting with a logo, then transforming it self to a gallery style site.<span id="more-1714"></span></p>
<p>Although <a href="http://www.designbombs.com/" target="_blank" rel="noopener">Design Bombs</a> kind of unravelled out of no where, it was a cool little personal project and I had a lot of fun designing and building it. I know there are a lot <a href="http://www.designbombs.com/" target="_blank" rel="noopener">CSS Galleries</a> out there already, hope there is still room for another one!</p>
<p><a href="http://www.designbombs.com/" target="_blank" rel="noopener"><img class="center" src="http://www.sohtanaka.com/web-design/examples/designbombs/screen1.jpg" alt="Design Bombs" /></a></p>
<p><a href="http://www.designbombs.com/" target="_blank" rel="noopener"><img class="center" src="http://www.sohtanaka.com/web-design/examples/designbombs/screen2.jpg" alt="Design Bombs" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/new-gallery-site-design-bombs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow me on Twitter!</title>
		<link>http://sohtanaka.com/web-design/twitter-soh-tanaka/</link>
		<comments>http://sohtanaka.com/web-design/twitter-soh-tanaka/#respond</comments>
		<pubDate>Sat, 08 Jul 2017 07:50:05 +0000</pubDate>
		<dc:creator><![CDATA[Soh Tanaka]]></dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://sohtanaka.com/web-design/?p=135</guid>
		<description><![CDATA[I recently started using twitter a little more often. I’m not addicted like some of you yet… but enjoying the cool links &#38; resources being passed around. I don’t say much usually but thought I...]]></description>
				<content:encoded><![CDATA[<p>I recently started using twitter a little more often. I’m not addicted like some of you yet… but enjoying the cool links &amp; resources being passed around. I don’t say much usually but thought I would like to expand my network and get to know some of you a bit more.<span id="more-1473"></span></p>
<p><a href="http://twitter.com/SohTanaka" target="_blank" rel="noopener">Follow me</a> on twitter!</p>
<p><a href="http://twitter.com/SohTanaka" target="_blank" rel="noopener">http://twitter.com/SohTanaka</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sohtanaka.com/web-design/twitter-soh-tanaka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
