<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>// jonathan chow</description><title>echo</title><generator>Tumblr (3.0; @echohax)</generator><link>http://blog.echo.sh/</link><item><title>Dynamically creating tests with ScalaTest</title><description>&lt;p&gt;At the Code Retreat run at Movio this weekend we watched &lt;a href="http://www.youtube.com/watch?v=vX-Yym7166Y" target="_blank"&gt;Corey Haines do the Roman Numerals kata in Ruby&lt;/a&gt;. An interesting thing he did was to list all conversion in a hash and iterate over it to dynamically create the test for each conversion:&lt;/p&gt;
&lt;p class="gist"&gt;&lt;a href="https://gist.github.com/echojc/5562397" target="_blank"&gt;https://gist.github.com/echojc/5562397&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Later while attempting to create &lt;a href="http://en.wikipedia.org/wiki/Conway's_Game_of_Life" target="_blank"&gt;Conway&amp;#8217;s Game of Life&lt;/a&gt; using &lt;a href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank"&gt;TDD&lt;/a&gt; I came across some tests that were repetitive in a similar manner:&lt;/p&gt;
&lt;p class="gist"&gt;&lt;a href="https://gist.github.com/echojc/5562418" target="_blank"&gt;https://gist.github.com/echojc/5562418&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Turns out that ScalaTest also supports creating tests in the same way:&lt;/p&gt;
&lt;p class="gist"&gt;&lt;a href="https://gist.github.com/echojc/5562425" target="_blank"&gt;https://gist.github.com/echojc/5562425&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It might take some getting used to, but I think it&amp;#8217;s a rather nice way to run different inputs for the same test. It lets you isolate each input into its own test case without any code duplication and concisely lists all your test cases and expected outputs together.&lt;/p&gt;
&lt;p&gt;You can see how I did Corey&amp;#8217;s Roman Numerals kata in Scala (along with other katas I have done/will do) &lt;a href="https://github.com/echojc/scala-kata" target="_blank"&gt;on my GitHub&lt;/a&gt;.&lt;/p&gt;</description><link>http://blog.echo.sh/post/50226326390</link><guid>http://blog.echo.sh/post/50226326390</guid><pubDate>Sun, 12 May 2013 16:41:00 +1200</pubDate></item><item><title>git completion for aliases</title><description>&lt;p&gt;So I&amp;#8217;ve been using &lt;code&gt;g&lt;/code&gt; as an alias for &lt;code&gt;git&lt;/code&gt; for a few weeks now (in combination with &lt;a href="http://blog.echo.sh/post/46310113077" target="_blank"&gt;aliases for common git commands&lt;/a&gt;), and one thing I miss is autocompletion for things like branch names. Especially so when my branches are named something &lt;code&gt;12345678-awesome-feature&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve finally found the command to do it:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;__git_complete g __git_main&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Alternatively, you can alias commands individually if you prefer your aliases without the space, like&lt;/p&gt;
&lt;p&gt;&lt;code&gt;__git_complete gc _git_commit&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Take a look in &lt;code&gt;git-completion.bash&lt;/code&gt; for all the mappable commands.&lt;/p&gt;</description><link>http://blog.echo.sh/post/49384712666</link><guid>http://blog.echo.sh/post/49384712666</guid><pubDate>Thu, 02 May 2013 09:16:16 +1200</pubDate></item><item><title>Colouring git diff in Gmail</title><description>&lt;p&gt;Git&amp;#8217;s default post-receive hook sends emails that aren&amp;#8217;t monospaced and don&amp;#8217;t have colour. Here&amp;#8217;s a short bookmarklet to add just that. (Uses Consolas as the monospace font.)&lt;/p&gt;
&lt;div class="gist"&gt;&lt;a href="https://gist.github.com/5259644" target="_blank"&gt;https://gist.github.com/5259644&lt;/a&gt;&lt;/div&gt;</description><link>http://blog.echo.sh/post/46467383299</link><guid>http://blog.echo.sh/post/46467383299</guid><pubDate>Thu, 28 Mar 2013 14:10:02 +1300</pubDate></item><item><title>Hippopotomonstrosesquipedaliophobia</title><description>&lt;p&gt;Sometimes I think I take things a bit too far.&lt;/p&gt;
&lt;div class="gist"&gt;&lt;a href="https://gist.github.com/5242849" target="_blank"&gt;https://gist.github.com/5242849&lt;/a&gt;&lt;/div&gt;</description><link>http://blog.echo.sh/post/46310113077</link><guid>http://blog.echo.sh/post/46310113077</guid><pubDate>Tue, 26 Mar 2013 16:18:00 +1300</pubDate></item><item><title>Birthday problem</title><description>&lt;p&gt;Recently at work we came across a case where we needed to generate up to 10,000 random unique numbers. We had to fit it into 23 bits, giving us roughly 8 million different numbers to choose from.&lt;/p&gt;
&lt;p&gt;We&amp;#8217;ve all done combinatorics before, so we knew that if we were to randomly generate these numbers, the chance of there being a collision isn&amp;#8217;t going to be as low as what our intuition tells us (see the &lt;a href="http://en.wikipedia.org/wiki/Birthday_problem" title="Birthday problem" target="_blank"&gt;birthday problem&lt;/a&gt;). But none of us were really that fluent with our math, so when we plugged our formula into &lt;a href="http://wolframalpha.com" title="WolframAlpha" target="_blank"&gt;WolframAlpha&lt;/a&gt; and it spit out 99.8% chance of a collision, we were &lt;em&gt;sure&lt;/em&gt; that the problem was with our formula and not with the scenario.&lt;/p&gt;
&lt;p&gt;I ended up testing the situation empirically in the Scala REPL and it turns out the math was right after all. Here&amp;#8217;s the template for empirically testing the classic birthday problem:&lt;/p&gt;
&lt;div class="gist"&gt;&lt;a href="https://gist.github.com/5212393" target="_blank"&gt;https://gist.github.com/5212393&lt;/a&gt;&lt;/div&gt;</description><link>http://blog.echo.sh/post/45907586259</link><guid>http://blog.echo.sh/post/45907586259</guid><pubDate>Fri, 22 Mar 2013 00:39:00 +1300</pubDate></item><item><title>The Dark Knight Rises</title><description>&lt;p&gt;The movie was pretty good, the plot was interesting, but there &lt;em&gt;were&lt;/em&gt; a few problems. Mainly physics, because I tend to notice that kind of stuff :)&lt;/p&gt;
&lt;p&gt;Before I carry on, let me warn you, spoiler alert!&lt;/p&gt;
&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;
&lt;p&gt;Ok, let&amp;#8217;s go.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Can anyone understand Bane?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So while I said mainly physics, let&amp;#8217;s start with some general movie criticism. To be fair, I didn&amp;#8217;t come up with this one. But if you&amp;#8217;ve seen the movie, you&amp;#8217;ll understand where I&amp;#8217;m coming from. &lt;/p&gt;
&lt;p&gt;The biggest problem with understanding Bane is that his voice sounds like it&amp;#8217;s coming through a mask, which would be fine, except that because he &lt;em&gt;is&lt;/em&gt; wearing a mask, you can&amp;#8217;t lip-read. Which means you literally can&amp;#8217;t understand what he&amp;#8217;s saying. And I&amp;#8217;ve lived in New Zealand for more than three quarters my life.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Nuclear bomb?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If that was a nuclear explosion, all those kids on the bus would be blind. Instantly. Not to mention crispy fried. Given that the bomb had a &amp;#8220;6 mile blast radius&amp;#8221; and that Batman had less than 2 minutes to fly that bomb out over the bay, they can&amp;#8217;t be more than 10 miles away from that explosion. A nuclear explosion isn&amp;#8217;t just a big explosion, it&amp;#8217;s a &lt;strong&gt;FREAKING HUMONGOUS EXPLOSION&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Six mile blast radius?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Which leads me to my next point. Batman had less than 2 minutes to fly that bomb a distance further than 6 miles. Guesstimating from what I remember of the movie, I&amp;#8217;m pretty sure he was more than 10 miles out. But let&amp;#8217;s be conservative and say he had 2 minutes to fly 10 miles. That requires an average speed of 300 miles per hour, or nearly 500&amp;#160;km per hour. There was absolutely no way he was going that fast.&lt;/p&gt;
&lt;p&gt;The explosion in the movie probably had a blast radius of 500 metres.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What happened to the shock wave?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If you detonate a nuclear bomb 10 metres above the sea, guess what happens? Tidal wave. Gotham would&amp;#8217;ve been wiped out anyway. Nice try, Batman.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;No autopilot?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;While this was kinda cleared up in the epilogue, I was wondering the whole time before that - no autopilot? Sure, he had to take out the autopilot module to use as a microwave signal blocking thingy, but remember that Sgt. Gordon had taken the module to place next to the bomb. And where was the bomb? OH YEAH - ATTACHED TO THE BAT.&lt;/p&gt;
&lt;p&gt;And who places the autopilot controller on the same detachable component as an EMP? Lucius Fox needs to take an engineering course.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Blind henchmen&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Bane might be able to find henchmen who will choose death over spilling the beans, but boy do they need eye examinations. The countless times the &amp;#8220;good guys&amp;#8221; walked the streets without a care in the world. And just how many times did those trucks carrying the bomb get stopped, got a tracker attached to it, or had someone jump on it? Seriously.&lt;/p&gt;
&lt;p&gt;&amp;#8212;&amp;#8212;-&lt;/p&gt;
&lt;p&gt;But these aren&amp;#8217;t really that huge of a problem. I&amp;#8217;ve just always wanted to do one of these posts :D&lt;/p&gt;
&lt;p&gt;The movie was enjoyable, and I think rounded up the trilogy pretty well. You should definitely watch it if you have the time.&lt;/p&gt;</description><link>http://blog.echo.sh/post/27548986968</link><guid>http://blog.echo.sh/post/27548986968</guid><pubDate>Thu, 19 Jul 2012 23:20:00 +1200</pubDate><category>batman</category><category>movie</category></item><item><title>Potential</title><description>&lt;p&gt;I think that everyone has potential. The job of any leader is to see that potential in their subordinates and to develop it into something more than just potential. That potential needs to metamorphosise into its physical manifestation.&lt;/p&gt;

