<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Marauderz Stuff!!</title>
  <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/" />
  <link rel="self" href="http://www.marauderzstuff.com/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2010-03-19T00:24:20.1704806+08:00</updated>
  <author>
    <name>Marauderz</name>
  </author>
  <subtitle>Code for Life, Game for Life!</subtitle>
  <id>http://www.marauderzstuff.com/</id>
  <generator uri="http://dasblog.info/" version="2.1.8102.813">DasBlog</generator>
  <entry>
    <title>Resizing Images In Silverlight</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,70daa85b-b311-4f9c-afed-cd45721fa0ee.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,70daa85b-b311-4f9c-afed-cd45721fa0ee.aspx</id>
    <published>2010-03-19T00:24:20.1704806+08:00</published>
    <updated>2010-03-19T00:24:20.1704806+08:00</updated>
    <category term="Programming" label="Programming" scheme="http://www.marauderzstuff.com/CategoryView,category,Programming.aspx" />
    <category term="Silverlight" label="Silverlight" scheme="http://www.marauderzstuff.com/CategoryView,category,Silverlight.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I needed to resize an image in Silverlight and then save it out as a JPEG. I <em>could</em> have
just used a transform on it then rendered it to a WriteableBitmap but the transforms
were optimized for realtime performance and doesn't work too well when you need to
maintain quality.
</p>
        <p>
I stumbled upon a Bicubic Resize code in a library called <a href="http://www.codeproject.com/KB/recipes/aforge.aspx" target="_blank">AForge.Net</a> and
it was in C#, so it was simple enough for me to convert it to VB for me to use it
in Silverlight. And since I DIDN'T find a lot of Bicubic Interpolation .Net resize
code on the net, I'm gonna just put this copy up here.
</p>
        <p>
As a bonus I kept on my comments in so you guys can see what was going through my
head as I was working my way through the code.
</p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:9ce6104f-a9aa-4a17-a79f-3a39532ebf7c:c53bada8-b230-4235-8b91-9c61b990eba6" class="wlWriterEditableSmartContent">
          <div style="border: #000080 1px solid; color: #000; font-family: 'Courier New', Courier, Monospace; font-size: 10pt">
            <div style="background: #000080; color: #fff; font-family: Verdana, Tahoma, Arial, sans-serif; font-weight: bold; padding: 2px 5px">Bicubic
Interpolation
</div>
            <div style="background-color: #ffffff; max-height: 300px; overflow: auto; padding: 2px 5px; white-space: nowrap">
              <span style="color:#008000">''' </span>
              <span style="color:#808080">&lt;summary&gt;</span>
              <br />
              <span style="color:#008000">''' Bicubically resize the src bitmap to the
dest bitmap</span>
              <br />
              <span style="color:#008000">''' </span>
              <span style="color:#808080">&lt;/summary&gt;</span>
              <br />
              <span style="color:#008000">''' </span>
              <span style="color:#808080">&lt;param
name="src"&gt;&lt;/param&gt;</span>
              <br />
              <span style="color:#008000">''' </span>
              <span style="color:#808080">&lt;param
name="dest"&gt;</span>
              <span style="color:#008000">Destination Bitmap, should
be initialized to the requested size.</span>
              <span style="color:#808080">&lt;/param&gt;</span>
              <br />
              <span style="color:#008000">''' </span>
              <span style="color:#808080">&lt;remarks&gt;</span>
              <span style="color:#008000">Original
Source For This Function - http://www.codeproject.com/KB/recipes/aforge.aspx</span>
              <span style="color:#808080">&lt;/remarks&gt;</span>
              <span style="color:#008000">
              </span>
              <br />
              <span style="color:#0000ff">Sub</span> Resize(<span style="color:#0000ff">ByVal</span> src <span style="color:#0000ff">As</span> Imaging.WriteableBitmap, <span style="color:#0000ff">ByVal</span> dest <span style="color:#0000ff">As</span> Imaging.WriteableBitmap)<br /><br /><span style="color:#0000ff">Dim</span> startTime <span style="color:#0000ff">As</span> DateTime
