
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">Weblog</title>
    <subtitle type="text">Weblog:</subtitle>
    <link rel="alternate" type="text/html" href="http://jakemauer.com/weblog/" />
    <link rel="self" type="application/atom+xml" href="http://jakemauer.com/site/atom/" />
    <updated>2011-03-02T07:53:26Z</updated>
    <rights>Copyright (c) 2011, Jake Mauer</rights>
    <generator uri="http://expressionengine.com/" version="1.7.0">ExpressionEngine</generator>
    <id>tag:jakemauer.com,2011:03:02</id>


    <entry>
      <title>Railo on MediaTemple DV Server</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/railo-on-mediatemple-dv-server/" />
      <id>tag:jakemauer.com,2011:weblog/1.567</id>
      <published>2011-03-02T06:33:25Z</published>
      <updated>2011-03-02T07:53:26Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        	<p><p>A few months back I was tasked with getting <em>Railo</em> to run on MediaTemple&#8217;s DV server. It was a success, but a bit hairy at points. I had to cobble together instructions from several other guides and wing it in places that they didn&#8217;t cover.</p> <p>What follows is instructions to get Railo, and thus ColdFusion support, running on a server stack that doesn&#8217;t support it out of the box.  <p><strong>A few notes:</strong> <br />
 To the best of my knowledge and testing, installing Railo will not interfere with the default Apache, MySQL, or <span class="caps">PHP</span>&#8217;s ability to serve pages. Also I am posting these instructions in the event you want or <em>have</em> to put Railo on a DV server. If you&#8217;re just looking for solid Railo hosting, I suggest <a href="http://www.viviotech.net/services/railo.cfm">VivioTech</a>.</p> <p><strong>Also,</strong> This guide assumes you have at least basic knowledge of VI or its sibling <span class="caps">VIM</span>. If not, head <a href="http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html"> over here </a> to get yourself acquainted. </p> <h4>Getting Started</h4>  <p>Tutorials used in the creation of this guide:</p>  <ul>   <li><a href="http://po.chassay.net/blog/post.cfm/installing-railo-3-1-0-012-on-linux-cent-os-5-2">http://po.chassay.net/blog/post.cfm/installing-railo-3-1-0-012-on-linux-cent-os-5-2</a> </li>    <li><a href="http://www.harrassed.net/2010/04/railo-installation-and-setup-centos-cpanel-and-resin/">http://www.harrassed.net/2010/04/railo-installation-and-setup-centos-cpanel-and-resin/</a> </li>    <li><a href="http://www.escapekeys.com/blog/2010/2/15/Installing-Railo-312-on-Centos-54">http://www.escapekeys.com/blog/2010/2/15/Installing-Railo-312-on-Centos-54</a> </li>    <li><a href="http://hostek.com/faq/kb/?action=recorddetail&amp;rec=335&amp;category=VPS">http://hostek.com/faq/kb/?action=recorddetail&amp;rec=335&amp;category=VPS</a> </li>    <li><a href="http://blog.getrailo.com/post.cfm/installing-resin-railo-on-centos">http://blog.getrailo.com/post.cfm/installing-resin-railo-on-centos</a> </li> </ul> <br />  <h4>Pre-Setup</h4>  <ol>   <li>Setup and configure your Plesk admin panel </li>    <li>Setup an initial user and site domain. In this guide we're using <a href="http://example.com">example.com</a></li>    <li>In MediaTemple's Account Center, enable the root user, and install developer tools. </li>    <li>Follow this guide to install the Yum package manager:<a href="http://wiki.mediatemple.net/w/DV:Install_YUM"> <a href="http://wiki.mediatemple.net/w/DV:Install_YUM">http://wiki.mediatemple.net/w/DV:Install_YUM</a></a></li> </ol>  <h4>Java Setup</h4>  <ol>   <li>SSH into your dv server through the terminal, where '1.2.3.4' is your DV server IP.     <br />ssh 1.2.3.4 -l root</li>    <li>Install various packages using yum:     <br /><pre>yum install make nano httpd-devel openssl-devel</pre></li>    <li>Search for and copy the download URL to the latest Java JDK (not JRE) for Linux. I'm not sure if MT's DV servers are 64 bit but I downloaded the non 64-bit version. Look for the non rpm.bin file.</li>    <li>Next, download the Java JDK to a new software folder we'll create:     <br /><pre>cd /opt       <br />mkdir soft        <br />cd soft        <br /></pre>The following wget command and the URL are all one line:      <br /><code>wget <a href="http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/VerifyItem-Start/jdk-6u23-linux-i586.bin?BundledLineItemUUID=5jqJ_hCvx5YAAAEsdwgpG9Ey&amp;OrderID=c4OJ_hCvOFIAAAEsaQgpG9Ey&amp;ProductID=QhOJ_hCw.dUAAAEsFIMcKluK&amp;FileName=/jdk-6u23-linux-i586.bin">http://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/VerifyItem-Start/jdk-6u23-linux-i586.bin?BundledLineItemUUID=5jqJ_hCvx5YAAAEsdwgpG9Ey&amp;OrderID=c4OJ_hCvOFIAAAEsaQgpG9Ey&amp;ProductID=QhOJ_hCw.dUAAAEsFIMcKluK&amp;FileName=/jdk-6u23-linux-i586.bin</a>       <br /></code>This will download the JDK. If the download looks like it is hanging you can press ctrl+c to break the wget command.</li>    <li>     <p>Now to install the JDK. The wget command may have downloaded the file with a large filename. Utilize tab completion for the following steps. In this instance, I would literally type <pre>./j{tab}</pre> and bash should autocomplete the rest of the path        <br /><code>./jdk-6u23-linux-i586.bin?AuthParam=1292000585_91de5ecde936ffb92e8f395cbe369400&amp;TicketId=nod2B1wRR3N7lesslEaeVZeZcg==&amp;GroupName=CDS&amp;FilePath=%2FESD6%2FJSCDL%2Fjdk%2F6u23-b05%2Fjdk-6u23-linux-i586.bin&amp;File=jdk-6u23-linux-i586.bin         <br /></code>Follow along with the notes it produces and press 'enter' where necessary.</p>   </li>    <li>     <p>Now we have a folder named jdk1.6.0_23. Let's create a symlink so that we can upgrade java later if necessary.       <br /><pre>ln -s jdk1.6.0_23 java         <br /></pre>Our Java directory is now <pre>/opt/soft/java</pre></p>   </li>    <li>     <p>Let's add java to our path       <br /><pre>nano /etc/profile.d/java.sh         <br /></pre>Add the following lines to java.sh:        <br /><pre>export JAVA_HOME=/opt/soft/jdk1.6.0_13/         <br />export PATH=$JAVA_HOME/bin:$PATH          <br /></pre>Save the file and when complete, run this command to make it executable:        <br /><pre>chmod +x /etc/profile.d/java.sh</pre></p>   </li>    <li>     <p>Log off your SSH connection and re-login. Try:       <br /><pre>java -version         <br /></pre>If Java is installed correctly you should see:        <br /><pre>java version &quot;1.6.0_23&quot;         <br />Java(TM) SE Runtime Environment (build 1.6.0_23-b05)          <br />Java HotSpot(TM) Client VM (build 19.0-b09, mixed mode)</pre></p>   </li> </ol>  <h4>Railo Setup</h4>  <ol>   <li>     <p>Find the latest Railo stable release download URL. You want the 'with-jre' option. Technically we don't need its included JRE, but when this guide was written it was the only available download with configure and make files.</p>   </li>    <li>     <p><pre>cd /opt/soft</pre></p>   </li>    <li>     <p><code>wget <a href="http://www.getrailo.org/down.cfm?item=/railo/remote/download/3.1.2.001/railix/all/railo-3.1.2.001-railo-express-without-jre.tar.gz">http://www.getrailo.org/down.cfm?item=/railo/remote/download/3.1.2.001/railix/all/railo-3.1.2.001-railo-express-without-jre.tar.gz</a></code></p>   </li>    <li>     <p><pre>tar -xvzf railo-3.1.2.001-railo-express-with-jre-linux.tar.gz</pre></p>   </li>    <li>     <p>Create a symlink just as we did with Java       <br /><pre>ln -s railo-3.1.2.001-railo-express-with-jre-linux railo</pre></p>   </li>    <li>     <p><pre>cd railo</pre></p>   </li>    <li>     <p>Now to build and install it       <br /><pre>./configure --with-java-home=/opt/soft/java/ --with-apxs=/usr/sbin/apxs         <br />make          <br />make install          <br /></pre>Note: At the time of this writing the 'make' command will fail. If that occurs proceed with the following steps.        <br /><pre>mv Makefile.in Makefile.in.tmp         <br />mv Makefile.am Makefile.in          <br />make reset          <br />./configure --with-java-home=/opt/soft/java/ --with-apxs=/usr/sbin/apxs          <br />make          <br />make install</pre></p>   </li>    <li>     <p>If everything went well, the following lines should be added to the end of your httpd.conf file at /etc/httpd/conf/httpd.conf       <br /><pre>LoadModule caucho_module /usr/lib/httpd/modules/mod_caucho.so         <br />ResinConfigServer localhost 6800          <br />CauchoConfigCacheDirectory /tmp          <br />CauchoStatus yes</pre></p>   </li>    <li>     <p>Next we need to setup a location to check on the caucho status:       <br /><pre>cd /etc/httpd/conf.d         <br />vim caucho.conf          <br /></pre>Enter the following lines:        <br /><pre>&lt;Location /caucho-status&gt;         <br />SetHandler caucho-status          <br />&lt;/Location&gt;          <br /></pre>Save and exit the file.</p>   </li>    <li>     <p>Finally we add our domain name to the resin.conf file:       <br />cd /opt/soft/railo/conf        <br />vim resin.conf        <br />Find a spot between &lt;/host-deploy&gt; and the next comment or opening tag such as  &lt;host id="" &#8230; and enter the following:        <br /><pre>&lt;host id=&quot;example.com&quot; root-directory=&quot;/var/www/vhosts/example.com&quot;&gt;         <br />&lt;host-alias&gt;www.example.com&lt;/host-alias&gt;          <br />&lt;web-app id=&quot;/&quot; root-directory=&quot;httpdocs&quot; /&gt;          <br /></pre>Save and exit the file.</p>   </li>    <li>     <p>Let's setup resin to startup on boot. We need to copy the startup script (that was created for us when we built resin) to the /etc/init.d folder. We change its permissions and then set it up to run on boot.       <br /><pre>cp /opt/soft/railo/contrib/init.resin /etc/init.d/resin         <br />cd /etc/init.d          <br />chmod +x resin          <br />chkconfig --add resin          <br />chkconfig resin on</pre></p>   </li>    <li>     <p>Reboot your DV server from plesk. When it comes back online you should be able to view files on your domain, in this case id5.us.</p>   </li>    <li>     <p>Visit <em>http://example.com/railo-context/admin.cfm</em> and setup a password for that domain's railo context.</p>   </li>    <li>     <p>Visit <em>http://example.com/railo-context/admin/server.cfm</em> and setup a password for the server-wide railo context.</p>   </li> </ol>  <p>That's about it. You should now be able to upload and install Mura or any other CFML based software and run it on your MediaTemple DV hosting.</p>
      ]]></content>
    </entry>

    <entry>
      <title>Steve Jobs meet Steve Jobs</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/steve-jobs-meet-steve-jobs/" />
      <id>tag:jakemauer.com,2010:weblog/1.566</id>
      <published>2010-10-19T06:01:32Z</published>
      <updated>2010-10-19T06:02:33Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>This clip is just amazing. I almost can&#8217;t believe it exists. Steve Wozniak and Steve Jobs started out as phone phreakers, meaning they built devices to let them hack onto the phone network and make calls around the globe without paying. </p>  <p>That in and of itself isn&#8217;t totally surprising. What is surprising is Jobs&#8217; admission that Apple probably would have never even <em>started</em> if he and Wozniak hadn&#8217;t messed with phone phreaking. </p>  <p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/HFURM8O-oYI?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/HFURM8O-oYI?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>&#160;</p>  <p>It makes me wonder what Jobs really thinks of Jailbreakers. </p> 
      ]]></content>
    </entry>

    <entry>
      <title>Smooth Sega Sundown</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/test/" />
      <id>tag:jakemauer.com,2010:weblog/1.562</id>
      <published>2010-08-10T04:34:09Z</published>
      <updated>2010-08-10T04:56:10Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p><img src="http://imgur.com/zlrMn.jpg" alt="" title="Hosted by imgur.com" /></p><p>I was a fan of <a href="http://www.myspace.com/hyetalmusic">Hyetal&#8217;s</a> work before I knew his name thanks to Cexman&#8217;s brilliant <a href="http://soundcloud.com/tigerbeat6/cex-archbroseph-of-berlintimore-tbass-mix-series-9">Archbroseph Mix</a>.&#160; The song in that mix, <a href="http://soundcloud.com/soul-motive/hyetal-gold-or-soul-smr005-master">Gold or Soul</a>, is simple yet vast. This track is a level up.</p>  <p><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fwilliam-orca%2Fhyetal-phoenix-002&amp;show_comments=false&amp;auto_play=false&amp;color=4bbae3"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fwilliam-orca%2Fhyetal-phoenix-002&amp;show_comments=false&amp;auto_play=false&amp;color=4bbae3" type="application/x-shockwave-flash" width="100%"></embed> </object>   <span><a href="http://soundcloud.com/william-orca/hyetal-phoenix-002">Hyetal &#8211; Phoenix</a></span></p> 
      ]]></content>
    </entry>

    <entry>
      <title>Good Friday</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/test-2/" />
      <id>tag:jakemauer.com,2010:weblog/1.560</id>
      <published>2010-03-12T05:43:40Z</published>
      <updated>2010-03-12T06:26:41Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        	<p><a href="http://cargocollective.com/tanyajohnston#133557/The-Secret-Sun"><img alt="" src="http://img.ffffound.com/static-data/assets/6/6cdbeefef2cae7756ad84d8e0ebaef9174df7816_m.jpg" width="480" height="480" /></a>  <p></p>  <p>The Secret Sun by <a href="http://cargocollective.com/tanyajohnston#133557/The-Secret-Sun">Tanya Johnston</a></p>  <p>I don&#8217;t have much to offer right now other than three songs, loosely related. </p>  <p>I love <a href="http://www.ffffound.com">Ffffound</a>, and I love that despite my inescapable cynicism, thousands of people are somehow able to trudge through and make excellent stuff. </p>  <p>Here&#8217;s to a rainy weekend.</p></p> 
      ]]></content>
    </entry>

    <entry>
      <title>Quiet You</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/quiet-you/" />
      <id>tag:jakemauer.com,2010:weblog/1.558</id>
      <published>2010-01-29T05:14:07Z</published>
      <updated>2010-01-29T05:33:08Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>If you haven&#8217;t seen <a href="http://vimeo.com/5895898" title="this talk">this talk</a> by <a href="http://sethgodin.typepad.com/" title="Seth Godin">Seth Godin</a> on quieting the lizard brain, it&#8217;s easily worth 18 minutes of your time:</p><br />