&lt;p&gt;I know my obvious potentials. I&amp;#8217;m good with taking logical steps - solving maths problems, writing software, and even writing papers, since a good paper is a well-reasoned argument to support whatever research you&amp;#8217;re doing. Languages can also be grouped here because languages very logical, if you consider them in terms of grammar and syntax. There are very precise rules that determine what makes sense and what doesn&amp;#8217;t. Hence, I&amp;#8217;m very interested in learning languges, learning about languages, and linguistics in general.&lt;/p&gt;

&lt;p&gt;The point I&amp;#8217;m trying to make, however, is not what potentials I have. I know what I can potentially achieve and do. The problem is that potentials are useless if they are not realised. &lt;/p&gt;

&lt;p&gt;I can plan an excellent paper in my head. I can see it come together into a well-reasoned, neatly set out, almost artistic argument for my point. But I can&amp;#8217;t turn that paper into reality, into a physical piece of work. I have the potential, but not the strength of will to do the work.&lt;/p&gt;

&lt;p&gt;I don&amp;#8217;t quit on things I say I will do. I&amp;#8217;m going to finish my masters no matter how hard it might get. And interestingly enough, with this experience, I now understand better what a leader is supposed to do. So, as I step up to lead the charge, my underlings better be ready to follow me and transform their own dormant caterpillars of potential into a flight of butterflies of success.&lt;/p&gt;</description><link>http://blog.echo.sh/post/25507391360</link><guid>http://blog.echo.sh/post/25507391360</guid><pubDate>Thu, 21 Jun 2012 03:33:08 +1200</pubDate><category>leadership</category><category>study</category></item><item><title>How to lose a weekend of productivity</title><description>&lt;p&gt;I slept late on Friday night. That would&amp;#8217;ve been fine if it was a normal Saturday, because I wouldn&amp;#8217;t have to get up until 11:30 (at the latest), since I have to lead choir practice at 12.&lt;/p&gt;

