<rss version="0.92">
  <channel>
    <title>the corner office link blog</title>
    <link>http://www.thecorneroffice.org/links</link>
    <description>a link blog on the side</description>
    <copyright>Colin Pretorius</copyright>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/08/080830-1524.html</link>
      <title>2008.08.30</title>
      <description><![CDATA[<p>
Playing with wxWidgets on Linux. Following suggestions from <a href="http://wiki.wxwidgets.org/Installing_and_configuring_under_Ubuntu">this page</a> in wxWiki, I added <a href="http://apt.wxwidgets.org/">apt.wxwidgets.org</a> to <code>sources.list</code>. But an <code>apt-get update</code> was reporting the following error:
</p>
<pre>
W: GPG error: http://apt.wxwidgets.org hardy-wx Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 0E0BCE7F53B087BC
</pre>
<p>
To fix (per <a href="http://forums.codeblocks.org/index.php?topic=7867.msg59305">this thread</a>):
</p>
<pre>
wget -q http://apt.wxwidgets.org/key.asc -O-  | sudo apt-key add -
</pre>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/08/080819-1718.html</link>
      <title>2008.08.19</title>
      <description><![CDATA[<p>
The <a href="http://www.boostpro.com/products/free">fancy installer</a> isn't available for 1.36.0 yet, so tried compiling boost myself. I was getting errors along the lines of:
</p>
<pre>
compile-c-c++ bin.v2\libs\system\build\msvc-8.0express\debug\link-static\runtime-link-static\error_code.obj
error_code.cpp
libs\system\src\error_code.cpp(31) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory
</pre>
<p>
Problem is VS Express 2005 has a separately installed SDK, and you need to set up envvars from both in order for things to work. I created a batch file with
<pre>
call "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat"
call "C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\SetEnv.cmd"
</pre>
<p>
... after which boost seems to be compiling just fine.
</p>
<p>
Links: <a href="http://www.boost.org/doc/libs/1_36_0/more/getting_started/windows.html">Boost 1.36.0 Getting Started</a> and <a href="http://www.quantnet.org/forum/showthread.php?t=2221&page=2">this forum discussion</a>.
</p>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/08/080810-0417.html</link>
      <title>2008.08.10</title>
      <description><![CDATA[<p>
<code>.bash_profile</code> vs <code>.bashrc</code>.
</p>
<ul>
<li><a href="http://joshstaiger.org/archives/2005/07/bash_profile_vs.html">joshstaiger.org</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=49100">ubuntuforums.org</a></li>
<li><a href="http://www.linuxquestions.org/questions/linux-general-1/bashrc-vs.-bashprofile-87412/">linuxquestions.org</a></li>
</ul>
<p>
Somewhat related, invoking <code>sudo update-alternatives --config java</code> will allow you to take care of various JDKs in Ubuntu (all of which are in <code>/usr/lib/jvm</code> if you install using apt). This doesn't set JAVA_HOME, though. The best way to do that (eg. discussion <a href="http://ubuntuforums.org/showthread.php?t=9221">here</a>) is to have <code>JAVA_HOME=/usr/lib/jvm/java-6-sun</code> or the like appended to <code>/etc/environment</code>.]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/07/080711-2335.html</link>
      <title>2008.07.11</title>
      <description><![CDATA[<p>
<a href="http://blog.springsource.com/main/2007/07/11/setter-injection-versus-constructor-injection-and-the-use-of-required/">Setter injection versus constructor injection and the use of @Required</a>. I'm glad the Spring folks are in favour of constructor injection for mandatory dependencies - I far, far prefer it to setter injection.
</p>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/06/080622-1343.html</link>
      <title>2008.06.22</title>
      <description><![CDATA[<p>
<a href="http://www.litwindow.com/Knowhow/wxHowto/wxhowto.html">wxWindows and Visual Studio tips & tricks</a>
</p><p>
JavaWorld: <a href="http://www.javaworld.com/javaworld/jw-06-2008/jw-06-closures.html?page=1">Understanding the closures debate</a>
</p>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/06/080618-0023.html</link>
      <title>2008.06.17</title>
      <description><![CDATA[<p>
<a href="http://www.ubuntugeek.com/unison-file-synchronization-tool.html">Unison</a> file sync tool.
</p>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/05/080515-1307.html</link>
      <title>2008.05.15</title>
      <description><![CDATA[<a href="http://blog.sartek.net/2008/04/install-xmms-on-ubuntu-804-hardy-heron.html">Install XMMS on Ubuntu ( 8.04 ) Hardy Heron</a>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/05/080514-0836.html</link>
      <title>2008.05.14</title>
      <description><![CDATA[<p><a href="http://dev.eclipse.org/blogs/memoryanalyzer/2008/05/08/the-power-of-aggregation-making-sense-of-the-objects-in-a-heap-dump/">Eclipse MAT: The Power of Aggregation: Making sense of the Objects in a Heap Dump</a>
</p>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/05/080508-1022.html</link>
      <title>2008.05.08</title>
      <description><![CDATA[<ul>
<li><a href="http://blogs.sybase.com/master/master_05020802.asp">Enabling command-line applications for your Eclipse projects</a></li>
<li><a href="http://andrei.gmxhome.de/anyedit/index.html">AnyEdit tools plugin for Eclipse</a> <a href="http://www.jroller.com/andyl/entry/compare_me">(via)</a></li>
</ul>]]></description>
    </item>
    <item>
      <link>http://www.thecorneroffice.org/links/plink/2008/05/080504-2326.html</link>
      <title>wxWidgets</title>
      <description><![CDATA[<p>
<a href="http://www.phptr.com/content/images/0131473816/downloads/0131473816_book.pdf">Cross-platform GUI Programming with wxWidgets</a> (<a href="http://flamerobin.blogspot.com/2006/03/wxwidgets-book-is-now-available-as-pdf.html">via</a>). Exactly 8 links to this pdf across the web, but seems to be <a href="http://www.informit.com/promotions/promotion.aspx?promo=135563">legit</a>.
</p>]]></description>
    </item>
  </channel>
</rss>