= Now<br /><br /><br /><span style="color:#0000ff">Dim</span> srcwidth <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
src.PixelWidth<br /><span style="color:#0000ff">Dim</span> srcHeight <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
src.PixelHeight<br /><br /><span style="color:#0000ff">Dim</span> destWidth <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
dest.PixelWidth<br /><span style="color:#0000ff">Dim</span> destHeight <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
dest.PixelHeight<br /><br /><span style="color:#0000ff">Dim</span> xFactor <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span> =
srcwidth / destWidth<br /><span style="color:#0000ff">Dim</span> yFactor <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span> =
srcHeight / destHeight<br /><br /><span style="color:#008000">'Coordinates of src points and coefficients.. WTF?</span><br /><span style="color:#0000ff">Dim</span> ox, oy, dx, dy, k1, k2 <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span><br /><span style="color:#0000ff">Dim</span> ox1, oy1, ox2, oy2 <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span><br /><br /><span style="color:#008000">'new color values</span><br /><span style="color:#0000ff">Dim</span> r, g, b <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span><br /><br /><span style="color:#0000ff">Dim</span> xmax <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
srcwidth - 1<br /><span style="color:#0000ff">Dim</span> ymax <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
srcHeight - 1<br /><br /><span style="color:#0000ff">For</span> y <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
0 <span style="color:#0000ff">To</span> destHeight - 1<br /><span style="color:#008000">'this is getting the original Y pixel if I'm not
mistaken</span><br />
oy = y * yFactor - 0.5F<br /><span style="color:#008000">'WHY is this necessary?</span><br />
oy1 = oy<br /><span style="color:#008000">'WTF? It's getting the FRACTIONAL difference between</span><br /><span style="color:#008000">'oy and oy1?</span><br />
dy = oy - oy1<br /><br /><br /><span style="color:#0000ff">For</span> x <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
0 <span style="color:#0000ff">To</span> destWidth - 1<br /><span style="color:#008000">'same WTF as with the Y values,</span><br /><span style="color:#008000">'maybe will make more sense later?</span><br />
ox = x * xFactor - 0.5F<br />
ox1 = ox<br />
dx = ox - ox1<br /><br />
r = 0<br />
g = 0<br />
b = 0<br /><br /><br /><span style="color:#008000">'this loop is to gather the interpolated</span><br /><span style="color:#008000">'values of 2 pixels surrounding the current one</span><br /><span style="color:#0000ff">For</span> n <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
-1 <span style="color:#0000ff">To</span> 2<br /><span style="color:#008000">'this gets the Y coefficient</span><br /><br />
k1 = BicubicKernel(dy - n)<br /><br /><span style="color:#008000">'this seems to be getting the new</span><br /><span style="color:#008000">'Y pixel where the interpolated</span><br /><span style="color:#008000">'value comes from</span><br />
oy2 = oy1 + n<br /><br /><span style="color:#008000">'this is to ensure we're in the right spot</span><br /><span style="color:#0000ff">If</span> oy2 &lt; 0 <span style="color:#0000ff">Then</span><br />
oy2 = 0<br /><span style="color:#0000ff">ElseIf</span> oy2 &gt; ymax <span style="color:#0000ff">Then</span><br />
oy2 = ymax<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#0000ff">For</span> m <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
-1 <span style="color:#0000ff">To</span> 2<br /><span style="color:#008000">'for X coefficient</span><br />
k2 = k1 * BicubicKernel(m - dx)<br /><br />
ox2 = ox1 + m<br /><br /><span style="color:#0000ff">If</span> ox2 &lt; 0 <span style="color:#0000ff">Then</span><br />
ox2 = 0<br /><span style="color:#0000ff">ElseIf</span> ox2 &gt; xmax <span style="color:#0000ff">Then</span><br />
ox2 = xmax<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#008000">'get original pixel color</span><br /><span style="color:#008000">' Dim origColor As Color = source.GetPixel(ox2, oy2)</span><br /><br /><span style="color:#008000">'writablebitmap pixel is AARRGGBB</span><br /><span style="color:#0000ff">Dim</span> srcColor <span style="color:#0000ff">As</span><span style="color:#0000ff">Integer</span> =
src.Pixels(ox2 + (srcwidth * oy2))<br /><br /><br /><span style="color:#008000">'set interpolated values</span><br />
r += k2 * ((srcColor &gt;&gt; 16) <span style="color:#0000ff">And</span> &amp;HFF)<br />
g += k2 * ((srcColor &gt;&gt; 8) <span style="color:#0000ff">And</span> &amp;HFF)<br />
b += k2 * (srcColor <span style="color:#0000ff">And</span> &amp;HFF)<br /><span style="color:#0000ff">Next</span><br /><span style="color:#0000ff">Next</span><br /><br /><span style="color:#008000">'after calculating coefficients we have our new color </span><br />
dest.Pixels(x + (destWidth * y)) = &amp;HFF000000 <span style="color:#0000ff">Or</span> (r
&lt;&lt; 16) <span style="color:#0000ff">Or</span> (g &lt;&lt; 8) <span style="color:#0000ff">Or</span> b<br /><br /><br /><span style="color:#0000ff">Next</span><br /><span style="color:#0000ff">Next</span><br />
dest.Invalidate()<br /><span style="color:#0000ff">Dim</span> endTime <span style="color:#0000ff">As</span> DateTime
= Now<br />
Diagnostics.Debug.WriteLine(<span style="color:#0000ff">String</span>.Format(<span style="color:#a31515">"Time
taken to squish {0}x{1} to {2}x{3} : {4} seconds"</span>, srcwidth, srcHeight,
destWidth, destHeight, endTime.Subtract(startTime).TotalSeconds))<br /><br /><span style="color:#0000ff">End</span><span style="color:#0000ff">Sub</span><br /><br /><span style="color:#0000ff">Shared</span><span style="color:#0000ff">Function</span> BicubicKernel(<span style="color:#0000ff">ByVal</span> x <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span>) <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span><br /><br /><span style="color:#0000ff">If</span> x &gt; 2.0 <span style="color:#0000ff">Then</span><br /><span style="color:#0000ff">Return</span> 0.0<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#0000ff">Dim</span> a, b, c, d <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span><br /><span style="color:#0000ff">Dim</span> xm1 <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span> =
x - 1.0<br /><span style="color:#0000ff">Dim</span> xp1 <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span> =
x + 1.0<br /><span style="color:#0000ff">Dim</span> xp2 <span style="color:#0000ff">As</span><span style="color:#0000ff">Double</span> =
x + 2.0<br /><br /><br /><br /><span style="color:#0000ff">If</span> xp2 &lt;= 0 <span style="color:#0000ff">Then</span><br />
a = 0<br /><span style="color:#0000ff">Else</span><br />
a = xp2 * xp2 * xp2<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#0000ff">If</span> xp1 &lt;= 0 <span style="color:#0000ff">Then</span><br />
b = 0<br /><span style="color:#0000ff">Else</span><br />
b = xp1 * xp1 * xp1<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#0000ff">If</span> x &lt;= 0 <span style="color:#0000ff">Then</span><br />
c = 0<br /><span style="color:#0000ff">Else</span><br />
c = x * x * x<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#0000ff">If</span> xm1 &lt;= 0 <span style="color:#0000ff">Then</span><br />
d = 0<br /><span style="color:#0000ff">Else</span><br />
d = xm1 * xm1 * xm1<br /><span style="color:#0000ff">End</span><span style="color:#0000ff">If</span><br /><br /><span style="color:#0000ff">Return</span> (0.16666666666666666 * (a - (4.0 * b) +
(6.0 * c) - (4.0 * d)))<br /><br /><span style="color:#0000ff">End</span><span style="color:#0000ff">Function</span></div>
          </div>
        </div>
        <p>