&lt;p&gt;Except I had an earlier meeting at 10:30. &amp;#8220;That&amp;#8217;s still fine,&amp;#8221; I thought. 3am to 10am is still 7 hours of sleep.&lt;/p&gt;

&lt;p&gt;Except I had an even earlier meeting. At 9. So I ended up sleeping from 3:30am to 8, for a total of 4 hours and 30 minutes.&lt;/p&gt;

&lt;p&gt;Saturday morning, I got up, made a Mi Goreng for breakfast, and grabbed a 250ml bottle of Red Bull as I left home. I would drink it throughout the 9am meeting, literally the only reason I stayed awake. But it did its job, and boosted my energy levels so that I could go through a 1.5h meeting and two 1h practices straight after without feeling tired at all. I then had lunch at Wendy&amp;#8217;s with some friends, going home at 3 when my non-geek friends got tired of me raving on about the x86 instruction set compared to the ARM instruction and how per instruction conditional execution is really awesome.&lt;/p&gt;

&lt;p&gt;I didn&amp;#8217;t feel sleepy at all for the rest of the day. I was pretty surprised, given how little use Red Bull (and coffee) was during the management project week (5 days straight arrive at uni by 7am -.-). I gamed away at TF2, clocking probably more hours on Demo than I had ever before (I usually play only on Turbine and Degroot Keep as Spy or Scout, but this day I played some Payload maps with my sister).&lt;/p&gt;

