<?xml version="1.0" encoding="utf-8"?>
        <?xml-stylesheet type="text/css" href="http://www.dward.us/styles/feed.css"?>
<rss version="2.0"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:admin="http://webns.net/mvcb/"
>
<channel>
<title>DaveQB's Rambles</title>
<link>http://www.dward.us</link>
<description>Where I will be able to keep publicly accessible information on different things I do in the I.T. world.</description>
<dc:language>en-us</dc:language>
<dc:creator>DaveQB</dc:creator>
<dc:date>2010-03-08T12:04:50+10:00</dc:date>
<admin:generatorAgent rdf:resource="http://nanoblogger.sourceforge.net" />
<item>
<link>http://www.dward.us/archives/2010/03/08/index.html#e2010-03-08T12_04_42.txt</link>
<title>Football Videos from BYU</title>
<dc:date>2010-03-08T12:04:42+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>Personal</dc:subject>
<description><![CDATA[<p>Here are a list of videos from 2007 filmed at the campus of BYU. It includes lifting, DB, offensive line etc.</p>
<p> Enjoy! <a href=http://www.dward.name/videos/UtahVideos/>BYU videos</a></p>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2010/02/17/index.html#e2010-02-17T11_04_51.txt</link>
<title>MultiBoot I hear you say</title>
<dc:date>2010-02-17T11:04:51+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[<p>A nice way to have multiple Distro's on one bootable CD.</p>
<a href="http://multicd.tuxfamily.org/">http://multicd.tuxfamily.org/</a>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2010/01/06/index.html#e2010-01-06T13_27_34.txt</link>
<title>LDIF -> vCard</title>
<dc:date>2010-01-06T13:27:34+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[
<a href="http://www.iac.ethz.ch/staff/maeder/mailtool.php">http://www.iac.ethz.ch/staff/maeder/mailtool.php</a>
<br>
I wish I could have found an offline script to do this rather then uploading all of my contacts to some place I do not know.]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/11/22/index.html#e2009-11-22T19_41_17.txt</link>
<title>Recover the SheevaPlug</title>
<dc:date>2009-11-22T19:41:17+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[
<p>So you have a nice new shiny Marvell Sheeva Plug computer and you do something [no I wouldn't do experiemental things with mine] that breaks it enough you can no longer gain access over the network. So remedy this, run this command <pre>modprobe ftdi_sio vendor=0x9e88 product=0x9e8f</pre> and plug in the Plug to you computer viz the supplied USB cable. That will create /dev/ttyUSB0 by default. No use a serial terminal smulator to gain access. Minicom is what Marvell suggests in the manual, but gtkterm seems to be better. The best though, I find is good old scree. Yep screen. Just run: <pre>screen /dev/ttyUSB0 115200</pre> and you're in! You may find your device is on /dev/ttyUSB1 or up, just trial and error to get that sorted.</p>

<a href="http://www.openplug.org/plugwiki/index.php/Serial_terminal_program#Linux">http://www.openplug.org/plugwiki/index.php/Serial_terminal_program#Linux</a>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/11/02/index.html#e2009-11-02T15_40_37.txt</link>
<title>Roundcube and default identity</title>
<dc:date>2009-11-02T15:40:37+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[
<p>So when a user logs onto <a href="http://roundcube.net/">Roundcube</a> for the first time, they are added to the roundcube database, with the default identity. This identity is &lt;username&gt;@localhost. They can, of course, change this and setup more identities in the Settings, but they shouldn't have to. So I found a patch online and modied it slightly to detect the domainname used to get to roundcube and use that as the default domain. Its simply this:

<pre>
// replace $rcmail_config['mail_domain'] = '';   with:
$rcmail_config['mail_domain'] = preg_replace("/^[a-zA-Z]*\./i", "", $_SERVER['HTTP_HOST']);
</pre>

Pretty neat huh?
</p>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/09/28/index.html#e2009-09-28T11_38_35.txt</link>
<title>Rsync exclude</title>
<dc:date>2009-09-28T11:38:35+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[
<p>/dir/ means exclude the root folder /dir <br>
/dir/* means get the root folder /dir but not the contents <br>
dir/ means exclude any folder anywhere where the name contains dir/ <br>
Examples excluded: /dir/, /usr/share/mydir/, /var/spool/dir/ <br>
/dir means exclude any folder anywhere where the name contains /dir <br>
Examples excluded: /dir/, /usr/share/directory/, /var/spool/dir/ <br>
/var/spool/lpd//cf means skip files that start with cf within any folder <br>
within /var/spool/lpd <br>
</p>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/09/03/index.html#e2009-09-03T10_35_52.txt</link>
<title>Rid that man-in-middle warning</title>
<dc:date>2009-09-03T10:35:52+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[<p>I have looked for a solution for years, but nothing could do it totally. Well here it is:</p>
<a href="http://linuxcommando.blogspot.com/2008/10/how-to-disable-ssh-host-key-checking.html">http://linuxcommando.blogspot.com/2008/10/how-to-disable-ssh-host-key-checking.html</a><br><br>
<p>So basicly, the options you need are:
<pre> 
	NoHostAuthenticationForLocalhost yes
        StrictHostKeyChecking no
</pre>
</p>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/08/25/index.html#e2009-08-25T09_07_37.txt</link>
<title>Top 5 Video Editors on Linux. [link]</title>
<dc:date>2009-08-25T09:07:37+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[
<p>Nice summary for video editing apps on Linux. I use Cinelerra and Avidemux myself. Great pair.<p/>

<p><a href="http://www.cyberciti.biz/faq/top5-linux-video-editing-system-software/">http://www.cyberciti.biz/faq/top5-linux-video-editing-system-software/</a></p>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/08/12/index.html#e2009-08-12T12_13_51.txt</link>
<title>Tabs in VIM</title>
<dc:date>2009-08-12T12:13:51+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[<p>Yes I am trying to make better use of my screen and also needed to edit two files concurrently.</p>

<p><a href="http://linux.com/archive/feature/59533">http://linux.com/archive/feature/59533</a></p>]]></description>
</item>
<item>
<link>http://www.dward.us/archives/2009/08/12/index.html#e2009-08-12T11_19_46.txt</link>
<title>Splitting Screen and VIM</title>
<dc:date>2009-08-12T11:19:46+10:00</dc:date>
<dc:creator>DaveQB</dc:creator>
<dc:subject>IT</dc:subject>
<description><![CDATA[
<p><a href="http://daveg.outer-rim.org/entries/2006/01/11/split-vim-gnu-screen-sessions/">http://daveg.outer-rim.org/entries/2006/01/11/split-vim-gnu-screen-sessions/</a><br>"To split a screen in screen, its ctrl+a S, then ctrl+a tab to jump between the screens. In vim, its ctrl+w s to split the screen horizontally, ctrl+w v to split the screen vertically and then ctrl+w w to jump between the screens in vim."</p>

<p>Also, to resize the tab, you hit C-a and then type :resize n (n is the number of lines, also +n and -n to add or remove lines).</p>]]></description>
</item>
</channel>
</rss>