There's one caveat though, I didn't do any Alpha premultiplication with this code,
which basically means if your images have a non FULLY opaque region, the results won't
be pretty. Here's your <a href="http://nokola.com/blog/post/2010/01/27/The-Most-Important-Silverlight-WriteableBitmap-Gotcha-Does-It-LoseChange-Colors.aspx" target="_blank">homework
assignment</a> if you want to have that functionality.
</p>
        <p>
I learnt 2 things while porting this code.
</p>
        <ol>
          <li>
Don't use <strong>Math.Pow()</strong> if your code is time sensitive, <em>ie. it needs
to work REALLY REALLY fast. Like in a game render loop.</em> Takes a bit longer to
run <em>math.pow(x,3) </em>instead of <em>x*x*x</em>. Not saying you shouldn't use
it, just don't use it when MILISECONDS matter.</li>
          <li>
Visual Basic's <strong>IIF</strong> statement isn't good for performance as well since
BOTH true and false statements seem to be evaluated and does execution time is wasted
when execution time matters. Better to use the usual <strong>IF..ELSE..ENDIF</strong> construct.</li>
        </ol>
        <p>
After my little exercise in dabbling with this, THEN I find a <a href="http://writeablebitmapex.codeplex.com/" target="_blank">WriteBitmapEx</a> library
which pretty much seems to be a very useful class for raw manipulation of images in
Silverlight, check it out!
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>Maybe I've Been Trying Too Hard.</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,d750310b-c8e3-45fc-bf60-65880c3173f3.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,d750310b-c8e3-45fc-bf60-65880c3173f3.aspx</id>
    <published>2010-03-14T19:52:38.6460913+08:00</published>
    <updated>2010-03-14T19:52:38.6460913+08:00</updated>
    <category term="Gear" label="Gear" scheme="http://www.marauderzstuff.com/CategoryView,category,Gear.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Now that I've made my mobile hotspot belt, and then having everyone say... it's a
terrorist's suicide belt. My aim was now to make the thing NOT look like I want to
blow myself up with it. So again I head down to Daiso to see what kind of weird shit
I can find and use.
</p>
        <p>
Why do I love going to Daiso? Because for a crazy person like me, it's a supermarket
filled with things I can use for my ideas and all going for a single price of RM5
so I don't have to think too much about how expensive the item I'm cutting up. And
also, when I buy something I can think of it's FUNCTION and not of it's PRICE. So..
from today's shopping.
</p>
        <p>
First of is a open ended measuring tape on belt carrying case.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06287.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06287" border="0" alt="DSC06287" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06287_thumb.jpg" width="370" height="289" />
          </a>
        </p>
        <p>
Which I turn into my mobile router carrying case
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06292.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06292" border="0" alt="DSC06292" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06292_thumb.jpg" width="370" height="279" />
          </a>
        </p>
        <p>
COMPLETE with easy access holes for the power and USB ports.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06293.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06293" border="0" alt="DSC06293" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06293_thumb.jpg" width="370" height="284" />
          </a>
        </p>
        <p>
A closed version of the measuring tape carrying case.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06288.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06288" border="0" alt="DSC06288" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06288_thumb.jpg" width="370" height="283" />
          </a>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
Is used to house the smaller 6V battery.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06294.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06294" border="0" alt="DSC06294" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06294_thumb.jpg" width="370" height="283" />
          </a>
        </p>
        <p>
An old MiniDisc belt case.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06286.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06286" border="0" alt="DSC06286" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06286_thumb.jpg" width="370" height="283" />
          </a>
        </p>
        <p>
Due to it's stretchable nature, can be used to carry the bigger 6V SLAB.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06289.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06289" border="0" alt="DSC06289" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06289_thumb.jpg" width="370" height="285" />
          </a>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
This is what the belt now looks like when multiple components are attached to it.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06300.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06300" border="0" alt="DSC06300" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06300_thumb.jpg" width="370" height="254" />
          </a>
        </p>
        <p>
More like some dumb ass wearing way too much on his belt, less like some house made
explosives. Some wiring is still exposed but most people wouldn't notice it unless
they stare at it for too long.
</p>
        <p>
The back of the belt where the power wires run along is covered by some felt and held
in place with some velcro strips.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06299.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06299" border="0" alt="DSC06299" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06299_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
So, less exposed wiring means less people freaking out. :P While the belt works and
looks proper now, I found a problem with the construction. The power jack that connects
to the mobile router is too loose, it's easily jostled and causes the router to loose
power long enough to cause a reset. I'll need to way  of securing the power plug
to the mobile router if I want to use it this way.
</p>
        <p>
Then I took a quick look back at my little insect cage layout.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06301.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06301" border="0" alt="DSC06301" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06301_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
And I realized that it's actually a pretty good configuration. First of all, as the
components are more or less secured in the cage, they don't jostle around that much
and thus the power jack stays put. The reason the router stays put is because of this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06303.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06303" border="0" alt="DSC06303" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06303_thumb.jpg" width="370" height="252" />
          </a>
        </p>
        <p>