<p><object width="551" height="413"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5895898&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=e91c6b&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5895898&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=e91c6b&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="551" height="413"></embed></object></p> 
      ]]></content>
    </entry>

    <entry>
      <title>Today&amp;rsquo;s Found</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/todays-found/" />
      <id>tag:jakemauer.com,2010:weblog/1.556</id>
      <published>2010-01-18T06:32:30Z</published>
      <updated>2010-01-18T06:46:32Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>It&#8217;s been a while, a little too while&#8230;</p>  <p><a href="http://www.saracluggish.com/">Sara</a> got me a print of this <a href="http://www.chadhagen.com/56490/Nonsensical-Infographics">Chad Hagen piece</a> that had been making the rounds:<a href="http://www.chadhagen.com/56490/Nonsensical-Infographics"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="complicated_graph_1" border="0" alt="complicated_graph_1" src="http://www.jakemauer.com/images/uploads/complicated_graph_1.jpg" width="479" height="480" /></a></p>  <p>I get the general method of how he constructed it, even if I didn&#8217;t match it aesthetically:</p>  <p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="infrographics" border="0" alt="infrographics" src="http://www.jakemauer.com/images/uploads/infrographics.png" width="479" height="480" /> </p>  <p>I had fun constructing this, it was akin to playing with legos. Today on Reddit someone asked, &#8220;If your twelve year old self saw you today, what would he say?&#8221; He would probably say that that thing was pretty cool. Then hopefully he would get a realistic sense of perspective on his age and enjoy the hell out of being twelve. </p>  <p>Maybe being 25 isn&#8217;t that much different.</p>  <p>In supplement, here&#8217;s a shot of the print framed and lit:</p>  <p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="_DSC9238" border="0" alt="_DSC9238" src="http://www.jakemauer.com/images/uploads/_DSC9238.jpg" width="484" height="768" /></p>  <p>I&#8217;m particularly proud of that lighting solution I&#8217;ve concocted. I&#8217;m sure it will make Ben proud.* Especially when it falls down in the middle of the night electrocuting my right foot. </p>  <p><a href="http://www.flickr.com/photos/supermauerbros/4284320446/"><font color="#a4c8d5"></font><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="_DSC9241" border="0" alt="_DSC9241" src="http://www.jakemauer.com/images/uploads/_DSC9241.jpg" width="600" height="399" /></a></p>  <p>*I believe this is one of Ben&#8217;s clamps, too. </p> 
      ]]></content>
    </entry>

    <entry>
      <title>Joker</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/joker/" />
      <id>tag:jakemauer.com,2009:weblog/1.555</id>
      <published>2009-12-08T05:36:42Z</published>
      <updated>2010-01-25T04:25:43Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>These songs inspired me to fire up Live Writer. Commodore 64 + DubStep = Joker</p>  <p><img title="Joker" alt="Joker" src="http://cathalorourke.files.wordpress.com/2009/08/joker.jpg" width="550" height="480" /></p> 
      ]]></content>
    </entry>

    <entry>
      <title>The Weekend</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/the-weekend/" />
      <id>tag:jakemauer.com,2009:weblog/1.554</id>
      <published>2009-11-30T01:29:57Z</published>
      <updated>2009-11-30T01:30:01Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>Thanksgiving day. I bought a bottle of <a href="http://www.greatbourbon.com/sazeracrye.aspx">Sazerac Rye</a> and drank it neat all day Thursday. Justin’s family may now think I’m an alcoholic. Especially because I brought it in, and took it back out. I’m not a whiskey fan but I know what I don’t like, and I don’t not like this: <img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.jakemauer.com/images/uploads/image58.png" width="240" height="240" /> </p>  <p>Black Friday. I slept in and wiped and updated/jailbroke my iPhone to 3.1.2. What a colossal pain in the ass. I had to borrow Sam’s <span class="caps">SIM</span> card 4 times before I got a clean install and activation. Also I made this for my bootup and&#160; lock screen:</p>  <p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="iPhone" border="0" alt="iPhone" src="http://www.jakemauer.com/images/uploads/iPhone.png" width="322" height="482" /></p>  <p>Saturday. Migraine,but only a 4 on the Jake scale. Ask me what that means sometime. Also, watched <a href="http://www.imdb.com/title/tt0045152/">Singing in the Rain</a>:</p>  <p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.jakemauer.com/images/uploads/image59.png" width="343" height="226" /> </p>  <p>Understatement of the week: <a href="http://www.imdb.com/name/nm0000037/">Gene Kelly</a> and <a href="http://www.imdb.com/name/nm0640307/">Don O’Conner</a> were talented. It’s on <a href="http://www.netflix.com/Movie/Singin_in_the_Rain/967758?strackid=7102680070bc87e0_0_srl&strkid=1765763391_0_0&trkid=222336">Netflix streaming</a> if you’d like to watch.</p>  <p>Sunday. Farmer’s market. Out to Sea with Jack Lemmon and Walter Matthau. Not great, but funny enough for a Sunday. Makes me want to watch “The Odd Couple” and call everyone a moron.</p> 
      ]]></content>
    </entry>

    <entry>
      <title>Media Temple accounts were compromised</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/media-temple-accounts-were-compromised/" />
      <id>tag:jakemauer.com,2009:weblog/1.553</id>
      <published>2009-11-26T06:36:38Z</published>
      <updated>2009-11-26T06:36:46Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p><a href="http://www.thinkgeek.com/stuff/41/titaniumlabyrinth.html"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="LABRYNTH LOCK" border="0" alt="LABRYNTH LOCK" src="http://www.jakemauer.com/images/uploads/image57.png" width="403" height="480" /></a> </p>  <p>Just received this email from Media Temple:</p>  <blockquote>   <p>Recently we witnessed some malicious activity on our (gs) Grid-Service platform where a hacker redirected some customer websites to a 3rd-party advertising website. This attacker appears to have illegally obtained some older customer data, which included usernames and passwords stored in clear text. Our newer systems now have this same data encrypted. An investigation into this illegal activity is ongoing, with full details forthcoming.</p> </blockquote>  <p>My reaction upon reading? “THEY <span class="caps">FESSED</span> UP! <span class="caps">NOT</span> MY <span class="caps">FAULT</span>! ”</p>  <p>Except they’ve only sort of fessed up. It’s not referenced on their <a href="http://weblog.mediatemple.net/weblog/">blog</a> or their <a href="http://status.mediatemple.net/">status page</a>, which sucks. They do have a <a href="http://kb.mediatemple.net/questions/1715/November+2009+(gs)+Security+Exploit+Removal">KB article</a> which describes the same attack my sites and some client sites experienced. Also, there’s <a href="http://twitter.com/mediatemple">Twitter</a>, I guess. There better be a sweet espionage book deal out of this, and I want my name in it. 4pt font is fine.</p>  <p>They’ve reset the admin passwords on a bunch of my client’s accounts, yet no where in the emails do they tell me which account they’re referencing. Let’s play “Try the login!”</p>  <p>At least now when someone asks what happened I can say with confidence, “Don’t worry, it wasn’t my fault, it was the fault of the hosting company I recommended. Your invoice is due on Friday.”</p> 
      ]]></content>
    </entry>

    <entry>
      <title>S&amp;rsquo;updates</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/supdates/" />
      <id>tag:jakemauer.com,2009:weblog/1.552</id>
      <published>2009-11-17T04:24:36Z</published>
      <updated>2009-11-17T04:27:05Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p><a href="http://ffffound.com/image/68bca56e79b818bfec425890709b31d5cfc60e0d?c=3936529"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.jakemauer.com/images/uploads/image56.png" width="480" height="480" /></a> </p>  <ol>   <li>Good news! The Expression Engine <a href="http://jakemauer.com/weblog/how-or-why/"><span class="caps">HTACCESS</span> nightmare</a> was my own fault. I accidentally uploaded an htaccess file to the parent of <em>all</em> the domains on my shared hosting account. So it propogated down to <em>every</em> site unless that site had a specifically defined its own rules. Sorry everyone. </li>    <li>Our sites were hacked! Probably by some <a href="http://www.kyle-brady.com/2009/11/07/wordpress-mediatemple-and-an-injection-attack/#htaccess">drive-by Wordpress exploit</a> but still, it hosed nearly every site on our hosting account and embedded itself into our Wordpress database tables in case it wanted to come back for more. </li>    <li>I’ve setup <a href="http://aws.amazon.com/s3/#pricing">Amazon S3</a> sync with Media Temple using <a href="http://www.christinawarren.com/2008/06/24/s3-backup-media-temple-gs/">this guide</a>. It’s slightly intimidating but completely doable. Don’t get discouraged by terminal errors,double check your typing and that you’re in the proper directory for each command, (use ‘pwd’ to find out your current location.) I estimate that backing up this site and its database shouldn’t cost me more than a dollar a month. Allow me to explain using complex maths:      <br />
      <br />
