<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Third Stone Software &#187; Uncategorized</title>
	<atom:link href="http://www.thirdstone.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thirdstone.com</link>
	<description></description>
	<lastBuildDate>Wed, 30 Dec 2009 22:06:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Displaying Code and Markup in Wordpress</title>
		<link>http://www.thirdstone.com/blog/2009/12/displaying-code-and-markup-in-wordpress/</link>
		<comments>http://www.thirdstone.com/blog/2009/12/displaying-code-and-markup-in-wordpress/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 21:52:25 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thirdstone.com/?p=301</guid>
		<description><![CDATA[Desiring to find a clean and elegant method of display code and markup in blog entries, I researched the various plugins at wordpress.org using the &#8220;code&#8221; term. Most seemed to be either simple (just escaping markup) or complex (syntax highlighting with GeSHi). What I really wanted was just a way to display formatted code in [...]]]></description>
			<content:encoded><![CDATA[<p>Desiring to find a clean and elegant method of display code and markup in blog entries, I researched the various plugins at wordpress.org using the &#8220;code&#8221; term. Most seemed to be either simple (just escaping markup) or complex (syntax highlighting with GeSHi). What I really wanted was just a way to display formatted code in a clean, visually-appealing layout. I eventually settled upon the simple markup plugin Code Markup coupled with some CSS. The following is an excerpt from my Wordpress CSS and an excerpt from this blog entry demonstrating the use of the plugin and CSS.</p>
<p><strong><br />
CSS<br />
</strong></p>
<div class="code">
<pre class="code">
<code markup="none">
div.code {
        overflow: auto;
	border-style: dashed;
        border-width: thin;
        border-color: black;
	background: #FFFFFF;
}

pre.code {
	font-size: 0.8 em;
 	color: black;
	margin: 10px;
	padding:10px;
}

code {
	font-size: 0.8 em;
        font: Courier;
        color: black;
}
</code>
</pre>
</div>
<p><strong><br />
How the above CSS block looks in this blog entry.<br />
</strong></p>
<div class="code">
<pre class="code">
<code markup="none">
<div class="code">
<pre class="code">
<code markup="none">

div.code {
        overflow: auto;
	border-style: dashed;
        border-width: thin;
        border-color: black;
	background: #FFFFFF;
}

pre.code {
	font-size: 0.8 em;
 	color: black;
	margin: 10px;
	padding:10px;
}

code {
	font-size: 0.8 em;
        font: Courier;
        color: black;
}

</code>
&lt;/code&gt;
&lt;/pre&gt;
&lt;/div&gt;
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thirdstone.com/blog/2009/12/displaying-code-and-markup-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install a Belkin F5D7010 (ver 4000) Wireless Card in Ubuntu 9.04</title>
		<link>http://www.thirdstone.com/blog/2009/07/how-to-install-a-belkin-f5d7010-ver-4000-wireless-card-in-ubuntu-9-04/</link>
		<comments>http://www.thirdstone.com/blog/2009/07/how-to-install-a-belkin-f5d7010-ver-4000-wireless-card-in-ubuntu-9-04/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 18:54:51 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thirdstone.com/?p=239</guid>
		<description><![CDATA[Installing wireless cards that used Broadcom bcm43xx wireless chips was historically not an easy task for Linux users. Broadcom never released details about these chips, so there was not a native Linux driver. The workaround was to use NDISwrapper with a Windows driver file. However, locating the correct driver file and configuring NDISwrapper could be [...]]]></description>
			<content:encoded><![CDATA[<p>Installing wireless cards that used Broadcom bcm43xx wireless chips was historically not an easy task for Linux users. Broadcom never released details about these chips, so there was not a native Linux driver. The workaround was to use <a href="http://en.wikipedia.org/wiki/NDISwrapper">NDISwrapper</a> with a Windows driver file. However, locating the correct driver file and configuring NDISwrapper could be a difficult process.</p>
<p>There is now a better option. Included with Linux kernels since 2.6.17 is a native driver based on reverse-engineered specifications. All that is needed to use the driver is firmware for the wireless chip. This firmware is copyrighted by Broadcom and it must be extracted from Broadcom&#8217;s proprietary drivers. A tool named <a href="http://linuxwireless.org/en/users/Drivers/b43">b43-fwcutter</a> was developed for this purpose, and can be installed as an <a href="http://en.wikipedia.org/wiki/Advanced_Packaging_Tool">APT</a> package.</p>
<p>I installed Ubuntu 9.04 (Jaunty Jackalope) recently on a Dell Inspiron 8200. It has no built-in wireless, but instead a Belkin F5D7010 PCMCIA card. After installation was complete, I followed these steps to identify and verify the chip, build the b43-fwcutter tool, download and install the firmware, and finally configure the wireless network. </p>
<ol>
<li>
Run the following command to determine that your wireless card has the Broadcom 4318 chipset [<a href="https://help.ubuntu.com/community/HardwareSupportComponentsWirelessNetworkCardsBelkin#PCMCIA">1</a>]. The PCI ID <em>14e4:4318</em> identifies the card as having the Broadcom BCM4318 chipset, which is supported by the b43 driver [<a href="http://linuxwireless.org/en/users/Drivers/b43#Known_PCI_devices">2</a>] [<a href="https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx">3</a>].</p>
<div class="code">
<pre class="code">
<code markup="none">
> lspci -vnn | grep 14e4
07:00.0 Network controller [0280]: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller [14e4:4318] (rev 02)
</code>
</pre>
</div>
</li>
<li>
You will need to install b43-fwcutter to download and install the firmware. If you have alternate internet access, you can simply retrieve the apt package.</p>
<div class="code">
<pre class="code">
<code markup="none">
> apt-get install b43-fwcutter
</code>
</pre>
</div>
<p>If not, follow these directions to download and build the tool. [<a href="http://linuxwireless.org/en/users/Drivers/b43#fw-b43-new">4</a>]</p>
<div class="code">
<pre class="code">
<code markup="none">
> wget http://bu3sch.de/b43/fwcutter/b43-fwcutter-012.tar.bz2
> tar xjf b43-fwcutter-012.tar.bz2
> cd b43-fwcutter-012
> make
</code>
</pre>
</div>
</li>
<li>
Now get version 4.150.10.5 of Broadcom&#8217;s proprietary driver, and use b43-fwcutter to install the firmware.</p>
<div class="code">
<pre class="code">
<code markup="none">
> wget http://mirror2.openwrt.org/sources/broadcom-wl-4.150.10.5.tar.bz2
> tar xjf broadcom-wl-4.150.10.5.tar.bz2
> cd broadcom-wl-4.150.10.5/driver
> sudo ../../b43-fwcutter-012/b43-fwcutter -w /lib/firmware wl_apsta_mimo.o
</code>
</pre>
</div>
</li>
<li>
Restart your computer.
</li>
<li>
After your computer has rebooted, if the two lights on your wireless card are lit up, the card is ready to use.
</li>
<li>
In the upper right corner of your screen, you should see the NetworkManager icon. Right-clicked and make sure that both &#8220;Enable Networking&#8221; and &#8220;Enable Wireless&#8221; are checked. Then left-click and a list of available networks will be displayed. Select one, or select &#8220;Connect to Hidden Wireless Network&#8221; if your wireless network is not broadcasting an SSID.
</li>
</ol>
<p>References:</p>
<p>[1] https://help.ubuntu.com/community/HardwareSupportComponentsWirelessNetworkCardsBelkin#PCMCIA</p>
<p>[2] http://linuxwireless.org/en/users/Drivers/b43#Known_PCI_devices</p>
<p>[3] https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx</p>
<p>[4] http://linuxwireless.org/en/users/Drivers/b43#fw-b43-new</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirdstone.com/blog/2009/07/how-to-install-a-belkin-f5d7010-ver-4000-wireless-card-in-ubuntu-9-04/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