The USB modem almost touches the edge of the cage, so it acts as a support and stops
the router from slipping around in the cage.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06304.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06304" border="0" alt="DSC06304" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06304_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
While the larger 6V battery does slip around if there's too much movement, it's cushioned
from the router by the strap securing the router. Unfortunately during my latest testing
I noticed that when the router get's uncomfortably hot, heat is transferred to the
top of the battery. Not very cool since there's a <em>"Do not overheat above
60 degrees Celsius"</em>  warning on the battery. Must see if I can do anything
about that.
</p>
        <p>
The cage design also allows for me to reach the power switch to turn the whole system
on or off.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06307.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06307" border="0" alt="DSC06307" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/MaybeIveBeenTryingTooHard_FE1F/DSC06307_thumb.jpg" width="370" height="281" />
          </a>
        </p>
        <p>
I guess I should stop trying so hard to make a wearable mobile router solution, and
work more on how to make a proper transportation case for the whole setup so I can
just throw it into a bag. :P
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>Project Belt Is Complete</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,5cec57ba-6e9f-4cea-81d9-d49629cd4021.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,5cec57ba-6e9f-4cea-81d9-d49629cd4021.aspx</id>
    <published>2010-03-13T21:51:42.1607908+08:00</published>
    <updated>2010-03-13T21:51:42.1607908+08:00</updated>
    <category term="Gear" label="Gear" scheme="http://www.marauderzstuff.com/CategoryView,category,Gear.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Today I went to pick up some parts to complete my <a href="http://www.marauderzstuff.com/PermaLink,guid,ca2aca90-9008-46cc-86e7-24f45a8002e7.aspx" target="_blank">Mobile
Hotspot Project</a>, first of all I decided to get a smaller sized battery since the
one I had original, is big and bulky. So I wanted to get something that's smaller
and easier to carry around.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06275.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06275" border="0" alt="DSC06275" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06275_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
So I got this, 6V 1.2AH battery. My first surprise was that while the battery capacity
was about 1/4 of the big battery, it costs TWICE as much! While I was soldering the
connection wire I learnt something new. I should solder the connector first, before
soldering the wires to the battery. Because I soldered the wires to the battery first
while I was soldering the connector... I shorted the connection with my soldering
iron, sparks flew! Good lesson...
</p>
        <p>
So after the smaller battery was completed and tested to be working I created the
other component which I wanted to make.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06276.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06276" border="0" alt="DSC06276" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06276_thumb.jpg" width="370" height="282" />
          </a>
        </p>
        <p>
        </p>
        <p>
A 4AA battery holder, with normal alkaline batteries these would theoretically give
out 6V of power which should be more than enough to power the router. I measured the
current with a multimeter and got a nice reading of 6.6V, So I went ahead and plugged
it to the router. And I was happily surfing the net with AA batteries.... for about
10 minutes. Then the router started flickering on and off, a good indication of low
power scenario. I unplugged the batteries and measured the power output and I got...
5.5V!?!?!?
</p>
        <p>
I figured it's because that when an alkaline battery is used out the voltage gradually
decreases on a slope. Unlike a rechargeable battery which is at the same voltage for
most of it's usable lifespan and then drops. I guess the way is to introduce more
power into the loop.
</p>
        <p>
Luckily I was prepared for this scenario. While I was thinking of using AA batteries
to power the setup, I was planning to use rechargeable batteries. But.. a rechargeable
AA battery only has a voltage capacity of 1.25V, 4x1.25V = 5V. Cutting it a bit close
so I thought of an idea, which is to make a power booster to bump up the voltage.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06277.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06277" border="0" alt="DSC06277" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06277_thumb.jpg" width="370" height="282" />
          </a>
        </p>
        <p>
This battery case will be linked in series to the power source it's connected to,
boosting the voltage of whatever it's connected to by 3V. Once I plugged this in I
can again power the router... for a while, once again I could see a very drastic drop
of power in the alkalines once hooked up to the router. It's obvious that alkalines
aren't the best source of power to be used in this scenario.
</p>
        <p>
I then decided to work on a power switch so I can turn power on and off when I wanted
to without having to disconnect the power source to the component.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06278.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06278" border="0" alt="DSC06278" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06278_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
You might have noticed that each piece is more or less interchangable. This allows
me to have some form of extendable system, for example I can have the router powered
by 4AA batteries, as well as controlled by the power switch.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06280.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06280" border="0" alt="DSC06280" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06280_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Then if needed to, I can plug in the booster pack.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06282.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06282" border="0" alt="DSC06282" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06282_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Depending on the situation, I can plug in an extension wire, and then the lightweight
6V battery.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06283.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06283" border="0" alt="DSC06283" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06283_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
The reason I needed this extensibility was because I had a crazy idea, and it involves
this thing.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06284.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06284" border="0" alt="DSC06284" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06284_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
A belt strap... cause I want to try and do this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06285.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06285" border="0" alt="DSC06285" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/ProjectBeltIsComplete_12B69/DSC06285_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Hook everything up to it and really carry it around in a portable manner, the problem
of course is that if people saw a SLAB strapped to someone, they probably would think
that I'm a suicide bomber or something!
</p>
        <p>
Anyone have a good idea to make a belt like this look less like a suicide belt? 
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>I should have more training</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,c1b986b0-03a9-42c3-b4a9-94bdfac4c2f3.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,c1b986b0-03a9-42c3-b4a9-94bdfac4c2f3.aspx</id>
    <published>2010-03-12T22:26:41.3095669+08:00</published>
    <updated>2010-03-12T22:26:41.3095669+08:00</updated>
    <category term="Gear" label="Gear" scheme="http://www.marauderzstuff.com/CategoryView,category,Gear.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
