<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Whatever but Cool</title>
	<atom:link href="http://ttjjss.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ttjjss.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 18:01:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ttjjss.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Whatever but Cool</title>
		<link>http://ttjjss.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ttjjss.wordpress.com/osd.xml" title="Whatever but Cool" />
	<atom:link rel='hub' href='http://ttjjss.wordpress.com/?pushpress=hub'/>
		<item>
		<title>State of Dancer on Perl 6</title>
		<link>http://ttjjss.wordpress.com/2012/01/06/state-of-dancer-on-perl-6/</link>
		<comments>http://ttjjss.wordpress.com/2012/01/06/state-of-dancer-on-perl-6/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 00:24:34 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=135</guid>
		<description><![CDATA[Bailador is growing better and bigger and starts to resemble a real tool more and more. Let&#8217;s see what new features it has gained recently. Remember the first example in perldoc Dancer? It&#8217;s not really different in Bailador: use Bailador; get '/hello/:name' =&#62; sub ($name) { return "Why, hello there $name" } baile; Aside of being [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=135&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://github.com/tadzik/bailador">Bailador</a> is growing better and bigger and starts to resemble a real tool more and more. Let&#8217;s see what new features it has gained recently.</p>
<p>Remember the first example in <code>perldoc Dancer</code>? It&#8217;s not really different in Bailador:</p>
<pre>use Bailador;
get '/hello/:name' =&gt; sub ($name) {
    return "Why, hello there $name"
}
baile;</pre>
<p>Aside of being a little Spanished, what did it give us? We have subroutine signatures in Perl 6 so we can pass the :name parameter to the sub; there&#8217;s no need to use <code>param()</code> now: it&#8217;s gone.</p>
<p>You don&#8217;t need to pass everything using GET of course. post keyword is also supported.</p>
<pre>post '/' =&gt; sub {
    return request.params.perl
}</pre>
<p>The above will print something like <code>("foo" =&gt; "bar").hash</code>, if fed with appropriate request.</p>
<p><code>any()</code> is a reserved keyword in Perl 6, and while you can use it, it means a completely different thing. Instead of <code>any('get', 'post')</code> you can just do it like this:</p>
<pre><strong>get post</strong> '/' =&gt; sub {
    if request.is_get {
        return "I am GET"
    } else {
        return request.params.perl
    }
}</pre>
<p><code>post</code>, as well as <code>get</code> return their arguments, so you can chain them like in the example above. It also shows the joy of <code>request</code> object, which you can use to inspect the request being processed. It&#8217;s not as cool as Dancer::Request, but it does the job, <a href="https://github.com/tadzik/Bailador/blob/master/lib/Bailador/Request.pm">being quite small and simple</a>.</p>
<p>What else do we have? Let&#8217;s show off a bit and write a simple-simple pastebin webapp.</p>
<pre>use Bailador;

unless 'data'.IO ~~ :d {
    mkdir 'data'
}

get '/' =&gt; sub {
    template 'index.tt'
}

post '/new_paste' =&gt; sub {
    my $t  = time;
    my $c = request.params&lt;content&gt;;
    unless $c {
        return "No empty pastes please";
    }
    my $fh = open "data/$t", :w;
    $fh.print: $c;
    $fh.close;
    return "New paste available at paste/$t";
}

get /paste\/(.+)/ =&gt; sub ($tag) {
    content_type 'text/plain';
    if "data/$tag".IO.f {
        return slurp "data/$tag"
    }
    status 404;
    return "Paste does not exist";
}

baile;</pre>
<p>Holy cow, what&#8217;s that! Let&#8217;s go there piece by piece. First, we&#8217;ll create a <code>data</code> directory if it doesn&#8217;t already exist. No black magic here, let&#8217;s proceed. What&#8217;s next? Templates! Here we just load <code>index.tt</code>, not passing any parameters, but that works too and <a href="https://github.com/tadzik/Bailador/blob/master/examples/app.pl#L31">some example apps</a> use that in <a href="https://github.com/tadzik/Bailador/blob/master/examples/views/tmpl.tt">their example templates</a>.</p>
<p>The handler of <code>new_paste</code> uses our well-known <code>request</code> object again, and creates a new file for a paste, identified by the current time.</p>
<p>The last <code>get</code> block uses some nifty features, so let&#8217;s take a look. It uses regexes, and you can see that they also cooperate with subroutine parameters without black magic. We then set a <code>content_type</code> as we&#8217;ll do in Dancer, and send <code>status 404</code> if no paste have been found. Easy peasy? I suppose so. That&#8217;s it, it works like a charm.</p>
<p>Thus we&#8217;ve covered all the features in Bailador as for now. I don&#8217;t think it&#8217;s that poor, as for about 100 lines of code.</p>
<p>What&#8217;s next? What&#8217;s missing? You tell me. Or you contribute; the code is dead simple and implementing stuff like <code>before()</code>, <code>after()</code>, <code>before_template()</code> etc should be a matter of 3-5 lines, I think. Feel encouraged to look into the code and hack on it. If you have any questions, suggestions or criticism, don&#8217;t hesitate to tell, or poke me on #perl @ Freenode. Have fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=135&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2012/01/06/state-of-dancer-on-perl-6/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>MuEvent: AnyEvent lookalike for Perl 6</title>
		<link>http://ttjjss.wordpress.com/2011/10/24/muevent-anyevent-lookalike-for-perl-6/</link>
		<comments>http://ttjjss.wordpress.com/2011/10/24/muevent-anyevent-lookalike-for-perl-6/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 21:06:12 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=130</guid>
		<description><![CDATA[Trying to struggle with Select in Parrot, I accidentally discovered that its Socket has a .poll method. What a trivial, yet satisfying way to have some simple non-blocking IO. Thus, MuEvent was born. Why MuEvent? Well, in Perl 6, Mu can do much less than Any. MuEvent, as expected, can do much less than AnyEvent, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=130&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Trying to struggle with Select in Parrot, I accidentally discovered that its Socket has a .poll method. What a trivial, yet satisfying way to have some simple non-blocking IO. Thus, <a title="MuEvent on github" href="https://github.com/tadzik/MuEvent">MuEvent was born</a>.</p>
<p>Why MuEvent? Well, in Perl 6, Mu can do much less than Any. MuEvent, as expected, can do much less than AnyEvent, but it&#8217;s trying to keep the interface similar.</p>
<p>You&#8217;re welcome to read the code, and criticise it all the way. Keep in mind that I can no idea how should I properly write an event loop, so bonus points if you tell me what could have been done better. I don&#8217;t expect MuEvent to be an ultimate solution for event-driven programming in Perl 6, but I hope it will encourage people to play around. Have an appropriate amount of fun!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=130&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/10/24/muevent-anyevent-lookalike-for-perl-6/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use your Kindle as a notebook</title>
		<link>http://ttjjss.wordpress.com/2011/09/29/how-to-use-your-kindle-as-a-notebook/</link>
		<comments>http://ttjjss.wordpress.com/2011/09/29/how-to-use-your-kindle-as-a-notebook/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 23:47:31 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[Kindle]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=126</guid>
		<description><![CDATA[So amazon has released those new, shiny Kindles for low prices. Does that make my Kindle Keyboard (that&#8217;s how they call it now anyway) obsolete now? Not on my watch. So what&#8217;s a good thing about a physical keyboard, on a device you don&#8217;t really type on? Turns out it can be useful if you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=126&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So amazon has released those new, shiny Kindles for low prices. Does that make my Kindle Keyboard (that&#8217;s how they call it now anyway) obsolete now? Not on my watch. So what&#8217;s a good thing about a physical keyboard, on a device you don&#8217;t really type on? Turns out it can be useful if you can find a reasonable use for it.</p>
<p>I used to carry around a notebook of a size of a post-it sticker in my back pocket. I&#8217;m nowhere near the idea of carrying my Kindle in a back pocket, I&#8217;ve had it broken already, thank you, but can it be as good as a notebook as a good, ol&#8217; piece of paper? First of all, we&#8217;ll need a decent app for it. But those are not available for customers outside of the US. Crap.</p>
<p>But there&#8217;s this feature for adding inline notes in a book you read, right? So if I could carry around an empty book just for putting notes on it&#8230; that could work. <a title="Field Notes, the book" href="http://ge.tt/8HgLwF8">So I assembled one</a>, and all the inline notes appear on the &#8220;My Clippings&#8221; entry just fine. Works fine now, let&#8217;s see how it will work in the field, over time.</p>
<p>So, what do <em>you</em> use a keyboard on your Kindle for?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=126&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/09/29/how-to-use-your-kindle-as-a-notebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Production Ready?</title>
		<link>http://ttjjss.wordpress.com/2011/08/24/what-is-production-ready/</link>
		<comments>http://ttjjss.wordpress.com/2011/08/24/what-is-production-ready/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 14:39:05 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=121</guid>
		<description><![CDATA[“When will Perl 6 be production ready?” – they ask from time to time. I know the feeling, there was a time I wanted to know too, and after a year working on Rakudo, I can truly say, I have no freaking idea! I&#8217;d really like to tell you, seriously. If you ask #perl6, they [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=121&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>“When will Perl 6 be production ready?” – they ask from time to time. I know the feeling, there was a time I wanted to know too, and after a year working on Rakudo, I can truly say,</p>
<p><em><strong>I have no freaking idea!</strong></em></p>
<p>I&#8217;d really like to tell you, seriously. If you ask #perl6, they will start tricking you into thinking that it&#8217;s ready enough and they&#8217;re actually using it, right? Tricky bastards. But, what do you actually ask for? What is this mighty Production Ready?</p>
<p>I dedicated some thinking to this today. What makes something Production Ready? I can think of two possibilities</p>
<ol>
<li>The creators declare it Production Ready</li>
<li>People start using it in Production Environment</li>
</ol>
<p>The first one is a bit tricky to achieve when it comes to Perl 6. As we know, Perl 6 is a language. How can language be Production Ready? Think, think. Is there another example of something which is rather a spec than an end-user product, and is either not declared as finished, or the spec freeze date is ridiculously far in the future? Right, it&#8217;s HTML5. Spec is a draft, it&#8217;s nowhere near finished, and neither of the implementation implement all of it. So what makes HTML5 production-ready? I don&#8217;t think it&#8217;s declared ready by its creators. It&#8217;s that people didn&#8217;t bother with official opinions and started actually solving problems with it. Took the existing implementations and made use of it. Therefore, we can safely assume that by “Production Ready Perl 6” we really mean “A Perl 6 Compiler I can use to get the job done”. So what are the current compilers lacking for the majority of people?</p>
<p>Yes, I&#8217;m asking you. You don&#8217;t really know, do you? You didn&#8217;t even try them? It&#8217;s just that people don&#8217;t use them too often, so they&#8217;re probably crap, right? Ok, there&#8217;s some logic in that.</p>
<p>There is a possibility that Perl 6 is already capable of solving your problems. You should try it. But! Enough of the advertising business, I&#8217;m wondering here.</p>
<p>“So what is your Production Ready?”, you may ask. What do I expect from Perl 6 before it will be Production Ready for me? It&#8217;s not, I&#8217;m not gonna lie. It&#8217;s solving my problems, it pays my bills, but it lacks this Something that will make it Purely Awesome. In my opinion, there are two major things we&#8217;re missing:</p>
<ol>
<li>Speed. Not all things I write need to be blazingly fast, but what is the point of amazingly expressive language, if the bottleneck of the development process is program runtime?</li>
<li>Access to Perl 5 modules from CPAN. Yes, I know of <a href="http://modules.perl6.org">modules.perl6.org</a> fairly well, believe me. Still, it will take ages, if not infinity to make it as awesome as CPAN is. <a href="https://github.com/jnthn/blizkost">Blizkost</a> is a bridge between Perl 5 and Parrot and it&#8217;s capable of running simple stuff already.</li>
</ol>
<p>That&#8217;s it. I can live without most of the things. But what I&#8217;m really looking for, is a better Perl 5. It needs CPAN, and it needs to be less slow that it is. I&#8217;m not looking for a C performance. I could live with Perl 5 performance here probably.</p>
<p>That&#8217;s what I&#8217;m missing. And what is Your Production Ready?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=121&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/08/24/what-is-production-ready/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>S26 in HTML</title>
		<link>http://ttjjss.wordpress.com/2011/08/10/s26-in-html/</link>
		<comments>http://ttjjss.wordpress.com/2011/08/10/s26-in-html/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 08:56:12 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[gsoc]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=115</guid>
		<description><![CDATA[On http://perlcabal.org/syn/, Synopsis 26 is the only one without the HTML page. That&#8217;s of course due to the lack of Pod (Pod6) to HTML converter. Today there has been a breakthrough in this embarrasing situation :) My Pod parser integrated into Rakudo is capable of parsing S26 completely, so this morning I wrote a Pod::To::HTML [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=115&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On <a href="http://perlcabal.org/syn/">http://perlcabal.org/syn/</a>, Synopsis 26 is the only one without the HTML page. That&#8217;s of course due to the lack of Pod (Pod6) to HTML converter. Today there has been a breakthrough in this embarrasing situation :)<br />
My Pod parser integrated into Rakudo is capable of parsing S26 completely, so this morning I wrote a <a href="https://github.com/tadzik/Pod-To-HTML">Pod::To::HTML</a> module for it. Parsing and generating HTML output from S26 takes about 4 minutes on my machine, but the outcoming document is <a href="http://feather.perl6.nl:3000/s26.html">not that bad</a>. You can see some still NYI features, like the lack of formatting codes and correctly interpreting <a href="http://feather.perl6.nl:3000/s26.html#Semantic blocks">semantic blocks</a>. The first one is a part of my GSoC work, the second one is not but I&#8217;ll probably do it anyway, just for the sake of having prettier S26 :)</p>
<p>My HTML-fu is a bit Less Than Awesome, so if anyone knows how to make it any better (and it won&#8217;t be cheating as Pod::To::HTML is not a part of my GSoC work), I&#8217;m willing to hand out commit bits to anyone interested.</p>
<p>Maybe it&#8217;s finally time to read this one. Have the appropriate amount of fun.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=115&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/08/10/s26-in-html/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>GSoC – The podparser branch has landed</title>
		<link>http://ttjjss.wordpress.com/2011/07/31/gsoc-%e2%80%93-the-podparser-branch-has-landed/</link>
		<comments>http://ttjjss.wordpress.com/2011/07/31/gsoc-%e2%80%93-the-podparser-branch-has-landed/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 19:14:11 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[gsoc]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=106</guid>
		<description><![CDATA[Just a few minutes ago, with a total count of 28 files changed, 1627 insertions and 41 deletions, the podparser branch in which I&#8217;ve been doing my GSoC work has been merged into nom, the current development branch of Rakudo and the soon-to-be master. So, what do we get? Pod is now parsed, not ignored. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=106&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a few minutes ago, with a total count of 28 files changed, 1627 insertions and 41 deletions, the podparser branch in which I&#8217;ve been doing my GSoC work has been merged into nom, the current development branch of Rakudo and the soon-to-be master. So, what do we get?</p>
<ul>
<li>Pod is now parsed, not ignored. The whole parse tree is available in runtime in the $=POD variable</li>
<li>A basic support for documenting classes and subroutines with #= comments, and the .WHY method on each object returning the attached documentation</li>
<li>A &#8211;doc switch, a not-really-replacement for perldoc</li>
<li>A simple Pod::To::Text output generator</li>
<li>and more, of course :)</li>
</ul>
<div>So, how does it look like in action?</div>
<div><strong>$=POD</strong></div>
<div>All the Pod we have written in our code is now available in the $=POD variable. Example?</div>
<blockquote>
<pre>=begin pod
Some documentation
=end pod

say $=POD[0].content[0].content;</pre>
</blockquote>
<div>
Results in</p>
<blockquote><pre>Some documentation</pre>
</blockquote>
<p>That&#8217;s not very useful per se, so how about this one:</p>
<blockquote>
<pre>=begin pod

=head1 NAME

A basic pod document

=head2 Running Perl programs

To run a Perl program from the Unix command line:

    perl progname.pl

=head2 Things on my desk

There are the following things on my desk right now:

=item A cup of tea
=item A couple of pens
=item A stereo
=item A couple of books
=item A laptop, obviously

=end pod

DOC INIT {
    use Pod::To::Text;
    say pod2text($=POD);
    exit;
}

say "I'm just a simple program";</pre>
</blockquote>
<p>Now what&#8217;s the DOC INIT thing? Let&#8217;s see. How about we run the above program:</p>
<blockquote>
<pre>$ perl6 foo.pl
I'm just a simple program</pre>
</blockquote>
<p>No suprises. Let&#8217;s introduce the <strong>&#8211;doc</strong> switch then:</p>
<blockquote>
<pre>$ perl6 --doc foo.pl
NAME

A basic pod document

  Running Perl programs

To run a Perl program from the Unix command line:

    perl progname.pl

  Things on my desk

There are the following things on my desk right now:

 * A cup of tea
 * A couple of pens
 * A stereo
 * A couple of books
 * A laptop, obviously</pre>
</blockquote>
<p>That&#8217;s right. The DOC blocks are executed only when the &#8211;doc command line option has been given. At the moment you have to write them yourself, but maybe even in the nearest few days there will be a default DOC INIT block doing What You mean all by itself. There we go, a perldoc-alike built-in :)</p>
<p><strong>WHY</strong></p>
<p>That&#8217;s probably the biggest killer feature in the whole project. Although it&#8217;s not yet fully implemented in Rakudo (suprise segfaults here and there, don&#8217;t worry, they&#8217;re not permanent :)), it looks pretty much like this:</p>
<blockquote><pre>#= our zebra class
class Zebra {
...
}

say Zebra.WHY # prints: "our zebra class"</pre>
</blockquote>
<p>Yes yes, a documentation inspection in runtime. See the potential?</p>
<blockquote><pre># what was that sub again?
&amp;sort.WHY.say # get the documentation for the sort() builtin</pre>
</blockquote>
<p>That opens a way for lots of awesome userspace tools too.</p>
<p>So, what&#8217;s still not quite there?</p>
<ul>
<li>.WHY (some cases)</li>
<li>Formatting Codes (C&lt;code&gt;, B&lt;bold&gt; etc)</li>
<li>DOC use (that can be written as DOC INIT { use &#8230; } for now)</li>
<li>Default DOC INIT (as mentioned above)</li>
<li>A Pod::Parser as a standalone module</li>
</ul>
</div>
<div>With that done, my GSoC project will be finished, and I&#8217;ll hopefully have time to hit some things I was planning to poke in some spare time, for example:</div>
<div>
<ul>
<li>HTML output generator</li>
<li>Extending the parser so Synopse 26 can be fully parsed</li>
<li>Other fancy userspace tools; I don&#8217;t want to spoil the suprise :)</li>
</ul>
<p>What can I say? Pull it, compile it, play with it, report bugs and have the appopriate amount of fun :)</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=106&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/07/31/gsoc-%e2%80%93-the-podparser-branch-has-landed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>Pictures</title>
		<link>http://ttjjss.wordpress.com/2011/07/14/pictures/</link>
		<comments>http://ttjjss.wordpress.com/2011/07/14/pictures/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 22:06:52 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=100</guid>
		<description><![CDATA[I (and a dear friend of mine actually) took a plenty of nice pictures. I&#8217;m rarely satisfied with my photography, but that could make a nice, non-nerdy post. I was supposed to write them from time to time after all :) They could use some cropping, but it&#8217;s late. PS. WordPress seems to do some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=100&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I (and a dear friend of mine actually) took a plenty of nice pictures. I&#8217;m rarely satisfied with my photography, but that could make a nice, non-nerdy post. I was supposed to write them from time to time after all :)</p>
<p>They could use some cropping, but it&#8217;s late.</p>
<p><img class="alignnone" title="1" src="http://wstaw.org/m/2011/07/13/DSC_3574_JPG_750x750_q85.jpg" alt="" width="750" height="498" /></p>
<p><img class="alignnone" title="1" src="http://wstaw.org/m/2011/07/13/DSC_3599_JPG_750x750_q85.jpg" alt="" width="750" height="498" /></p>
<p><img class="alignnone" title="1" src="http://wstaw.org/m/2011/07/13/DSC_3459_JPG_750x750_q85.jpg" alt="" width="750" height="498" /></p>
<p><img class="alignnone" title="1" src="http://wstaw.org/m/2011/07/13/DSC_3536_JPG_750x750_q85.jpg" alt="" width="750" height="498" /></p>
<p>PS. WordPress seems to do some harm to my pictures, probably due to site width, so here are some links to photos above and more:</p>
<ul>
<li><a href="http://wstaw.org/w/Aok/">http://wstaw.org/w/Aok/</a></li>
<li><a href="http://wstaw.org/w/Aoj/">http://wstaw.org/w/Aoj/</a></li>
<li><a href="http://wstaw.org/w/Aol/">http://wstaw.org/w/Aol/</a></li>
<li><a href="http://wstaw.org/w/Aom/">http://wstaw.org/w/Aom/</a></li>
<li><a href="http://wstaw.org/w/Aon/">http://wstaw.org/w/Aon/</a></li>
<li><a href="http://wstaw.org/w/Aoo/">http://wstaw.org/w/Aoo/</a></li>
<li><a href="http://wstaw.org/w/Aoi/">http://wstaw.org/w/Aoi/</a></li>
<li><a href="http://wstaw.org/w/Aop/">http://wstaw.org/w/Aop/</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=100&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/07/14/pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>

		<media:content url="http://wstaw.org/m/2011/07/13/DSC_3574_JPG_750x750_q85.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://wstaw.org/m/2011/07/13/DSC_3599_JPG_750x750_q85.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://wstaw.org/m/2011/07/13/DSC_3459_JPG_750x750_q85.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>

		<media:content url="http://wstaw.org/m/2011/07/13/DSC_3536_JPG_750x750_q85.jpg" medium="image">
			<media:title type="html">1</media:title>
		</media:content>
	</item>
		<item>
		<title>GSoC: First (easily) visible results</title>
		<link>http://ttjjss.wordpress.com/2011/07/07/gsoc-first-easily-visible-results/</link>
		<comments>http://ttjjss.wordpress.com/2011/07/07/gsoc-first-easily-visible-results/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 22:46:23 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[gsoc]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=97</guid>
		<description><![CDATA[Yeah, of course I&#8217;m doing stuff for almost 2 months now. But all this was boooring. The goal was not for the parser outside the compiler, but the parser in the compiler itself, exposing Pod to runtime. After some funny and some frustrating moments (like self-duplicating bacon: worse than it sounds!) it finally happened: a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=97&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yeah, of course I&#8217;m doing stuff for almost 2 months now. But all this was boooring. <a href="http://www.google-melange.com/gsoc/proposal/review/google/gsoc2011/tadzik/1">The goal</a> was not for the parser outside the compiler, but the parser in the compiler itself, exposing Pod to runtime. After some funny and some frustrating moments (like <a href="http://irclog.perlgeek.de/perl6/2011-07-06#i_4070870">self-duplicating bacon</a>: worse than it sounds!) it finally happened: a $POD variable (should be $=POD one day), is visible in the code and <a href="https://gist.github.com/1064604">contains sensemaking results</a>. I also started <a href="https://github.com/rakudo/rakudo/blob/podparser/t/pod/01-delimited.t">moving tests to Rakudo tree</a>, so &#8216;make test&#8217; can be proud of the shiny new capabilites too. Exciting times. I feel excited and proud, one of the main goals is there, as it should be, not in some remote repo as a separate module. From now on, everything should be easier :)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=97&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/07/07/gsoc-first-easily-visible-results/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>The summary of the Community Bonding Period</title>
		<link>http://ttjjss.wordpress.com/2011/05/22/the-summary-of-the-community-bonding-period/</link>
		<comments>http://ttjjss.wordpress.com/2011/05/22/the-summary-of-the-community-bonding-period/#comments</comments>
		<pubDate>Sun, 22 May 2011 21:04:23 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[gsoc]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=91</guid>
		<description><![CDATA[Students get to know mentors, read documentation, get up to speed to begin working on their projects. Or so says the GSoC timeline. That ends today, almost one month since the accepted students were announced.  I didn&#8217;t do much community bonding per se. I&#8217;ve been quite active in the Perl 6 community for almost a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=91&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Students get to know mentors, read documentation, get up to speed to begin working on their projects.</h3>
<p>Or so says the GSoC timeline. That ends today, almost one month since the accepted students were announced.  I didn&#8217;t do much community bonding per se. I&#8217;ve been quite active in the Perl 6 community for almost a year now. I already knew Moritz and Carl (the latter one even in person), my mentors, so that part can be ticked as “done” as well. So what did I do, instead of  lying in the shade and drinking a fine tea? The Read Documentation part, but not only. I&#8217;ve done lots of discussions with my mentors, and received an excellent feedback. Almost every discussion I was afraid I may forgot about was scrupulously logged in <a href="https://github.com/tadzik/gsocmess">the gsocmess repo</a>. But not only the irc logs got there. I started scratching out <a href="https://github.com/tadzik/gsocmess/blob/master/docs/examples-and-their-trees">how the Pod nodes of the example Pod documents will look like</a>. I used the parts of S26, as they&#8217;re probably the best examples of Pod 6 out there. I didn&#8217;t spend the whole time parsing example documents myself though. Over the last two weekends I started the actual coding: what was to be done for week #1 and even #2. After some serious headscratching and a few wtf moments I ended up with a parser capable of parsing delimited, paragraph, and abbreviated blocks of Pod. 129 lines of code, 337 lines of tests. I also started moving the grammar rules into rakudo; I created a <a href="https://github.com/rakudo/rakudo/tree/gsoc-podparser">gsoc/podparser branch</a> and started migrating the code there. It doesn&#8217;t bring any features, but it opens a way to fill in the action methods and actually produce the Pod node tree in parse time. At the moment of writing this, the branch fails on some of the spectests, which I plan fixing soon.</p>
<p>How will I fill the time that I got working in advance? Well, most of it will be lost^Wwasted^Wspent on the University work. My semester is still on, the exams finish on June the 30th, so it&#8217;s quite possible I won&#8217;t do any GSoC-related work in the upcoming weeks. On the other hand, I can&#8217;t imagine Physics or Signal Theory being more attractive than GSoC, so I&#8217;ll probably end up ruining my exam session and coding instead. But time will tell. Hopefully I&#8217;d be able to end up with the exams passed, and the GSoC on schedule.</p>
<p>TL;DR: Instead of community bonding, I started the actual coding and bit off most of week #1 and #2 of my schedule.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=91&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/05/22/the-summary-of-the-community-bonding-period/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
		<item>
		<title>Zebras in the Perl 6 herd</title>
		<link>http://ttjjss.wordpress.com/2011/05/07/zebras-in-the-perl-6-herd/</link>
		<comments>http://ttjjss.wordpress.com/2011/05/07/zebras-in-the-perl-6-herd/#comments</comments>
		<pubDate>Sat, 07 May 2011 09:23:01 +0000</pubDate>
		<dc:creator>ttjjss</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ttjjss.wordpress.com/?p=88</guid>
		<description><![CDATA[Well, the #perl6 herd mostly. Where did they come from? Well, it all started with this tadzik guy one day on the #perl irc channel. tadzik &#124; good evening zebras! colomon &#124; zebras? tadzik &#124; oh, I just felt a need for a funny greeting tadzik &#124; how are things? Zebras had to wait to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=88&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, the #perl6 herd mostly. Where did they come from? Well, it all started with this tadzik guy <a href="http://irclog.perlgeek.de/perl6/2010-12-17#i_3100174">one day on the #perl irc channel</a>.</p>
<blockquote>
<pre>tadzik  | good evening zebras!
colomon | zebras?
tadzik  | oh, I just felt a need for a funny greeting
tadzik  | how are things?</pre>
</blockquote>
<p>Zebras had to wait to become noticed until the <a href="http://irclog.perlgeek.de/perl6/2010-12-18#i_3101102">morning next day</a>:</p>
<blockquote>
<pre>masak   | &lt;tadzik&gt; good evening zebras!
masak   | I for one hope this will become an instant classic :)
jnthn   | It may, but it's not black and white.</pre>
</blockquote>
<p>And it did became, actually. Since that day, zebras have been mentioned 230 on #perl6, my irc logs say. In a various forms, in a various contexts. But the main idea remained. -Ofun, all the way.</p>
<p>(Gee, that sounds so official)</p>
<p>Zebra is also a codename of a Secret Project of mine, a bit GSoC related. But that&#8217;s another story, and it&#8217;s not coming very soon anyway.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ttjjss.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ttjjss.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ttjjss.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ttjjss.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ttjjss.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ttjjss.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ttjjss.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ttjjss.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ttjjss.wordpress.com&amp;blog=15099040&amp;post=88&amp;subd=ttjjss&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ttjjss.wordpress.com/2011/05/07/zebras-in-the-perl-6-herd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6e7eb27f1e2b787956f3fa8adaa154e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ttjjss</media:title>
		</media:content>
	</item>
	</channel>
</rss>
