<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7847581665357793269</id><updated>2011-08-30T16:38:10.042+02:00</updated><category term='vim'/><category term='programming'/><title type='text'>Code Monkey Do</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://codemonkeydo.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://codemonkeydo.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>brbrenna</name><uri>http://www.blogger.com/profile/17040589850564990345</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_0lLlmxANM2Q/SLeZKxpDrVI/AAAAAAAAADE/X0sYVc1qIhA/S220/images.jpeg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7847581665357793269.post-7100625404675937300</id><published>2010-05-19T13:28:00.001+02:00</published><updated>2010-05-19T13:28:18.706+02:00</updated><title type='text'>A git workflow using bundles</title><content type='html'>&lt;p&gt;Disclaimer: I am a git n00b, so there are probably better ways to do this.&lt;/p&gt;
&lt;p&gt;Below is the git workflow I use for cases when I do development on two
boxes (named Local and Remote below), but there is no way to clone/fetch/pull directly.&lt;/p&gt;
&lt;p&gt;(Local) Create the initial bundle and create a tag:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ git bundle create toremote.bundle HEAD
$ git tag toremote
&lt;/pre&gt;
&lt;p&gt;Transfer the bundle file to the remote computer.&lt;/p&gt;
&lt;p&gt;(Remote) Initialize an empty repository, and pull from the bundle file:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ mkdir repo
$ cd repo
$ git init
$ git pull /tmp/toremote.bundle
&lt;/pre&gt;
&lt;p&gt;(Remote) Create a tag:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ git tag fromlocal
&lt;/pre&gt;
&lt;p&gt;You now do some bugfixing or development on the remote computer. Use git as
normal and commit your changes.&lt;/p&gt;
&lt;p&gt;(Remote) Then create a bundle containing your changes, and create a tag:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ git bundle create tolocal.bundle fromlocal..HEAD
$ git tag -f tolocal
&lt;/pre&gt;
&lt;p&gt;Transfer the bundle file to the local computer.&lt;/p&gt;
&lt;p&gt;(Local) Pull from the bundle to update the local repository:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ git pull tolocal.bundle
$ git tag -f fromremote
&lt;/pre&gt;
&lt;p&gt;You then do some hacking on the local computer. Use git as normal and
commit your changes.&lt;/p&gt;
&lt;p&gt;(Local) Then create a bundle containing your changes, and create a tag:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ git bundle create toremote.bundle toremote..HEAD
$ git tag -f toremote
&lt;/pre&gt;
&lt;p&gt;Transfer the bundle file to the remote computer.&lt;/p&gt;
&lt;p&gt;(Remote) Pull from the bundle and create a tag:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
$ git pull /path/to/toremote.bundle
$ git tag -f fromlocal
&lt;/pre&gt;
&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7847581665357793269-7100625404675937300?l=codemonkeydo.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codemonkeydo.blogspot.com/feeds/7100625404675937300/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7847581665357793269&amp;postID=7100625404675937300' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/7100625404675937300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/7100625404675937300'/><link rel='alternate' type='text/html' href='http://codemonkeydo.blogspot.com/2010/05/git-workflow-using-bundles.html' title='A git workflow using bundles'/><author><name>brbrenna</name><uri>http://www.blogger.com/profile/17040589850564990345</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_0lLlmxANM2Q/SLeZKxpDrVI/AAAAAAAAADE/X0sYVc1qIhA/S220/images.jpeg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7847581665357793269.post-4773888854663590531</id><published>2009-06-21T15:26:00.001+02:00</published><updated>2009-06-22T14:02:02.895+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><title type='text'>Using the Blogger API from Python</title><content type='html'>&lt;p&gt;Blogger exposes a Google Data API. Using this API, you can access all parts of
your blog using simple HTTP requests. The REST-style API is based on the
Atom Publishing Protocol.&lt;/p&gt;
&lt;p&gt;It is very easy to access the blogger API (or any Google Data API) from
Python using the &lt;a class="reference external" href="http://code.google.com/p/gdata-python-client/"&gt;Google Data APIs Python Client Library (gdata-python-client)&lt;/a&gt;.
This library is easy to use, has great documentation and great sample code
included.&lt;/p&gt;
&lt;p&gt;Using &lt;a class="reference external" href="http://docutils.sourceforge.net/rst.html"&gt;reStructuredText&lt;/a&gt; and gdata-python-client I created a simple
application (&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;blogger.py&lt;/span&gt;&lt;/tt&gt;) that takes a rst file, converts it to HTML and publishes the HTML on my blog.&lt;/p&gt;
&lt;p&gt;Using this approach, I can edit blog posts in &lt;a class="reference external" href="http://www.vim.org"&gt;a my editor of choice&lt;/a&gt;, using an easy-to-read plaintext markup syntax.&lt;/p&gt;
&lt;p&gt;Example use:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span style="color: #408080; font-style: italic"&gt;# first, get the blog id&lt;/span&gt;
&lt;span style="color: #666666"&gt;(&lt;/span&gt;vanilla&lt;span style="color: #666666"&gt;)[&lt;/span&gt;~/misc/blogger&lt;span style="color: #666666"&gt;]&lt;/span&gt;
&lt;span style="color: #19177C"&gt;$ &lt;/span&gt;python blogger.py --username my.email@gmail.com --listblogs
Password:
nnnnnnnnnnnnnnnnnnn: Code Monkey Do