There are times when I wish I had more training and understanding about how to build
electronic hacks. Especially at times when it involves AC current.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06270.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06270" border="0" alt="DSC06270" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06270_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Here I've taken an AC/DC adapter, replaced it's head with a composite jack.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06271.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06271" border="0" alt="DSC06271" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06271_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Just so I can charge the SLAB I gotten for my <a href="http://www.marauderzstuff.com/PermaLink,guid,ca2aca90-9008-46cc-86e7-24f45a8002e7.aspx" target="_blank">portable
hotspot</a> project.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06273.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06273" border="0" alt="DSC06273" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06273_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
And I don't think I chose a safe spot to do it too!
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06272.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06272" border="0" alt="DSC06272" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/DSC06272_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Well, power should flow from the higher 7.5V of the adapter to recharge the lower
6V of the battery.. I THINK! The charging method matches what Adrian used in his <a href="http://www.techarp.com/showarticle.aspx?artno=12&amp;pgno=11" target="_blank">battery
extender</a> project. But heck, I'm not sure if I done everything right!
</p>
        <p>
Also, the power adapter is FICKLE!! Sometimes when I turn it on it pumps out 3.5V,
sometimes.. it pumps out 7.5V.. it's weird! And... how do I know if the battery is
being charged? Well... the adapter was hot for a while. And I think at charge the
battery has a 6.5V rating.
</p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
Maybe I should abandon project <strong>Mobile Belt</strong>?
</p>
        <p>
          <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Ishouldhavemoretraining_1396A/image_3.png" width="481" height="256" />
        </p>
      </div>
    </content>
  </entry>
  <entry>
    <title>One More To Go.</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,1c604616-f181-4e08-b456-7be3280a0887.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,1c604616-f181-4e08-b456-7be3280a0887.aspx</id>
    <published>2010-03-12T09:50:27.1566084+08:00</published>
    <updated>2010-03-12T09:50:27.1566084+08:00</updated>
    <category term="Gear" label="Gear" scheme="http://www.marauderzstuff.com/CategoryView,category,Gear.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/OneMoreToGo_8A8C/DSC06269.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06269" border="0" alt="DSC06269" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/OneMoreToGo_8A8C/DSC06269_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Just one more! 
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>So, you wanted your internet connection everywhere?</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,ca2aca90-9008-46cc-86e7-24f45a8002e7.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,ca2aca90-9008-46cc-86e7-24f45a8002e7.aspx</id>
    <published>2010-03-07T21:27:32.5161069+08:00</published>
    <updated>2010-03-07T21:27:32.5161069+08:00</updated>
    <category term="Gear" label="Gear" scheme="http://www.marauderzstuff.com/CategoryView,category,Gear.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Got a new toy recently. This here is the <a href="http://www.sapido.com.tw/EN/productgr1102o.htm" target="_blank">Sapido
GR1102</a></p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06254.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06254" border="0" alt="DSC06254" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06254_thumb.jpg" width="370" height="283" />
          </a>
        </p>
        <p>
It's basically a compact internet router.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06255.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06255" border="0" alt="DSC06255" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06255_thumb.jpg" width="281" height="370" />
          </a>
        </p>
        <p>
So you can use this to share a hotel internet connection and what not, just like a
normal router. But of course if it was just another compact router, I wouldn't have
gotten it. :P 
</p>
        <p>
Along with a couple of other features which you can find out about on the product <a href="http://www.sapido.com.tw/EN/productgr1102o.htm" target="_blank">website</a>,
the 1st reason that I got the Sapido is that you can do this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06257.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06257" border="0" alt="DSC06257" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06257_thumb.jpg" width="370" height="285" />
          </a>
        </p>
        <p>
You can plug in a supported USB 3G modem which can then be shared wirelessly. This
is especially handy when you got to meetings in other people's offices and you'd rather
not <em>(or are not allowed to)</em> connect to their office network to get internet
connectivity. You might argue that you could just connect the modem to your notebook
and do the same thing, but what if you had multiple people from your office attending
the meeting? Even though you can use internet connection sharing in Windows to share
the connection, a dedicate device offers better performance... and your machine doesn't
wait cycles trying to act as a router.
</p>
        <p>
All this is fine, WHEN you have a power plug to connect to though. That's why here's
the other reason I got this nifty little thing.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06258.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06258" border="0" alt="DSC06258" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06258_thumb.jpg" width="370" height="284" />
          </a>
        </p>
        <p>
The GR1102 is able to be powered by 5V delivered via a USB mini cable. Or if you swap
out the AC plug with the supplied connector.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06260.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06260" border="0" alt="DSC06260" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06260_thumb.jpg" width="370" height="286" />
          </a>
        </p>
        <p>
You can then power it with DC current ranging from 5V ~ 12V. It sounds GREAT in theory,
all I have to do is bundle this along with any one of my USB power supplies and I
can be a mobile hotspot wherever I go. But what you can't see is the current requirements.
Let me adjust the image so you can see the writing on the power socket more clearly.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06261.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06261" border="0" alt="DSC06261" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06261_thumb.jpg" width="370" height="275" />
          </a>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