&lt;p&gt;I would&amp;#8217;ve slept by 2am on Saturday night, but I had only recently downloaded Taiko for my iPhone and I really wanted to hit a full combo on Oni difficulty before I turned in. After 2 close failures where I missed on literally the 2nd to last note, I finally nailed it. I turned in at 2:30.&lt;/p&gt;

&lt;p&gt;Next morning was Sunday, so naturally I had to get up early. I set my alarms (yes, plural) for 7:40am so I would have plenty of time for breakfast and to get ready for church at 9. That would mean a total of 5 hours sleep. When my alarms went off, I felt so tired I could barely walk across my room to turn them off (if they were next to my bed, I can turn them off in my sleep). I stayed in bed and didn&amp;#8217;t get up until 8:30am. I drove at 50kph and didn&amp;#8217;t even try to accelerate to get through a set of lights that I could&amp;#8217;ve made it through; I was still so tired I probably would&amp;#8217;ve crashed if I tried.&lt;/p&gt;

&lt;p&gt;Even so, I thought to myself, &amp;#8220;I&amp;#8217;ve done this before - two 5h nights in a row. It&amp;#8217;s tiring but not that bad.&amp;#8221; Oh, how wrong I was.&lt;/p&gt;

&lt;p&gt;I went through 2 church services, attending the first one as a congregation member and serving in the second as the pianist. Being the pianist today required more focus than usual because there&amp;#8217;s a very particular way things have to be done in that second service of the day. Heads usually roll if things go wrong. So that sapped even more energy out of me. On the plus side, stifling yawns is now a staple in my repertoire of skills. &lt;/p&gt;

&lt;p&gt;Then came lunch, where I racked my brains to complete Sunday&amp;#8217;s set of words for 7 Little Words (available for both iOS/Android) before my friends could.&lt;/p&gt;

&lt;p&gt;All in all, I probably dug too deep into my energy reserve. 1 meeting, 2 practices, 2 services, and hours of gaming, all on the back of a bottle of Red Bull and 10 hours sleep over 2 days. Red Bull lets you borrow more energy, but you have to pay that back, and pay it back quickly. I napped for at least 3 hours this afternoon, and I&amp;#8217;m still tired enough to get ready for bed before 1am. That&amp;#8217;s where I am right now, typing this post on my phone in my bed. &lt;/p&gt;

