<?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>Craig Smith</title>
	<atom:link href="http://craigsmith.id.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://craigsmith.id.au</link>
	<description>Online presence of Craig Smith -- Agile Coach &#38; IT Professional in Australia</description>
	<lastBuildDate>Sun, 12 May 2013 13:46:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='craigsmith.id.au' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/c089c1bdacd5d4d171e67355034aa35b?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Craig Smith</title>
		<link>http://craigsmith.id.au</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://craigsmith.id.au/osd.xml" title="Craig Smith" />
	<atom:link rel='hub' href='http://craigsmith.id.au/?pushpress=hub'/>
		<item>
		<title>An Introduction to Clojure</title>
		<link>http://craigsmith.id.au/2013/05/12/an-introduction-to-clojure/</link>
		<comments>http://craigsmith.id.au/2013/05/12/an-introduction-to-clojure/#comments</comments>
		<pubDate>Sun, 12 May 2013 13:40:45 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[YOW!]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1442</guid>
		<description><![CDATA[I had the pleasure this week to sit in on a 2 day Introduction to Clojure workshop being run by one of Clojure&#8217;s core developers, Stuart Sierra. YOW! and Relevance, Inc. are running these workshops on the east coast of Australia throughout May 2013 and for someone still very new to functional concepts it was [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1442&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/05/clojure.png"><img class="alignright  wp-image-1443" alt="Clojure" src="http://cds43.files.wordpress.com/2013/05/clojure.png?w=200&#038;h=151" width="200" height="151" /></a>I had the pleasure this week to sit in on a 2 day <a href="http://clojurecore-sydney.eventbrite.com/">Introduction to Clojure</a> workshop being run by one of Clojure&#8217;s core developers, <a href="http://stuartsierra.com/">Stuart Sierra</a>. <a href="http://www.yowconference.com.au/">YOW!</a> and <a href="http://thinkrelevance.com/">Relevance, Inc.</a> are running these workshops on the east coast of Australia throughout May 2013 and for someone still very new to functional concepts it was a great introduction to functional programming as well as the <a href="http://clojure.com/">Clojure</a> language itself.</p>
<p>The key to a workshop like this is the slides with the code examples and the labs to practice the learnings, Nonetheless, here are my notes from the course on some of the concepts that I picked up.</p>
<h3>Introduction to Clojure</h3>
<ul>
<li>designed to fix shared state concurrency, designed to run on the host platform</li>
<li>ClojureScript designed to target devices that cannot run a full JVM like mobile platforms, browsers, etc..</li>
<li>most of this course is applicable to ClojureScript, just the interrops to the host environment are different</li>
<li>BigInt (trailing N), BigDecimal (trailing M)</li>
<li>Strings in double quotes, characters in &#8220;&#8221;, reg ex are started with a #</li>
<li>literal true and false, nil is the same as Java null</li>
<li>symbols are words in your program you want to reference from somewhere else, always resolve to something else</li>
<li>keywords are a special type of symbol, start with a colon :, fixed labels that have no meaning, used for names of fields often, close to enum in Java</li>
<li>REPL &#8211; read, eval, print, loop &#8211; from LISP, all the steps are separate which is different to interactive terminal</li>
<li>every expression starts with an expression, everything returns an expression which is why you get nil when doing a println</li>
<li>REPL *1 will get you most recently used expression</li>
<li>print and println will give you human readable, prn and pr will give you the machine readable output</li>
<li>list are written in parens, usually represent function calls</li>
<li>vectors usually reflect collections, in []</li>
<li>maps are key value collections, in {}</li>
<li>set starts with a hash and curly brackets</li>
<li>commas are whitespace in Clojure</li>
<li>first is the function position, usually starts wuth a function or an expression that returns a function</li>
<li>quote (&#8216;) is syntactic sugar for quote, prevents evaluation, common issue when starting Clojure when dealing with lists</li>
<li>doc &#8211; built in documentation</li>
<li><a href="http://leiningen.org/">Leiningen</a> &#8211; built on Maven, hides complexity but gives you its goodness</li>
<li>project.clj &#8211; dependency file</li>
</ul>
<h3>Functions</h3>
<ul>
<li>functions are first class and values, most of the core code are pure functions (no side effects)</li>
<li>defn defines a named function (defn greet [name] &lt;body&gt;) is a definition called greet, passes a name and runs some functions, then call as (greet )</li>
<li>can have multiple aritys, [] is no arguments, others are the named arguments, useful way to provide defaults</li>
<li>&amp; in argument vector says next arguments gets all the remaining arguments in a list (0 or more)</li>
<li>fn is anonymous function with no name (fn [parms] body), to call it you can stick it at the head of a list, use this if you need to do something one time</li>
<li>shorter synatx is #(), and use % sign for the arguments, syntactic convenience</li>
<li>usually invoke a function by putting it at the head of the list</li>
<li>apply takes a function and list or collection or arguments, same as invoking a function on those arguments</li>
<li>let used for local variables, uilt into the compiler, takes a pair set of bindings (symbol and an evaluated expression) and then a body of any number of expressions</li>
<li>fn creates a closure, locals are stored and kept with the function</li>
<li>invoking Java &#8211; instantiation (Class. argument)</li>
<li>read Clojure inside out, read the inner most function and then read out</li>
</ul>
<h3>Expressions and Loops</h3>
<ul>
<li>in Clojure everything is an expression, always return a value even if that is nil, multiple expressions always return the last value</li>
<li>flow controls always return a value as well</li>
<li>logical false is false or nil, everything else is true, similar to the semantics in Ruby and Python</li>
<li>when is a macro &#8211; check and do a buch of things if evaluates true</li>
<li>cond &#8211; tree of if then else without lots of nesting, test &#8211; expression pair, stops when it hits the first true test, can end with an :else default by convention only</li>
<li>case &#8211; occasionally useful, like switch in Java, takes constants and returns value, if you don&#8217;t define a default you get an error, odd number of expressions, the last one is the default</li>
<li>dotimes &#8211; basic loop (dotimes [i 3]), only useful for side effects as it never returns a value</li>
<li>doseq &#8211; iterates over a collection, like for-each</li>
<li>for &#8211; not for looping, generates data, returns a sequence</li>
<li>recur &#8211; for recursion, rarely used, loop defines bindings which you recur</li>
<li>exceptions &#8211; don&#8217;t use them much in Clojure, no checked exceptions, try-catch-finally as per Java, throw to throw an exception</li>
<li>ex-info and ex-data that allows you to pass back a map</li>
<li>with-open &#8211; convenience wrapper, works with any method that needs to be closed</li>
</ul>
<h3>Namespaces</h3>
<ul>
<li>Clojure runtime is a singleton within the JVM</li>
<li>namespaces allow you thave the same name mean different things in different places</li>
<li>ns &#8211; use macro at the top of the source file to create a namespace, :require keyword to load the dependent libraries</li>
<li>implicit mapping between namespaces and files, dots into slashes and hypens into underscores</li>
<li>ns :use : only is deprecated form of :require from 1.4 up</li>
<li>ns :import for importing Java classes, every namespace imports java.lang</li>
<li>in-ns to change namespaces</li>
<li>equivalent macros for when using the REPL instead of a file</li>
<li>a bunch of functions for returning namespace information, but would rarely use these</li>
<li>private vars are just a metdata symbol, use ^:private, not truly private or hidden</li>
</ul>
<h3>Collections</h3>
<ul>
<li>a class or a struct becomes a map in Clojure</li>
<li>clojure.set &#8211; mathematical set operations</li>
<li>vectors are functions, can call using the indices</li>
<li>mostly use vectors, lists are useful when you want to work at the head of the list as it is more efficient, like simulating a stack</li>
<li>seq &#8211; returns a sequential view of something, like an iterator but it is not an iterator, can get first or rest</li>
<li>range &#8211; infinite lazy sequence of integers</li>
<li>into &#8211; puts a sequence into a collection</li>
<li>take / drop &#8211; take the first n in the sequence, drop the first n in the sequence, also filter and remove</li>
<li>map &#8211; the essence of functional programming &#8211; calls a function on a sequence and returns a sequence, the functional equivalent of for/each</li>
<li>reduce &#8211; powerful, uses first element if not initiated</li>
<li>some &#8211; to return the first logical true in the sequence</li>
</ul>
<h3>Concurrency</h3>
<ul>
<li>concurrency &#8211; multiple things happening concurrently that are sharing the same state</li>
<li>deref &#8211; returns current state, shortcut is @&lt;ref&gt;</li>
<li>atom &#8211; basic container with mutable state, changes are atomic, synchronous</li>
<li>ref &#8211; coordinate and share identities, synchronous, must be iolated in a transaction, uses locking under the hood</li>
<li>ensure &#8211; ensure the state is the same when the transaction is completed</li>
<li>alter &#8211; change the value of a reference in a transaction, if another transaction tries to change it gets aborted</li>
<li>commute &#8211; same behaviour as alter but allows concurent updates in a transaction, use for counters, adding elements to a map, if you are not sure use alter</li>
<li>agent &#8211; asynchronous communication, atomic updates, ensure only one thing done at a time, every agent has its own queue</li>
<li>send &#8211; send an action (function) to an agent, execute in the order that you send them, can&#8217;t guarantee that other threads are not sending action, fixed size thread pool</li>
<li>send-off &#8211; variable size thread pool</li>
<li>vars &#8211; thread safe, global identity, alter-var-root to modify global state created by a def, by convention dynamic var is surrounded by * (called earmuffs)</li>
<li>swap! and reset!, convention to put a bang at the end of functions that have side effects or shouldn&#8217;t be put inside a transation</li>
<li>watches &#8211; experimental, takes 4 arguments &#8211; key, reference, old state and new state, you can then add-watch</li>
<li>future &#8211; background process, if you de-reference the future it will block (@&lt;ref&gt;)</li>
<li>promise &#8211; like a future but no running process, like a container, can wait for it to deliver that promise to another thread, can only be delivered once</li>
<li>realized? &#8211; to ask if a promise has been delivered</li>
</ul>
<h3>Polymorphism</h3>
<ul>
<li>polymorphism &#8211; two types protocols and multi-methods</li>
<li>type &#8211; what is the type of class using class or type</li>
<li>maps do not have a notion of type, record allow you to give a type to a map, defrecord creates a record, by convention the name has a capital, records are maps so we can call all the map functions</li>
<li>record automatically creates the constructor function called -&gt;&lt;function&gt;, map-&gt;&lt;function&gt; takes a map</li>
<li> when you create a record you are generating a Java class, useful when creating a lot of maps with the same structure or to implement protocols</li>
<li>protocol &#8211; like a Java interface, group of functions that do not provide an implementation, called based on the first argument, defprotocol to create the functions</li>
<li>convention _ is an argument I don&#8217;t care about</li>
<li>reify &#8211; creates anonymous types</li>
<li>extend-type and extend-protocol &#8211; allows you to create new interfaces to existing types, solves the monkey patching issue</li>
<li>multimethods &#8211; generic methods, much more flexible than protocols, uses defmulti and defmethod, an extensible switch</li>
</ul>
<h3>Macros</h3>
<ul>
<li>macro &#8211; pure functions &#8211; defmacro &#8211; code is input and output, define the symbols to reflect the code that we want, macroexpand-1 is used for testing and debugging to see what that macro does</li>
<li>syntax quote `</li>
<li>unquote ~ and unquote splicing ~@</li>
<li>most of the core language where not functions are macros, write macros for syntactic convenience</li>
</ul>
<h3>Clojure and the JVM</h3>
<ul>
<li>Clojure is tightly integrated to the JVM, is unlikely to be the bottleneck performance wise</li>
<li>arrays can use aset and aget to access, use Clojure Collections but maybe needed for interoperability, can use to-array and into-array</li>
<li>types and collections are all mapped over to Clojure</li>
<li>built in benchmarking in Clojure using time function, time a loop to get a better indication rather than just time on its own</li>
<li>by default everything is boxed in Clojure, but Clojure has limited support for long and double primitives</li>
<li>compile &#8211; pass your namespace, will give you ahead of time compile which gives a modest (30% &#8211; 40%) speed increase amongst other benefits, usually will us leinengen or another tool (lein compile)</li>
</ul>
<h3>ClojureScript</h3>
<ul>
<li>ClojureScript is designed to deliver optimised JavaScript</li>
<li>two pieces &#8211; ClojureScrpt compiler written in Clojure on the JVM, compiles Clojure to JavaScript, then the Google Closure compiler optimises for space for performance</li>
<li>lein-cljsbuild makes ClojureScript tolerable</li>
<li><a href="http://clojurescriptone.com/">ClojureScript One</a> but is superceded by <a href="http://pedestal.io/">Pedestal</a> now</li>
<li>testing frameworks &#8211; <a href="http://richhickey.github.io/clojure/clojure.test-api.html">Clojure.test</a>, <a href="https://github.com/marick/Midje">Midje</a> testing framework written by Brian Marick and <a href="https://github.com/Datomic/simulant">Simulant</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1442/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1442/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1442&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/05/12/an-introduction-to-clojure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/05/clojure.png" medium="image">
			<media:title type="html">Clojure</media:title>
		</media:content>
	</item>
		<item>
		<title>Three A&#8217;s of Awesome</title>
		<link>http://craigsmith.id.au/2013/04/24/three-as-of-awesome/</link>
		<comments>http://craigsmith.id.au/2013/04/24/three-as-of-awesome/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 04:43:36 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Leadership]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1438</guid>
		<description><![CDATA[Here is a highly inspirational talk on TED from Neil Pasricha, the author the 1,000 Awesome Things website. His three A&#8217;s of Awesome are: Attitude &#8211; life never goes to plan, but whatever life deals us we need to grieve and then face the future, take baby steps and move on Awareness &#8211; embrace your inner [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1438&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/ted_logo.gif"><img class="alignright size-full wp-image-1435" alt="TED" src="http://cds43.files.wordpress.com/2013/04/ted_logo.gif?w=540"   /></a>Here is a highly inspirational talk on TED from Neil Pasricha, the author the <a href="http://1000awesomethings.com">1,000 Awesome Things</a> website.</p>
<div class="embed-ted"><iframe src="http://embed.ted.com/talks/neil_pasricha_the_3_a_s_of_awesome.html" width="540" height="303" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
<p>His three A&#8217;s of Awesome are:</p>
<ul>
<li><span style="line-height:13px;">Attitude &#8211; life never goes to plan, but whatever life deals us we need to grieve and then face the future, take baby steps and move on</span></li>
<li>Awareness &#8211; embrace your inner three year old and see the world as if you are seeing it for the first time</li>
<li>Authenticity &#8211; be you and be cool with it, follow your heart and put in yourself in situations that you love</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1438/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1438&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/24/three-as-of-awesome/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/ted_logo.gif" medium="image">
			<media:title type="html">TED</media:title>
		</media:content>
	</item>
		<item>
		<title>Derek Sivers on TED</title>
		<link>http://craigsmith.id.au/2013/04/22/derek-sivers-on-ted/</link>
		<comments>http://craigsmith.id.au/2013/04/22/derek-sivers-on-ted/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 03:02:15 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Leadership]]></category>
		<category><![CDATA[Team Building]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1433</guid>
		<description><![CDATA[Watched a couple of short, unrelated videos on TED today from entrepreneur Derek Sivers. When starting a movement, it takes a leader but the first follower is actually an underestimated form of leadership in itself. … The first follower is what transforms a lone nut into a leader! There job is to make it OK [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1433&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/ted_logo.gif"><img class="alignright size-full wp-image-1435" alt="TED" src="http://cds43.files.wordpress.com/2013/04/ted_logo.gif?w=540"   /></a>Watched a couple of short, unrelated videos on <a href="http://www.ted.com/">TED</a> today from entrepreneur <a href="http://sivers.org/">Derek Sivers</a>.</p>
<div class="embed-ted"><iframe src="http://embed.ted.com/talks/derek_sivers_how_to_start_a_movement.html" width="540" height="303" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
<p>When starting a movement, it takes a leader but the first follower is actually an underestimated form of leadership in itself. … The first follower is what transforms a lone nut into a leader! There job is to make it OK for others to join and to make it more safe.</p>
<div class="embed-ted"><iframe src="http://embed.ted.com/talks/derek_sivers_weird_or_just_different.html" width="540" height="303" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
<p>Whatever brilliant ideas you may have or hear, the opposite may also be true. He gives the example of naming streets in Western culture, but blocks in Japan and how eastern doctors get paid for keeping you healthy, not treating you when you are sick.</p>
<div class="embed-ted"><iframe src="http://embed.ted.com/talks/derek_sivers_keep_your_goals_to_yourself.html" width="540" height="303" frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
<p>Keep your goals to yourself because telling someone your goal makes it less likely to happen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1433/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1433&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/22/derek-sivers-on-ted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/ted_logo.gif" medium="image">
			<media:title type="html">TED</media:title>
		</media:content>
	</item>
		<item>
		<title>Tech Connect 2013 Brisbane Review</title>
		<link>http://craigsmith.id.au/2013/04/20/tech-connect-2013-brisbane-review/</link>
		<comments>http://craigsmith.id.au/2013/04/20/tech-connect-2013-brisbane-review/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 02:31:52 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Lean Startup]]></category>
		<category><![CDATA[YOW!]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1417</guid>
		<description><![CDATA[With thanks to my very good friends at SlatteryIT, I headed off to Tech Connect 2013 in Brisbane this week to network with the Brisbane startup community. Brisbane Lord Mayor Graham Quirk kicked off the day by reaffirming the Digital Brisbane strategy which already has seen the appointment of a Chief Digital Officer, a visiting entrepreneurs [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1417&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/techconnect2013.jpg"><img class="alignright size-medium wp-image-1420" alt="Tech Connect 2013" src="http://cds43.files.wordpress.com/2013/04/techconnect2013.jpg?w=300&#038;h=150" width="300" height="150" /></a>With thanks to my very good friends at <a href="http://www.slatteryit.com.au/">SlatteryIT</a>, I headed off to <a href="http://www.techconnect2013.com.au/QLD/index.php">Tech Connect 2013 in Brisbane</a> this week to network with the Brisbane startup community.</p>
<p>Brisbane Lord Mayor <a href="http://www.grahamquirk.com.au/">Graham Quirk</a> kicked off the day by reaffirming the <a href="http://www.brisbanemarketing.com.au/digitalbrisbanehub">Digital Brisbane strategy</a> which already has seen the appointment of a <a href="http://www.linkedin.com/in/kieranohea">Chief Digital Officer</a>, a visiting entrepreneurs program and a strategy to attract more startups in Brisbane. He was keen to see more success stories in Brisbane, following on from start ups like <a href="http://halfbrick.com/">Halfbrick</a>, the inventors of <a href="http://fruitninja.com/">Fruit Ninja</a>.</p>
<p style="text-align:center;"><a href="https://lh3.googleusercontent.com/-vMYlBUiBtLQ/UXH4K9UESHI/AAAAAAAAAzw/MRPQCsxKiTI/s1029/Tech+Connect+2013+Graham+Quirk.JPG"><img class="aligncenter" alt="" src="https://lh3.googleusercontent.com/-vMYlBUiBtLQ/UXH4K9UESHI/AAAAAAAAAzw/MRPQCsxKiTI/s1029/Tech+Connect+2013+Graham+Quirk.JPG" width="617" height="463" /></a></p>
<p>Here are my notes from the sessions.</p>
<h2>Enabling Entrepreneurship</h2>
<p><a href="https://twitter.com/steepdecline">Tyler Crowley</a> is the first speaker to be brought to Brisbane as part of the visiting entrepreneurs program. Tyler is a well known and respected entrepreneur, best known to me as the co-host of the <a href="http://thisweekinstartups.com/">This Week in Startups</a> podcast. I am not sure if there was meant to be any direction to this session, but it turned out to be a rambling question and answer session.</p>
<ul>
<li>bring awareness to the community by getting people to tweet for being at an event &#8211; you will be surprised how quickly the city will get recognised</li>
<li>startups tend to congregate in the same area &#8211; in San Francisco it is around the <a href="https://twitter.com/">Twitter</a> office, in Palo Alto it is around University Avenue and in Los Angeles it is around Santa Monica, places that have startup centres benefit due to the cluster effect, cities like Stockholm are suffering because of a lack of this</li>
<li><a href="http://www.rivercitylabs.net/">River City Labs</a> is probably currently the nexus of the community in Brisbane</li>
<li>the crowd funding model is still on the horizon and should be awesome for startups outside Silicon Valley, <a href="https://angel.co/">AngelList</a> just got approval to have a crowd funding model from the SEC in the last week</li>
<li>another company getting acquired in the next 6 months will really put Brisbane on the map</li>
<li>attracting VCs &#8211; LA does content very well, San Francisco does social networking very well, so attract the kind of startups to the industry that you do well and get that message out</li>
<li>Brisbane has incubators like River City Labs (private) and <a href="http://www.ilabaccelerator.com/">ilab</a> (government / university)</li>
<li>documentarians are important &#8211; <a href="http://techzulu.com/">TechZulu</a> in LA and <a href="http://scobleizer.com/">Scobleizer</a> in San Francisco &#8211; provides a window to everyone outside, TechZulu is a great model, it took two years as a labour of love until it became profitable, the mainstream media follows when it becomes popular and it will explode</li>
<li>Brisbane is in the frustration phase of funding and media coverage &#8211; they will take notice when they become embarrassed by the success of startups and documentarians &#8211; currently at the tipping point, it is inevitable!</li>
<li>if your city had a blank canvas &#8211; getting a nest is important, support the documentarian, support angel events, support local meetups and events!, hold regular monthly events, calendars and job boards, strategy to attract outsiders to get the &#8220;Apple Store effect&#8221;</li>
<li>This Week in Startups &#8211; is the global meeting place to inspire people</li>
<li>build a startup map of Brisbane, one exists of Australia, maintain a database like <a href="http://www.crunchbase.com/">CrunchBase</a></li>
<li>it is time for the banks to wake up and support startups like <a href="http://www.svb.com/">Silicon Valley Bank</a> who are now spreading as the major banks are asleep at the wheel, there are opportunities for supporting industries to step up</li>
</ul>
<h2>Think Big!</h2>
<p><a href="http://en.wikipedia.org/wiki/Matt_Barrie">Matt Barrie</a> is the creator of <a href="http://www.freelancer.com/">Freelancer</a>, which is the worlds largest outsourcing marketplace. I was really looking forward to seeing this talk and it did not disappoint! His <a href="http://www.techconnect2013.com.au/QLD/preso/TechConnect-2013-QLD-Matt-Barrie.pdf">presentation is also available online</a>.</p>
<p style="text-align:center;"><a href="https://lh5.googleusercontent.com/-uBqHT9Kfi9E/UXH4MA4TyXI/AAAAAAAAAz4/gxrzHR2Uus4/s1029/Tech+Connect+2013+Matt+Barrie.JPG"><img class="aligncenter" alt="" src="https://lh5.googleusercontent.com/-uBqHT9Kfi9E/UXH4MA4TyXI/AAAAAAAAAz4/gxrzHR2Uus4/s1029/Tech+Connect+2013+Matt+Barrie.JPG" width="617" height="463" /></a></p>
<ul>
<li>software is eating the world &#8211; the biggest bookstore in the world is digital (<a href="http://www.amazon.com/">Amazon</a>), Scrapbooking (<a href="http://pinterest.com/">Pinterest</a>), <a href="https://evernote.com/">Evernote</a>, maps, music, yellow pages, fashion, money, real estate, jobs, etc, etc, etc&#8230;</li>
<li>66% of the worlds population are yet to join the Internet</li>
<li>demographics are changing and aging &#8211; lots of opportunities in this space as well</li>
<li>lots of online learning opportunities &#8211; you can design logos easily via <a href="http://envato.com/">Envato</a>, <a href="http://www.stanford.edu/">Stanford University</a> had 170,000 online students enrolled in an <a href="https://www.ai-class.com/">Artificial Intleligence course</a> that normally attracted 250 people and the highest achievers were outside Harvard, there are also options like <a href="https://www.coursera.org/">Coursera</a> and <a href="https://www.khanacademy.org/">Khan Academy</a> amongst others</li>
<li>created Freelancer.com &#8211; we are now a service economy, the world is becoming very globalised, crowd sourcing (outsourcing has now turned to crowd sourcing eg. logo design)</li>
<li><a href="http://www.freelancer.com.au/contest/Expose-the-Freelancer-com-Logo-3286.html">Exposé the Freelancer.com logo!</a> &#8211; crazy pushing the boundaries of crowd sourcing, also <a href="http://www.kickstarter.com/">Kickstarter</a> and the <a href="http://www.kickstarter.com/projects/597507018/pebble-e-paper-watch-for-iphone-and-android">Pebble Watch</a> &#8211; wanted $100,000 to build, raised $10 million!</li>
<li>Kickstarter funds more projects in arts than the US government, the next big thing is musc</li>
<li><a href="http://www.thomaslfriedman.com/bookshelf/the-world-is-flat">The World is Flat</a></li>
<li>parabolic growth comes from distribution firehoses eg <a href="http://company.zynga.com/games/cityville">CityVille</a> growth in <a href="http://www.facebook.com/">Facebook</a>, <a href="http://www.viddy.com/">Viddy</a> for reading news in Facebook, <a href="https://www.google.com/">Google</a>, <a href="http://en.reddit.com/">Reddit</a></li>
<li>you need to strike early, before the idea gets crowded eg. games in the AppStore like <a href="http://www.angrybirds.com/">Angry Birds</a> who owned the market early</li>
<li>the new metric is growth &#8211; referrals are extremely important &#8211; see <a href="http://www.slideshare.net/dmc500hats/startup-metrics-for-pirates-long-version">Startup Metrics for Pirates</a></li>
</ul>
<iframe src='http://www.slideshare.net/slideshow/embed_code/89026' width='540' height='443'></iframe>
<ul>
<li>all the software you need is free or cheap</li>
<li>Reddit.com ha a sub-site for everything</li>
<li>sites like <a href="http://www.retailmenot.com/">RetailMeNot</a> started with $30, <a href="http://digg.com/">Digg</a> started with $60</li>
<li>the first dotcom bust was due to bad business models and a strong reliance on advertising, but in reality we are still in the original boom</li>
<li><a href="http://zynga.com/">Zynga</a> &#8211; 96% of users don&#8217;t buy anything, the 4% that bought a cow to impress thir friends raised them $1.2 billion</li>
<li>many companies are not ready for growth, a mess internally and financially</li>
<li>there is lots of potential to replace people with algorithms and insights</li>
<li>in Australia we need to find a way to build technical businesses in the financial sector, like we do for mining</li>
<li>enrolments in engineering is down 60% in the middle of a technology boom, we need to start seeding interest back at school level</li>
<li>any job that can be described by an algorithm can be turned into software</li>
<li>Australia is a good place to base a startup, easier to hire people and start a network, but our exchange rate is crippling and if it rises it could become a major problem</li>
<li>you can build a big business targeted at the local market (eg <a href="http://www.realestate.com.au/buy">Realestate.com.au</a>), but always think global</li>
<li><a href="http://www.kpcb.com/insights/2012-internet-trends-update">Mary Meeker presentations</a> should be used more in presentations</li>
</ul>
<iframe src='http://www.slideshare.net/slideshow/embed_code/15474339' width='540' height='443'></iframe>
<h2>Money To Grow</h2>
<p>This panel included <a href="https://twitter.com/johnhummelstad">John Hummelstad</a> (<a href="http://ephox.com/">Ephox</a> and <a href="http://www.conceptsafety.com.au/">Concept Safety Systems</a>), <a href="http://www.linkedin.com/pub/sean-teahan/13/399/a13">Sean Teahan</a> (<a href="http://nimble.com.au/">Nimble</a>) and <a href="http://www.linkedin.com/pub/doron-ben-meir/0/32/32a">Doron Ben-Meir</a> (<a href="http://www.commercialisationaustralia.gov.au/">Commercialisation Australia</a>).</p>
<p style="text-align:center;"><a href="https://lh4.googleusercontent.com/-dXpPNB0QkZw/UXH4NXcdLuI/AAAAAAAAA0A/31kw3icA18c/s1029/Tech+Connect+2013+Money+To+Grow.JPG"><img class="aligncenter" alt="" src="https://lh4.googleusercontent.com/-dXpPNB0QkZw/UXH4NXcdLuI/AAAAAAAAA0A/31kw3icA18c/s1029/Tech+Connect+2013+Money+To+Grow.JPG" width="617" height="463" /></a></p>
<ul>
<li>options include borrowing from friends, earning a buck first and investing your own money, earning from the bank (usually $2 million and up), funding by credit card, selling something, grants and R&amp;D concessions, pay in 60 / collect in 30 days, angel network, information memorandum by getting close to OEM&#8217;s particularly those who you might potentially sell to, Venture Capital but this is decling, crowdsourcing</li>
<li>fund like minded companies to work closely with you</li>
<li>relationships at a strategic level are hard, but can bring rewards in the long term</li>
<li><a href="http://www.businessweek.com/smallbiz/running_small_business/archives/2008/07/cfimitym.html">CFIMITYM</a> &#8211; &#8220;cash flow is more important than your mother&#8221;, business owners are awake at 2am worrying about cash</li>
<li>lean startups work very well for technology types of businesses, cash hungrier models need to exist because we still need to build products like iPads</li>
<li>figure out who in the supply chain cares about your type of business &#8211; they are good areas to look for investors</li>
<li>the large amount of successful businesses do not have venture capital funding &#8211; should only consider this if it brings value</li>
<li>essential that you break every rule in private funding that you can&#8217;t break in the public market</li>
<li>Australian Government has uncapped 45c / dollar R&amp;D tax incentives (quarterly in arrears), then you move to incentives from Commercialisation Australia</li>
<li><a href="http://www.enterpriseconnect.gov.au/">Enterprise Connect</a> is great way to take your business through the washing machine &#8211; your business needs to be able to stand up to audit</li>
<li>getting a commercialisation grant &#8211; it is your onus to prove that your invention works, once that is proved the commercialisation then needs to be tested</li>
<li>make sure when meeting potential funders that you can answer how you are going to solve their problem, also make sure you know all about them, use tools like <a href="http://www.linkedin.com/">LinkedIn</a> and be educated, it is just courtesy</li>
<li>important to have front foot sales to fuel the fire but most importantly to get validation from the customer base, it also builds credibility by reinvesting your profits, biggest issue with technical companies in Australia is there an aversion to being a saleman, it is all about selling and if you are not prepared to do this then don&#8217;t start!, you are selling yourself not the product</li>
<li>selling is learning &#8211; you need to learn what your customer wants and your value proposition</li>
</ul>
<h2>Accelerating Growth</h2>
<p>This panel included <a href="http://au.linkedin.com/in/natasharawlings">Natasha Rawlings</a> (<a href="http://streethawk.com/">StreetHawk</a>), <a href="http://ricrichardson.blogspot.com.au/">Ric Richardson</a> (inventor of software activation amongst many other thing) and <a href="au.linkedin.com/pub/stephen-baxter/0/448/21">Steve  Baxter</a> (River City Labs). Ric mentioned that he gets lots of attention from his appearances on Australian Story (<a href="http://www.abc.net.au/austory/specials/thebigdeal/default.htm">The Big Deal</a> and <a href="http://www.abc.net.au/austory/specials/adonedeal/">A Done Deal</a>).</p>
<p style="text-align:center;"><img class="aligncenter" alt="" src="https://lh4.googleusercontent.com/-PHqVvNVxse4/UXH4OvQQyWI/AAAAAAAAA0I/VUzpLJEUosg/s1029/Tech+Connect+2013+Accelerating+Growth.JPG" width="617" height="463" /></p>
<ul>
<li>your first role is not to be the CEO but the Chairman of the Board (looks at the business to ensure they have the ideal CEO and are delivering to plan)</li>
<li>find the right people and partner with people who have done his before and hold them to their agreements</li>
<li>the right investors can bring you the introductions to partners, even if they decide not to invest in you</li>
<li>always deliver a good product and don&#8217;t piss the customer off &#8211; service is still important</li>
<li>raising equity starts with a plan &#8211; do this only when you need the funds, it should be the last resort, ensure you have a <a href="http://en.wikipedia.org/wiki/Capitalization_table">capitalisation (cap) table</a> so you can understand what will happen to your equity &#8211; start with 30% for founders, 30% for management and 30% for investors</li>
<li>always start a business by looking at what it will look like when it is finished</li>
<li><a href="http://online.stanford.edu/course/technology-entrepreneurship">Stanford University has a useful entrepreneurial course</a>, be disciplined when following the Lean Startup model and have a plan</li>
<li>build a better prototype and often it will sell itself, other people will tell you quickly what it is worth</li>
<li>network deeply, meet people twice, ask questions even the ridiculous ones</li>
<li>investors are there to support and provide leadership, when you start pulling out agreements you know things are going wrong, like to know that they have listened</li>
</ul>
<h2>Setting Up for Global Success</h2>
<p>This panel included <a href="http://www.linkedin.com/in/okanebrendan">Brendan O&#8217;Kane</a> (<a href="http://www.otherlevels.com/">OtherLevels</a>), <a href="http://www.linkedin.com/in/jeremycolless">Jeremy Colless</a> (<a href="http://artesianinvest.com/">Artesian Venture Partners</a>, which was spun out of ANZ) and <a href="au.linkedin.com/pub/david-israel/0/93/860">David Israel</a> (<a href="http://www.uniquest.com.au/">UniQuest</a>)</p>
<p style="text-align:center;"><img class="aligncenter" alt="" src="https://lh4.googleusercontent.com/-fidxhuCRiBc/UXH4Pwuz17I/AAAAAAAAA0Q/4LbfJp33jn8/s1029/Tech+Connect+2013+Setting+Up+For+Global+Success.JPG" width="617" height="463" /></p>
<ul>
<li> base yourself close to your prospects</li>
<li>important to think global from day one, particularly in the technical field, be worlds best rather than Australia&#8217;s best</li>
<li>take advantage of the Australian talent spread across the world, utilise international students particularly those from north of Australia</li>
</ul>
<h2>Building Value</h2>
<p>This final panel included <a href="http://www.linkedin.com/in/annemariebirkill">Anne-Marie Birkill</a> (<a href="http://www.one-ventures.com.au/">OneVentures</a>), <a href="http://www.linkedin.com/in/waldie">Bob Waldie</a> (<a href="http://www.opengear.com/">Opengear</a>) and Steve Baxter.</p>
<p style="text-align:center;"><img class="aligncenter" alt="" src="https://lh5.googleusercontent.com/-6XprqRZVLZg/UXH4QhcdgRI/AAAAAAAAA0Y/SrSeNoxdcYU/s1029/Tech+Connect+2013+Building+Value.JPG" width="617" height="463" /></p>
<ul>
<li> people are cheap &#8211; premium prices do not work, people care about price</li>
<li>service is key &#8211; give good service</li>
<li>businesses are not charities, lifestyle is not a sustainable currency, you need to make money</li>
<li>ideas are not traction &#8211; get off your arse and learn what you don&#8217;t know</li>
<li>when looking for value, you are looking to triple an investment</li>
<li>success is building a valuable, non-charitable business, a second round of investment is not success</li>
<li>don&#8217;t think you can take a great technology idea to a crappy service industry eg taxis &#8211; they are not interested</li>
<li>make sure you formalise arrangements, in case things go bad, write down the exit conditions and make sure you are aligned</li>
</ul>
<p>Overall a great day of presentations, panels and meeting new and interesting people in Brisbane technical and startup community.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1417/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1417&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/20/tech-connect-2013-brisbane-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/techconnect2013.jpg?w=300" medium="image">
			<media:title type="html">Tech Connect 2013</media:title>
		</media:content>

		<media:content url="https://lh3.googleusercontent.com/-vMYlBUiBtLQ/UXH4K9UESHI/AAAAAAAAAzw/MRPQCsxKiTI/s1029/Tech+Connect+2013+Graham+Quirk.JPG" medium="image" />

		<media:content url="https://lh5.googleusercontent.com/-uBqHT9Kfi9E/UXH4MA4TyXI/AAAAAAAAAz4/gxrzHR2Uus4/s1029/Tech+Connect+2013+Matt+Barrie.JPG" medium="image" />

		<media:content url="https://lh4.googleusercontent.com/-dXpPNB0QkZw/UXH4NXcdLuI/AAAAAAAAA0A/31kw3icA18c/s1029/Tech+Connect+2013+Money+To+Grow.JPG" medium="image" />

		<media:content url="https://lh4.googleusercontent.com/-PHqVvNVxse4/UXH4OvQQyWI/AAAAAAAAA0I/VUzpLJEUosg/s1029/Tech+Connect+2013+Accelerating+Growth.JPG" medium="image" />

		<media:content url="https://lh4.googleusercontent.com/-fidxhuCRiBc/UXH4Pwuz17I/AAAAAAAAA0Q/4LbfJp33jn8/s1029/Tech+Connect+2013+Setting+Up+For+Global+Success.JPG" medium="image" />

		<media:content url="https://lh5.googleusercontent.com/-6XprqRZVLZg/UXH4QhcdgRI/AAAAAAAAA0Y/SrSeNoxdcYU/s1029/Tech+Connect+2013+Building+Value.JPG" medium="image" />
	</item>
		<item>
		<title>Scrum Australia 2013: Scrum Masters: The Full-Time Role Conundrum</title>
		<link>http://craigsmith.id.au/2013/04/14/scrum-australia-2013-scrum-masters-the-full-time-role-conundrum/</link>
		<comments>http://craigsmith.id.au/2013/04/14/scrum-australia-2013-scrum-masters-the-full-time-role-conundrum/#comments</comments>
		<pubDate>Sun, 14 Apr 2013 03:13:29 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[YOW!]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1405</guid>
		<description><![CDATA[My presentation from Scrum Australia 2013 called “Scrum Masters: The Full Time Role Conundrum” is available on Slideshare. The Scrum Guide defines the Scrum Team as being made up of three primary roles: Product Owner, Development Team and Scrum Master. The role of the Scrum Master is often misunderstood, particularly by management, so often questions start to [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1405&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/scrumaustralia.jpg"><img class="alignright size-medium wp-image-1412" alt="Scrum Australia 2013" src="http://cds43.files.wordpress.com/2013/04/scrumaustralia.jpg?w=300&#038;h=55" width="300" height="55" /></a>My presentation from <a href="http://www.scrum.com.au/">Scrum Australia 2013</a> called “Scrum Masters: The Full Time Role Conundrum” is available on <a href="http://www.slideshare.net/smithcdau/scrum-masters-the-full-time-role-conundrum">Slideshare</a>.</p>
<blockquote><p>The Scrum Guide defines the Scrum Team as being made up of three primary roles: Product Owner, Development Team and Scrum Master. The role of the Scrum Master is often misunderstood, particularly by management, so often questions start to get asked such as “can I share the Scrum Master across teams”, “can the Scrum Master do Project Management” and “can the role be rotated”?</p>
<p>In this talk we will take a look at some of the misconceptions around the Scrum Master role, discuss how it fits into the organisational structure and tackle the age-old question of whether the Scrum Master is a full time role. We will also look at an improvement plan template to help Scrum Masters improve in their role.</p></blockquote>
<iframe src='http://www.slideshare.net/slideshow/embed_code/18765018' width='540' height='443'></iframe>
<p>Some of the comments from Twitter included:</p>
<blockquote class='twitter-tweet'><p>@<a href="https://twitter.com/smithcdau">smithcdau</a> thx for the nice words about being <a href="http://twitter.com/search?q=%23Ri" title="#Ri">#Ri</a> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  /cc @<a href="https://twitter.com/AgileRenee">AgileRenee</a>&mdash; <br />Matthew Hodgson (@magia3e) <a href='http://twitter.com/#!/magia3e/status/321812221233594368' data-datetime='2013-04-10T02:29:47+00:00'>April 10, 2013</a></p></blockquote>
<blockquote class='twitter-tweet'><p>Is a <a href="http://twitter.com/search?q=%23scrum" title="#scrum">#scrum</a> master a full time roll  <a href="http://yfrog.com/ock0rpwj"> yfrog.com/ock0rpwj</a> with @<a href="https://twitter.com/smithcdau">smithcdau</a> full room! <a href="http://twitter.com/search?q=%23auscrum" title="#auscrum">#auscrum</a>&mdash; <br />Renee Troughton (@AgileRenee) <a href='http://twitter.com/#!/AgileRenee/status/321803275886264321' data-datetime='2013-04-10T01:54:14+00:00'>April 10, 2013</a></p></blockquote>
<blockquote class='twitter-tweet'><p>At the end of the day, our purpose is to deliver good software. Everything else is a mean to an end. Cc @<a href="https://twitter.com/smithcdau">smithcdau</a> <a href="http://twitter.com/search?q=%23auscrum" title="#auscrum">#auscrum</a>&mdash; <br />Herry Wiputra (@hwiputra) <a href='http://twitter.com/#!/hwiputra/status/321812874706161666' data-datetime='2013-04-10T02:32:22+00:00'>April 10, 2013</a></p></blockquote>
<blockquote class='twitter-tweet'><p>Shout out to @<a href="https://twitter.com/smithcdau">smithcdau</a>, @<a href="https://twitter.com/magia3e">magia3e</a> and @<a href="https://twitter.com/lpaulslonghurst">lpaulslonghurst</a> for excellent <a href="http://twitter.com/search?q=%23auscrum" title="#auscrum">#auscrum</a> presentations. It was great learning from you&mdash; <br />Michael Rembach (@mrembach) <a href='http://twitter.com/#!/mrembach/status/322298921726660608' data-datetime='2013-04-11T10:43:45+00:00'>April 11, 2013</a></p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1405&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/14/scrum-australia-2013-scrum-masters-the-full-time-role-conundrum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/scrumaustralia.jpg?w=300" medium="image">
			<media:title type="html">Scrum Australia 2013</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter Summary March 2013</title>
		<link>http://craigsmith.id.au/2013/04/14/twitter-summary-march-2013/</link>
		<comments>http://craigsmith.id.au/2013/04/14/twitter-summary-march-2013/#comments</comments>
		<pubDate>Sun, 14 Apr 2013 02:49:52 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1402</guid>
		<description><![CDATA[A summary of my Twitter posts from March 2013: 2013-03-22 06:07:13 @yow_oz @codemiller @kevinoneill Actually we did video it in Melbourne, but I am not sure how good the audio quality is&#8230; 2013-03-21 21:51:33 @AgileRenee great conversation as always&#8230; Victory is mine! 2013-03-21 21:47:34 RT @tottinge: Too many people think their job is to survive this week, when it [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1402&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg"><img class="size-thumbnail wp-image-1397 alignleft" alt="Twitter" src="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg?w=150&#038;h=134" width="150" height="134" /></a>A summary of my <a href="http://twitter.com/smithcdau" target="_parent">Twitter</a> posts from March 2013:<img title="More..." alt="" src="http://cds43.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" /><span id="more-1402"></span></p>
<p>2013-03-22 06:07:13<br />
@yow_oz @codemiller @kevinoneill Actually we did video it in Melbourne, but I am not sure how good the audio quality is&#8230;</p>
<p>2013-03-21 21:51:33<br />
@AgileRenee great conversation as always&#8230; Victory is mine!</p>
<p>2013-03-21 21:47:34<br />
RT @tottinge: Too many people think their job is to survive this week, when it has always been to build a better &#8220;next week.&#8221;</p>
<p>2013-03-21 08:21:15<br />
@AgileRenee making headlines I suspect&#8230;</p>
<p>2013-03-21 08:15:53<br />
Enthusiastic crowd at Sydney #yownight with @kevinoneill @Optiver (@Optiver w/ 4 others) [pic]: <a href="http://t.co/5zKP2hYVwu">http://t.co/5zKP2hYVwu</a></p>
<p>2013-03-21 01:33:45<br />
Wheels down SYD (@ T2 Multi-User Domestic Terminal w/ 3 others) <a href="http://t.co/YxacyOJIzM">http://t.co/YxacyOJIzM</a></p>
<p>2013-03-20 23:51:46<br />
Agile is great but don&#8217;t bet lives on it&#8230; <a href="http://t.co/jPIMoOo36m">http://t.co/jPIMoOo36m</a> Hmmm&#8230;</p>
<p>2013-03-20 23:20:23<br />
Off to Sydney for 1. #yownight 2. Check up on @agilerenee (@ The Lounge (Virgin Australia) &#8211; @virginaustralia) <a href="http://t.co/VFqL0bUyjX">http://t.co/VFqL0bUyjX</a></p>
<p>2013-03-20 09:23:23<br />
Great turnout for Brisbane #yownight with @kevinoneill @suncorp (@ Brisbane Square w/ 3 others) [pic]: <a href="http://t.co/6srL1jnEDj">http://t.co/6srL1jnEDj</a></p>
<p>2013-03-20 01:07:08<br />
Wheels down BNE #bneontime (@ Brisbane Domestic Terminal &#8211; @brisbaneairport w/ 3 others) <a href="http://t.co/EVaVjReRWZ">http://t.co/EVaVjReRWZ</a></p>
<p>2013-03-19 23:16:37<br />
&#8230;and back to Brisbane, for the next #yownight! (@ Virgin Australia Lounge w/ 5 others) <a href="http://t.co/xhXmdAiRpI">http://t.co/xhXmdAiRpI</a></p>
<p>2013-03-19 07:31:31<br />
Full house at @yow_oz Night Melbourne with @kevinoneill (@ Jasper Hotel w/2 others) [pic]: <a href="http://t.co/dozuvaBaB1">http://t.co/dozuvaBaB1</a></p>
<p>2013-03-19 07:28:48<br />
I&#8217;m at Jasper Hotel (Melbourne, VIC) <a href="http://t.co/0TzVMKwvte">http://t.co/0TzVMKwvte</a></p>
<p>2013-03-19 00:15:46<br />
Wheels down MEL (@ T3 (Domestic &#8211; Virgin Australia &amp; Regional Express) Terminal) <a href="http://t.co/fblN33fiLW">http://t.co/fblN33fiLW</a></p>
<p>2013-03-18 21:49:19<br />
@lisacrispin you are welcome here anytime! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>2013-03-18 21:43:32<br />
RT @AgileRenee: #Agile is an umbrella term: <a href="http://t.co/emLZWe3SDi">http://t.co/emLZWe3SDi</a></p>
<p>2013-03-18 21:40:03<br />
@lisacrispin yes, 2 hour flight, quick overnight trip&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>2013-03-18 21:33:38<br />
24 hour trip to Melbourne for @yow_oz Night (@ The Lounge (Virgin Australia) &#8211; @virginaustralia) <a href="http://t.co/f8RKWc9T4q">http://t.co/f8RKWc9T4q</a></p>
<p>2013-03-18 02:22:03<br />
@markmansour Thanks Mark, see you there!</p>
<p>2013-03-17 10:11:20<br />
I am watching Formula 1, Rolex Grand Prix of Au&#8230; (S2013E03). <a href="http://t.co/4b0ac4sxkw">http://t.co/4b0ac4sxkw</a> #F1</p>
<p>2013-03-15 14:34:55<br />
The @virginaustralia website will still not let me book a flight, goes into endless loop. Can&#8217;t find anyone interested in fixing it either..</p>
<p>2013-03-15 11:40:18<br />
@jimmyjazz68 can&#8217;t comment on the system, but DM me ASAP and well get your submission into the system another way</p>
<p>2013-03-14 00:34:03<br />
Ahhh crud, now I need to find a replacement for Google Reader that works on a variety of platforms&#8230; #savegooglereader</p>
<p>2013-03-09 00:31:05<br />
RT @AgileRenee: Purpose driven versus opportunistic #Agile coaching: <a href="http://t.co/HQRUiZQRx2">http://t.co/HQRUiZQRx2</a></p>
<p>2013-03-08 11:48:55<br />
RT @JoshuaDowling: This is a classic kids&#8230; “@RedL1on: Photo: Read it upside down. <a href="http://t.co/vTj4jYrVIk">http://t.co/vTj4jYrVIk</a>”</p>
<p>2013-03-08 07:56:30<br />
RT @yow_oz: Last minute YOW! Lambda Jam Submissions flowing in! You still have time to submit your proposal! Last chance! <a href="http://t.co/bX" rel="nofollow">http://t.co/bX</a> &#8230;</p>
<p>2013-03-06 07:48:01<br />
RT @teale: RT @LynnWallenstein: Protip: Always stripe your tables on the even rows, that way if you only have one result it doesn’t look &#8230;</p>
<p>2013-03-06 05:28:37<br />
RT @yow_oz: Our first YOW! Update of 2013 is heading to your inbox! <a href="http://t.co/aYkjFdFh1a">http://t.co/aYkjFdFh1a</a></p>
<p>2013-03-06 05:27:28<br />
RT @rubyconf_au: The first batch of RubyConfAU 2013 videos are up! <a href="https://t.co/KyLVhJmwpV">https://t.co/KyLVhJmwpV</a> ^Keith</p>
<p>2013-03-06 05:26:25<br />
RT @yow_oz: A BIG! YOW! Wednesday! #yow2012 videos just uploaded: Don Reinertsen @mtnygard @mmcgrana &amp; Bryan Beckman / @headinthebox&#8230;</p>
<p>2013-03-06 01:00:16<br />
RT @MikeOrzen: 80% of meetings are non-value added because they are spent reporting conditions that should already be visible and access &#8230;</p>
<p>2013-03-06 00:59:16<br />
Windows 7/8 Quick tip: Hold shift when you right click a file and you get a menu to copy the full path to the clipboard #useful</p>
<p>2013-03-05 15:24:39<br />
Email has ruined the art of licking&#8230; (The Late Late Show with Craig Ferguson S09E11) <a href="http://t.co/6wC1n5TqXe">http://t.co/6wC1n5TqXe</a> #LateLateShow</p>
<p>2013-03-04 00:17:11<br />
RT @LarkosWB: Thinking about poor old @michaelcarus0, gets Norton on his machine, then ends up having to uninstall Windows anyway. #v8sc &#8230;</p>
<p>2013-03-03 03:26:13<br />
&#8216;The Simpsons&#8217; Do the &#8216;Harlem Shake&#8217; &#8230; D&#8217;Oh! We Mean Homer Shake <a href="http://t.co/D0z835yiBu">http://t.co/D0z835yiBu</a></p>
<p>2013-03-03 01:41:45<br />
RT @alexeykri: &#8220;if your code is crap, stickies on the wall won&#8217;t help&#8221; @henrikkniberg #scrum #kanban #agileindia2013</p>
<p>2013-03-03 09:58:40<br />
V8 Supercars Race 2 Adelaide: Some good racing today. Whatever you think of @shanvevg97, you have to admit that was good winning drive #v8sc</p>
<p>2013-03-02 09:31:17<br />
RT @redbullracingAU: That&#8217;s an incredible 90 wins for @craiglowndes888, putting him equal with Mark Skaife #90andcounting #givesyouwings &#8230;</p>
<p>2013-03-02 09:20:44<br />
V8 Supercars Race 1 Adelaide: After all the changes, the cream has risen to the top. Well done @craiglowndes888! #v8sc</p>
<p>2013-03-01 12:58:15<br />
The Bear Essentials of Safety &#8211;&gt; <a href="http://t.co/UkknIlg8yW">http://t.co/UkknIlg8yW</a> Nobody does airline safety videos like Air New Zealand! #airnzbear</p>
<p>2013-03-01 07:43:01<br />
@brown_note b (it might explain some of the reasons for a)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1402&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/14/twitter-summary-march-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg?w=150" medium="image">
			<media:title type="html">Twitter</media:title>
		</media:content>

		<media:content url="http://cds43.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" medium="image">
			<media:title type="html">More...</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter Summary February 2013</title>
		<link>http://craigsmith.id.au/2013/04/14/twitter-summary-february-2013/</link>
		<comments>http://craigsmith.id.au/2013/04/14/twitter-summary-february-2013/#comments</comments>
		<pubDate>Sun, 14 Apr 2013 02:41:51 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1400</guid>
		<description><![CDATA[A summary of my Twitter posts from February 2013: 2013-02-28 06:29:12 Peter Saddington on @agilescout &#38; Leveraging Human Capital (my latest interview for @InfoQ) http://t.co/sMJ4IbzvPv 2013-02-28 06:26:50 RT @InfoQ: Interview: Peter Saddington on Agile Scout &#38; Leveraging Human Capital http://t.co/klpL9DVVUe 2013-02-28 06:26:41 RT @InfoQ: Article: Refactoring Legacy Applications: A Case Study http://t.co/1PQXL6aDTC 2013-02-28 05:49:36 RT @yow_oz: Time for some more [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1400&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg"><img class="size-thumbnail wp-image-1397 alignright" alt="Twitter" src="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg?w=150&#038;h=134" width="150" height="134" /></a>A summary of my <a href="http://twitter.com/smithcdau" target="_parent">Twitter</a> posts from February 2013:<img title="More..." alt="" src="http://cds43.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" /><span id="more-1400"></span><!--more--></p>
<p>2013-02-28 06:29:12<br />
Peter Saddington on @agilescout &amp; Leveraging Human Capital (my latest interview for @InfoQ) <a href="http://t.co/sMJ4IbzvPv">http://t.co/sMJ4IbzvPv</a></p>
<p>2013-02-28 06:26:50<br />
RT @InfoQ: Interview: Peter Saddington on Agile Scout &amp; Leveraging Human Capital <a href="http://t.co/klpL9DVVUe">http://t.co/klpL9DVVUe</a></p>
<p>2013-02-28 06:26:41<br />
RT @InfoQ: Article: Refactoring Legacy Applications: A Case Study <a href="http://t.co/1PQXL6aDTC">http://t.co/1PQXL6aDTC</a></p>
<p>2013-02-28 05:49:36<br />
RT @yow_oz: Time for some more #yow2012 videos! In the latest set, learn from @ronbodkin, @jeffpatton, Michael Ficarra &amp; Jafar Husain&#8230;</p>
<p>2013-02-27 04:11:37<br />
I just unlocked the “Campus Explorer” badge on @foursquare for checking in to 10 different places on campus! <a href="http://t.co/fXGMnIjTZT">http://t.co/fXGMnIjTZT</a></p>
<p>2013-02-26 09:34:58<br />
Why work perks can backfire &#8211;&gt; <a href="http://t.co/4sMydVnZ0V">http://t.co/4sMydVnZ0V</a></p>
<p>2013-02-25 04:42:17<br />
25 Professional Comparison Tables &#8211;&gt; <a href="http://t.co/IELQtQf8SR">http://t.co/IELQtQf8SR</a></p>
<p>2013-02-24 23:50:09<br />
Interview and Book Review: Enterprise Software Delivery (my latest article for @InfoQ) &#8211;&gt; <a href="http://t.co/pT5to9Y6tP">http://t.co/pT5to9Y6tP</a> <a href="http://t.co/pT5to9Y6tP">http://t.co/pT5to9Y6tP</a></p>
<p>2013-02-24 23:47:04<br />
RT @InfoQ: Article: Interview and Book Review: Enterprise Software Delivery <a href="http://t.co/t5rgmQ9R">http://t.co/t5rgmQ9R</a></p>
<p>2013-02-23 10:07:03<br />
Wheels down BNE (and unusually early) (@ Brisbane Domestic Terminal w/ 3 others) <a href="http://t.co/oD7DsiATh5">http://t.co/oD7DsiATh5</a></p>
<p>2013-02-23 07:46:10<br />
@codemiller being able to even book a flight would be a nice start. Apparently @virginaustralia say its a known problem <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>2013-02-23 07:40:52<br />
Heading home <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  (@ Virgin Australia Lounge) <a href="http://t.co/uPRGY1Ed2k">http://t.co/uPRGY1Ed2k</a></p>
<p>2013-02-23 04:29:13<br />
Why do niche software vendors cripple their software with draconian manual licencing procedures. Todays #fail by @smartlibraries &amp; @feig_de</p>
<p>2013-02-21 23:37:35<br />
RT @genlevel: This ruby thing will never take off #rubyconf_au <a href="http://t.co/ip9THt4Nwf">http://t.co/ip9THt4Nwf</a></p>
<p>2013-02-21 22:34:44<br />
Day 2 of Ruby Conf Australia, full house&#8230; (@ Jasper Hotel w/ 5 others) [pic]: <a href="http://t.co/NCnyOYZhWl">http://t.co/NCnyOYZhWl</a></p>
<p>2013-02-21 07:06:51<br />
RT @chendo: How @tenderlove thinks how Melboune was named: #RubyConf_au <a href="http://t.co/s4k6u8vPwf">http://t.co/s4k6u8vPwf</a></p>
<p>2013-02-21 00:29:10<br />
GreenHopper Tip of the Month: How To Indicate you are Waiting <a href="http://t.co/ULtVe8e9Ra">http://t.co/ULtVe8e9Ra</a> Not as good as classic functionality, but a<br />
workaround</p>
<p>2013-02-20 22:12:34<br />
Time to get some Ruby Wisdom! @rubyconf_au (@ Jasper Hotel w/ 10 others) <a href="http://t.co/l50aiHgqUo">http://t.co/l50aiHgqUo</a></p>
<p>2013-02-19 02:36:17<br />
Wheels down MEL (@ T3 (Domestic &#8211; Virgin Australia &amp; Regional Express) Terminal) <a href="http://t.co/MMF4Nbxj">http://t.co/MMF4Nbxj</a></p>
<p>2013-02-18 23:49:36<br />
Bound for Melbourne for Ruby Conf&#8230; (at @virginaustralia) <a href="http://t.co/veAGraMV">http://t.co/veAGraMV</a></p>
<p>2013-02-16 11:16:17<br />
Dilbert on daily stand-ups: <a href="http://t.co/WKeCW2aD">http://t.co/WKeCW2aD</a></p>
<p>2013-02-15 13:21:58<br />
Firefighters don&#8217;t run into a fire, they walk&#8230; (watching NCIS, Gone S10E08) <a href="http://t.co/fI1ovlI4">http://t.co/fI1ovlI4</a> #NCIS</p>
<p>2013-02-15 05:17:52<br />
RT @yow_oz: Three new #yow2012 presentations now online for your Friday commute! Talks from John-Henry Harris, @mtnygard &amp; @abedra h &#8230;</p>
<p>2013-02-15 02:34:29<br />
Wow, still unable to book a @virginaustralia flight online since system upgrade, had to go through 25 minute call centre process #fail</p>
<p>2013-02-15 01:19:35<br />
RT @SJBartholomaeus: All four new-generation V8 Supercars lined up together at Sydney Motorsport Park #V8SC <a href="http://t.co/6cc6tbuy">http://t.co/6cc6tbuy</a></p>
<p>2013-02-14 02:26:29<br />
Variable Speed Retiming in Final Cut Pro X &#8211;&gt; <a href="http://t.co/Bg1feX7M">http://t.co/Bg1feX7M</a> Great for when synchronize clips doesn&#8217;t work out so well.</p>
<p>2013-02-11 01:56:56<br />
smithcdau: RT @yow_oz: Four great #yow2012 presentations now online! The @headinthebox keynote &amp; talks from @fgeorge52, @mjpt777 &amp; @kurt ht &#8230;</p>
<p>2013-02-06 08:36:15<br />
smithcdau: At Agile Brisbane meetup, @adrianlsmith leading discussion on Agile &amp; Innovation (@ Microsoft) <a href="http://t.co/5hUOppdR">http://t.co/5hUOppdR</a></p>
<p>2013-02-05 06:16:41<br />
smithcdau: @RedlandCouncil How about clearing the walkway on Old Cleveland Roast East that runs alongside the transfer station?</p>
<p>2013-02-05 05:38:50<br />
smithcdau: RT @DeadlyApps: It is hard to believe that scaling agile is something people want to look outside the agile manifesto for. Decouple your &#8230;</p>
<p>2013-02-05 05:14:40<br />
smithcdau: RT @leonardo_borges: Have you submitted your talk for @LambdaJam Australia yet? There&#8217;s great talks coming through! Where&#8217;s yours? CFP: &#8230;</p>
<p>2013-02-04 11:56:15<br />
smithcdau: RT @Fraank_Oceaan: Window washers at a children&#8217;s hospital - This deserves endless retweets <a href="http://t.co/lYspZV4Y">http://t.co/lYspZV4Y</a></p>
<p>2013-02-04 11:52:53<br />
smithcdau: @erik_petersen I assume you are going? I am tempted, but hadn&#8217;t made a firm decision.</p>
<p>2013-02-04 11:41:47<br />
smithcdau: Rule #38: Your case, your lead (watching NCIS, Phoenix S10E03) <a href="http://t.co/128DKMDf">http://t.co/128DKMDf</a> #NCIS</p>
<p>2013-02-04 04:27:55<br />
smithcdau: RT @rowanb: Announcement: Early-bird tickets now available for #Scrum #Australia 2013! Limited allocation so get in quick <a href="http://t.co/bL&#038;#8230" rel="nofollow">http://t.co/bL&#038;#8230</a>;</p>
<p>2013-02-03 23:58:15<br />
smithcdau: Mythical Man Month &#8211; The Cliff Notes &#8211;&gt; <a href="http://t.co/bEv2k1RS">http://t.co/bEv2k1RS</a></p>
<p>2013-02-02 12:29:50<br />
smithcdau: Starting to get the hang of Final Cut Pro, 5 days before my Trial Version expires&#8230;</p>
<p>2013-02-02 00:43:33<br />
smithcdau: @spidie Fragile means they throw it around more. It also sometimes means they leave it to last <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1400/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1400&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/14/twitter-summary-february-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg?w=150" medium="image">
			<media:title type="html">Twitter</media:title>
		</media:content>

		<media:content url="http://cds43.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" medium="image">
			<media:title type="html">More...</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter Summary January 2013</title>
		<link>http://craigsmith.id.au/2013/04/14/twitter-summary-january-2013/</link>
		<comments>http://craigsmith.id.au/2013/04/14/twitter-summary-january-2013/#comments</comments>
		<pubDate>Sun, 14 Apr 2013 02:32:50 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1395</guid>
		<description><![CDATA[A summary of my Twitter posts from January 2013: 2013-01-31 10:16:53 smithcdau: Rule #8: Never take anything for granted (watching NCIS, Rekindled S09E21) http://t.co/XRxE94HL #NCIS 2013-01-31 04:51:42 smithcdau: @benarnott Sure thing! 2013-01-31 04:50:03 smithcdau: @benarnott Actual experiences 2013-01-31 04:37:13 smithcdau: @benarnott Yes, that was a good campaign. Heard mixed reports about reality though&#8230; 2013-01-31 04:05:25 smithcdau: Paperman &#8211;&#62; http://t.co/dGOSUYdz [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1395&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg"><img class="alignleft size-thumbnail wp-image-1397" alt="Twitter" src="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg?w=150&#038;h=134" width="150" height="134" /></a>A summary of my <a href="http://twitter.com/smithcdau" target="_parent">Twitter</a> posts from January 2013:<img title="More..." alt="" src="http://cds43.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" /><span id="more-1395"></span></p>
<p>2013-01-31 10:16:53<br />
smithcdau: Rule #8: Never take anything for granted (watching NCIS, Rekindled S09E21) <a href="http://t.co/XRxE94HL">http://t.co/XRxE94HL</a> #NCIS</p>
<p>2013-01-31 04:51:42<br />
smithcdau: @benarnott Sure thing!</p>
<p>2013-01-31 04:50:03<br />
smithcdau: @benarnott Actual experiences</p>
<p>2013-01-31 04:37:13<br />
smithcdau: @benarnott Yes, that was a good campaign. Heard mixed reports about reality though&#8230;</p>
<p>2013-01-31 04:05:25<br />
smithcdau: Paperman &#8211;&gt; <a href="http://t.co/dGOSUYdz">http://t.co/dGOSUYdz</a></p>
<p>2013-01-31 00:29:15<br />
smithcdau: RT @InfoQ: Article: Agile Podcasts: A Great Learning Alternative <a href="http://t.co/MGMi95YJ">http://t.co/MGMi95YJ</a></p>
<p>2013-01-27 08:12:59<br />
smithcdau: There goes the power at Wellington Point #bigwet</p>
<p>2013-01-27 07:24:24<br />
smithcdau: @PeterSellars With the amount of rain I could have sworn you were back in the country!</p>
<p>2013-01-26 05:23:47<br />
smithcdau: Just finished a second review of Making Sense of NoSQL for @manningbooks</p>
<p>2013-01-26 01:25:47<br />
smithcdau: RT @yow_oz: Watch this space! Videos from YOW! 2012 will progressively be released from next week via @eventerHQ<br />
<a href="http://t.co/Q2Egcy2I">http://t.co/Q2Egcy2I</a></p>
<p>2013-01-23 03:23:01<br />
smithcdau: @melissa_loh ugh, I need to do that too. Let me know how easy it is <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>2013-01-23 03:35:13<br />
smithcdau: @smamol the person with the item is the lender and the person who doesn&#8217;t have the item is the borrower (think of a library&#8230;)</p>
<p>2013-01-21 09:23:03<br />
smithcdau: Wheels down BNE (@ Domestic Terminal w/ 2 others) <a href="http://t.co/ML7fRjwN">http://t.co/ML7fRjwN</a></p>
<p>2013-01-21 06:25:36<br />
smithcdau: Homeward bound&#8230; (@ Qantas Club) <a href="http://t.co/aemMVqx5">http://t.co/aemMVqx5</a></p>
<p>2013-01-18 04:18:35<br />
smithcdau: What is it with software companies keeping drivers and client updates under lock &amp; key &amp; only with a password from a third party?</p>
<p>2013-01-17 05:12:54<br />
smithcdau: Wheels down MEL (@ T1 (Domestic &#8211; Qantas &amp; Jetstar) Terminal) <a href="http://t.co/ItNKxVrq">http://t.co/ItNKxVrq</a></p>
<p>2013-01-17 02:38:23<br />
smithcdau: Destination: Melbourne (@ Domestic Terminal) <a href="http://t.co/WulAqiMc">http://t.co/WulAqiMc</a></p>
<p>2013-01-16 04:25:23<br />
smithcdau: Enterprise Software Delivery (Book Review &amp; Summary) &#8211;&gt;<a href="http://t.co/Bu4bu8mE">http://t.co/Bu4bu8mE</a></p>
<p>2013-01-15 10:36:18<br />
smithcdau: @VirginAustralia Unfortunately I needed to book before COB so after hours of trying I had to venture to the opposition&#8230;</p>
<p>2013-01-15 08:39:37<br />
smithcdau: @andrewfnewman Don&#8217;t disagree about the project planning. Was more questioning that testing was probably left to the end.</p>
<p>2013-01-15 06:31:55<br />
smithcdau: @andrewfnewman Yes&#8230; And they reported it went swimmingly well&#8230; That&#8217;s waterfall rollout for you&#8230;</p>
<p>2013-01-15 06:28:24<br />
smithcdau: Well a #fail for new @virginaustralia booking system. Falls over at step 1, looks like I will book with @qantasairways instead&#8230;</p>
<p>2013-01-14 15:49:31<br />
smithcdau: Visual Resume based on LinkedIn data &#8211;&gt; <a href="http://t.co/koWBny6V">http://t.co/koWBny6V</a></p>
<p>2013-01-14 12:36:44<br />
smithcdau: Rule # 42: Don&#8217;t ever accept an apology from someone that just sucker-punched you (NCIS S09E16) <a href="http://t.co/SvmkS7zk">http://t.co/SvmkS7zk</a> #NCIS</p>
<p>2013-01-14 01:30:49<br />
smithcdau: RT @dibblego: LambdaJam 2013 a conference for functional programmers, in Brisbane, Australia. <a href="http://t.co/Pkdgx4Am">http://t.co/Pkdgx4Am</a> betting it&#8217;s as aweso &#8230;</p>
<p>2013-01-13 11:58:35<br />
smithcdau: @talios So Boss is worth watching then?</p>
<p>2013-01-13 03:57:04<br />
smithcdau: Was in Hawaii and saw shooting of this episode (watching Hawaii Five-0, I Ka Wa Mamua S03E06) <a href="http://t.co/GyCklwa1">http://t.co/GyCklwa1</a> #H50</p>
<p>2013-01-10 12:00:02<br />
smithcdau: Exporting Highlighted notes from iBooks &#8211;&gt;<a href="https://t.co/ApdZxTUM">https://t.co/ApdZxTUM</a></p>
<p>2013-01-10 23:19:19<br />
smithcdau: RT @Aaron_Griffith: Planning poker should be called planning roulette. Must be lucky enough for your estimates to match reality. Stakes &#8230;</p>
<p>2013-01-07 04:37:58<br />
smithcdau: @lisacrispin Tell &#8216;em they&#8217;re dreamin&#8217;!</p>
<p>2013-01-07 04:34:32<br />
smithcdau: @lisacrispin So much serenity!</p>
<p>2013-01-06 09:54:10<br />
smithcdau: Karma&#8230; (watching CSI: Crime Scene Investigation, Homecoming 1S12E22) <a href="http://t.co/OnqgzOW9">http://t.co/OnqgzOW9</a> #CSI</p>
<p>2013-01-05 08:12:56<br />
smithcdau: This is taking me back, like riding a bike&#8230; <a href="http://t.co/RCYEPZgs">http://t.co/RCYEPZgs</a></p>
<p>2013-01-04 11:26:36<br />
smithcdau: Good movie, the opposite view to Moneyball (watching Trouble with the Curve) <a href="http://t.co/gQcqbvsf">http://t.co/gQcqbvsf</a> #TroubleWithTheCurve</p>
<p>2013-01-04 11:22:07<br />
smithcdau: Wheels down BNE (@ Domestic Terminal w/ 4 others) <a href="http://t.co/0ZUB8nbr">http://t.co/0ZUB8nbr</a></p>
<p>2013-01-04 08:27:54<br />
smithcdau: Heading home, away from the heat wave! (@ T1 (Domestic &#8211; Qantas &amp; Jetstar) Terminal) <a href="http://t.co/NF1rxgwz">http://t.co/NF1rxgwz</a></p>
<p>2013-01-04 07:46:37<br />
smithcdau: 41 degrees at 7pm in Melbourne&#8230; This is absurd&#8230; <a href="http://t.co/ZW14LVqJ">http://t.co/ZW14LVqJ</a></p>
<p>2013-01-02 09:35:17<br />
smithcdau: Lovely evening view of Melbourne from Williamstown (@Williamstown) [pic]: <a href="http://t.co/Us56qMml">http://t.co/Us56qMml</a></p>
<p>2013-01-01 22:20:03<br />
smithcdau: Wheels down MEL (@ T1 (Domestic &#8211; Qantas &amp; Jetstar) Terminal w/5 others) <a href="http://t.co/hIWOxpyF">http://t.co/hIWOxpyF</a></p>
<p>2013-01-01 19:51:04<br />
smithcdau: RT @SpongeBob: Happy New Year everybody! My New Years resolution: absorb the good stuff, and let the bad stuff pass through my porous body.</p>
<p>2013-01-01 19:29:28<br />
smithcdau: Didn&#8217;t take long to get my first air miles of the year&#8230; (@Domestic Terminal) <a href="http://t.co/fYxjMjTm">http://t.co/fYxjMjTm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1395/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1395&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/04/14/twitter-summary-january-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2013/04/twitterpc.jpg?w=150" medium="image">
			<media:title type="html">Twitter</media:title>
		</media:content>

		<media:content url="http://cds43.wordpress.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" medium="image">
			<media:title type="html">More...</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter Summary December 2012</title>
		<link>http://craigsmith.id.au/2013/02/01/twitter-summary-december-2012/</link>
		<comments>http://craigsmith.id.au/2013/02/01/twitter-summary-december-2012/#comments</comments>
		<pubDate>Fri, 01 Feb 2013 00:41:11 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1390</guid>
		<description><![CDATA[A summary of my Twitter posts from December 2012: 2012-12-30 07:45:59 smithcdau: @Lisa_Cumes @melissa_loh Mmmmm&#8230;. American Crispy Bacon *drool* 2012-12-26 11:09:09 smithcdau: @michaelneale Yes, get something else, they are useless. For M.cbook, I ended up with a MicroBook II as a USB amp 2012-12-22 15:07:40 smithcdau: I like my chocolate in bar form&#8230; (The Late Late Show with Craig [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1390&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://cds43.files.wordpress.com/2011/01/twitter-follow-achiever.jpg"><img class="alignright size-thumbnail wp-image-585" alt="twitter-follow" src="http://cds43.files.wordpress.com/2011/01/twitter-follow-achiever.jpg?w=150&#038;h=111" width="150" height="111" /></a>A summary of my <a href="http://twitter.com/smithcdau" target="_parent">Twitter</a> posts from December 2012:<span id="more-1390"></span></p>
<p>2012-12-30 07:45:59<br />
smithcdau: @Lisa_Cumes @melissa_loh Mmmmm&#8230;. American Crispy Bacon *drool*</p>
<p>2012-12-26 11:09:09<br />
smithcdau: @michaelneale Yes, get something else, they are useless. For M.cbook, I ended up with a MicroBook II as a USB amp</p>
<p>2012-12-22 15:07:40<br />
smithcdau: I like my chocolate in bar form&#8230; (The Late Late Show with Craig Ferguson S08E181) <a href="http://t.co/oBshZjAm">http://t.co/oBshZjAm</a> #LateLateShow</p>
<p>2012-12-21 06:00:09<br />
smithcdau: I came and I conquered @mailchimp&#8230;</p>
<p>2012-12-20 13:39:27<br />
smithcdau: RT @GOTOchgo: GOTO speaker Mike Lee&#8217;s Lemurs Chemistry app is out <a href="http://t.co/WtkFBjz8">http://t.co/WtkFBjz8</a></p>
<p>2012-12-19 03:39:16<br />
smithcdau: Where has customer service gone? Today I&#8217;m calling out poor service from MBE &amp; @suncorpbank #fail</p>
<p>2012-12-19 01:24:54<br />
smithcdau: DJ Earworm Mashup &#8211; United State of Pop 2012 (Shine Brighter): <a href="http://t.co/UzffxPfo">http://t.co/UzffxPfo</a></p>
<p>2012-12-18 08:05:41<br />
smithcdau: Listening to @joelpob at Brisbane .NET User Group (@ Microsoft w/ 2 others) [pic]: <a href="http://t.co/uC4w7vVA">http://t.co/uC4w7vVA</a></p>
<p>2012-12-18 01:00:02<br />
smithcdau: RT @fogus: As Scala gets bigger there will be more and more people who couldn&#8217;t care less about mastering it.</p>
<p>2012-12-17 14:36:56<br />
smithcdau: Stop thinking about fun&#8230; and have it! (watching The Simpsons, A Totally Fun Thing Th&#8230; S23E19) <a href="http://t.co/nPILEqft">http://t.co/nPILEqft</a> #TheSimpsons</p>
<p>2012-12-15 06:22:10<br />
smithcdau: @magia3e Only the mini&#8230; but now I have caught the bug again&#8230;</p>
<p>2012-12-15 06:06:38<br />
smithcdau: Just built a LEGO X-Wng Starfighter. Had forgotten the fun of LEGO (and how good an example of manual writing they are)</p>
<p>2012-12-14 04:57:09<br />
smithcdau: RT @WoodyZuill: A User Story is a placeholder for a conversation we&#8217;ll never have because we&#8217;ve discovered the real need by delivering e &#8230;</p>
<p>2012-12-13 01:08:40<br />
smithcdau: Time for @theagilepodcast with @agilerenee &amp; @svennotnop (@Brew) <a href="http://t.co/VfvDLBsK">http://t.co/VfvDLBsK</a></p>
<p>2012-12-12 09:26:13<br />
smithcdau: Wheels down BNE (@ Domestic Terminal) <a href="http://t.co/50qchhsf">http://t.co/50qchhsf</a></p>
<p>2012-12-12 06:37:35<br />
smithcdau: @talios new car? What did you get?</p>
<p>2012-12-12 05:47:09<br />
smithcdau: Heading home (delayed)&#8230; (@ Virgin Australia Lounge) <a href="http://t.co/bBveYvid">http://t.co/bBveYvid</a></p>
<p>2012-12-10 10:43:39<br />
smithcdau: Sheldon&#8217;s T-Shirts of The Big Bang Theory &#8211; Cool Infographics <a href="http://t.co/lGehAFUw">http://t.co/lGehAFUw</a></p>
<p>2012-12-09 00:50:21<br />
smithcdau: RT @spidie: 350 more in just over an hour &#8211; come on Greg you can do it man! <a href="http://t.co/ybXBhUTU">http://t.co/ybXBhUTU</a></p>
<p>2012-12-09 00:40:18<br />
smithcdau: The Next Chapter <a href="http://t.co/xJSPAh3a">http://t.co/xJSPAh3a</a></p>
<p>2012-12-09 23:33:16<br />
smithcdau: @Lisa_Cumes I decided I don&#8217;t like being at home <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Here for a Xmas function..</p>
<p>2012-12-09 23:16:27<br />
smithcdau: Wheels down MEL (@ T1 (Domestic &#8211; Qantas &amp; Jetstar) Terminal w/3 others) <a href="http://t.co/p8ATSS8b">http://t.co/p8ATSS8b</a></p>
<p>2012-12-09 20:29:18<br />
smithcdau: Last trip of the year? Off to Melbourne&#8230; (@ Domestic Terminal) <a href="http://t.co/rMPy5QGc">http://t.co/rMPy5QGc</a></p>
<p>2012-12-09 02:54:15<br />
smithcdau: RT @angusscown: Greg did it. 10,000 pushups in 24 hours. <a href="http://t.co/HNOsbeXs">http://t.co/HNOsbeXs</a> raising money for haemophilia</p>
<p>2012-12-08 11:45:05<br />
smithcdau: Adam Weisbart (@weisbart) on Agile Antipatterns and Tools to Make Agile Fun (my latest interview for @InfoQ) <a href="http://t.co/EKeXtGua">http://t.co/EKeXtGua</a></p>
<p>2012-12-08 03:40:31<br />
smithcdau: Wheels down BNE (@ Domestic Terminal) <a href="http://t.co/9y4666YQ">http://t.co/9y4666YQ</a></p>
<p>2012-12-08 01:57:34<br />
smithcdau: RT @InfoQ: Interview: Adam Weisbart on Agile Antipatterns and Tools to Make Agile Fun <a href="http://t.co/gbkbbeeb">http://t.co/gbkbbeeb</a></p>
<p>2012-12-08 01:36:59<br />
smithcdau: End of a great 2 week tour with the #yow2012 crew! (@ Virgin Australia Lounge) <a href="http://t.co/mMrAieOW">http://t.co/mMrAieOW</a></p>
<p>2012-12-07 05:46:01<br />
smithcdau: RT @jchyip: It&#8217;s not deliver so fast that marketing doesn&#8217;t have a chance to change their mind but deliver so fast that they don&#8217;t have &#8230;</p>
<p>2012-12-07 02:36:08<br />
smithcdau: Listening to workshop by the wizard of lean Don Reinertsen #yow2012 (@ Pullman Sydney Hyde Park) <a href="http://t.co/HZzagshK">http://t.co/HZzagshK</a></p>
<p>2012-12-05 09:10:44<br />
smithcdau: RT @jimmcslim: Dave Thomas calls it out: The 1st Lambda Jam Func. Prog. Conf. will be held in Brissy, coz they’re backward in Sydney &amp;am &#8230;</p>
<p>2012-12-05 03:44:45<br />
smithcdau: Wheels down SYD (@ T2 Multi-User Domestic Terminal w/ 8 others) <a href="http://t.co/jHzf5nOw">http://t.co/jHzf5nOw</a></p>
<p>2012-12-05 02:16:36<br />
smithcdau: The #yow2012 contingent is moving (delayed) to Sydney&#8230; (@ The Lounge (Virgin Australia)) <a href="http://t.co/leQrjs0P">http://t.co/leQrjs0P</a></p>
<p>2012-12-04 23:55:51<br />
smithcdau: @hwiputra you&#8217;re welcome!</p>
<p>2012-12-04 23:51:24<br />
smithcdau: RT @bmf: &#8220;How are you feeling?&#8221; &#8220;Terrified.&#8221; &#8220;Good.&#8221; The life of a speaker. #yow2012</p>
<p>2012-12-04 23:51:03<br />
smithcdau: RT @rowanb: @codemiller: &#8220;Well done YOW! team &#8211; it was a first-rate event.&#8221; #yow2012 I totally agree. Was a challenging &amp; inspiring &#8230;</p>
<p>2012-12-04 04:19:40<br />
smithcdau: Introducing @kevlinhenney keynote at #yow2012 (@ Brisbane Convention &amp; Exhibition Centre) <a href="http://t.co/ASZXzhV8">http://t.co/ASZXzhV8</a></p>
<p>2012-12-03 01:59:52<br />
smithcdau: RT @codemiller: &#8220;Start logging things. Log your state changes. Put it in a store somewhere. You never know how it might be able to be us&#8230;</p>
<p>2012-12-03 01:59:38<br />
smithcdau: RT @codemiller: &#8220;I don&#8217;t know why but everyone knows SQL. If you give people read-only access to data they won&#8217;t bother you for reports. &#8230;</p>
<p>2012-12-03 01:59:22<br />
smithcdau: RT @codemiller: &#8220;The elephant in the room is Hadoop&#8230;I wonder how many times that&#8217;s been used as a joke in a presentation&#8230;&#8221; @Kurt #yo&#8230;</p>
<p>2012-12-03 01:59:17<br />
smithcdau: RT @codemiller: &#8220;Use a high-level language&#8230;like Pig or Hive. Figure out a way to do it.&#8221; @kurt #yow2012</p>
<p>2012-12-03 01:59:13<br />
smithcdau: RT @jimmcslim: ‘Word Count is the Hello World of Big Data. I think we’ve solved that problem now.’ #yow2012</p>
<p>2012-12-03 01:59:08<br />
smithcdau: RT @codemiller: &#8220;Make things easy to understand. If you have a bunch of MapReduce Java classes&#8230;your head&#8217;s going to explode.&#8221; @kurt #y&#8230;</p>
<p>2012-12-02 23:15:23<br />
smithcdau: @spidie agreed!</p>
<p>2012-12-02 23:14:45<br />
smithcdau: Kicking off #YOW2012 with Don Reinertsen keynote on Lean Batch Size (@ Brisbane Convention &amp; Exhibition Centre) <a href="http://t.co/6NTzAGSx">http://t.co/6NTzAGSx</a></p>
<p>2012-12-01 21:54:21<br />
smithcdau: RT @yow_oz: #yow2012 @headinthebox getting prepped for this morning&#8217;s keynote <a href="http://t.co/HXZ0y2X9">http://t.co/HXZ0y2X9</a></p>
<p>2012-12-01 21:51:39<br />
smithcdau: RT @delitescere: Speakers off to dinner #yow2012 <a href="http://t.co/dh3oxF7F">http://t.co/dh3oxF7F</a></p>
<p>2012-12-01 21:51:21<br />
smithcdau: RT @kurt: Hey look, a shark. At the Melbourne Aquarium for the Yow Melbourne speaker dinner. #yow_oz #yow2012 <a href="http://t.co/20NR1P0i">http://t.co/20NR1P0i</a></p>
<p>2012-12-01 03:09:46<br />
smithcdau: Wheels down BNE (@ Domestic Terminal w/ 2 others) <a href="http://t.co/D22U2GxB">http://t.co/D22U2GxB</a></p>
<p>2012-12-01 00:40:29<br />
smithcdau: Field trip with the #YOW2012 speakers to Brisbane (@ T3 (Domestic &#8211; Virgin Australia &amp; Regional Express) Terminal) <a href="http://t.co/LDsJfvej">http://t.co/LDsJfvej</a></p>
<p>2012-12-01 00:36:49<br />
smithcdau: I just ousted @tashstoodley as the mayor of The Sebel &amp; Citigate Hotel on @foursquare! <a href="http://t.co/pkz543U0">http://t.co/pkz543U0</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1390/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1390/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1390&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/02/01/twitter-summary-december-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>

		<media:content url="http://cds43.files.wordpress.com/2011/01/twitter-follow-achiever.jpg?w=150" medium="image">
			<media:title type="html">twitter-follow</media:title>
		</media:content>
	</item>
		<item>
		<title>Paperman</title>
		<link>http://craigsmith.id.au/2013/01/31/paperman/</link>
		<comments>http://craigsmith.id.au/2013/01/31/paperman/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 03:59:08 +0000</pubDate>
		<dc:creator>Craig Smith</dc:creator>
				<category><![CDATA[Fun & Games]]></category>

		<guid isPermaLink="false">http://craigsmith.id.au/?p=1384</guid>
		<description><![CDATA[A lunch-time view, Paperman is a new animated short film from Disney that has been animated for an Oscar. This story does not make much sense in a digital age of tablets and a paperless office though!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1384&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A lunch-time view, Paperman is a new animated short film from <a href="http://disney.com/">Disney</a> that has been animated for an Oscar. This story does not make much sense in a digital age of tablets and a paperless office though!</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='540' height='334' src='http://www.youtube.com/embed/aTLySbGoMX0?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cds43.wordpress.com/1384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cds43.wordpress.com/1384/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=craigsmith.id.au&#038;blog=1253279&#038;post=1384&#038;subd=cds43&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://craigsmith.id.au/2013/01/31/paperman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150a07a737ff3ff0109cd13bcd008dd8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">smithcd</media:title>
		</media:content>
	</item>
	</channel>
</rss>