It says "5-12V Min 10W". Now how would you go about getting 10W from 5V?
It would mean that the power supply would need to be able to deliver 5V <strong>2Amps(!)</strong><a href="http://www.sapido.com.tw/EN/faq/solution-77.htm" target="_blank">Checking
with the Sapido website</a> I found out that you don't actually need 2A, but rather
just 1.5A. This is still a VERY high current requirement. As I mentioned in my <a href="http://www.marauderzstuff.com/PermaLink,guid,69fed50d-b6c2-4198-8eec-ba5ba10425be.aspx" target="_blank">car
charger article</a> previously. Sometimes it's not just a matter of volts but also
amps in order to power your devices. Let me give you some examples of 5V power sources
you have access to. Your computer's USB port is rated for 5V 1A, so the Sapido can
NOT be powered by just ONE USB port, so you'll need to use a Y cable to power it.
A typical USB battery source like what I <a href="http://www.marauderzstuff.com/PermaLink,guid,a45c3f2e-8fb0-4a1e-9c28-84df75e5d7c8.aspx" target="_blank">have</a>,
outputs 5V but in varying current ranges from 500MiliAmps <em>(apologies to people
who actually know how to write the proper current notation, cause I CLEARLY DON'T!) </em>to
1A. This is because they typically use some form of a 3.7V LiIon battery in them and
then boost the voltage to 5V lowering it's current capability as a result. 
</p>
        <p>
So after futilely trying out a few other external batteries in the market, I figured
I needed to build my own power source, a battery that clearly delivers the required
voltage without passing through any voltage converters. I did the math and decided
that I could build a battery pack out of <strong>EIGHT AA BATTERIES </strong><em>(8
x 1.2V = 9.6V, y 1.2? Rechargable batteries mar!) </em>But I decided to try this first.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06263.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06263" border="0" alt="DSC06263" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06263_thumb.jpg" width="283" height="370" />
          </a>
        </p>
        <p>
This is what we call a SLAB <em>(Sealed Lead Acid Battery)</em>, You don't usually
see one on it's own like this but it's used in thing's like UPS's, Motorcycles, and
other equipment.  It's a good choice for powering the Sapido because SLABs have <em>(AFAIK)</em> high
current capacity, It's NOT a good choice for portability because SLABs are HEAVY!
This one weighs errr.... more than 500 grams less than a kilo.
</p>
        <p>
While SLABs are rechargeable batteries, I don't have any experience in building whatever
that will recharge the battery so I referred to Adrian's old <a href="http://www.techarp.com/showarticle.aspx?artno=12&amp;pgno=11" target="_blank">battery
extender guide</a> since he used a SLAB before. So half an hour later and again reminding
myself I have no idea how to solder connector plugs properly I ended up with this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06266.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06266" border="0" alt="DSC06266" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06266_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
And it works perfectly!! The battery supplies enough power to the router and I have
my mobile hotspot. Or do I? I realized that not many people have actually seen a SLAB
before, in fact I'd think that most people would have seen SLABs being used as bomb
triggers in movies or TV shows. So I told myself carrying a SLAB with wires and tape
all over it might not be such a good idea right now. I head on over to my favorite
place for finding weird shit nowadays – <a href="http://www.daiso-sangyo.co.jp/english/storeinfo/malaysia.html" target="_blank">Daiso</a>.
And I ended up with this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06248.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06248" border="0" alt="DSC06248" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06248_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
For those of you who are thinking WTF? This is an INSECT CAGE, I decided to get this
one instead of other <em>normal</em> cases because the router can get QUITE hot when
in use, so the open ventilation should be sufficient to cold it off. I used the straps
from my previous attempt at a car pc to secure the devices.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06249.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06249" border="0" alt="DSC06249" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Soyouwantedyourinternetconnectioneverywh_10076/DSC06249_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
The 2 things just barely fit into the case itself, I haven't really done a proper
test run yet cause I haven't been able to obtain a proper adapter to charge the SLAB
and thus I don't know how long the power will last <em>(Unless someone tells me that
it's ok to pump 9V into the SLAB to charge it even though it says it's charging voltage
is 7.2V)</em> I'm really interested in seeing if the router will <strong>melt</strong> the
cage after prolonged use!
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>One Step Closer</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,90c83ae2-9f42-423e-a069-ea0725a60733.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,90c83ae2-9f42-423e-a069-ea0725a60733.aspx</id>
    <published>2010-03-07T00:26:10.6536129+08:00</published>
    <updated>2010-03-07T00:26:10.6536129+08:00</updated>
    <category term="Gen 2" label="Gen 2" scheme="http://www.marauderzstuff.com/CategoryView,category,Gen2.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I still remember taking this picture.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/OneStepCloser_59F/DSC01929.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC01929" border="0" alt="DSC01929" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/OneStepCloser_59F/DSC01929_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
This was in 2008, WZ was just slightly over a year old then but he wanted to try and
drive. And now...
</p>
        <p>
          <object width="480" height="385">
            <param name="movie" value="http://www.youtube.com/v/0juvLh_cyxo&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x402061&amp;color2=0x9461ca" />
            <param name="allowFullScreen" value="true" />
            <param name="allowscriptaccess" value="always" />
            <embed src="http://www.youtube.com/v/0juvLh_cyxo&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x402061&amp;color2=0x9461ca" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385">
            </embed>
          </object>
        </p>
        <p>
Soon... soon...
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>Don't Call It A Q&amp;A When You Can't Answer Anything!</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,c7a03adf-75d0-464d-8327-a09742062e4f.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,c7a03adf-75d0-464d-8327-a09742062e4f.aspx</id>
    <published>2010-03-05T11:24:36.3132129+08:00</published>
    <updated>2010-03-05T11:30:22.7112129+08:00</updated>
    <category term="Windows Mobile" label="Windows Mobile" scheme="http://www.marauderzstuff.com/CategoryView,category,WindowsMobile.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just wasted my time paying attention to the #WP7Dev hashtag on Twitter just now, I <em>(as
