<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>11onRandom Geekery</title>
    <link>https://randomgeekery.org/note/2007/11/</link>
    <description>
      Recent contentin11 on Random Geekery
    </description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
      
      <lastBuildDate>Tue, 27 Nov 2007 00:00:00 +0000</lastBuildDate><atom:link href="https://randomgeekery.org/note/2007/11/index.xml" rel="self" type="application/rss+xml" /><item>
  <title>Note: 2007-11-27</title>
  <link>https://randomgeekery.org/note/2007/11/2007-11-27/</link>
  <pubDate>Tue, 27 Nov 2007 00:00:00 +0000</pubDate>
  
  <guid>https://randomgeekery.org/note/2007/11/2007-11-27/</guid>
  <description>&lt;h2 id=&#34;vmware-installed&#34;&gt;VMWare installed&lt;/h2&gt;
&lt;p&gt;Okay, now I feel good. I’ve got &lt;a href=&#34;http://www.vmware.com/&#34;&gt;VMWare&lt;/a&gt; installed with Windows XP as the guest OS. That means Office and who knows how many other apps are readily accessible for me. &lt;a href=&#34;https://randomgeekery.org/page/rebol/&#34;&gt;REBOL&lt;/a&gt; , for starters. It’s supposed to be cross-platform, but REBOL is happiest by far under Windows.&lt;/p&gt;
&lt;p&gt;Incidental anecdotal comment: Windows XP running with 512 MB of RAM in a virtual machine is still significantly snappier than a “real” install of Vista and 2 GB of RAM. And I had turned most of the Vista eye candy off before getting fed up and installing Fedora.&lt;/p&gt;</description>
   <category>note</category> 
  
  
  <content:encoded><![CDATA[<h2 id="vmware-installed">VMWare installed</h2>
<p>Okay, now I feel good. I&rsquo;ve got <a href="http://www.vmware.com/">VMWare</a> installed with Windows XP as the guest OS. That means Office and who knows how many other apps are readily accessible for me. <a href="/page/rebol/">REBOL</a> , for starters. It&rsquo;s supposed to be cross-platform, but REBOL is happiest by far under Windows.</p>
<p>Incidental anecdotal comment: Windows XP running with 512 MB of RAM in a virtual machine is still significantly snappier than a &ldquo;real&rdquo; install of Vista and 2 GB of RAM. And I had turned most of the Vista eye candy off before getting fed up and installing Fedora.</p>
]]></content:encoded>
</item>
<item>
  <title>Note: 2007-11-26</title>
  <link>https://randomgeekery.org/note/2007/11/2007-11-26/</link>
  <pubDate>Mon, 26 Nov 2007 00:00:00 -0800</pubDate>
  
  <guid>https://randomgeekery.org/note/2007/11/2007-11-26/</guid>
  <description>&lt;h2 id=&#34;xcb_xlib_unlock-issues---java-on-fedora&#34;&gt;&lt;code&gt;xcb_xlib_unlock&lt;/code&gt; issues - Java on Fedora&lt;/h2&gt;
