<?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>Goksel Eryigit - Front-end Developer</title>
	<atom:link href="http://geryit.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://geryit.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 17 Aug 2010 12:52:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Building Custom WordPress Theme</title>
		<link>http://geryit.com/blog/2010/08/building-custom-wordpress-theme/</link>
		<comments>http://geryit.com/blog/2010/08/building-custom-wordpress-theme/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 10:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=512</guid>
		<description><![CDATA[You want to build your own WordPress theme but in a very simple way, then you dont need to edit the default wordpress theme, just create a new one with just 5 files. That is why I will share a simple version of the theme I used on skalenius.com index.php(main stuff) &#60;!DOCTYPE html&#62; &#60;html lang=&#34;en&#34;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/08/wp-fb.png" alt="" title="wp-fb" width="120" height="70" class="alignleft size-full wp-image-516" />You want to build your own WordPress theme but in a very simple way, then you dont need to edit the default wordpress theme, just create a new one with just 5 files. That is why I will share a simple version of the theme I used on <a href="http://www.skalenius.com">skalenius.com</a></p>
<p><strong>index.php</strong>(main stuff)</p>
<pre class="brush: php;">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
	&lt;!-- BEGIN HEAD--&gt;
        &lt;!-- You probably will not change anything here.  May be you call more css or js files --&gt;
        &lt;head&gt;
            &lt;meta http-equiv=&quot;content-type&quot; content=&quot;&lt;?php bloginfo('html_type'); ?&gt;; charset=&lt;?php bloginfo('charset'); ?&gt;&quot; /&gt;
            &lt;title&gt;&lt;?php wp_title('&amp;laquo;', true, 'right'); ?&gt; &lt;?php bloginfo('name'); ?&gt;&lt;/title&gt;
            &lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/css/reset.css&quot; /&gt;
            &lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/css/custom.css&quot; /&gt;
            &lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/css/style.css&quot; /&gt;
            &lt;?php wp_head();?&gt;
        &lt;/head&gt;
    &lt;!-- END HEAD--&gt;

    &lt;body&gt;
        &lt;div class=&quot;blog container_16&quot;&gt;

        	&lt;!-- BEGIN HEADER--&gt;
                &lt;header class=&quot;grid_16&quot;&gt;
                    &lt;h1 class=&quot;grid_12 alpha&quot;&gt;&lt;a href=&quot;&lt;?php bloginfo('url');?&gt;&quot; class=&quot;logo ti&quot;&gt;Sofie Kalenius&lt;/a&gt;&lt;/h1&gt;
                    &lt;aside class=&quot;grid_4 omega&quot;&gt;
                        &lt;form id=&quot;searchForm&quot; method=&quot;get&quot; action=&quot;&lt;?php bloginfo('url');?&gt;&quot;&gt;&lt;input type=&quot;text&quot; name=&quot;s&quot; value=&quot;Search...&quot; /&gt;&lt;input type=&quot;submit&quot; value=&quot;Submit&quot;/&gt;&lt;/form&gt;
                    &lt;/aside&gt;
                    &lt;ul&gt;
                        &lt;?php  wp_list_categories('title_li='); ?&gt;
                    &lt;/ul&gt;
                &lt;/header&gt;
            &lt;!-- BEGIN HEADER--&gt;

            &lt;!-- BEGIN MAIN CONTENT--&gt;
                &lt;div class=&quot;main grid_16&quot;&gt;
                    &lt;section class=&quot;posts grid_13 alpha&quot;&gt;

                        &lt;?php if (have_posts()) : ?&gt;
                            &lt;?php while (have_posts()) : the_post();?&gt;
                                &lt;div class=&quot;post&quot;&gt;
                                    &lt;div class=&quot;date grid_2 alpha&quot;&gt;&lt;section&gt;&lt;p class=&quot;top&quot;&gt;&lt;?php the_time('d') ?&gt;&lt;/p&gt;&lt;p class=&quot;bottom&quot;&gt;&lt;?php the_time('M') ?&gt; &lt;?php the_time('y') ?&gt;&lt;/p&gt;&lt;/section&gt;&lt;/div&gt;
                                    &lt;div class=&quot;content grid_11 omega spacing80&quot;&gt;
                                        &lt;a href=&quot;&lt;? the_permalink() ?&gt;#comments&quot; class=&quot;comment_no&quot;&gt;&lt;?php comments_number('0','1','%'); ?&gt;&lt;/a&gt;
                                        &lt;h2&gt;&lt;a href=&quot;&lt;? the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; class=&quot;title&quot;&gt;&lt;? the_title();?&gt;&lt;/a&gt;&lt;/h2&gt;
                                        &lt;? if(has_tag()){?&gt;&lt;div class=&quot;tags&quot;&gt;&lt;?php the_tags('Tags: ', ', '); ?&gt;&lt;/div&gt;&lt;? }?&gt;
                                        &lt;article&gt;&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;&lt;/article&gt;
                                    &lt;/div&gt;

                                &lt;?php comments_template();?&gt;
                                &lt;/div&gt;
                            &lt;?php endwhile; else: ?&gt;
                            &lt;p&gt;Sorry, no posts matched your criteria&lt;/p&gt;
                        &lt;?php endif; ?&gt;

                        &lt;nav class=&quot;grid_11 prefix_2 alpha omega&quot;&gt;&lt;section&gt;&lt;?php next_posts_link('&amp;laquo; Older Posts') ?&gt;&amp;nbsp;&lt;/section&gt;&lt;section&gt;&amp;nbsp;&lt;?php previous_posts_link('Newer Posts &amp;raquo;') ?&gt;&lt;/section&gt;&lt;/nav&gt;
                    &lt;/section&gt;
                    &lt;aside class=&quot;sidebar grid_3 omega&quot;&gt;

                        &lt;ul&gt;
                            &lt;?php
                                if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?&gt;
                            &lt;?php endif; ?&gt;
                        &lt;/ul&gt;

                    &lt;/aside&gt;
                &lt;/div&gt;
            &lt;!-- END MAIN CONTENT--&gt;

        &lt;/div&gt;

        &lt;!-- BEGIN FOOTER--&gt;
            &lt;footer class=&quot;footer&quot;&gt;
                &lt;div class=&quot;container_16&quot;&gt;
                    &lt;ul&gt;&lt;?php  wp_list_categories('title_li='); ?&gt;&lt;/ul&gt;
                &lt;/div&gt;

                &lt;?php wp_footer(); ?&gt;
            &lt;/footer&gt;
        &lt;!-- END FOOTER--&gt;
    &lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>style.css</strong></p>
<pre class="brush: css;">
body{font-family:Arial, Helvetica, sans-serif;background:#f6f5f5 url(images/body_bg.png) repeat-x center top;font-size:12px;}
input,select,textarea{font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#8f8e90;}
input{float:left;padding:5px;width:50%;font-size:18px;color:#666;}
input[type=submit]{background:#1e7972;color:#fff;border:none;width:auto;padding:5px 40px;}
textarea{float:left;padding:5px;width:80%;font-size:18px;color:#666;}
header,footer,nav,section,article,aside,details,div,ul,li,p,a,img,label,form{display:block;position:relative;float:left;}
h1,h2,h3,h4,h5,h6,p,ul,form{padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;font-weight:normal;line-height:normal;float:left;width:100%;clear:both;}
h3{font-size:22px;color:#424242;font-weight:bold;}
ul{list-style:none;}
a{text-decoration:none;color:#424242;}
a:hover{color:#999}

.blog{float:none;padding-bottom:30px;overflow:hidden;visibility:hidden;}
.blog&gt;header{width:100%;padding-top:27px;}
.blog&gt;header&gt;h1&gt;a{width:479px;height:65px;background:url(images/logo.png);margin-top:33px;}
.blog&gt;header&gt;h1&gt;a:hover{background-position:bottom;}
.blog&gt;header&gt;aside{height:94px;background:url(images/search_and_networks_bg.png) right top;}
.blog&gt;header&gt;aside&gt;form{width:100%;}
.blog&gt;header&gt;aside&gt;form&gt;input[type=text]{width:162px;height:19px;border:2px solid #e3e2e2;background:#e9e9e9;padding:5px;padding-right:45px;}
.blog&gt;header&gt;aside&gt;form&gt;input[type=submit]{position:absolute;width:40px;height:33px;background:url(images/search_submit.png);top:0px;left:174px;cursor:pointer;background-color:none;border:0;padding:0;}
.blog&gt;header&gt;aside&gt;form&gt;input[type=submit]:hover{background-position:bottom;}
.blog&gt;header&gt;aside&gt;div{width:100%;margin-top:24px;}
.blog&gt;header&gt;aside&gt;div&gt;a{width:38px;height:38px;background:url(images/networks.png);margin-left:7px;}
.blog&gt;header&gt;aside&gt;div&gt;a:first-child{margin-left:0;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw1{background-position:0px top;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw1:hover{background-position:0px bottom;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw2{background-position:-47px top;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw2:hover{background-position:-47px bottom;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw3{background-position:-93px top;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw3:hover{background-position:-93px bottom;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw4{background-position:-138px top;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw4:hover{background-position:-138px bottom;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw5{background-position:-182px top;}
.blog&gt;header&gt;aside&gt;div&gt;a.nw5:hover{background-position:-182px bottom;}
.blog&gt;header&gt;ul{width:100%;margin-top:50px;padding:10px 0;border-top:1px solid #e9e8e8;border-bottom:1px solid #e9e8e8;}
.blog&gt;header&gt;ul&gt;li{}
.blog&gt;header&gt;ul&gt;li&gt;a{height:25px;line-height:25px;font-size:15px;color:#424242;padding:0 10px;}
.blog&gt;header&gt;ul&gt;li&gt;a.on{background:#424242;color:#f6f5f5;font-weight:bold;}
.blog&gt;header&gt;ul&gt;li&gt;a:hover{background:#424242;color:#f6f5f5;}
.blog&gt;.main{width:100%;padding-top:30px;}
.blog&gt;.main&gt;.posts{}
.blog&gt;.main&gt;.posts&gt;.post{width:100%;margin-bottom:30px;color:#424242;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.date{}
.blog&gt;.main&gt;.posts&gt;.post a{display:inline;float:none;}
.blog&gt;.main&gt;.posts&gt;.post img{display:inline;}
.blog&gt;.main&gt;.posts&gt;.post .wp-smiley{border:0!important;margin:0!important;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.date&gt;section{width:80px;height:81px;background:url(images/bgitem1.png);color:#f6f5f5;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.date&gt;section&gt;.top{margin-top:5px;text-align:center;font-size:42px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.date&gt;section&gt;.bottom{margin-top:0px;text-align:center;font-size:13px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content{background:#eaebeb url(images/bgitem2.png) no-repeat right top;padding:20px 40px 40px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;a.comment_no{width:40px;height:70px;float:right;margin:-18px -38px 0 0;font-size:15px;color:#f6f5f5;text-align:center;line-height:55px;padding-left:25px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;a.comment_no:hover{color:#000;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;h2{margin-top:-40px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;h2&gt;a.title{font-size:28px;color:#424242;font-weight:bold;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;h2&gt;a.title:hover{color:#999;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;.tags{width:100%;color:#424242;font-size:12px;margin-top:3px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;.tags&gt;span{font-weight:bold;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;.tags&gt;a{display:inline;float:none;color:#424242;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;.tags&gt;a:hover{color:#999;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;article{width:100%;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;article&gt;p{margin-top:20px;width:auto;float:none;clear:none;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;article&gt;p&gt;a{display:inline;width:auto;float:none;clear:none;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.content&gt;article&gt;p img{border:5px solid #999;margin:0 15px 10px 0;padding:0;}
.blog&gt;.main&gt;.posts&gt;nav{}
.blog&gt;.main&gt;.posts&gt;nav&gt;section{width:50%;}
.blog&gt;.main&gt;.posts&gt;nav&gt;section&gt;a{font-size:22px;color:#424242;text-decoration:underline;}
.blog&gt;.main&gt;.posts&gt;nav&gt;section&gt;a:hover{color:#999;}
.blog&gt;.main&gt;.sidebar{}
.blog&gt;.main&gt;.sidebar&gt;ul{width:100%;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li{width:100%;margin-bottom:30px}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li&gt;h3{font-size:20px;color:#424242;background:url(images/bar1.png) repeat-x bottom;padding-bottom:5px;margin-bottom:5px;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li&gt;ul{width:100%;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li&gt;ul&gt;li{width:100%;padding:5px 0;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li&gt;ul&gt;li&gt;a{font-size:11px;color:#424242;background:url(images/bull1.png) no-repeat left center;text-indent:7px;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li&gt;ul&gt;li&gt;a:hover{color:#999;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;li&gt;ul&gt;li&gt;p{font-size:10px;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;.featured&gt;ul&gt;li{width:100%;border-bottom:1px solid #eee;padding:10px 0;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;.featured&gt;ul&gt;li&gt;.right&gt;h4&gt;a{font-size:13px;font-weight:bold;background:none;text-indent:0;}
.blog&gt;.main&gt;.sidebar&gt;ul&gt;.featured&gt;ul&gt;li&gt;.right&gt;h4&gt;a:hover{color:#999;}
.blog&gt;.main&gt;.sidebar img{padding:2px;}

.blog&gt;.main&gt;.posts&gt;.post&gt;.comments{margin-top:30px;background:#eaebeb;padding:20px 40px 40px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;.navigation{width:100%;margin-top:10px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul{width:100%;margin-top:10px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul&gt;li{width:100%;margin-top:10px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul&gt;li a{float:none;display:inline;clear:none;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul&gt;li&gt;div{width:100%;color:#666;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul&gt;li&gt;div&gt;img{padding:0 5px 5px 0;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul&gt;li&gt;div&gt;.date{font-size:9px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;ul&gt;li&gt;div&gt;.comment_text{font-size:11px;color:#000;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;#respond{width:100%;margin-top:20px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;#respond #commentform p{margin-top:10px;}
.blog&gt;.main&gt;.posts&gt;.post&gt;.comments&gt;#respond #commentform label{margin:10px 0 0 10px;}
.footer{width:100%;height:100px;background:#1e7972 url(images/footer_bg.png) repeat-x;}
.footer&gt;div{float:none;margin-top:30px;color:#133c39;}
.footer&gt;div&gt;a{float:none;display:inline;color:#133c39;font-size:12px;text-decoration:underline;}
.footer&gt;div&gt;a:hover{color:#000;}
.footer&gt;div&gt;.copyright{margin-top:5px;color:#fff;}
.footer&gt;div&gt;.copyright a{float:none;display:inline;color:#CFCFCF;}
.footer&gt;div&gt;.copyright a:hover{color:#333;}

.ti{text-indent:-99999px;}
.tar{text-align:right;}
.fr{float:right;}
.vv{visibility:visible!important;}
p img {padding: 0;max-width: 100%;float:none;}
img.centered {display: block;margin-left: auto;margin-right: auto;}
img.alignright {padding: 4px;margin: 0 0 2px 7px;display: inline;}
img.alignleft {padding: 4px;margin: 0 7px 2px 0;display: inline;}
.alignright {float: right;}
.alignleft {float: left;}
.wpcf7{width:100%;padding-top:30px!important;}
.wpcf7 p{padding-top:10px!important;}
</pre>
<p><strong>comments.php</strong>(customize comment form)</p>
<pre class="brush: php;">
&lt;?php

// Do not delete these lines
	if (!empty($_SERVER['SCRIPT_FILENAME']) &amp;&amp; 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
		die ('Please do not load this page directly. Thanks!');

	if ( post_password_required() ) { ?&gt;
		&lt;p class=&quot;nocomments&quot;&gt;This post is password protected. Enter the password to view comments.&lt;/p&gt;
	&lt;?php
		return;
	}
?&gt;

&lt;div class=&quot;comments push_2 grid_11 alpha spacing80&quot;&gt;
&lt;!-- You can start editing here. --&gt;

&lt;?php if ( have_comments()) : ?&gt;
	&lt;h3 id=&quot;comments&quot;&gt;&lt;?php comments_number('No Responses', 'One Response', '% Responses' );?&gt; to &amp;#8220;&lt;?php the_title(); ?&gt;&amp;#8221;&lt;/h3&gt;

	&lt;div class=&quot;navigation&quot;&gt;
		&lt;div class=&quot;alignleft&quot;&gt;&lt;?php previous_comments_link() ?&gt;&lt;/div&gt;
		&lt;div class=&quot;alignright&quot;&gt;&lt;?php next_comments_link() ?&gt;&lt;/div&gt;
	&lt;/div&gt;

	&lt;ul&gt;
		&lt;?php wp_list_comments('callback=custom_comment_template'); ?&gt;
	&lt;/ul&gt;

 &lt;?php else : // this is displayed if there are no comments so far ?&gt;

	&lt;?php if ( comments_open() ) : ?&gt;
		&lt;!-- If comments are open, but there are no comments. --&gt;

	 &lt;?php else : // comments are closed ?&gt;
		&lt;!-- If comments are closed. --&gt;
		&lt;p class=&quot;nocomments&quot;&gt;Comments are closed.&lt;/p&gt;

	&lt;?php endif; ?&gt;
&lt;?php endif; ?&gt;

&lt;?php if ( comments_open() ) : ?&gt;

&lt;div id=&quot;respond&quot;&gt;

&lt;h3&gt;&lt;?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?&gt;&lt;/h3&gt;

&lt;div class=&quot;cancel-comment-reply&quot;&gt;
	&lt;small&gt;&lt;?php cancel_comment_reply_link(); ?&gt;&lt;/small&gt;
&lt;/div&gt;

&lt;?php if ( get_option('comment_registration') &amp;&amp; !is_user_logged_in() ) : ?&gt;
&lt;p&gt;You must be &lt;a href=&quot;&lt;?php echo wp_login_url( get_permalink() ); ?&gt;&quot;&gt;logged in&lt;/a&gt; to post a comment.&lt;/p&gt;
&lt;?php else : ?&gt;

&lt;form action=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-comments-post.php&quot; method=&quot;post&quot; id=&quot;commentform&quot;&gt;

&lt;?php if ( is_user_logged_in() ) : ?&gt;

&lt;p&gt;Logged in as &lt;a href=&quot;&lt;?php echo get_option('siteurl'); ?&gt;/wp-admin/profile.php&quot;&gt;&lt;?php echo $user_identity; ?&gt;&lt;/a&gt;. &lt;a href=&quot;&lt;?php echo wp_logout_url(get_permalink()); ?&gt;&quot; title=&quot;Log out of this account&quot;&gt;Log out &amp;raquo;&lt;/a&gt;&lt;/p&gt;

&lt;?php else : ?&gt;

&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;author&quot; id=&quot;author&quot; value=&quot;&lt;?php echo esc_attr($comment_author); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;1&quot; &lt;?php if ($req) echo &quot;aria-required='true'&quot;; ?&gt; /&gt;
&lt;label for=&quot;author&quot;&gt;&lt;small&gt;Name &lt;?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;

&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;&lt;?php echo esc_attr($comment_author_email); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;2&quot; &lt;?php if ($req) echo &quot;aria-required='true'&quot;; ?&gt; /&gt;
&lt;label for=&quot;email&quot;&gt;&lt;small&gt;Mail (will not be published) &lt;?php if ($req) echo &quot;(required)&quot;; ?&gt;&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;

&lt;p&gt;&lt;input type=&quot;text&quot; name=&quot;url&quot; id=&quot;url&quot; value=&quot;&lt;?php echo esc_attr($comment_author_url); ?&gt;&quot; size=&quot;22&quot; tabindex=&quot;3&quot; /&gt;
&lt;label for=&quot;url&quot;&gt;&lt;small&gt;Website&lt;/small&gt;&lt;/label&gt;&lt;/p&gt;

&lt;?php endif; ?&gt;

&lt;!--&lt;p&gt;&lt;small&gt;&lt;strong&gt;XHTML:&lt;/strong&gt; You can use these tags: &lt;code&gt;&lt;?php echo allowed_tags(); ?&gt;&lt;/code&gt;&lt;/small&gt;&lt;/p&gt;--&gt;

&lt;p&gt;&lt;textarea name=&quot;comment&quot; id=&quot;comment&quot; cols=&quot;58&quot; rows=&quot;10&quot; tabindex=&quot;4&quot;&gt;&lt;/textarea&gt;&lt;/p&gt;

&lt;p&gt;&lt;input name=&quot;submit&quot; type=&quot;submit&quot; id=&quot;submit&quot; tabindex=&quot;5&quot; value=&quot;Submit Comment&quot; /&gt;
&lt;?php comment_id_fields(); ?&gt;
&lt;/p&gt;
&lt;?php do_action('comment_form', $post-&gt;ID); ?&gt;

&lt;/form&gt;

&lt;?php endif; // If registration required and not logged in ?&gt;
&lt;/div&gt;
&lt;?php endif; // if you delete this the sky will fall on your head ?&gt;
&lt;/div&gt;
</pre>
<p><strong>functions.php</strong>(customize comments view)</p>
<pre class="brush: php;">
&lt;?
if(function_exists('register_sidebar'))
register_sidebar(array(
'before_widget' =&gt; '&lt;li&gt;',
'after_widget' =&gt; '&lt;/li&gt;',
'before_title' =&gt; '&lt;h3&gt;',
'after_title' =&gt; '&lt;/h3&gt;',
));

function custom_comment_template($comment, $args, $depth) {
	$GLOBALS['comment'] = $comment; ?&gt;
	&lt;li id=&quot;comment-&lt;?php comment_ID(); ?&gt;&quot;&gt;
        &lt;div&gt;&lt;?php echo get_avatar($comment,$size='48'); ?&gt;&lt;?php printf(__('&lt;cite&gt;%s&lt;/cite&gt; &lt;span&gt;says:&lt;/span&gt;'), get_comment_author_link()) ?&gt;&lt;br /&gt;&lt;span class=&quot;date&quot;&gt;&lt;?php printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time()) ?&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;comment_text&quot;&gt;&lt;?=get_comment_text();?&gt;&lt;/span&gt;&lt;/div&gt;
        &lt;?php
}

require_once (TEMPLATEPATH . '/widgets.php');
?&gt;
</pre>
<p>Click <a href="/lib/skalenius.zip">here</a> for the entire theme files</p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/08/building-custom-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Html5 Video Player with HD option</title>
		<link>http://geryit.com/blog/2010/07/custom-html5-video-player-with-hd-option/</link>
		<comments>http://geryit.com/blog/2010/07/custom-html5-video-player-with-hd-option/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 22:09:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Html5]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=499</guid>
		<description><![CDATA[I have been looking for an Html5 Player for mindwork3d project but could not find one with HD option. Finally I decided to add that by myself to my player. First thing I did was to find a cool player skin. I found a vimeo skin on http://videojs.com/skins.html and downloaded zip version . Then added [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/07/html5_video.png" alt="" title="html5_video" width="120" height="70" class="alignleft size-full wp-image-506" />I have been looking for an Html5 Player for <a href="http://www.mindwork3d.com" target="_blank">mindwork3d</a> project but could not find one with HD option. Finally I decided to add that by myself to my player.</p>
<p>First thing I did was to find a cool player skin. I found a vimeo skin on <a href="http://videojs.com/skins.html" target="_blank">http://videojs.com/skins.html</a> and downloaded <a href="http://videojs.com/"  target="_blank">zip</a> version . Then added a custom css file for HD button on the player. Finally added javascript functions for HD property.</p>
<p>index.php</p>
<pre class="brush: xml;">
&lt;!DOCTYPE HTML&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/video-js.css&quot;/&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/vim.css&quot;/&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/hd.css&quot;/&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/video.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/hd.js&quot;&gt;&lt;/script&gt;

&lt;style type=&quot;text/css&quot;&gt;
&lt;/style&gt;
&lt;title&gt;video&lt;/title&gt;
&lt;/head&gt;

&lt;body onLoad=&quot;ready();&quot;&gt;

&lt;div id=&quot;video_holder&quot;&gt;Loading Video...&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>hd.css</p>
<pre class="brush: css;">
/*hd.css*/
.video-js-box{}
.video-js-box ul{float:none;}
.vjs-controls{padding-left:50px!important;padding-right:175px!important;}
.vjs-controls&gt;li{font-size:10px!important;}
.vjs-controls&gt;li&gt;span{font-family:Georgia, &quot;Times New Roman&quot;, Times, serif!important;}
.vjs-play-control{width:32px!important;height:32px!important;border-radius:0!important;-webkit-border-radius:0!important;-moz-border-radius:0!important;bottom:10px!important;}
.vjs-play-control:hover{background:#0066ff!important;}
.vjs-play span{border-top-width:7px!important;border-left-width:7px!important;border-bottom-width:7px!important;margin:9px 0 0 13px!important;}
.vjs-pause span{width:2px!important;height:14px!important;margin:9px 0 0 10px!important;}
.vjs-progress-control,.vjs-progress-holder,.vjs-play-progress,.vjs-load-progress,.vjs-fullscreen-control{border-radius:0!important;-webkit-border-radius:0!important;-moz-border-radius:0!important;}
.vjs-progress-holder{margin-right:10px!important;}
.vjs-progress-control .vjs-play-progress{background:#0066ff!important;}
.vjs-time-control{width:70px!important;right:105px!important;}
.vjs-volume-control{right:70px!important;width:35px!important;}
.vjs-volume-control ul{margin-left:0!important;}
.vjs-volume-control ul .vjs-volume-level-on{border-color:#0066ff!important;}
.vjs-fullscreen-control{width:20px!important;right:40px!important;padding:0 2px 0 8px!important;}
.vim-css .vjs-fullscreen-control:hover ul li:nth-child(3), .vim-css .vjs-fullscreen-control:hover ul li:nth-child(4), .vim-css.vjs-fullscreen .vjs-fullscreen-control:hover ul li:nth-child(1), .vim-css.vjs-fullscreen .vjs-fullscreen-control:hover ul li:nth-child(2){border-bottom-color:#0066ff!important;}
.vim-css .vjs-fullscreen-control:hover ul li:nth-child(1), .vim-css .vjs-fullscreen-control:hover ul li:nth-child(2), .vim-css.vjs-fullscreen .vjs-fullscreen-control:hover ul li:nth-child(3), .vim-css.vjs-fullscreen .vjs-fullscreen-control:hover ul li:nth-child(4){border-top-color:#0066ff!important;}
.vjs-hd-control{width:25px!important;right:10px;line-height:32px;padding-right:5px!important;font-size:11px!important;cursor:pointer!important;}
.vjs-hd-control span{display:block!important;width:20px!important;height:12px!important;float:left;color:#fff;margin-top:0px;font-weight:bold;font-size:14px;}
.vjs-hd-control span:hover{color:#0066ff;}
.vjs-hd-control .hd_on{color:#0066ff;}
</pre>
<p>hd.js</p>
<pre class="brush: jscript;">
//hd.js
function ready(){
	load_showreel(&quot;sd&quot;);
}

function load_showreel(quality){
	$('#video_holder').html(&quot;Loading Video...&quot;);
	$('#video_holder').show();
	$.ajax({
		type: &quot;POST&quot;,
		url: &quot;video.php&quot;,
		data: &quot;quality=&quot;+quality,
		success: function(msg){
			$('#video_holder').html(msg);
			VideoJS.setup();
			$(&quot;.vjs-controls&quot;).append('&lt;li class=&quot;vjs-hd-control&quot; title=&quot;Switch to High Definition&quot;&gt;&lt;span&gt;HD&lt;/span&gt;&lt;/li&gt;');

			var hd = $(&quot;.vjs-hd-control span&quot;);
			if(quality==&quot;sd&quot;){
				hd.removeClass(&quot;hd_on&quot;);hd.attr(&quot;title&quot;,&quot;Switch to Low Definition&quot;);
			}else{
				hd.addClass(&quot;hd_on&quot;);hd.attr(&quot;title&quot;,&quot;Switch to High Definition&quot;);
			}

			$(&quot;.vjs-hd-control&quot;).click(function(){pauseVideo();if(quality==&quot;sd&quot;) load_showreel(&quot;hd&quot;); else load_showreel(&quot;sd&quot;);});
			$(&quot;.vjs-fullscreen-control&quot;).attr(&quot;title&quot;,&quot;Fullscreen/Standart View&quot;);
			playVideo();
		}
	});
}

function playVideo(){
	v = document.getElementsByTagName('video')[0];
	v.play();
}

function pauseVideo(hide){
		v = document.getElementsByTagName('video')[0];
		v.src=&quot;&quot;;
		v.load();
		v.pause();
}
</pre>
<p>Here you will find the sample  <a href="http://www.geryit.com/lib/html5player" target="_blank">here</a> .</p>
<p>Download the zip package <a href="http://www.geryit.com/lib/html5player.zip">here</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/07/custom-html5-video-player-with-hd-option/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Auto-Update SVN on DreamHost</title>
		<link>http://geryit.com/blog/2010/07/auto-update-svn-on-dream-host/</link>
		<comments>http://geryit.com/blog/2010/07/auto-update-svn-on-dream-host/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 19:25:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=472</guid>
		<description><![CDATA[I have been using Media Temple Grid Hosting service for a long while and tried to setup my own svn repo settings there but I didnt go so far on using that. I want my online site to be updated on every commit but I understood that MT doesn&#8217;t let your site to be updated [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/07/svn.png" alt="" title="svn" width="120" height="70" class="alignleft size-full wp-image-473" />I have been using Media Temple Grid Hosting service for a long while and tried to setup my own svn repo settings there but I didnt go so far on using that. I want my online site to be updated on every commit but I understood that MT doesn&#8217;t let your site to be updated instantly. You can use cron jobs service but this service will let your web site to be updated in every 5 mins.</p>
<p>So the solution came up with DreamHost. You pay $10/month (Half of MT) and you will be able to update your site instantly and also you will realize that your site will be loaded faster.</p>
<p>Here are the steps to set your svn repo:</p>
<p>1. Get a DreamHost account.</p>
<p>2. Create a sub-domain for your SVN repo going <a href="https://panel.dreamhost.com/index.cgi?tree=domain.manage&#038;current_step=Index&#038;next_step=ShowAddhttp&#038;domain=">here</a><br />
My settings:<br />
subdomain : svn.geryit.net</p>
<p>3. Create a domain or subdomain for your online web site going <a href="https://panel.dreamhost.com/index.cgi?tree=domain.manage&#038;current_step=Index&#038;next_step=ShowAddhttp&#038;domain=">here</a> again<br />
My settings:<br />
subdomain : mw.geryit.net</p>
<p>4. Create an SVN repo going <a href="https://panel.dreamhost.com/index.cgi?tree=goodies.svn&#038;">here</a><br />
My settings:<br />
Project Name &#038; Project ID :mindwork<br />
Install to: svn.geryit.net/mindwork<br />
Users : You should define one username and password at least</p>
<p>5. Create a cgi-bin folder in the remote directory and set CHMOD to 755 for this folder (On <a href="http://www.cuteftp.com/downloads/">Cuteftp</a>, right click to folder and select properties)<br />
I created here : /home/geryit/mw.geryit.net/cgi-bin/</p>
<p>6. Use an ftp client and ssh to your server (I use cuteftp). If you dont have an ssh account go to <a href="https://panel.dreamhost.com/index.cgi?tab=users&#038;subtab=users&#038;current_step=Index&#038;next_step=Add">here</a> and add a new user (Dont forget to select &#8220;Shell&#8221; as Type of User Account)</p>
<p>7. Create an .htaccess file on desktop (windows will not let you put a &#8220;.&#8221; so just create &#8220;htaccess&#8221; file and rename the file using cuteftp)</p>
<p>8. Put the code below into your .htaccess</p>
<pre class="brush: plain;">AuthName &quot;Dialog prompt&quot;
AuthType Basic
AuthUserFile /home/geryit/mw.geryit.net/cgi-bin/.htpasswd
Require valid-user</pre>
<p>(Note that geryit is my root username and mw.geryit.net should be your online website)</p>
<p>9. Upload it into cgi-bin folder.</p>
<p>10. Ssh by <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">putty</a> and login to your cgi-bin dir (cd /home/geryit/mw.geryit.net/cgi-bin) and create  an htpasswd file there to prevent the access to cgi-bin folder for others (type: htpasswd -bc .htpasswd username password)</p>
<p>11. Create a do_update.cgi file on desktop and add this code into that:</p>
<pre class="brush: plain;">#!/bin/sh
set -f
echo &quot;Content-type: text/plain; charset=iso-8859-1&quot;
echo
svn update /home/geryit/mw.geryit.net</pre>
<p>and set the CHMOD to 755 for this file (on cuteftp, right click to file and select properties) and upload it to cgi-bin folder</p>
<p>12. Create a &#8220;post-commit&#8221; file on desktop and add this into that:</p>
<pre class="brush: plain;">#!/bin/sh
wget --http-user=username --http-passwd=password -qO - http://mw.geryit.net/cgi-bin/do_update.cgi</pre>
<p>(Username and password are the things you set on step 10)<br />
and upload it to /home/geryit/svn/mindwork/hooks</p>
<p>13. Ssh by putty again and checkout your svn (svn checkout http://svn.geryit.net/mindwork /home/geryit/mw.geryit.net)</p>
<p>14. Now you can login to your repo by <a href="http://tortoisesvn.net/downloads">Tortoise Svn</a> or some other svn clients (http://svn.geryit.net/mindwork)</p>
<p>You can visit <a href="http://wiki.dreamhost.com/Subversion">http://wiki.dreamhost.com/Subversion</a> for more.</p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/07/auto-update-svn-on-dream-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Html5 Video Converter for Windows</title>
		<link>http://geryit.com/blog/2010/06/html5-video-converter-for-windows/</link>
		<comments>http://geryit.com/blog/2010/06/html5-video-converter-for-windows/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 02:22:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html5]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=463</guid>
		<description><![CDATA[After spending 2 hours I finally found a working converter for my Html5 website. As you know OGG(Open Video Format &#8211; Theora) or OGV video formats work well with Firefox (pc&#038;mac) but it is hard to find a OGV/OGG converter. Lucky that I found a good one. You have to use Command Prompt but it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/06/ogg.png" alt="" title="ogg" width="120" height="70" class="alignleft size-full wp-image-464" />After spending 2 hours I finally found a working converter for my Html5 website. As you know OGG(Open Video Format &#8211; Theora) or OGV video formats work well with Firefox (pc&#038;mac) but it is hard to find a OGV/OGG converter. Lucky that I found a good one. You have to use Command Prompt but it worths.</p>
<p>Now visit <a href="http://en.flossmanuals.net/FFmpeg2Theora/InstallingWin">this page</a> and download ffmpeg2theora to your pc and go to <a href="http://en.flossmanuals.net/FFmpeg2Theora/UsingWindows">here</a> to see how to convert your videos. Good luck!</p>
<p>You can also visit <a href="http://firefogg.org/">here</a> if you don&#8217;t like hand coding.</p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/06/html5-video-converter-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sweden: Cheap Beer, Bad Weather, Hot Girls</title>
		<link>http://geryit.com/blog/2010/06/sweden-cheap-beer-bad-weather-hot-girls/</link>
		<comments>http://geryit.com/blog/2010/06/sweden-cheap-beer-bad-weather-hot-girls/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 19:26:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=456</guid>
		<description><![CDATA[It&#8217;s my 19th day in Sweden and It is gonna be my last week here. I enjoyed a lot and sometimes got bored of the weather. Hope to be here next summer again.]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/06/Guinness1.png" alt="" title="Guinness" width="120" height="70" class="alignleft size-full wp-image-458" /><img src="http://geryit.com/blog/wp-content/uploads/2010/06/zsweeds-692x553.jpg" alt="" title="Svenska Flickor" width="692" height="553" class="alignleft size-large wp-image-459" /> It&#8217;s my 19th day in Sweden and It is gonna be my last week here. I enjoyed a lot and sometimes got bored of the weather. Hope to be here next summer again.</p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/06/sweden-cheap-beer-bad-weather-hot-girls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparison of web browsers</title>
		<link>http://geryit.com/blog/2010/06/comparison-of-web-browsers-2/</link>
		<comments>http://geryit.com/blog/2010/06/comparison-of-web-browsers-2/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 12:56:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Html5]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=449</guid>
		<description><![CDATA[See the compatibility tables for features in HTML5, CSS3, SVG and other upcoming web technologies here]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-443" title="bc" src="http://geryit.com/blog/wp-content/uploads/2010/06/bc.png" alt="" width="120" height="70" /> <a href="http://html5readiness.com/"><img src="http://geryit.com/blog/wp-content/uploads/2010/06/bc21-692x345.png" alt="" title="http://html5readiness.com/" width="692" height="345" class="alignleft size-large wp-image-451" /></a>See the compatibility tables for features in HTML5, CSS3, SVG and other upcoming web technologies <a href="http://html5readiness.com/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/06/comparison-of-web-browsers-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Font API</title>
		<link>http://geryit.com/blog/2010/06/google-font-api/</link>
		<comments>http://geryit.com/blog/2010/06/google-font-api/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 03:42:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Html5]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://geryit.com/blog/?p=437</guid>
		<description><![CDATA[Google announced their new Font API yesterday, including a font directory andpreview tool. They teamed up with TypeKit, to build and open source the WebFont Loader. More&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://geryit.com/blog/wp-content/uploads/2010/06/gcl2.png"><img class="size-full wp-image-436 alignleft" title="gcl" src="http://geryit.com/blog/wp-content/uploads/2010/06/gcl2.png" alt="" width="120" height="70" /></a><a href="http://geryit.com/blog/wp-content/uploads/2010/06/googlefonts.jpg"><img class="alignleft size-full wp-image-438" title="googlefonts" src="http://geryit.com/blog/wp-content/uploads/2010/06/googlefonts.jpg" alt="" width="298" height="73" /></a>Google announced their new Font API yesterday, including a font directory andpreview tool. They teamed up with TypeKit, to build and open source the WebFont Loader.<a href="http://code.google.com/apis/webfonts/docs/getting_started.html#Overview" target="_blank"><br />
More&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/06/google-font-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Cross-Browser Testing Tool Ever : Adobe BrowserLab</title>
		<link>http://geryit.com/blog/2010/05/the-best-cross-browser-testing-tool-ever-adobe-browserlab/</link>
		<comments>http://geryit.com/blog/2010/05/the-best-cross-browser-testing-tool-ever-adobe-browserlab/#comments</comments>
		<pubDate>Tue, 11 May 2010 03:59:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Html5]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.geryit.com/blog/?p=431</guid>
		<description><![CDATA[Seemingly the successor of Meer Meer from Adobe, Browserlabs is a sleek new service for testing your websites across browsers. It tests Firefox 2 and 3 and IE 6 and 7 for XP and test Firefox 2 and 3 and Safari 3 for OS X. Just sign in with your Adobe account, put in a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/05/abl.png" alt="" title="abl" width="120" height="70" class="alignleft size-full wp-image-432" /><br />
<a href="https://browserlab.adobe.com"><img src="http://geryit.com/blog/wp-content/uploads/2010/05/acbt.jpg" alt="" title="acbt" width="700" height="449" class="alignleft size-full wp-image-433" /></a></p>
<p>Seemingly the successor of Meer Meer from Adobe, Browserlabs is a sleek new service for testing your websites across browsers. It tests Firefox 2 and 3 and IE 6 and 7 for XP and test Firefox 2 and 3 and Safari 3 for OS X. Just sign in with your Adobe account, put in a URL and let Browserlab load screenshots for these browsers. Brilliant 2-up and onion-skin views allow you to compare between browsers easily. Unlike some browser testers, the entire page is visible, header to footer with scrolling. I’ve already noticed some particularly slow loading browsers and it would be great if it could build the page so you could navigate a site like a native browser test but it’s a great new product from Adobe.</p>
<p><a href="https://browserlab.adobe.com">Test your website now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/05/the-best-cross-browser-testing-tool-ever-adobe-browserlab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to the fundamentals of PHP</title>
		<link>http://geryit.com/blog/2010/05/introduction-to-the-fundamentals-of-php/</link>
		<comments>http://geryit.com/blog/2010/05/introduction-to-the-fundamentals-of-php/#comments</comments>
		<pubDate>Sun, 09 May 2010 03:01:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.geryit.com/blog/?p=425</guid>
		<description><![CDATA[In this article, I’ll introduce you to the fundamentals of PHP. We’ll focus on using PHP to access Web services and on turning static HTML pages into dynamic ones by retrieving data from the Web and by showing different content depending on what the user has entered in a form or requested in the URL. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geryit.com/blog/wp-content/uploads/2010/05/sm.png" alt="" title="sm" width="120" height="70" class="alignleft size-full wp-image-426" />In this article, I’ll introduce you to the fundamentals of PHP. We’ll focus on using PHP to access Web services and on turning static HTML pages into dynamic ones by retrieving data from the Web and by showing different content depending on what the user has entered in a form or requested in the URL.</p>
<p>You won’t come out a professional PHP developer, but you’ll be well on your way to building a small page that uses Web services. You can find a lot of great PHP info on the Web, and most of the time you will end up on PHP.net itself. But I was asked repeatedly on several hack days and competitions to write this quick introduction article, so here it is.</p>
<p><a href="http://www.smashingmagazine.com/2010/04/15/php-what-you-need-to-know-to-play-with-the-web/">Continue Reading&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/05/introduction-to-the-fundamentals-of-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guitar Hero 5 Director&#039;s Cut Music Steve Trailer</title>
		<link>http://geryit.com/blog/2010/05/guitar-hero-5-directors-cut-music-steve-trailer/</link>
		<comments>http://geryit.com/blog/2010/05/guitar-hero-5-directors-cut-music-steve-trailer/#comments</comments>
		<pubDate>Wed, 05 May 2010 06:34:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.geryit.com/blog/?p=416</guid>
		<description><![CDATA[This is the Director&#8217;s Cut to the Guitar Hero® 5 Music Steve video. Special Thanks to &#8216;Make The Girl Dance&#8217; for use of the song &#8216;Baby Baby Baby&#8217;]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-419" title="gh5" src="http://geryit.com/blog/wp-content/uploads/2010/05/gh5.png" alt="" width="120" height="70" />This is the Director&#8217;s Cut to the Guitar Hero® 5 Music Steve video. Special Thanks to &#8216;Make The Girl Dance&#8217; for use of the song &#8216;Baby Baby Baby&#8217;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="700" height="421" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/9uDrFEXcg_A&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="700" height="421" src="http://www.youtube.com/v/9uDrFEXcg_A&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://geryit.com/blog/2010/05/guitar-hero-5-directors-cut-music-steve-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
