<?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>Takashi Irie&#187; Blog | Takashi Irie</title> <atom:link href="http://takashiirie.com/blog/feed" rel="self" type="application/rss+xml" /><link>http://takashiirie.com</link> <description>Web &#38; Graphic Designer, London, UK</description> <lastBuildDate>Wed, 04 Aug 2010 17:29:25 +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>How to make the categories selection window taller with jQuery in WordPress admin</title><link>http://takashiirie.com/blog/wordpress-blog/tips/categories-selection-window-taller-jquery-wordpress-admin.html</link> <comments>http://takashiirie.com/blog/wordpress-blog/tips/categories-selection-window-taller-jquery-wordpress-admin.html#comments</comments> <pubDate>Wed, 04 Aug 2010 13:05:26 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Tips]]></category> <category><![CDATA[jQuery]]></category><guid isPermaLink="false">http://takashiirie.com/?p=715</guid> <description><![CDATA[This solves something that has bothered me for sometime in WordPress admin interface. When a site has a lot of categories, the categories selection window is just not tall enough and we have to find the right category by scrolling the tiny window, but no more! With jQuery, the window expands dynamically. Amazing. Open you [...]]]></description> <content:encoded><![CDATA[<p>This solves something that has bothered me for sometime in WordPress admin interface. When a site has a lot of categories, the categories selection window is just not tall enough and we have to find the right category by scrolling the tiny window, but no more! With jQuery, the window expands dynamically. Amazing. Open you function.php and paste the following code.<span id="more-715"></span></p><div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'admin_head'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'categories_selection_jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> categories_selection_jquery<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span><span style="color: #0000ff;">'
	&lt;script type=&quot;text/javascript&quot;&gt;
		jQuery(function($){
			$(&quot;#category-all.tabs-panel&quot;).height($(&quot;#categorychecklist&quot;).height());
		});
	&lt;/script&gt;
	'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div><p><img src="http://takashiirie.com/wp-content/uploads/2010/08/wordpress-categories-selection-panel1.jpg" alt="wordpress categories selection panel1 How to make the categories selection window taller with jQuery in WordPress admin" title="wordpress-categories-selection-panel" width="580" height="560" class="alignnone size-full wp-image-718" /></p><p>Thanks <a href="http://wpcanyon.com/tipsandtricks/increasing-the-categories-selection-height-in-wordpress-admin/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+wpcanyon+%28wpCanyon%29&amp;utm_content=Google+Reader" target="_blank">WPCanyon</a> for the great idea!</p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/wordpress-blog/tips/categories-selection-window-taller-jquery-wordpress-admin.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to show your latest tweets on your WordPress site without a plugin</title><link>http://takashiirie.com/blog/wordpress-blog/show-latest-tweets-wordpress-plugin.html</link> <comments>http://takashiirie.com/blog/wordpress-blog/show-latest-tweets-wordpress-plugin.html#comments</comments> <pubDate>Tue, 30 Mar 2010 02:26:47 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[twitter]]></category><guid isPermaLink="false">http://takashiirie.com/?p=610</guid> <description><![CDATA[Showing your latest tweets on your WordPress site is a good way to help your readers staying tuned with you, and doing it became a such common task. A plug-in can do that job but it&#8217;s simple tasks and if you are WordPress themer you probably should do it without a plug-in. If you want to [...]]]></description> <content:encoded><![CDATA[<p>Showing your latest tweets on your WordPress site is a good way to help your readers staying tuned with you, and doing it became a such common task. A plug-in can do that job but it&#8217;s simple tasks and if you are WordPress themer you probably should do it without a plug-in.<span id="more-610"></span></p><p>If you want to show only the latest tweet on your site, the method <a href="http://scriptplayground.com/tutorials/php/Latest-Twitter-Update-With-PHP/" target="_blank">Ryan Barr</a> suggested is good to go. (Although he said this method can show multiple tweets with changing the number of rpp on line 12 but it&#8217;s never worked for me. Also don&#8217;t forget add line 21.)</p><h2>Method for displaying the latest tweet</h2><div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">// Your twitter username.</span>
<span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;TwitterUsername&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Prefix - some text you want displayed before your latest tweet. </span>
<span style="color: #666666; font-style: italic;">// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\&quot;link.html\&quot;)</span>
<span style="color: #000088;">$prefix</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)</span>
<span style="color: #000088;">$suffix</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://search.twitter.com/search.atom?q=from:&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$username</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&amp;rpp=1&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #000088;">$stepOne</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;content type=<span style="color: #000099; font-weight: bold;">\&quot;</span>html<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$stepTwo</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;/content&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$stepOne</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$stepTwo</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$tweet</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #b1b100;">return</span> <span style="color: #000088;">$tweet</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$twitterFeed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$prefix</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$twitterFeed</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">stripslashes</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$suffix</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div><p><strong></strong><br /> <span style="color:#ff0000"><strong>UPDATE</strong></span><br /> However, if you want to show more than one tweets, the method <a href="http://www.instantshift.com/2009/05/25/10-twitter-hacks-for-your-wordpress-blog/">InstantShift</a> presented is the best way! With this method we are even able to show tweets from multiple accounts! I modified their code to make links clickable and quote &#038; apostrophe appearing as they should be.</p><h2>Method for displaying more than one tweets from account(s)</h2><div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$usernames</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;YourTwitterUsername&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Pull from accounts, separated by a space</span>
<span style="color: #000088;">$limit</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;3&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Number of tweets to pull in, total.</span>
<span style="color: #000088;">$show</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Show username? 0 = No, 1 = Yes.</span>
&nbsp;
<span style="color: #000088;">$prefix</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;ul&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// This comes before the entire block of tweets.</span>
<span style="color: #000088;">$prefix_sub</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;li&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// This comes before each tweet on the feed.</span>
<span style="color: #000088;">$wedge</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// This comes after the username but before the tweet content.</span>
<span style="color: #000088;">$suffix_sub</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// This comes after each tweet on the feed.</span>
<span style="color: #000088;">$suffix</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;/ul&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// This comes after the entire block of tweets.</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$usernames</span><span style="color: #339933;">,</span> <span style="color: #000088;">$limit</span><span style="color: #339933;">,</span> <span style="color: #000088;">$show</span><span style="color: #339933;">,</span> <span style="color: #000088;">$prefix_sub</span><span style="color: #339933;">,</span> <span style="color: #000088;">$wedge</span><span style="color: #339933;">,</span> <span style="color: #000088;">$suffix_sub</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    <span style="color: #000088;">$usernames</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;+OR+from%3A&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$usernames</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://search.twitter.com/search.atom?q=from%3A&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$usernames</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&amp;rpp=&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$limit</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$clean</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;entry&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$amount</span> <span style="color: #339933;">=</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$clean</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;=</span> <span style="color: #000088;">$amount</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
    	<span style="color: #000088;">$entry_close</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;/entry&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_content_1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;content type=<span style="color: #000099; font-weight: bold;">\&quot;</span>html<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$entry_close</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;/content&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_content_1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_name_2</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;name&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$entry_close</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_name_1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;(&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_name_2</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_name</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;)&lt;/name&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_name_1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_uri_1</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;uri&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$entry_close</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_uri</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&lt;/uri&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_uri_1</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #666666; font-style: italic;">// Make the links clickable and take care quote &amp; apostrophe</span>
