<?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>Base-10 Design &#38; Development Inc. &#124; Blog</title>
	<atom:link href="http://www.base-10.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.base-10.net/blog</link>
	<description>Adventures In Life And Business</description>
	<lastBuildDate>Tue, 22 Mar 2011 02:19:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How time flies and why our blog seems so dead</title>
		<link>http://www.base-10.net/blog/2011/03/21/how-time-flies-and-why-our-blog-seems-so-dead/</link>
		<comments>http://www.base-10.net/blog/2011/03/21/how-time-flies-and-why-our-blog-seems-so-dead/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 02:19:41 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[BaseTools]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Martial Arts]]></category>
		<category><![CDATA[Our Work]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=261</guid>
		<description><![CDATA[Wow! Time sure does fly! It seems like only yesterday that we announced the launch of our new web service called RealtyNinja which makes awesome websites for the busy real estate agent. The reason I am writing this post is because I noticed that our last post was almost 5 months ago!! And one thing [...]]]></description>
			<content:encoded><![CDATA[<p>Wow! Time sure does fly! It seems like only yesterday that we announced the launch of our new web service called <a href="http://www.realtyninja.com" target="_blank">RealtyNinja</a> which makes awesome websites for the busy real estate agent. The reason I am writing this post is because I noticed that our last post was almost 5 months ago!! And one thing I always tell my clients is that a blog can be a good thing, but if you let it go stale, it can do more harm than good! So here is me updating the blog to keep things &#8216;fresh&#8217; and also to let you all know that RealtyNinja is getting more and more awesome as the days go by. We have added a whole bunch of amazing new features and plan to make it the best real estate agent website creator in the industry. Check it out for your self:</p>
<p style="text-align: center;"><a href="http://www.realtyninja.com"><img class="aligncenter size-full wp-image-249" title="realtyninja_title" src="http://www.base-10.net/blog/wp-content/uploads/2010/06/realtyninja_title.jpg" alt="" width="720" height="248" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2011/03/21/how-time-flies-and-why-our-blog-seems-so-dead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CPANEL/WHM: How to bulk add DNS zones on the command line</title>
		<link>http://www.base-10.net/blog/2010/11/04/cpanel-whm-how-to-bulk-add-dns-zones-on-the-command-line/</link>
		<comments>http://www.base-10.net/blog/2010/11/04/cpanel-whm-how-to-bulk-add-dns-zones-on-the-command-line/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 22:33:54 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=258</guid>
		<description><![CDATA[I had about 30 domains I need to create basic zone files for and did not want to do it by hand. I found that you could do the following via the command line:

for i in `cat /root/domainlist`; do /scripts/adddns --domain $i --ip xxx.xxx.xxx.xxx; done;

/root/domainlist is a file that contains a domain on each line [...]]]></description>
			<content:encoded><![CDATA[<p>I had about 30 domains I need to create basic zone files for and did not want to do it by hand. I found that you could do the following via the command line:</p>
<pre><code>
for i in `cat /root/domainlist`; do /scripts/adddns --domain $i --ip xxx.xxx.xxx.xxx; done;
</code></pre>
<p>/root/domainlist is a file that contains a domain on each line without the www. and of course replace xxx.xxx.xxx.xxx with the real ip address:</p>
<p>domain1.com<br />
domain2.com<br />
domain3.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/11/04/cpanel-whm-how-to-bulk-add-dns-zones-on-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NGINX: How to forward multiple domains to a primary domain</title>
		<link>http://www.base-10.net/blog/2010/11/04/nginx-how-to-forward-multiple-domains-to-a-primary-domain/</link>
		<comments>http://www.base-10.net/blog/2010/11/04/nginx-how-to-forward-multiple-domains-to-a-primary-domain/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 22:29:48 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=256</guid>
		<description><![CDATA[I figured the web deserves an article dedicated to forwarding secondary domains to a primary domain]]></description>
			<content:encoded><![CDATA[<p>I looked all over the interwebs for this and all I could find were articles on redirecting www to non-www or vice versa. Which is essentially the same thing.. but I figured the web deserves an article dedicated to just this.</p>
<p>The first server block sets up the redirects and the second block is what you are redirecting to. Pretty straight forward. Just make sure to /usr/local/nginx/sbin/nginx -t (or where ever the nginx binary is) before you try to restart as you may accidentally enter some funky characters.</p>
<pre><code>
server {
    listen 80;
    server_name secondarydomain.com tertiarydomain.com www.secondarydomain.com www.tertiarydomain.com;
    rewrite ^(.*) http://www.primarydomain.com$1 permanent;
}

server {
    listen 80;
    server_name www.primarydomain.com;
    # config for primary domain here
}
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/11/04/nginx-how-to-forward-multiple-domains-to-a-primary-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RealtyNinja &#8211; Awesome websites for the busy real estate agent</title>
		<link>http://www.base-10.net/blog/2010/06/29/realtyninja/</link>
		<comments>http://www.base-10.net/blog/2010/06/29/realtyninja/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 17:37:10 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=246</guid>
		<description><![CDATA[Hello Everybody,
We&#8217;re super stoked to announce that we are officially launching  RealtyNinja, our new pay-as-you-go real estate website service.
http://www.realtyninja.com
We have spent the last 7 years building custom real estate websites for some of Vancouvers finest REALTORS® and found ourselves solving the same problems over and over again. We also found that most agents can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.base-10.net/blog/wp-content/uploads/2010/06/realtyninja_title.jpg"></a></strong>Hello Everybody,</p>
<p><strong>We&#8217;re super stoked to announce that we are officially launching  RealtyNinja, our new pay-as-you-go real estate website service.</strong></p>
<p><a href="http://www.realtyninja.com/" target="_blank"><strong>http://www.realtyninja.com</strong></a></p>
<p>We have spent the last 7 years building custom real estate websites for some of Vancouvers finest REALTORS® and found ourselves solving the same problems over and over again. We also found that most agents can&#8217;t justify the high price tag of a custom site and the cost/effort involved in keeping it up to date; not to mention the fact that a lot of agents do not need or are not prepared to take advantage of everything a custom site provides.</p>
<p>What really spurred the development of RealtyNinja was one of our oldest clients and friends Neal Uchida (<a title="Uchida Real Estate" href="http://uchidarealestate.com" target="_blank">http://uchidarealestate.com</a>) of <a title="Blu Realty" href="http://www.bluliving.com" target="_blank">Blu Realty</a>. He had been telling us for years that agents were not happy with the existing subscription based website providers and that we had a golden opportunity to take the real estate tools and experience we spent years developing  and create the system that is now known as RealtyNinja. We set out to create something that the market has never seen before, a unique software-as-a-service company based on the principal that less is truly more when it comes to websites and applications. A lot of our inspiration came from the likes of <a title="37Signals" href="http://37signals.com" target="_blank">37signals</a> and their first book &#8216;<a title="Getting Real" href="http://gettingreal.37signals.com" target="_blank">Getting Real</a>&#8216;. With RealtyNinja we are not trying to out-feature or under-price our competition, we are instead instilling our creativity, personality, technical edge and curiosity into a product that is focused on saving an agent time and helping them generate leads. We would rather spend our time building one killer feature that will without a doubt benefit your bottom line, than 5 half-assed features that just take up time and confuse the end user.</p>
<p>RealtyNinja will not be the perfect fit for everyone and we are OK with that because as soon as you try to please everyone, you end up pleasing no one. The brand is edgy and the software is opinionated, but so are we and so are the agents that will fall in love with RealtyNinja. No website is perfect, but we constantly strive for perfection and that&#8217;s what counts. One of our biggest strengths is our agility; the ability to implement new features in a day instead of a month or to embrace a new technology if we feel that it will benefit our customers. By choosing RealtyNinja you can be certain that you have a a group of Ninja&#8217;s behind the scenes ensuring that you have the best website, the most effective features and that you are leveraging the web to its maximum potential.</p>
<p>On that note, we&#8217;re going to get back to building some wicked and essential new features into RealtyNinja such as niche market functionality, brokerage level accounts and the ability to create sub-pages. Thanks for taking the time to read this and have a nice day.</p>
<p style="text-align: center;"><strong><a href="http://www.base-10.net/blog/wp-content/uploads/2010/06/realtyninja_title.jpg"><img class="aligncenter" title="realtyninja_title" src="http://www.base-10.net/blog/wp-content/uploads/2010/06/realtyninja_title.jpg" alt="" width="584" height="201" /></a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/06/29/realtyninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who to follow and when to follow. On twitter that is.</title>
		<link>http://www.base-10.net/blog/2010/03/26/who-to-follow-and-when-to-follow-on-twitter-that-is/</link>
		<comments>http://www.base-10.net/blog/2010/03/26/who-to-follow-and-when-to-follow-on-twitter-that-is/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 18:49:15 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=233</guid>
		<description><![CDATA[In line with my last blog post, I am re-evaluating my relationship with the people I follow on Twitter. I started out on the right track by following those people I was genuinely interested in and then I started following anyone who followed me because I thought it was the nice thing to do. I [...]]]></description>
			<content:encoded><![CDATA[<p>In line with my last blog post, I am re-evaluating my relationship with the people I follow on Twitter. I started out on the right track by following those people I was genuinely interested in and then I started following anyone who followed me because I thought it was the nice thing to do. I came under the impression that it was rude not to follow someone who so kindly followed me and then I started thinking that to get more followers you have to follow more people. This has resulted in me never reading anyones tweets no matter how interested I am in them because I have to wade through a swamp of random, useless (to me) tweets.</p>
<p>I am now going on a twitter followee cleanse and un-following anyone I am not actually stoked to hear from. This may result in a backlash where I lose followers myself, but I don&#8217;t really care; quality not quantity eh?.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/03/26/who-to-follow-and-when-to-follow-on-twitter-that-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The point of blog comments</title>
		<link>http://www.base-10.net/blog/2010/03/26/the-point-of-blog-comments/</link>
		<comments>http://www.base-10.net/blog/2010/03/26/the-point-of-blog-comments/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 17:57:59 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=229</guid>
		<description><![CDATA[How to handle blog comments]]></description>
			<content:encoded><![CDATA[<p>I am torn on how I should handle comments on this blog. Should I disable comments all together? Should I only show the positive comments? Should I reply to comments? It is also difficult to tell which comments are authentic and which comments are from people who really don&#8217;t care about what you write, they just want their comments picked up by search engines or get a comment approved so that they can then spam you.</p>
<p>What is the point of blog comments? Are they just badges to hang on your site that say, &#8220;Look at how important I am, people are commenting on my blog&#8221;? To be honest, I think that is how I have been treating them up until now. After giving the subject some thought, blog comments in my opinion are for turning a one way dialogue (blog post) into a 2 way conversation; be that between blog author and commenter or between commenter&#8217;s themselves. With this in mind I am now going to make an effort to reply to every comment on our blog. After deleting the obvious spam comments I simply do not want to spend the time contemplating whether a comment is authentic or not, so I am just going to accept and comment on them all!</p>
<p>Let&#8217;s see how this experiment goes. And please don&#8217;t get me wrong, I really appreciate the time that anyone takes to comment on something that we write.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/03/26/the-point-of-blog-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion shortcuts</title>
		<link>http://www.base-10.net/blog/2010/03/02/subversion-shortcuts/</link>
		<comments>http://www.base-10.net/blog/2010/03/02/subversion-shortcuts/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 22:17:28 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=222</guid>
		<description><![CDATA[Handy subversion shortcuts]]></description>
			<content:encoded><![CDATA[<p>Here are some shortcuts I use on an almost daily basis that I constantly forget and then go re-read the blog post. I have taken them from an old post but added a new one:</p>
<h3>Bulk add:</h3>
<p><code>svn st | grep ^? | sed 's/?    //' | xargs svn add</code></p>
<h3>Bulk remove:</h3>
<p><code>svn st | grep ^! | sed 's/!    //' | xargs svn rm</code></p>
<h3>Strip all .svn directories from project:</h3>
<p><code>find . -name .svn -exec rm -rf {} \;</code></p>
<h3>Edit the ignore file pattern list for the current directory with the specified command line editor (don&#8217;t forget the last dot!):</h3>
<p><code>svn propedit --editor-cmd vi svn:ignore .</code></p>
<h3>Check in (commit) local changes to repository with the supplied message:</h3>
<p><code>svn ci -m 'the commit message you want to use'</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/03/02/subversion-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phase Now and Phase Later</title>
		<link>http://www.base-10.net/blog/2010/02/25/phase-now-and-phase-later-2/</link>
		<comments>http://www.base-10.net/blog/2010/02/25/phase-now-and-phase-later-2/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 01:50:43 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=214</guid>
		<description><![CDATA[One way to prevent death by a hundred to-do items]]></description>
			<content:encoded><![CDATA[<p>I am a big fan of breaking large projects into bite sized, easily manageable pieces. Call them phases, stages, parts or what have you; it is all the same. The point is taking something that has a deadline far in the future with a million to-do items and turning it into something that has short deadlines with easily managed and concise deliverables. To effectively accomplish this you have to sit down and have the big picture discussion with the end goal clearly in mind and plot your course to completion; this is where I find lots of projects get tripped up. Even if you have broken it down into 2 week deadlines, you still have that looming 3 month deadline and waste time on the overhead of having to meet deadlines to meet other deadlines.</p>
<p style="text-align: center;"><a href="http://www.base-10.net/blog/wp-content/uploads/2010/02/Screenshot-Worldwide-Moment-Gallery-Namoroka.png"><img class="aligncenter size-full wp-image-216" title="Screenshot-Worldwide Moment | Gallery - Namoroka" src="http://www.base-10.net/blog/wp-content/uploads/2010/02/Screenshot-Worldwide-Moment-Gallery-Namoroka.png" alt="" width="499" height="356" /></a></p>
<p>This is why I like to use the Phase Now and Phase Later approach.  Why not have that big picture discussion and compile a list of concise, clear deliverables and then sort it in order of priority. Once you have done this, put as many priority items as you can in comfortably manage with a short deadline (couple weeks) in a separate list and call this Phase Now; everything else is Phase Later. Get the most important stuff done first and then keep moving down the list from there. Of course this does not work for every project and in every instance, but I have found that things tend to get done quicker and lots of time is saved by not having to implement unimportant details upfront.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/02/25/phase-now-and-phase-later-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>United we stand</title>
		<link>http://www.base-10.net/blog/2010/02/07/united-we-stand/</link>
		<comments>http://www.base-10.net/blog/2010/02/07/united-we-stand/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 20:40:50 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=205</guid>
		<description><![CDATA[How losing my wisdom teeth showed me that it is not what you do that matters, but who you do it with. ]]></description>
			<content:encoded><![CDATA[<p>Last Monday I had the horrifying experience of having my wisdom teeth removed. I was out of commission for two days straight and when I tried to come back to work on Wednesday I was confused and useless, after which I promptly developed dry socket and was again incapacitated. Suffice to say, it was as if I had vanished from the office for a week with no warning and no contingency plans in place. The effect it had on our company was of epic proportions for a company our size; absolutely nothing!</p>
<p style="text-align: center;"><a href="http://www.base-10.net/blog/wp-content/uploads/2010/02/photo.jpg"><img class="aligncenter size-full wp-image-207" title="Wisdom Teeth" src="http://www.base-10.net/blog/wp-content/uploads/2010/02/photo.jpg" alt="Wisdom Teeth" width="480" height="360" /></a></p>
<p>Do you know what this means? It means that we are one step closer to nirvana and passed a test that could have easily been very detrimental to Base-10. This does not mean that we can all go on sabbatical, but it does mean that what we have created is stronger then ever and will continue to grow. It is not about the individual, it is about the team. I spend more of my waking hours with Ramin, Thorsten, Negar, Fredrick, (anyone else I work with) etc, then I do with my family and I do not regret it, for they are also my family. In my mind Base-10 exists to enrich the lives of the people around us because this is what they have done for me. Who would have thought losing my wisdom teeth would give me such wise insight?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2010/02/07/united-we-stand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What it means to be a blackbelt</title>
		<link>http://www.base-10.net/blog/2009/12/16/what-it-means-to-be-a-blackbelt/</link>
		<comments>http://www.base-10.net/blog/2009/12/16/what-it-means-to-be-a-blackbelt/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 19:57:10 +0000</pubDate>
		<dc:creator>Casimir</dc:creator>
				<category><![CDATA[Martial Arts]]></category>

		<guid isPermaLink="false">http://www.base-10.net/blog/?p=199</guid>
		<description><![CDATA[An essay on what a black belt actually means.]]></description>
			<content:encoded><![CDATA[<p>I am not sure how many people know this but martial arts are deeply ingrained into base-10&#8217;s culture. Collectively base-10 has over 40 years of martial arts experience in a myriad of styles. Thorsten has trained for 15 years, Ramin for 12 years and I (casimir) have trained for 15 years. The styles we have studied include wushu, karate, kickboxing, jiu jitsu, judo and kobudo. Personally the bulk of my experience (14 years) and what I have focused on most is kickboxing, at Champions Martial Arts academy in north vancouver. On December 1st 2009 I attained the level of black belt which I have been working towards since I was 7. Getting my black belt and building base-10 are in my opinion my 2 greatest life achievements to date and are what I am most proud about.<span id="more-199"></span></p>
<p>In preparation for my black belt testing I wrote an essay describing the importance of being a black belt and  the responsibilities that come with a black belt. You may be wondering how this relates to business or web development and all I can say is read it and then ask that question. There are so many parallels between working towards your black belt and building a company. I can honestly say that base-10 would not be where it is today if martial arts had not played such a large roll in all of our lives.</p>
<p>I will follow-up with another post on the actual black belt testing and will include some nice videos and images. Please keep in mind that the following essay has not been edited or really even proofed. I hope you enjoy it.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>In my opinion, there is a huge difference between being a black belt and having a black belt. A black belt is after all a black piece of cloth that is tied around ones waist. On the other hand, being a black belt it something profound that represents who you are to the core. With enough effort almost anyone off the street can work out enough to accomplish the physical feats associated with having a black belt, but it takes someone truly special to embody what being a black belt represents. A black belt represents the never ending quest to perfect your mind, body and soul; to treat others and the world with respect and to hold yourself to the highest standards possible.</p>
<p>I have been training at Champions since I was 7 and even though I took a number of years off to ground myself, that means I have been working towards this for 16 years. I still remember the day clearly when I figured out what I now know to be the essence of a black belt. It was actually when Champions first black belt ever (Joel) was testing for his black belt and I was testing for my orange belt. It was the first time students had to know the creed to get their belt and at the time, the 7 words. My mom spent hours helping me memorize these things and when Joel went up, he couldn&#8217;t remember them and none of us had to say them. I remembered them and still do remember them and it is these 7 words that we don&#8217;t have to know any more, that represent in my mind what it means to be a black belt: sincerity, self control, confidence, character, effort, respect and discipline.</p>
<p>Like I mentioned above, martial arts are not solely about fighting and being physically strong, they are about honing every aspect of your life. Realizing this has lead me to not only get into the best shape of my life, but to eat better, sleep better, work better, love better, act better, see better, etc. The black belt spirit overflows into all facets of your life and this is the importance of being a black belt. No one is perfect and you are definitely not perfect when you get a black belt, but it shows that you are on the path to perfection. Even though this is an unattainable goal, it shows ones true character, to strive for something they know that they will never reach; constantly improving and moving forward.</p>
<p>When I pass my black belt test it is not as if a switch is flicked and I become something new, something different. It is only a formal recognition of what I have become during my journey to reaching my black belt. And also, it is not the end because the journey never stops and the lessons and values you learn throughout the journey will be with you forever because they have been ingrained into your entire being. On another note, it does not make me better then anyone, in fact it signifies that I have recognized I am not better then anyone else, that no one is better then any other one; that I am humble. The only one I can be better then is my current self and this is what I strive for.</p>
<p>I have to be honest, I am afraid of the test for my black belt and of having a black belt. This is the true test, not if I can do 100 jump spinning hook kicks or not. It is overcoming your fears, standing strong in the face of fear and overcoming your daemons. All you can ever do in life is be true and try your hardest and this is what I am doing and will do for the rest of my life. Do I deserve a black belt if I am afraid of having one, of course I do. Without fear there is no respect and without respect for something, there is room for abuse.</p>
<p>There is such a misconception of what a black belt represents and what it means to wear one. TV, Movies, UFC, etc, they all distort the true meaning. There seems to be this social pressure that if you have a black belt you must be a hardcore who can kick anyone&#8217;s ass. Some people see it as a threat and it can lead to conflict. I guess this is part of the responsibilities of having a black belt, having to properly deal with this.</p>
<p>Another major responsibility inside and outside of the dojo is leading by example. Having attained the level of black belt, you naturally have others that look to you for example and direction; especially children. You have to set a good example and carry on the tradition. My brother is 10 years younger then me and even though I see him as much older then his age, he is really only 13. As his bigger brother it is my job to set an example for him. The fact that a human being I love follows and learns by my actions is a big burden, but one that I gladly carry and cherish.</p>
<p>Having trained at Champions, I now represent Champions, especially after I get my black belt. If I abuse the knowledge and skill that has been passed down to me, I put a black mark on Champions Academy. Champions has put a level of trust in me and they will not regret it. As I have done before, students come and they will go. But what I have learned from my instructors and champions academy, I will never forget. Champions has benefited my entire life and has forged who I am. Every decision I make has been influenced by my study and training. I am forever grateful for this and will carry on the tradition.</p>
<p>The entire point of this essay was to show you the importance of being a black belt and to prove that I can handle the responsibility of what being a black belt means. I understand without a doubt the importance of a black belt and the responsibilities that come with being a black belt. I also understand that the essence of a black belt does not come off when I take the black belt off or even if I don&#8217;t get a black belt. It is deeper then that, embedded into the fibre of my entire life, forever. Osu.</p>
<p>&#8211;<br />
Casimir Loeber</p>
]]></content:encoded>
			<wfw:commentRss>http://www.base-10.net/blog/2009/12/16/what-it-means-to-be-a-blackbelt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