well as other developers I think)</em> thought it was to coincide with the announcement
of the available frameworks on Windows Phone 7 Series <a href="http://blogs.msdn.com/ckindel/archive/2010/03/04/different-means-better-with-the-new-windows-phone-developer-experience.aspx" target="_blank">done
here</a>. Another interesting thing to find out was that MS is still gonna push WM6.5
hmmmm, most likely WM6.5 is gonna become the preferred Enterprise App developement
platform for writing company specific applications and the like, and WP7 for end users.
That'll make for an interesting split... we'll see what happens.
</p>
        <p>
So I was right about my predictions on XNA support in Windows Phone 7, I wouldn't
call my prediction that Silverlight 4 support is right until they announce it at MIX,
this is because from my point of view. The SL4 beta that we have access to is not
fully suitable/capable of being an actual client framework yet. Hopefully something
will change at <a href="http://live.visitmix.com/" target="_blank">MIX '10</a></p>
        <p>
Which was my main peeve about the Q&amp;A session just now. They called it a Q&amp;A
session, but when most questions could not be answered, or had to be answered with
a WFM <em>(Wait for MIX)</em> remark. WHY DID THEY EVEN BOTHER TO CALL IT A Q&amp;A!!!
</p>
        <p>
Just make the announcement on Twitter about the frameworks and leave it at that then,
then people won't be pissed when they can't actually get any answers out of you since
you never said you'd answer questions!
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>This is how you make a toy</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,4df7387c-d277-4dce-a6ac-ed2ebf4d4595.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,4df7387c-d277-4dce-a6ac-ed2ebf4d4595.aspx</id>
    <published>2010-03-04T23:32:34.9176129+08:00</published>
    <updated>2010-03-04T23:32:34.9176129+08:00</updated>
    <category term="Gear" label="Gear" scheme="http://www.marauderzstuff.com/CategoryView,category,Gear.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Kids around my part of the world most likely would know about Masked Rider, basically
it's a super hero that fights monsters on a weekly basis, and it has been around for
a long long time. The main thing that made it cool for us kids was the transformation
belts which the heroes wore, or drivers as they are called. So anyway here's a video
of the latest Kamen Rider <strong>Double</strong>'s transformation sequence.
</p>
        <p>
          <object width="560" height="340">
            <param name="movie" value="http://www.youtube.com/v/aoStSSHIUvg&amp;hl=en_US&amp;fs=1&amp;" />
            <param name="allowFullScreen" value="true" />
            <param name="allowscriptaccess" value="always" />
            <embed src="http://www.youtube.com/v/aoStSSHIUvg&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340">
            </embed>
          </object>
        </p>
        <p>
And now... this is how the TOY works.
</p>
        <p>
          <object width="425" height="344">
            <param name="movie" value="http://www.youtube.com/v/gdqveePx5dc&amp;hl=en&amp;fs=1" />
            <param name="allowFullScreen" value="true" />
            <param name="allowscriptaccess" value="always" />
            <embed src="http://www.youtube.com/v/gdqveePx5dc&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344">
            </embed>
          </object>
        </p>
        <p>
It pretty much works EXACTLY THE SAME!!! I was really surprised as to how similar
it was compared to the one depicted in the show. And then there's the detail of the
thing.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06118.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06118" border="0" alt="DSC06118" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06118_thumb.jpg" width="370" height="282" />
          </a>
        </p>
        <p>
It looks almost exactly the same to me. Even the <em>memory modules</em> in the show
also look just like the toy. Down to the visible speaker at the top of the unit.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06124.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06124" border="0" alt="DSC06124" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06124_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
        </p>
        <p>
Such good design and detail leads me to one question.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06120.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06120" border="0" alt="DSC06120" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06120_thumb.jpg" width="370" height="253" />
          </a> 
</p>
        <p>
Which came first? The toy or the prop? Cause I think it's sure possible that they
designed the toy, ensured how it works. Then made use of the thing in the show. What
an impressive way to make a toy which every Kamen Rider watching kid would want!
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06106.jpg" target="_blank">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="DSC06106" border="0" alt="DSC06106" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thisishowyoumakeatoy_1232B/DSC06106_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
It's not like I can wear the thing!
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>The darn glowing trees</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,245d8384-4acd-4fbe-9474-7458c038aca2.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,245d8384-4acd-4fbe-9474-7458c038aca2.aspx</id>
    <published>2010-02-25T01:30:55.8405714+08:00</published>
    <updated>2010-02-25T01:30:55.8405714+08:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06027.jpg" target="_blank">
          <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06027" border="0" alt="DSC06027" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06027_thumb.jpg" width="370" height="253" />
        </a>
        <p>
        </p>
        <p>
So I went to look at some lights in the shape of trees in Shah Alam I-City, I wouldn't
exactly say it was a fun experience. First of all when we got there we had the choice
to park in 2 places, illegally on the road shoulder of a 4 lane highway opposite the
park where said trees are, or in a large deep car park where you need to walk a bit
before you can get back topside to where the fun is.
</p>
        <p>
Walking isn't usually a problem but when kids and old people are involved, you could
see those kind of people just worn out and sitting on the streets. This was definitely
NOT meant to be a tourist spot. There were some parking near the park area.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05902.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05902" border="0" alt="DSC05902" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05902_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
But if you tried to park in these parking, someone resembling these guys will descend
upon you.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05877.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05877" border="0" alt="DSC05877" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05877_thumb.jpg" width="370" height="283" />
          </a>
        </p>
        <p>
And tell you that you can't park in the parking. I wonder why since no one is using
the spots at night anyway not like we're taking spots away from the tenants. Then
one of them reminded me that <em>"This is private property, you come into my
house, you abide by my rules"</em> Well said I-City, I'll remember that. 
</p>
        <p>