&nbsp;
    	<span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&lt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
    	<span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
    	<span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
    	<span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;apos;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$prefix_sub</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$show</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
    		<span style="color: #b1b100;">echo</span>  <span style="color: #0000ff;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$clean_uri</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> class=<span style="color: #000099; font-weight: bold;">\&quot;</span>twitterlink<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$clean_name</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;/a&gt;&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$wedge</span><span style="color: #339933;">;</span> 
    	<span style="color: #009900;">&#125;</span>
    	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$clean_content</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$suffix_sub</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$prefix</span><span style="color: #339933;">;</span>
parse_feed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$usernames</span><span style="color: #339933;">,</span> <span style="color: #000088;">$limit</span><span style="color: #339933;">,</span> <span style="color: #000088;">$show</span><span style="color: #339933;">,</span> <span style="color: #000088;">$prefix_sub</span><span style="color: #339933;">,</span> <span style="color: #000088;">$wedge</span><span style="color: #339933;">,</span> <span style="color: #000088;">$suffix_sub</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$suffix</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/wordpress-blog/show-latest-tweets-wordpress-plugin.html/feed</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>How to fix ugly, fat font rendering in Safari 4</title><link>http://takashiirie.com/blog/fix-ugly-fat-font-rendering-safari4.html</link> <comments>http://takashiirie.com/blog/fix-ugly-fat-font-rendering-safari4.html#comments</comments> <pubDate>Tue, 23 Mar 2010 01:22:16 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[Typography]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[fonts]]></category><guid isPermaLink="false">http://takashiirie.com/?p=542</guid> <description><![CDATA[Safari 4 got better font-rendering than the previous Safari 3 but it still annoys me especially when it comes to Georgia. Look at the screenshot below. It&#8217;s still ugly and fat. Don&#8217;t you think so?The famous &#8220;text-shadow Safari hack&#8221; now seems to make it worse in Safari 4, so what to do now? Rogie King &#8211; [...]]]></description> <content:encoded><![CDATA[<p>Safari 4 got better font-rendering than the previous Safari 3 but it still annoys me especially when it comes to Georgia. Look at the screenshot below. It&#8217;s still ugly and fat. Don&#8217;t you think so?<span id="more-542"></span></p><p><img class="alignnone size-full wp-image-543" title="safari-fat-font" src="http://takashiirie.com/wp-content/uploads/2010/03/safari-fat-font.gif" alt="safari fat font How to fix ugly, fat font rendering in Safari 4" width="580" height="80" /></p><p>The famous &#8220;text-shadow Safari hack&#8221; now seems to make it worse in Safari 4, so what to do now?<br /> <a href="http://www.komodomedia.com/blog/2009/03/safari-text-shadow-anti-aliasing-css-hack/" target="_blank">Rogie King &#8211; Komodomedia</a> has found a neat solution using RGBA, followed by <a href="http://sam.brown.tc/entry/367/follow-up-safari-s-text-shadow-anti-aliasing-css-hack" target="_blank">Sam Brown</a>, who presented a bulletproof solution.</p><div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span>.01<span style="color: #00AA00;">&#41;</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span><span style="color: #00AA00;">;</span></pre></div></div><p>Look at the result below. It works like a charm. Brilliant.</p><p><img class="alignnone size-full wp-image-544" title="safari-thin-font" src="http://takashiirie.com/wp-content/uploads/2010/03/safari-thin-font.gif" alt="safari thin font How to fix ugly, fat font rendering in Safari 4" width="580" height="80" /></p><p>but wait, how do we fix in Firefox 3.6? If anybody knows about it, please leave a comment, I would appreciate it!</p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/fix-ugly-fat-font-rendering-safari4.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Where you can get web fonts to use &#8216;@font-face&#8217; in CSS3, roundup.</title><link>http://takashiirie.com/blog/typography/web-fonts-css3-fontface.html</link> <comments>http://takashiirie.com/blog/typography/web-fonts-css3-fontface.html#comments</comments> <pubDate>Sat, 27 Feb 2010 02:48:07 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Typography]]></category><guid isPermaLink="false">http://takashiirie.com/?p=505</guid> <description><![CDATA[We, web designers have been frustrated by the lack of choices of fonts that are available for web design. The web has waited long enough. Yes, now we can use extensive selections of web fonts using @font-face property in CSS3 but wait, where can we get those web fonts? Here is the roundup.Fonts available for [...]]]></description> <content:encoded><![CDATA[<p>We, web designers have been frustrated by the lack of choices of fonts that are available for web design. The web has waited long enough. Yes, now we can use extensive selections of web fonts using @font-face property in CSS3 but wait, where can we get those web fonts? Here is the roundup.<span id="more-505"></span></p><ul><li><a href="http://webfonts.info/wiki/index.php?title=Fonts_available_for_%40font-face_embedding" target="_blank">Fonts available for @font-face embedding</a><br /> (Wiki based great resource. Last updated on <a href="http://webfonts.info/wiki/index.php?title=Fonts_available_for_%40font-face_embedding&amp;action=history">August  18, 2009 )</a></li><li><a href="http://www.theleagueofmoveabletype.com/" target="_self">The League of Moveable Type</a><br /> (A collection of good open source fonts.)</li><li><a href="http://www.fontsquirrel.com/fontface" target="_blank">Font Squirrel | Download Hundreds of Free @font-face Fonts</a><br /> (It&#8217;s one of the best resources for free high-quality commercial-use web fonts. You can even create @font-face kit with <a href="http://www.fontsquirrel.com/fontface/generator" target="_blank">@font-face Generator</a>.)</li><li><a href="http://www.fonts.info/info/en_index.htm" target="_blank">FDI fonts.info</a></li><li><a href="http://mplus-fonts.sourceforge.jp/webfonts/index-en.html" target="_blank">M+ OUTLINE FONTS | WEB FONTS</a></li><li><a href="http://typekit.com/" target="_blank">Typekit</a></li><li><a href="http://www.typotheque.com/webfonts" target="_blank">Typotheque</a></li><li><a href="http://kernest.com/" target="_blank">Kernest</a></li><li><a href="http://www.fontshop.com/fontlist/n/web_fontfonts?utm_source=NewsletterFeb2410&amp;utm_medium=email&amp;utm_content=SeeThemAll&amp;utm_term=em&amp;utm_campaign=FF52Web" target="_blank">Web FontFonts</a></li><li><a href="http://www.cape-arcona.com/start.php?link=bndboldweb&amp;typo=2" target="_blank">Cape Arcona Type Foundry</a></li><li><a href="http://www.josbuivenga.demon.nl/">exljbris Font Foundry</a></li></ul><p>I&#8217;ll update when I find more places but if you know more please comment below to help to grow the list!</p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/typography/web-fonts-css3-fontface.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Preview your Photoshop brushes with Brush Pilot.</title><link>http://takashiirie.com/blog/apps/preview-photoshop-brushes-brush-pilot.html</link> <comments>http://takashiirie.com/blog/apps/preview-photoshop-brushes-brush-pilot.html#comments</comments> <pubDate>Sun, 11 Oct 2009 15:47:35 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Apps]]></category> <category><![CDATA[Blush]]></category> <category><![CDATA[Photoshop]]></category><guid isPermaLink="false">http://takashiirie.com/?p=398</guid> <description><![CDATA[I have been using ABR Viewer for a while but it&#8217;s time to move on. Brush Pilot is a fast and easy application for previewing your Photoshop brushs collection. It&#8217;s not free but it&#8217;s just $15.00 and if you are like me who is someone has a lot of brush collections and if you think [...]]]></description> <content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-399" title="brush-pilot-512" src="http://takashiirie.com/wp-content/uploads/2009/10/brush-pilot-512.jpg" alt="brush pilot 512 Preview your Photoshop brushes with Brush Pilot." width="140" height="140" />I have been using ABR Viewer for a while but it&#8217;s time to move on. <a href="http://www.brushpilotapp.com/" target="_blank">Brush Pilot</a> is a fast and easy application for previewing your Photoshop brushs collection. It&#8217;s not free but it&#8217;s just $15.00 and if you are like me who is someone has a lot of brush collections and if you think about how much you can save time, it totally worth it. &#8220;Time is money&#8221;, right?<span id="more-398"></span></p><p>Brush Pilot finds instantly all of your brushes, installs brushes with one click, and it&#8217;s super fast! <a href="http://www.brushpilotapp.com/img/brushpilot.mov">Watch this video</a>, you will see how it&#8217;s amazing.</p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/apps/preview-photoshop-brushes-brush-pilot.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> <enclosure url="http://www.brushpilotapp.com/img/brushpilot.mov?width=730&amp;amp" length="3111298" type="video/quicktime" /> </item> <item><title>New version of my site is here</title><link>http://takashiirie.com/blog/news/version-site.html</link> <comments>http://takashiirie.com/blog/news/version-site.html#comments</comments> <pubDate>Mon, 17 Aug 2009 22:33:53 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[News]]></category><guid isPermaLink="false">http://takashiirie.com/?p=361</guid> <description><![CDATA[Yes, finally here is the  new version 3 of my site! Well, content wise, it’s not quite there yet but I’m pretty happy about how its looking so far.. Obviously it’s powered by Wordpress as it’s my favorite and I carefully taken care of grid, typography, baseline grid and on-page SEO. I always like the simple [...]]]></description> <content:encoded><![CDATA[<p>Yes, finally here is the  new version 3 of my site!<br /> Well, content wise, it’s not quite there yet but I’m pretty happy about how its looking so far.. Obviously it’s powered by Wordpress as it’s my favorite and I carefully taken care of grid, typography, baseline grid and on-page SEO. I always like the simple beauty of the colour combination black and white and I believe this combo is perfect for presenting content that really needs to stand out.<br /> I hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/news/version-site.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ABR Viewer for Mac user. Preview your brushes with it!</title><link>http://takashiirie.com/blog/apps/abr-viewer-mac-user-preview-brushes.html</link> <comments>http://takashiirie.com/blog/apps/abr-viewer-mac-user-preview-brushes.html#comments</comments> <pubDate>Thu, 07 Feb 2008 22:40:28 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Apps]]></category><guid isPermaLink="false">http://takashiirie.com/?p=325</guid> <description><![CDATA[Many of my reader might know already about it though, finally, we, Mac user can preview brushes without loading them in Photoshop but the ABR Viewer!! If you have lots of brushes like me, you might have wanted to view all brushes that you have at a time without slowing down your computer. The standalone software [...]]]></description> <content:encoded><![CDATA[<p>Many of my reader might know already about it though, finally, we, Mac user can preview brushes without loading them in Photoshop but the ABR Viewer!!<span id="more-325"></span></p><p>If you have lots of brushes like me, you might have wanted to view all brushes that you have at a time without slowing down your computer. The standalone software ABR viewer generates a small thumbnail preview your brushes, no matter how many, so you don’t have to go through each brush to see whether you want to use it or not.</p><p>Windows users have been able to do it with the ABR viewer for long time but it has been not available for Mac users, but finally, thanks to Robert Redwood, we can finally <a href="http://www.easyelementsextra.com/ABRView.jar">download</a> Mac and Linux version from <a href="http://www.easyelements.com/abrview.html" target="_blank">easyelements.com</a> for free.</p><p>This is definitely grate time saver and if you have many brushes you can’t miss it!</p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/apps/abr-viewer-mac-user-preview-brushes.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free vector pack</title><link>http://takashiirie.com/blog/freebie/free-vector-pack.html</link> <comments>http://takashiirie.com/blog/freebie/free-vector-pack.html#comments</comments> <pubDate>Mon, 10 Sep 2007 22:24:42 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Freebie]]></category><guid isPermaLink="false">http://takashiirie.com/?p=319</guid> <description><![CDATA[It’s that time again free vector folks!! It has been long time since wings, splatter inks and butterflies got popular as design elements but we don’t see horses as design elements much nowadays. I like horses, and they are beautiful, aren’t they? So, with hopes that horses become the next trend, I releases this vector [...]]]></description> <content:encoded><![CDATA[<p>It’s that time again free vector folks!! It has been long time since wings, splatter inks and butterflies got popular as design elements but we don’t see horses as design elements much nowadays. I like horses, and they are beautiful, aren’t they? So, with hopes that horses become the next trend, I releases this vector pack for my readers.<span id="more-319"></span></p><p><a href="http://takashiirie.com/wp-content/uploads/2007/09/takashi_irie_vector_pack.zip"><img class="alignnone size-full wp-image-320" title="takashi_irie_vector_pack" src="http://takashiirie.com/wp-content/uploads/2009/08/takashi_irie_vector_pack.jpg" alt="takashi irie vector pack  Free vector pack" width="580" height="580" /></a></p><p><a href="http://takashiirie.com/wp-content/uploads/2007/09/takashi_irie_vector_pack.zip">Download EPS</a></p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/freebie/free-vector-pack.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free vector foliage ornaments pack</title><link>http://takashiirie.com/blog/freebie/free-vector-foliage-ornaments-pack.html</link> <comments>http://takashiirie.com/blog/freebie/free-vector-foliage-ornaments-pack.html#comments</comments> <pubDate>Tue, 04 Sep 2007 21:54:25 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Freebie]]></category><guid isPermaLink="false">http://takashiirie.com/?p=283</guid> <description><![CDATA[This is for free vector fans! Foliage ornaments are often useful for little jazz up illustrations.Thanks for the great sources,BenBlogged.com and Bittbox.com. Download EPS ]]></description> <content:encoded><![CDATA[<p>This is for free vector fans! Foliage ornaments are often useful for little jazz up illustrations.<span id="more-283"></span></p><p><a href="http://takashiirie.com/wp-content/uploads/2007/09/takashi_irie_foliage_ornaments.zip"><img class="alignnone size-full wp-image-284" title="foliage-ornaments-vector" src="http://takashiirie.com/wp-content/uploads/2009/08/foliage-ornaments-vector.gif" alt="foliage ornaments vector Free vector foliage ornaments pack" width="578" height="578" /></a></p><p>Thanks for the great sources,BenBlogged.com and Bittbox.com.</p><p><a href="http://takashiirie.com/wp-content/uploads/2007/09/takashi_irie_foliage_ornaments.zip">Download EPS</a></p> ]]></content:encoded> <wfw:commentRss>http://takashiirie.com/blog/freebie/free-vector-foliage-ornaments-pack.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 2/13 queries in 0.039 seconds using disk

Served from: takashiirie.com @ 2010-09-08 16:08:20 -->