&lt;p&gt;Moral of the story: using your Mana Ring eats into your HP, and if you don&amp;#8217;t want to get sniped by a roaming enemy you better go back to your fountain as soon as possible.&lt;/p&gt;</description><link>http://blog.echo.sh/post/24811365912</link><guid>http://blog.echo.sh/post/24811365912</guid><pubDate>Mon, 11 Jun 2012 01:39:12 +1200</pubDate><category>life</category><category>sleep</category><category>energydrinks</category></item><item><title>Improving my Japanese</title><description>&lt;p&gt;With a possible trip to Japan at the end of the year with some of my friends, it&amp;#8217;s time to polish up what Japanese I know. Probably what sparked this was when a friend asked me to help her with some Japanese homework (and she left before I could actually be of any help &amp;gt;.&amp;lt;).&lt;/p&gt;
&lt;p&gt;(If you&amp;#8217;re studying Japanese, I seriously recommend using &lt;a href="http://www.guidetojapanese.org" title="Tae Kim's Guide to Learning Japanese" target="_blank"&gt;Tae Kim&amp;#8217;s Guide to Learning Japanese&lt;/a&gt;. I taught myself Japanese and 80% of what I know is from that site. Another useful resource is &lt;a href="http://wwwjdic.se" title="Jim Breen's WWWJDIC" target="_blank"&gt;WWWJDIC&lt;/a&gt;, a comprehensive online dictionary.)&lt;/p&gt;
&lt;p&gt;I often think about random things, and on this occasion I had &lt;a href="http://www.youtube.com/watch?v=gFAT8_5hPWA" title="Robin Sparkles - Let's go to the Mall" target="_blank"&gt;Let&amp;#8217;s go to the Mall&lt;/a&gt; from How I Met Your Mother stuck in my head. So, I thought about the first line of the chorus:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Everybody come and play&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;How would you say this in Japanese? I would go for something along the lines of &amp;#8220;みんな遊びに&lt;em&gt;[くる-volitional]&lt;/em&gt;&amp;#8221; (which I realise now in hindsight it doesn&amp;#8217;t &lt;em&gt;quite&lt;/em&gt; mean the same thing - this expression would mean &amp;#8220;everybody come (in order) to play&amp;#8221;). And then I hit upon the realisation that I didn&amp;#8217;t know the casual volitional form of くる. Polite form is easy - きましょう. But what is the casual form? I settled on きよう and decided to &lt;a href="http://www.guidetojapanese.org/learn/grammar/desire" target="_blank"&gt;look it up&lt;/a&gt;. Turns out, &lt;strong&gt;the casual volitional form of くる is こよう&lt;/strong&gt;. That&amp;#8217;s an important thing to remember.&lt;/p&gt;
&lt;p&gt;Since I was on Tae Kim&amp;#8217;s guide anyway, I randomly chose a section to read - &lt;a href="http://www.guidetojapanese.org/learn/grammar/surunaru" target="_blank"&gt;the X[よう]になる/する section&lt;/a&gt;. Turns out, it&amp;#8217;s an extremely nifty construction that can be used almost anywhere. To express something like&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#8217;ve decided that I will go to Japan.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Instead of saying&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;日本に行くことを決めた。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;You can also say&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;日本に行くことにした。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;There&amp;#8217;s a slight difference in connotation, I think, but I never realised that you can use する in this manner. Another similar construction presented on the same page is the form &amp;#8220;&lt;em&gt;[verb-potential]&lt;/em&gt;ようになる&amp;#8221; meaning that you can now do something that you previously couldn&amp;#8217;t, the main focus being on the &amp;#8220;can&amp;#8221; (i.e., potential) aspect. For example,&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;ピアノが弾けるようになった。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Meaning &amp;#8220;I can (now) play the piano (when I previously couldn&amp;#8217;t)&amp;#8221;.&lt;/p&gt;
&lt;p&gt;To say &amp;#8220;improve&amp;#8221; in Japanese, you can say よくなる. Theoretically, then, I can use this form and say&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;もっと勉強したから、日本語がよくなれるようになった。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;#8220;よくなれるようになった&amp;#8221; is such a mouthful to say.&lt;/p&gt;</description><link>http://blog.echo.sh/post/23930494789</link><guid>http://blog.echo.sh/post/23930494789</guid><pubDate>Tue, 29 May 2012 03:01:04 +1200</pubDate><category>japanese</category><category>triptojapan</category></item><item><title>Master of Coincidences</title><description>&lt;p&gt;When I set up this blog, I had all sorts of ideas about what my first major post would be about. I never thought it&amp;#8217;d be about this though.&lt;/p&gt;
&lt;p&gt;Someone once said that when you pray, more &amp;#8220;coincidences&amp;#8221; seem to happen. Now, there&amp;#8217;s a danger to putting it like this, because you might end up treating prayer as a sort of good-luck charm, which it obviously is not. There&amp;#8217;s also the risk of confirmation bias, i.e., you remember the coincidence vs. you don&amp;#8217;t remember when there is no coincidence.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve led worship maybe 5-6 times now, and for about 4 of them I had a serious bit of prayer time about what songs I should lead, what theme I should go with, etc. For these services that I did pray about, people gave more positive feedback about the service, either that it really touched them, or that they simply really enjoyed it. This time, however, it was even better.&lt;/p&gt;
&lt;p&gt;I wasn&amp;#8217;t rostered to lead this coming week, and I only decided to fill in on Monday. With our practices on Monday night, I had the afternoon at most to come up with ideas and songs. I mumbled a prayer to God and sat down at my piano (I usually get more inspiration when I&amp;#8217;m playing random stuff). I didn&amp;#8217;t know the sermon topic yet, because, well, it&amp;#8217;s only Monday. So I could only build a coherent set of songs, but couldn&amp;#8217;t explicitly link it into the overall message of the service. That would have to be done later.&lt;/p&gt;
&lt;p&gt;One of the songs I eventually settled on was Joe Pringle&amp;#8217;s &lt;a href="http://www.youtube.com/watch?v=jTlID6Rl_Cw" title="Joe Pringle - Send Down Your Love (YouTube)" target="_blank"&gt;Send Down Your Love&lt;/a&gt;, which is a song that has never been led in our Sunday services, but was led in the previous Living Room. If you know me, you know that I really dislike leading songs new to the congregation, because frankly I suck at doing it. But I decided that it fit well with my theme, and that I should give it a go.&lt;/p&gt;
&lt;p&gt;The first line of the song goes like this:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You are my fortress&lt;br/&gt;You&amp;#8217;re my shield and sword&lt;br/&gt;My hope in Your strength Lord&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It&amp;#8217;s not the most common lyrics, but not anything special either.&lt;/p&gt;
&lt;p&gt;This morning, I got an email from the pastor who&amp;#8217;s preaching this Sunday about the sermon topic (&amp;#8220;The Lord is My Deliverer&amp;#8221;) and bible passage - Psalm 18:1-3 (NLT):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I love you, LORD;&lt;br/&gt;  you are my strength.&lt;/p&gt;
&lt;p&gt;The LORD is my rock, my fortress, and my savior;&lt;br/&gt;  my God is my rock, in whom I find protection.&lt;br/&gt;He is my shield, the power that saves me,&lt;br/&gt;  and my place of safety.&lt;/p&gt;
&lt;p&gt; I called on the LORD, who is worthy of praise,&lt;br/&gt;  and he saved me from my enemies.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Coincidence?&lt;/p&gt;</description><link>http://blog.echo.sh/post/22623435787</link><guid>http://blog.echo.sh/post/22623435787</guid><pubDate>Tue, 08 May 2012 13:00:00 +1200</pubDate><category>christian</category><category>worshipleading</category></item><item><title>A new start</title><description>&lt;p&gt;Let&amp;#8217;s try setting up a blog again and see where it leads this time.&lt;/p&gt;</description><link>http://blog.echo.sh/post/22103925101</link><guid>http://blog.echo.sh/post/22103925101</guid><pubDate>Mon, 30 Apr 2012 15:50:14 +1200</pubDate><category>life</category><category>blog</category></item></channel></rss>