&lt;p&gt;I decided to install the Sun JDK on my new Fedora &lt;a href=&#34;https://randomgeekery.org/page/linux/&#34;&gt;Linux&lt;/a&gt; install today to play with &lt;a href=&#34;https://randomgeekery.org/page/java/&#34;&gt;Java&lt;/a&gt;. Tried downloading the JDK/NetBeans self-installing bundle. It didn’t work. I got an error in &lt;code&gt;xcb_xlib:xcb_xlib_unlock&lt;/code&gt; - something about a failed assertion. While running the installer. Drat.&lt;/p&gt;
&lt;p&gt;Installation required skipping the Netbeans IDE and just using the self-extracting JDK archive. Then, in order to get Swing to work, I had to remove Xinerama references from any copy of &lt;a href=&#34;http://libmawt.so&#34;&gt;libmawt.so&lt;/a&gt; that was in my Java install. There’s a sed script floating out there, but that wasn’t working for me. Before I spent effort figuring out sed, I edited the files from vim.&lt;/p&gt;</description>
   <category>note</category> 
  
   <category>java</category> 
  <content:encoded><![CDATA[<h2 id="xcb_xlib_unlock-issues---java-on-fedora"><code>xcb_xlib_unlock</code> issues - Java on Fedora</h2>
<p>I decided to install the Sun JDK on my new Fedora <a href="/page/linux/">Linux</a> install today to play with <a href="/page/java/">Java</a>. Tried downloading the JDK/NetBeans self-installing bundle. It didn&rsquo;t work. I got an error in <code>xcb_xlib:xcb_xlib_unlock</code> - something about a failed assertion. While running the installer. Drat.</p>
<p>Installation required skipping the Netbeans IDE and just using the self-extracting JDK archive. Then, in order to get Swing to work, I had to remove Xinerama references from any copy of <a href="http://libmawt.so">libmawt.so</a> that was in my Java install. There&rsquo;s a sed script floating out there, but that wasn&rsquo;t working for me. Before I spent effort figuring out sed, I edited the files from vim.</p>

  <details open>
  <summary><tt>Code Sample</tt>
  </summary>

<figure class="highlight">
  <pre tabindex="0" class="chroma">
    <code class="language-" data-lang="">$ sudo vim /opt/jdk1.6.0_03/jre/lib/i386/xawt/libmawt.so
$ sudo vim /opt/jdk1.6.0_03/jre/lib/i386/motif21/libmawt.so
$ sudo vim /opt/jdk1.6.0_03/jre/lib/i386/headless/libmawt.so</code>
  </pre>
</figure><p>In each case I executed a simple regex</p>

  <details open>
  <summary><tt>Code Sample</tt>
  </summary>

<figure class="highlight">
  <pre tabindex="0" class="chroma">
    <code class="language-vim" data-lang="vim"><span style="display:flex;"><span>:%s<span style="color:#1bc5e0">/XINERAMA/</span>FAKEEXT/g</span></span></code>
  </pre>
</figure><p>It&rsquo;s the same as the sed script. I was too lazy to fix a short script that I will probably only use once.</p>
<p>Java&rsquo;s happy now, so I&rsquo;m going to go do a little coding.</p>
<p><a href="/page/blogger/">Blogger</a></p>
]]></content:encoded>
</item>
<item>
  <title>Note: 2007-11-19</title>
  <link>https://randomgeekery.org/note/2007/11/2007-11-19/</link>
  <pubDate>Mon, 19 Nov 2007 00:00:00 +0000</pubDate>
  
  <guid>https://randomgeekery.org/note/2007/11/2007-11-19/</guid>
  <description>&lt;h2 id=&#34;activity-log&#34;&gt;Activity Log&lt;/h2&gt;
&lt;h3 id=&#34;twitter-2007-11-19-mon-0041&#34;&gt;Twitter: 2007-11-19 Mon 00:41&lt;/h3&gt;
&lt;p&gt;I just signed up for twitter.&lt;/p&gt;
&lt;h3 id=&#34;twitter-2007-11-19-mon-0053&#34;&gt;Twitter: 2007-11-19 Mon 00:53&lt;/h3&gt;
&lt;p&gt;watching “The Wedding Banquet” … again.&lt;/p&gt;</description>
   <category>note</category> 
  
   <category>twitter</category> 
  <content:encoded><![CDATA[<h2 id="activity-log">Activity Log</h2>
<h3 id="twitter-2007-11-19-mon-0041">Twitter: 2007-11-19 Mon 00:41</h3>
<p>I just signed up for twitter.</p>
<h3 id="twitter-2007-11-19-mon-0053">Twitter: 2007-11-19 Mon 00:53</h3>
<p>watching &ldquo;The Wedding Banquet&rdquo; &hellip; again.</p>
]]></content:encoded>
</item>
</channel>
</rss>