<strong>2GB data uploaded <code> $0.17/GB + 2GB stored </code> $0.10/GB = 54 cents.</strong>       <br />
      <br />
I believe that’s called “worth it.” </li> </ol> 
      ]]></content>
    </entry>

    <entry>
      <title>How or why?</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/how-or-why/" />
      <id>tag:jakemauer.com,2009:weblog/1.550</id>
      <published>2009-11-05T03:44:09Z</published>
      <updated>2009-11-05T03:48:10Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p><a href="http://blackandwtf.tumblr.com/post/229920920"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.jakemauer.com/images/uploads/image54.png" width="500" height="349" /></a></p>  <p>Those are the questions still dogging me over this Expression Engine <a href="http://jakemauer.com/weblog/look-at-this-shot/"><span class="caps">URL</span> business</a>. </p>  <p>I can&#8217;t ascertain <em>why</em> EE has stopped behaving on my site and other sites on this Media Temple account, the same one I should note, hosting Mr. <a href="http://domanico.net">Domanico</a>. This person, who at this point has what I can only describe as technological <em>Stockholm syndrome</em>, has somehow evaded this curse.</p>  <p>Further, and I ask you directly EE, how can you receive the perfectly reasonable request of <a href="http://www.jakemauer.com">www.jakemauer.com</a> and serve <a href="http://jakemauer.com/jakemauer.com/html/index.php?/http://jakemauer.com/jakemauer.com/html/">http://jakemauer.com/jakemauer.com/html/index.php?/http://jakemauer.com/jakemauer.com/html/</a> as your response? I asked for a hamburger and you gave me a party sub made out of toothpicks and mayonnaise. </p>  <p>This window into insanity only occurs if I remove my recently duct-taped htaccess file, something I won&#8217;t inflict on you the reader because I know that would only result in the harshest of gazes, which is to say, <em>no gaze at all.</em></p>  <p>The weirdest part in all of this as that at some point overnight, EE healed itself partially, allowing me to log into the admin interface without using the specific url. To this I can only say, &#8220;<em>???????</em>&#8221;</p>  <p>Honestly Expression Engine, I don&#8217;t mind that you require your modrewrite woobie, but at least explain to me why I should continue let you suck your thumb when there are perfectly <a href="http://wordpress.com/">mature alternatives</a>.</p>  <p>It has just occurred to me that my life is currently boring.</p> 
      ]]></content>
    </entry>

    <entry>
      <title>Look at this shot</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/look-at-this-shot/" />
      <id>tag:jakemauer.com,2009:weblog/1.549</id>
      <published>2009-11-02T05:47:01Z</published>
      <updated>2009-11-03T04:54:10Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>From <a href="http://www.imdb.com/title/tt0070735/">The Sting</a>:</p>  <p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="sting-combined" border="0" alt="sting-combined" src="http://www.jakemauer.com/images/uploads/stingcombined.jpg" width="528" height="816" />&#160;</p>  <p>Now look at my nerdiness!</p>  <p>I want to mention that although the content of this post took me 5 minutes to put together, Expression Engine decided to be a huge jerk about a week ago and stop redirecting certain <span class="caps">URL</span> strings, which made posting this take 3 hours. I still haven’t figured it out, which is especially frustrating since <a href="http://domanico.net">domanico.net</a> seems to redirecting URL’s fine. (By redirecting fine I mean a <span class="caps">URL</span> like <a href="http://domanico.net?URL=http://google.com">http://domanico.net?URL=http://google.com</a> works fine.)</p>  <p>It turned from minor annoyance into a bigger problem when it prevented Windows Live Writer from working properly.</p>  <p>Digging around I found that adding the following line to my htaccess file:</p>  <h6></h6>  <blockquote>   <p>RewriteCond %&#123;QUERY_STRING&#125; !<sup class="ACT=.<strong>&#8220;&gt;$ [NC]</p> </blockquote>  <p>fixes Live Writer and adding this fixes my <span class="caps">URL</span> redirect problem:</p>  <blockquote>   <p>RewriteCond %&#123;QUERY_STRING&#125; !</sup>(<span class="caps">URL</span>=.</strong>)$ [NC]</p> </blockquote>  <p>So that my redirect block ends up looking like this:</p>  <blockquote>   <p>RewriteCond %&#123;QUERY_STRING&#125; !<sup class="ACT=.<strong>&#8220;&gt;$ [NC]      <br />