&lt;span style="color: #408080; font-style: italic"&gt;# then create a new blog post&lt;/span&gt;
&lt;span style="color: #666666"&gt;(&lt;/span&gt;vanilla&lt;span style="color: #666666"&gt;)[&lt;/span&gt;~/misc/blogger&lt;span style="color: #666666"&gt;]&lt;/span&gt;
&lt;span style="color: #19177C"&gt;$ &lt;/span&gt;python blogger.py --username my.email@gmail.com --blog nnnnnnnnnnnnnnnnnnn post1.rst
Password:

&lt;span style="color: #19177C"&gt;$ &lt;/span&gt;python blogger.py --help
...
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;tt class="docutils literal"&gt;&lt;span class="pre"&gt;blogger.py&lt;/span&gt;&lt;/tt&gt; source code (&lt;a class="reference external" href="http://github.com/codeape2/python-blogger/tree/master/blogger.py"&gt;on github&lt;/a&gt;):&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre&gt;&lt;span style="color: #008000; font-weight: bold"&gt;import&lt;/span&gt; &lt;span style="color: #0000FF; font-weight: bold"&gt;rstdirective&lt;/span&gt;

&lt;span style="color: #008000; font-weight: bold"&gt;def&lt;/span&gt; &lt;span style="color: #0000FF"&gt;login&lt;/span&gt;(username, password):
    &lt;span style="color: #008000; font-weight: bold"&gt;import&lt;/span&gt; &lt;span style="color: #0000FF; font-weight: bold"&gt;gdata.service&lt;/span&gt;
    service &lt;span style="color: #666666"&gt;=&lt;/span&gt; gdata&lt;span style="color: #666666"&gt;.&lt;/span&gt;service&lt;span style="color: #666666"&gt;.&lt;/span&gt;GDataService(username, password)
    service&lt;span style="color: #666666"&gt;.&lt;/span&gt;service &lt;span style="color: #666666"&gt;=&lt;/span&gt; &lt;span style="color: #BA2121"&gt;&amp;#39;blogger&amp;#39;&lt;/span&gt;
    service&lt;span style="color: #666666"&gt;.&lt;/span&gt;server &lt;span style="color: #666666"&gt;=&lt;/span&gt; &lt;span style="color: #BA2121"&gt;&amp;#39;www.blogger.com&amp;#39;&lt;/span&gt;
    service&lt;span style="color: #666666"&gt;.&lt;/span&gt;ProgrammaticLogin()
    &lt;span style="color: #008000; font-weight: bold"&gt;return&lt;/span&gt; service