So what can you see over at I-City? You're going there to see stuff like this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05903.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05903" border="0" alt="DSC05903" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05903_thumb.jpg" width="230" height="300" />
          </a>
        </p>
        <p>
LED Lights. Tons and tons of LED lights.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05888.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05888" border="0" alt="DSC05888" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05888_thumb.jpg" width="370" height="255" />
          </a>
        </p>
        <p>
Some will be drapped over wireframes to form some interesting shapes.
</p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06075.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06075" border="0" alt="DSC06075" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06075_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Then there are some that are just hung around.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05894.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05894" border="0" alt="DSC05894" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05894_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
Hmmm.. maybe that's why they wanted to keep the parking empty? But then again there're
many spots outside of this scenic shot. 
</p>
        <p>
And of course you get to see these.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06051.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06051" border="0" alt="DSC06051" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06051_thumb.jpg" width="258" height="370" />
          </a>
        </p>
        <p>
These darn LED trees.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06041.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06041" border="0" alt="DSC06041" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06041_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
While they might look like real trees decorated with lights
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06052.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06052" border="0" alt="DSC06052" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06052_thumb.jpg" width="370" height="253" />
          </a>
        </p>
        <p>
They're not. So we're not looking at some meticulously decorated tree here. These
are essentially glorified <strong>LAMP POSTS</strong>. But I guess it's ok that they
are fake trees cause I felt a lot of heat coming from such a huge concentration of
lights. <em>(Then again it could have just been the weather.)</em></p>
        <p>
Nothing particularly outstanding, but I guess since they don't charge any entrance
fee other than having you walk around a lot. And it is closer than FGS from PJ. So...
if you have the time... why not?
</p>
        <p>
 <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06096.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06096" border="0" alt="DSC06096" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06096_thumb.jpg" width="370" height="253" /></a></p>
        <p>
The shot you see above contains about 1/3 of what there is to see over there.
</p>
        <p>
Oh.. point to note for all you budding photographers going to all these light shows
and trying to take shots of the lights. While a slow shutter speed will help you get
nice pictures of lights, if you need to take pictures of people standing in front
of lights like this.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05964.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05964" border="0" alt="DSC05964" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05964_thumb.jpg" width="252" height="370" />
          </a>
        </p>
        <p>
Read your manual and figure out how to turn on rear sync flash, or night scene mode.
So that you don't end up killing the effect of the lights with your flash and having
your significant other go <em>"DEE SLR also cannot take nice light picture one
geh?"</em></p>
        <p>
Of course, if your camera can manage a high ISO shot. You can retain the multi color
lit ambience of the trees.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06056.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC06056" border="0" alt="DSC06056" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC06056_thumb.jpg" width="261" height="370" />
          </a>
        </p>
        <p>
I'm not teaching you how to take photos here, I'm just letting you know you should
familiarize yourself with your gear for tricky shots like this. Lest your partner
keep reminding you that your expensive camera can't take nice pictures.
</p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05997.jpg" target="_blank">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="DSC05997" border="0" alt="DSC05997" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/Thedarnglowingtrees_8C7/DSC05997_thumb.jpg" width="262" height="370" />
          </a>
        </p>
        <p>
OK.... I think I'm ready to go to FGS Dong Zen on Friday night then.
</p>
      </div>
    </content>
  </entry>
  <entry>
    <title>One Hell Of A Night</title>
    <link rel="alternate" type="text/html" href="http://www.marauderzstuff.com/PermaLink,guid,693f66df-ea21-44ce-bbfa-2f94ce6797fe.aspx" />
    <id>http://www.marauderzstuff.com/PermaLink,guid,693f66df-ea21-44ce-bbfa-2f94ce6797fe.aspx</id>
    <published>2010-02-23T00:17:43.0401076+08:00</published>
    <updated>2010-02-23T00:17:43.0401076+08:00</updated>
    <category term="General" label="General" scheme="http://www.marauderzstuff.com/CategoryView,category,General.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
I had one hell of a night yesterday, first of all at around 1AM I saw a very pissed
off wife run outside the house. For those unfamiliar with Chinese customs 22nd Feb
was the night where some special prayers would be done by some chinese.
</p>
        <p>
And someone in our neighbourhood were launching thunderclaps NON STOP from 12AM to
1AM, and everytime one of those thing’s screeched through the sky, it’d wake up the
dog behind my house, and more importantly it’d woke up my wife. So instead of letting
her go postal on the people I decided to take it upon myself to find the source of
the disturbance and take care of it.
</p>
        <p>
I found the source which was a house a couple of blocks away from mine, there were
2 kids constantly setting off the things while their parents looked on. I appealed
to their community spirit and asked them to stop. Luckily they complied, and I went
back home to sleep.
</p>
        <p>
Until I heard the dogs barking and someone banging on the window of the side room
where my maid used to sleep in. Through the tinted kitchen window I saw a man walking
around the back of the house. My father scared him off by screaming at him from behind
the window, at which point I ran outside to see if he dropped anything and I found
this in the drain.
</p>
        <p>
          <a href="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/OneHellOfANight_428/IMAG0176_2.jpg">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IMAG0176" border="0" alt="IMAG0176" src="http://www.marauderzstuff.com/content/binary/WindowsLiveWriter/OneHellOfANight_428/IMAG0176_thumb.jpg" width="230" height="370" />
          </a>
        </p>
        <p>
At first I thought this was a condom wrapper from afar, but it turns out to be chewing
tobacco according to friends who can read the words. Now I’m just afraid if the person
will return and try to take any action against our house since we pissed him off..
</p>
        <p>
sigh…
</p>
      </div>
    </content>
  </entry>
</feed>