<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
>
<channel>
<title>Quinn</title> 
<link>http://quinn.higurashi.dyndns.orghttp://quinn.higurashi.dyndns.org/</link> 
<description>Quinn - RSS2.0 feed</description> 
<language>en</language> 
<copyright>Copyright 2007 Quinn</copyright>
<pubDate>Tue, 15 Jul 2008 14:26:28 +0900</pubDate>
<lastBuildDate>Tue, 15 Jul 2008 14:26:28 +0900</lastBuildDate>
<docs>http://backend.userland.com/rss091</docs>
<item>
<title>How many?</title>
<link>http://quinn.higurashi.dyndns.org/?post=87</link>
<pubDate>Tue, 15 Jul 2008 14:26:28 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=87</guid>
<description>It was fun to count this, how many states I have been in. Well, many comes from a trip to New York from California. It was a crazy driving trip with my best friend, celebrating his college graduation. There could be a few states I probably should not count in since I may only drove through, but I put them in anyway. So, mine came out as 20! How&amp;#39;s your...  </description>
<content:encoded>
<![CDATA[
<p>It was fun to count this, how many states I have been in. Well, many comes from a trip to New York from California. It was a crazy driving trip with my best friend, celebrating his college graduation. There could be a few states I probably should not count in since I may only drove through, but I put them in anyway. So, mine came out as 20! How&#39;s yours? </p><p><img src="http://chart.apis.google.com/chart?cht=t&amp;chs=440x220&amp;chtm=usa&amp;chf=bg,s,336699&amp;chco=cc0000&amp;chd=s:99999999999999999999&amp;chld=CAORWANVNYMSTXNMAZCOUTLAGASCNCNJVAALMDDE" alt="" width="440" height="220" /><br /></p><ul><li><a href="http://douweosinga.com/projects/visited?region=usa">Create your own visited map of The United States</a></li></ul>
]]>
</content:encoded>
</item>
<item>
<title>Baking Tortillas</title>
<link>http://quinn.higurashi.dyndns.org/?post=86</link>
<pubDate>Sat, 12 Jul 2008 17:38:03 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=86</guid>
<description>Oops, it&amp;#39;s been quite awhile since the last post. Well, this story is also about a few weeks ago. Anyway, I finally learned to make tortillas, and I should give a big hug to this guy who inspired me with this awesome blog post. Make Your Own Tortillas! [ 		Rocking in Hakata]...  </description>
<content:encoded>
<![CDATA[
<p>Oops, it&#39;s been quite awhile since the last post. Well, this story is also about a few weeks ago. Anyway, I finally learned to make tortillas, and I should give a big hug to this guy who inspired me with this awesome blog post. </p><ul><li><a href="http://www.rockinginhakata.com/2008/06/02/406/">Make Your Own Tortillas! [ 		Rocking in Hakata]</a></li></ul><p>Thanks Deas! This is the result. I enjoyed them so much.</p><p><a href="http://www.zooomr.com/photos/quinnhigurashi/5222575/" title="Photo Sharing"><img src="http://static.zooomr.com/images/5222575_aa0ecb7168_m.jpg" alt="Burrito" width="240" height="161" /></a></p><p>Like Deas was saying in the video about his current situation, I also live in rural Japan myself. I really needed this kind of help. While I was living in the Southern California as a poor foreign student, I survived by eating lots of cheep Mexican food, and YES, 2-dollar burritos were my favorites! Now, I can make my own. It just feels great.&nbsp; </p>
]]>
</content:encoded>
</item>
<item>
<title>Multiple Rails on Subdirectories</title>
<link>http://quinn.higurashi.dyndns.org/?post=85</link>
<pubDate>Fri, 11 Apr 2008 10:13:24 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=85</guid>
<description>It has been way too long since the last time but I still wanted to play some with RoR. Setting up multiple rails on different directories under one domain was not easy. This is how I came up as the solution to it. I am using Apache virtualhost, mod_rewrite, and mod_proxy.   Ok, we are trying to set up rails for http://example.com/rails1 with http:/...  </description>
<content:encoded>
<![CDATA[
<p>It has been way too long since the last time but I still wanted to play some with RoR. Setting up multiple rails on different directories under one domain was not easy. This is how I came up as the solution to it. I am using Apache virtualhost, mod_rewrite, and mod_proxy. </p>  <p>Ok, we are trying to set up rails for http://example.com/rails1 with http://example.com/ running under Apache. </p><p>&nbsp;</p><p>Let&#39;s say web directory of example.com is /example.com/ and set up rails at /example.com/rails1.</p>  <pre class="code">$ mkdir -p /example.com/rails1<br />$ rails /example.com/rails1<br />$ cd /example.com/rails1<br />$ mongrel_rails -p 3000 start -d </pre> <p> Gotta create .htaccess file at /example.com/, not at /example.com/rails1/.  </p>  <pre class="code">RewriteEngine   on<br />RewriteBase /<br />RewriteCond %{REQUEST_FILENAME} !-f<br />RewriteRule rails1(.*) http://localhost:3000/rails1$1 [P]</pre>  <p> And finally modify config/routes.rb.</p>  <pre class="code">map.connect &#39;rails1/:controller/:action/:id&#39;</pre>  <p>Well, this set up fails to show public/index.html. so it&#39;s probably not perfect. However, pointing controller after making one WORKS fine. And this actually generates links start with /rails1/. If this is working, another one must work on another directory too. Yay! </p>
]]>
</content:encoded>
</item>
<item>
<title>Very Strange..</title>
<link>http://quinn.higurashi.dyndns.org/?post=84</link>
<pubDate>Sat, 08 Mar 2008 07:52:43 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=84</guid>
<description>I just got somebody accept my friend request which I didn&amp;#39;t. Very Strange.. Is there such a hole in Facebook?&amp;nbsp;...  </description>
<content:encoded>
<![CDATA[
I just got somebody accept my friend request which I didn&#39;t. Very Strange.. Is there such a hole in Facebook?&nbsp;
]]>
</content:encoded>
</item>
<item>
<title>Pownce Widget</title>
<link>http://quinn.higurashi.dyndns.org/?post=83</link>
<pubDate>Sat, 16 Feb 2008 19:38:16 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=83</guid>
<description>I played around jQuery and Pownce API for the first time yesterday. I made a little widget on my blog to show what&amp;#39;s up with me. (A mini blog inside a blog?) Dates are somehow not correct, but this is the closest I could get for the moment. Silly me. And, yes, I should get work on CSS for this blog soon. I suppose, placing the mini-blog at the bottom of ...  </description>
<content:encoded>
<![CDATA[
I played around jQuery and Pownce API for the first time yesterday. I made a little widget on my blog to show what&#39;s up with me. (A mini blog inside a blog?) Dates are somehow not correct, but this is the closest I could get for the moment. Silly me. And, yes, I should get work on CSS for this blog soon. I suppose, placing the mini-blog at the bottom of a page is not ideal at all. This widget is run by JavaScript so it does not bother much for the structure of a HTML document. I wonder if I should do the same for my Zooomr widget, which is generated by PHP and parsed into a HTML document. By the way, <a href="http://blog.zooomr.com/2008/02/05/updates-updates-updates/" title="Updates, Updates, Updates!">Zooomr seems to be down right now</a>. I know it hasn&#39;t be quite smooth on their recent updates but hopefully they are hanging in there for awhile. Anyways, does anybody use <a href="http://pownce.com" title="Pownce">Pownce</a>?
]]>
</content:encoded>
</item>
<item>
<title>Real Fun Begins</title>
<link>http://quinn.higurashi.dyndns.org/?post=82</link>
<pubDate>Thu, 07 Feb 2008 09:02:41 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=82</guid>
<description> I wasn&amp;#39;t good at convincing what REAL FUN of photography is in the last post, I think.. Hopefully, this photo can tell some more about it ...  </description>
<content:encoded>
<![CDATA[
<p><a href="http://www.zooomr.com/photos/quinnhigurashi/4219284/" title="Photo Sharing"><img class="photo-l" src="http://static.zooomr.com/images/4219284_94292fe29c_m.jpg" alt="Anthony" width="240" height="161" /></a> I wasn&#39;t good at convincing what REAL FUN of photography is in the last post, I think.. Hopefully, this photo can tell some more about it by itself.  </p>   <p style="clear: left"><a href="http://www.zooomr.com/photos/quinnhigurashi/4219276/" title="Photo Sharing"><img class="photo-l" src="http://static.zooomr.com/images/4219276_fedae201fe_m.jpg" alt="Aso" width="240" height="161" /></a> Or, this one? I guess it just has begun. Let&#39;s see if something can come out of this adventure. </p><p style="clear: left">And, I made a few lines of code to show my photos on my blog from Zooomr site. They are currently shown at the bottom of every page. Well, this it for now. I just can&#39;t wait for the next Bashculture show on this Saturday. I hope I can make some great photos. Cheers! </p>
]]>
</content:encoded>
</item>
<item>
<title>Real Fun</title>
<link>http://quinn.higurashi.dyndns.org/?post=81</link>
<pubDate>Mon, 04 Feb 2008 12:43:23 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=81</guid>
<description> I am really looking forward to see Zooom...  </description>
<content:encoded>
<![CDATA[
<p><a href="http://www.zooomr.com/photos/quinnhigurashi/4210859/" title="Photo Sharing"><img class="photo-l" src="http://static.zooomr.com/images/4210859_b7c5b46b6e_m.jpg" alt="DSCN6165" width="240" height="180" /></a> I am really looking forward to see <a href="http://trac.zooomr.com/trac/wiki/Zooomr2008Release" title="Zooomr 2008 Release" class="out">Zooomr 2008 Release</a> since I found out they are in the middle of doing so. I was unable to upload my photo to the website for over a week, but it looks like "Photo Uploader" is finally back. (Yay!) However, nothing new is in there yet. Still, it&#39;s good to see the uploader to be back so I can blog with some photo now. :)  </p><p>About two weeks ago, I bought two Nikon manual lenses and a Nikon lens to EOS body adapter. Yes, I am using these Nikon lenses with my Canon EOS 10D, sounds funny? Believe or not, they are both so great and together! I also got a split focusing screen made by a third party to replace the original focusing screen. The focusing screen is what I really needed. It helps me a lot with my weak eye vision. (I suffer my eyes being a GEEK as you can easily imagine.) If you still don&#39;t know what I am talking about, this is like having a old school camera with a digital back (image sensor). Why would I want to do that?  </p><p>Because, this is definitely more REAL FUN of photography I am having.  </p><p>So, what&#39;s up with those Nikon manual lenses? Not only the Nikon lenses but many manual lenses have wider range to turn to adjust the focus. This is a really important part since autofocus lenses have shorter range to adjust the focus even if they usually allow to do it by hand. Manual lenses are actually made to adjust by hands, not autofocus lenses (Duh?) Munual focusing is actually more fun than anybody can imagine who never tried before. It is probably the largest part of making a photograph so it is about making the photograph on my own. Yes, autofocusing may work great most of the time, but not always, at least to me. Whenever I want to adjust the focus, autofocus lenses don&#39;t work for me. If there is a little gap in between what I want to do and what the camera does, I wouldn&#39;t have any fun and likely to get frustrated. It&#39;s always nice to get rid of the gap when I have a choice. This is about making a craft with tools of my choice.  </p><p>Secondly, the distance between the lens mount and the image sensor in EOS cameras is shorter than Nikon cameras, but it&#39;s the other way around for EOS cameras and Canon&#39;s manual focus lenses. If you want to attach a Canon manual focus lens on a EOS camera, you need a lens mount adapter with some lens in it to fix the distance of the camera and the lens. As I found in some reviews, it won&#39;t give any good results. On the other hand, Nikon lenses on EOS cameras fits with a little spacer in between, no need for additional lenses, and it all sounds good to me.  </p><p><a href="http://www.zooomr.com/photos/quinnhigurashi/4218332/" title="Photo Sharing"><img class="photo-l" src="http://static.zooomr.com/images/4218332_26dc281637_m.jpg" alt="AI-S 28mm/F2.8" width="240" height="180" /></a>Now, it&#39;s time for me to learn new stuff, the Nikon lenses. I&#39;ve always been a Canon boy for a whole life. Nikon systems seems too complicated for me and also I was never able to afford to switch, and/or was happy with my Canon cameras and lenses back then. I had almost no idea which one would go fine with the adapter and the camera. Many on the web said most of the AI and AI-S lenses would be fine, and some adds to Non-AI lenses as well. This time, I got a Non-AI 50mm/F1.4 and a AI-S 28mm/F2.8. AI-S 28mm/F2.8 fits fine except one thing that aperture ring stops right before the wide open of the lens, F2.8. It happens because of the AI-ed aperture ring has some empty part to deliver the information of the current aperture of the lens to the camera, and the end of the empty part hits the pins on the camera to lock the lens which is coming out through the lens adapter. (Ouch!) At this moment, I just decide to ignore the problem. I think this would be more serious if the lens aperture is wider than F2.8. I don&#39;t know what I should do for the solution. Maybe I have to make a spacer to fill the empty space, making AI back to Non-AI. Otherwise, Nikon manual lenses are highly credited as great optics while they are usually affordable. Adding that, the lenses made around this era (pre-1985?) are usually more rugged than modern lenses. And finally but least, my choice of optics always goes fixed focal length lenses over zoom lenses for my belief of that simpler optics (fixed) must be better. </p><p><a href="http://www.zooomr.com/photos/quinnhigurashi/4210878/" title="Photo Sharing"><img class="photo-l" src="http://static.zooomr.com/images/4210878_0f20155345_m.jpg" alt="_DSCN6182" width="240" height="180" /></a>Now, I have to tell you more about a serious problem I had to deal with. I felt a stiff part when I was taking off the Non-AI 50mm/F1.4 lens off the camera. Then, I found that there is a cut inside of the camera! It looked already a done deal. The cut won&#39;t go anywhere. However, I was afraid of that,  if I keep using the lens, the cut may cause more dust to the image sensor, or worse, damage the shutter. Then, I found out the back end part of the lens is quite easily be taken apart. I took off the mount part of the lens and removed the part cut the camera with a knife sharpener. For the record, my adapter may be too thin since the focus of the lenses at infinity is way too near than where it supposed to be. If you are doing the same, just be cautious.  </p><p>Since I&#39;ve got great choices of fantastic optics (and with manual focusing ability) and an aid (the split focusing screen), I am so sure I am going to have lots more fun with photography. Saying that, I am going for a trip with a band, "<a href="http://bashculture.com" title="Bashculture" class="out">Bashculture</a>" on this weekend as their photographer. I&#39;m sure more of the outcomes are coming to <a href="http://www.zooomr.com/photos/quinnhigurashi/" title="quinnhigurashi at Zooomr" class="out">my Zooomr site</a>. Cheers!   </p>
]]>
</content:encoded>
</item>
<item>
<title>Switch</title>
<link>http://quinn.higurashi.dyndns.org/?post=80</link>
<pubDate>Mon, 21 Jan 2008 22:08:08 +0900</pubDate>
<guid isPermaLink="false">http://quinn.higurashi.dyndns.org/?post=80</guid>
<description>I finally changed my blog system. I made this blog software awhile ago but never really finished as you can see right now. It has more functionalities than before though it looks really plain old school web page for now. I just had to push myself doing this way so I can force myself to make this more complete within a few days or perhaps within a few weeks....  </description>
<content:encoded>
<![CDATA[
I finally changed my blog system. I made this blog software awhile ago but never really finished as you can see right now. It has more functionalities than before though it looks really plain old school web page for now. I just had to push myself doing this way so I can force myself to make this more complete within a few days or perhaps within a few weeks.
]]>
</content:encoded>
</item>
</channel>
</rss>