&lt;span style="color: #008000; font-weight: bold"&gt;def&lt;/span&gt; &lt;span style="color: #0000FF"&gt;create_entry&lt;/span&gt;(title, content, draft&lt;span style="color: #666666"&gt;=&lt;/span&gt;&lt;span style="color: #008000"&gt;False&lt;/span&gt;):
    &lt;span style="color: #008000; font-weight: bold"&gt;import&lt;/span&gt; &lt;span style="color: #0000FF; font-weight: bold"&gt;atom&lt;/span&gt;
    &lt;span style="color: #008000; font-weight: bold"&gt;import&lt;/span&gt; &lt;span style="color: #0000FF; font-weight: bold"&gt;gdata&lt;/span&gt;
    entry &lt;span style="color: #666666"&gt;=&lt;/span&gt; gdata&lt;span style="color: #666666"&gt;.&lt;/span&gt;GDataEntry()
    entry&lt;span style="color: #666666"&gt;.&lt;/span&gt;title &lt;span style="color: #666666"&gt;=&lt;/span&gt; atom&lt;span style="color: #666666"&gt;.&lt;/span&gt;Title(title_type&lt;span style="color: #666666"&gt;=&lt;/span&gt;&lt;span style="color: #BA2121"&gt;&amp;#39;text&amp;#39;&lt;/span&gt;, text&lt;span style="color: #666666"&gt;=&lt;/span&gt;title)
    entry&lt;span style="color: #666666"&gt;.&lt;/span&gt;content &lt;span style="color: #666666"&gt;=&lt;/span&gt; atom&lt;span style="color: #666666"&gt;.&lt;/span&gt;Content(content_type&lt;span style="color: #666666"&gt;=&lt;/span&gt;&lt;span style="color: #BA2121"&gt;&amp;#39;html&amp;#39;&lt;/span&gt;, text&lt;span style="color: #666666"&gt;=&lt;/span&gt;content&lt;span style="color: #666666"&gt;.&lt;/span&gt;encode(&lt;span style="color: #BA2121"&gt;&amp;#39;utf8&amp;#39;&lt;/span&gt;))
    &lt;span style="color: #008000; font-weight: bold"&gt;if&lt;/span&gt; draft:
        control &lt;span style="color: #666666"&gt;=&lt;/span&gt; atom&lt;span style="color: #666666"&gt;.&lt;/span&gt;Control()
        control&lt;span style="color: #666666"&gt;.&lt;/span&gt;draft &lt;span style="color: #666666"&gt;=&lt;/span&gt; atom&lt;span style="color: #666666"&gt;.&lt;/span&gt;Draft(text&lt;span style="color: #666666"&gt;=&lt;/span&gt;&lt;span style="color: #BA2121"&gt;&amp;#39;yes&amp;#39;&lt;/span&gt;)
        entry&lt;span style="color: #666666"&gt;.&lt;/span&gt;control &lt;span style="color: #666666"&gt;=&lt;/span&gt; control
    &lt;span style="color: #008000; font-weight: bold"&gt;return&lt;/span&gt; entry

&lt;span style="color: #008000; font-weight: bold"&gt;def&lt;/span&gt; &lt;span style="color: #0000FF"&gt;listblogs&lt;/span&gt;(service):
    feed &lt;span style="color: #666666"&gt;=&lt;/span&gt; service&lt;span style="color: #666666"&gt;.&lt;/span&gt;Get(&lt;span style="color: #BA2121"&gt;&amp;#39;/feeds/default/blogs&amp;#39;&lt;/span&gt;)
    &lt;span style="color: #008000; font-weight: bold"&gt;for&lt;/span&gt; blog &lt;span style="color: #AA22FF; font-weight: bold"&gt;in&lt;/span&gt; feed&lt;span style="color: #666666"&gt;.&lt;/span&gt;entry:
        &lt;span style="color: #008000; font-weight: bold"&gt;print&lt;/span&gt; &lt;span style="color: #BA2121"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #BB6688; font-weight: bold"&gt;%s&lt;/span&gt;&lt;span style="color: #BA2121"&gt;: &lt;/span&gt;&lt;span style="color: #BB6688; font-weight: bold"&gt;%s&lt;/span&gt;&lt;span style="color: #BA2121"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color: #666666"&gt;%&lt;/span&gt; (blog&lt;span style="color: #666666"&gt;.&lt;/span&gt;GetSelfLink()&lt;span style="color: #666666"&gt;.&lt;/span&gt;href&lt;span style="color: #666666"&gt;.&lt;/span&gt;split(&lt;span style="color: #BA2121"&gt;&amp;#39;/&amp;#39;&lt;/span&gt;)[&lt;span style="color: #666666"&gt;-1&lt;/span&gt;],
            blog&lt;span style="color: #666666"&gt;.&lt;/span&gt;title&lt;span style="color: #666666"&gt;.&lt;/span&gt;text)

&lt;span style="color: #008000; font-weight: bold"&gt;def&lt;/span&gt; &lt;span style="color: #0000FF"&gt;listposts&lt;/span&gt;(service, blogid):
    feed &lt;span style="color: #666666"&gt;=&lt;/span&gt; service&lt;span style="color: #666666"&gt;.&lt;/span&gt;Get(&lt;span style="color: #BA2121"&gt;&amp;#39;/feeds/&amp;#39;&lt;/span&gt; &lt;span style="color: #666666"&gt;+&lt;/span&gt; blogid &lt;span style="color: #666666"&gt;+&lt;/span&gt; &lt;span style="color: #BA2121"&gt;&amp;#39;/posts/default&amp;#39;&lt;/span&gt;)
    &lt;span style="color: #008000; font-weight: bold"&gt;for&lt;/span&gt; post &lt;span style="color: #AA22FF; font-weight: bold"&gt;in&lt;/span&gt; feed&lt;span style="color: #666666"&gt;.&lt;/span&gt;entry:
        &lt;span style="color: #008000; font-weight: bold"&gt;print&lt;/span&gt; post&lt;span style="color: #666666"&gt;.&lt;/span&gt;GetEditLink()&lt;span style="color: #666666"&gt;.&lt;/span&gt;href&lt;span style="color: #666666"&gt;.&lt;/span&gt;split(&lt;span style="color: #BA2121"&gt;&amp;#39;/&amp;#39;&lt;/span&gt;)[&lt;span style="color: #666666"&gt;-1&lt;/span&gt;], post&lt;span style="color: #666666"&gt;.&lt;/span&gt;title&lt;span style="color: #666666"&gt;.&lt;/span&gt;text, &lt;span style="color: #BA2121"&gt;&amp;quot;[DRAFT]&amp;quot;&lt;/span&gt; &lt;span style="color: #008000; font-weight: bold"&gt;if&lt;/span&gt; is_draft(post) &lt;span style="color: #008000; font-weight: bold"&gt;else&lt;/span&gt; &lt;span style="color: #BA2121"&gt;&amp;quot;&amp;quot;&lt;/span&gt;

&lt;span style="color: #408080; font-style: italic"&gt;# ... see full source code on github: http://github.com/codeape2/python-blogger/tree/master/blogger.py&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;If you are not familiar with the reStructuredText format, have a look at
&lt;a class="reference external" href="http://github.com/codeape2/python-blogger/tree/master/posts/codemonkeydo/using-the-blogger-api-from-python"&gt;this example&lt;/a&gt;,
the rst source for this post.&lt;/p&gt;
&lt;p&gt;You can download the entire source code from &lt;a class="reference external" href="http://github.com/codeape2/python-blogger"&gt;github&lt;/a&gt;.&lt;/p&gt;
&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7847581665357793269-4773888854663590531?l=codemonkeydo.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codemonkeydo.blogspot.com/feeds/4773888854663590531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7847581665357793269&amp;postID=4773888854663590531' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/4773888854663590531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/4773888854663590531'/><link rel='alternate' type='text/html' href='http://codemonkeydo.blogspot.com/2009/06/using-blogger-api-from-python_344.html' title='Using the Blogger API from Python'/><author><name>brbrenna</name><uri>http://www.blogger.com/profile/17040589850564990345</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_0lLlmxANM2Q/SLeZKxpDrVI/AAAAAAAAADE/X0sYVc1qIhA/S220/images.jpeg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7847581665357793269.post-1059118514639135900</id><published>2009-06-04T13:34:00.004+02:00</published><updated>2009-06-04T13:44:24.712+02:00</updated><title type='text'>Stack overflow reputation</title><content type='html'>I've been using SO for a while now. Nice site for programming QA (I try to answer some &lt;a href="http://stackoverflow.com/questions/tagged/python"&gt;Python&lt;/a&gt; questions when I have the time). Recently, they added 'flair' - the ability to display your SO reputation on you site. 

Here's my SO reputation points:
&lt;script src="http://stackoverflow.com/users/flair/3571.js?theme=clean" type="text/javascript"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7847581665357793269-1059118514639135900?l=codemonkeydo.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codemonkeydo.blogspot.com/feeds/1059118514639135900/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7847581665357793269&amp;postID=1059118514639135900' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/1059118514639135900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/1059118514639135900'/><link rel='alternate' type='text/html' href='http://codemonkeydo.blogspot.com/2009/06/stack-overflow-reputation.html' title='Stack overflow reputation'/><author><name>brbrenna</name><uri>http://www.blogger.com/profile/17040589850564990345</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_0lLlmxANM2Q/SLeZKxpDrVI/AAAAAAAAADE/X0sYVc1qIhA/S220/images.jpeg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7847581665357793269.post-7437792276657565189</id><published>2008-08-29T06:43:00.001+02:00</published><updated>2009-06-21T14:45:29.359+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='vim'/><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><title type='text'>A new brace style for C-like languages</title><content type='html'>Today I came up with a brand new &lt;a href="http://www.c2.com/cgi/wiki?OneTrueBraceStyle"&gt;brace&lt;/a&gt; &lt;a href="http://catb.org/%7Eesr/jargon/html/I/indent-style.html"&gt;style&lt;/a&gt;, heavily influenced by &lt;a href="http://www.python.org/"&gt;Python&lt;/a&gt;.

It is like K&amp;amp;R, but with the &lt;b&gt;closing brace appended to the last line of the block&lt;/b&gt;. It looks like this (the example code is C# that targets CLR v 1.1):
&lt;p&gt;&lt;/p&gt;&lt;pre&gt;using System;
using System.Collections;
using System.Reflection;

namespace Utils.Documentation {

public class TypeDocumenter {
   private Type _type;
   private MethodInfo[] _methods;

   public TypeDocumenter(Type type) {
       Debug.Assert(type != null);
       _type = type;
       _methods = type.GetMethods(BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly); }
  
   public MethodDocumenter[] Methods {
       get {
           ArrayList retval = new ArrayList();
           foreach (MethodInfo m in _methods) {
               if (! m.IsSpecialName) {
                   retval.Add(new MethodDocumenter(m)); }}
           return (MethodDocumenter[]) retval.ToArray(typeof(MethodDocumenter)); }}

   public DocumentationParser XmlDocumentation(DocumentationReader docreader) {
       Debug.Assert(docreader != null);
       return new DocumentationParser(docreader.GetXmlDocumentationForType(_type)); }}}
&lt;/pre&gt;
&lt;p&gt;
This style feels and looks very natural to me, and I am going to start using it for all C# code I write from now on (which is very little - I do 90% of my development in Python).
&lt;/p&gt;
&lt;p&gt;
I use a combination of VIM and Visual Studio .NET when developing C# code. The VIM editor handles this brace style very naturally. I haven't had time to tinker with VS.NET's indentation settings yet.
&lt;/p&gt;
&lt;p&gt;
Notice that the namespace declaration has the same indent level as the class declaration. I have always done this when programming C#, since the horizontal whitespace used for indenting a class does not add any information.
&lt;/p&gt;
&lt;p&gt;
Previously I used the Allman/Emacs brace style, BTW.
&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7847581665357793269-7437792276657565189?l=codemonkeydo.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://codemonkeydo.blogspot.com/feeds/7437792276657565189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7847581665357793269&amp;postID=7437792276657565189' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/7437792276657565189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7847581665357793269/posts/default/7437792276657565189'/><link rel='alternate' type='text/html' href='http://codemonkeydo.blogspot.com/2008/08/new-brace-style-for-c-like-languages.html' title='A new brace style for C-like languages'/><author><name>brbrenna</name><uri>http://www.blogger.com/profile/17040589850564990345</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='25' src='http://4.bp.blogspot.com/_0lLlmxANM2Q/SLeZKxpDrVI/AAAAAAAAADE/X0sYVc1qIhA/S220/images.jpeg'/></author><thr:total>1</thr:total></entry></feed>