RewriteCond %&#123;QUERY_STRING&#125; !</sup>(<span class="caps">URL</span>=.</strong>)$ [NC]       <br />
RewriteCond %&#123;REQUEST_URI&#125; !(.[a-zA-Z0-9]&#123;1,5&#125;)$       <br />
RewriteCond %&#123;REQUEST_FILENAME&#125; !-f       <br />
RewriteCond %&#123;REQUEST_URI&#125; ^/(&#123;ee:template_groups&#125;|members|P[0-9]&#123;2,8&#125;) [NC]       <br />
RewriteRule ^(.*)$ /index.php?/$1 [L]</p> </blockquote>  <p>I’m still trying to get my admin panel redirect to work properly. I’ll update when I do.</p> 
      ]]></content>
    </entry>

    <entry>
      <title>Add this to the list</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/add-this-to-the-list/" />
      <id>tag:jakemauer.com,2009:weblog/1.548</id>
      <published>2009-10-27T23:52:08Z</published>
      <updated>2009-10-27T23:55:09Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>of things to do when I befriend a group of soccer all-stars. </p>

<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/0XjwoVqM_qE&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0XjwoVqM_qE&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>

<p>Awesome. Times Two. Thousand.</p> 
      ]]></content>
    </entry>

    <entry>
      <title>Today&#8217;s Ffffound: Helvetirock</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/todays-ffffound-helvetirock/" />
      <id>tag:jakemauer.com,2009:weblog/1.539</id>
      <published>2009-10-15T01:52:32Z</published>
      <updated>2009-10-15T01:52:34Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>Most of my 5 minutes was spent finding and installing Helvetica. It doesn’t come default? It doesn’t come default. “Use Arial,” says Microsoft.</p>  <p>Damon sayz use Akkurat instead. I only use fonts that don’t sound like countries and/or one of their exotic animals. Just kidding, I’m not fontist-I’m cheap.</p>  <p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="thinking-combined copy" border="0" alt="thinking-combined copy" src="http://www.jakemauer.com/images/uploads/thinkingcombinedcopy.jpg" width="400" height="831" /> </p>  <p><a href="http://icanread.tumblr.com/">Original Blog</a>    <br />
<a href="http://ffffound.com/image/404be9de033ea9e8fcbdb4fc21341708f41daaa8">ffffound page</a></p>  <p>This was mostly meant to act as a reminder that I have a ton of photos to flickr-ize, Right after I figure out life.</p> 
      ]]></content>
    </entry>

    <entry>
      <title>I&amp;rsquo;ll take two please</title>
      <link rel="alternate" type="text/html" href="http://jakemauer.com/site/ill-take-two-please/" />
      <id>tag:jakemauer.com,2009:weblog/1.538</id>
      <published>2009-10-12T04:12:22Z</published>
      <updated>2009-10-12T04:13:23Z</updated>
      <author>
            <name>Jake Mauer</name>
            <email>jake@jakemauer.com</email>
                  </author>

      <content type="html"><![CDATA[
        <p>A new father created this fiber optic star field for the baby’s room. This makes owning your own home with attic access worth it.</p>  <p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/Jr8WfF3U80A&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Jr8WfF3U80A&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object> </p>  <p><a href="http://www.instructables.com/id/How-to-create-a-fiber-optic-starfield-ceiling/">Full Instructions on Instructable</a></p> 
      ]]></content>
    </entry>


</feed>
