<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>digitalVectorz.. the digital sage.</title>
	<atom:link href="http://digitalvectorz.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalvectorz.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 28 Sep 2012 22:19:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='digitalvectorz.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>digitalVectorz.. the digital sage.</title>
		<link>http://digitalvectorz.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://digitalvectorz.wordpress.com/osd.xml" title="digitalVectorz.. the digital sage." />
	<atom:link rel='hub' href='http://digitalvectorz.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Mounting an encrypted hard disk (LUKS)</title>
		<link>http://digitalvectorz.wordpress.com/2011/06/09/mounting-an-encrypted-hard-disk-luks/</link>
		<comments>http://digitalvectorz.wordpress.com/2011/06/09/mounting-an-encrypted-hard-disk-luks/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 07:26:42 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[crypto_LUKS]]></category>
		<category><![CDATA[encrypted partition]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[LUKS]]></category>
		<category><![CDATA[lvdisplay]]></category>
		<category><![CDATA[mounting encrypted partitions]]></category>
		<category><![CDATA[recover encrypted data]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unknown filesystem type 'crypto_LUKS']]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=45</guid>
		<description><![CDATA[I found a pretty good link from BIT ENGINE on rescuing data from a LUKS encrypted harddisk. PROBLEM 1 &#8211; lvdisplay / vgchange not recognized The first issue I ran into while using Ubuntu 9.10 liveCD, was the commands lvdisplay and vgchange were not recognized. So to fix this: apt-get install lvm2 So now, on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=45&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I found a pretty good link from <a href="http://blog.bitengine.ca/?p=72">BIT ENGINE</a> on rescuing data from a LUKS encrypted harddisk.</p>
<p><strong>PROBLEM 1 &#8211; <code>lvdisplay</code> / <code>vgchange</code> not recognized</strong></p>
<p>The first issue I ran into while using Ubuntu 9.10 liveCD, was the commands <code>lvdisplay</code> and <code>vgchange</code> were not recognized. So to fix this:</p>
<p><code>apt-get install lvm2</code></p>
<p>So now, on my system <code>lvdisplay</code> outputs:<code><br />
</code><code>--- Logical volume ---<br />
LV Name /dev/vg_dvz/lv_root<br />
VG Name vg_dvz<br />
...etc...<br />
</code></p>
<p>If you<br />
<code>ls -la /dev/vg_dvz/lv_root</code></p>
<p>you&#8217;ll noticed that it&#8217;s linked to<br />
<code>/dev/mapper/vg_dvz-lv_root</code></p>
<p><strong>PROBLEM 2 &#8211; Mounting Issues</strong><br />
While reading it and following it, at this point:</p>
<p><code>"Mount your filesystem:</code></p>
<p>mount -t ext4 /dev/volumename/root /mnt&#8221;</p>
<p>When trying to mount:<br />
<code>mount -t ext4 /dev/vg_dvz/lv_root /mnt</code></p>
<p>I kept getting the error:<br />
<code>mount: unknown filesystem type 'crypto_LUKS'</code></p>
<p>So to overcome that, I just executed the previous command<br />
<code>cryptsetup -v luksOpen /dev/mapper/vg_dvz-lv_root myroot</code></p>
<p>and entered my LUKS passphrase again&#8230;<br />
<code>mount /dev/mapper/myroot</code><br />
&#8230;voila!</p>
<p><strong>Takeaway</strong></p>
<p>I had to apply the luksOpen on the Partition as well as the lv_root&#8230;sometimes only opening the partition may not suffice as each logical volume may also say it is of crypto_LUKS filetype.</p>
<p>Hope this saves someone some headache.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=45&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2011/06/09/mounting-an-encrypted-hard-disk-luks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Gypsy Vials</title>
		<link>http://digitalvectorz.wordpress.com/2011/03/16/gypsy-vials/</link>
		<comments>http://digitalvectorz.wordpress.com/2011/03/16/gypsy-vials/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 03:45:35 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=37</guid>
		<description><![CDATA[//Verse I&#8217;m a little destructive my walls are closing in; I&#8217;m beginning to lose perspective, Is it worth the pain again? //Verse How many times must we argue circular contradictions- trying to harmonize the dichotomy of your logic and emotions. //Chorus 1 This searing pain evokes the rain that fills the gypsy vials; This heart [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=37&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>//Verse<br />
I&#8217;m a little destructive<br />
my walls are closing in;<br />
I&#8217;m beginning to lose perspective,<br />
Is it worth the pain again?</p>
<p>//Verse<br />
How many times must we argue<br />
circular contradictions-<br />
trying to harmonize the dichotomy<br />
of your logic and emotions.</p>
<p>//Chorus 1<br />
This searing pain evokes the rain<br />
that fills the gypsy vials;<br />
This heart of mine &#8211; beats in time -<br />
reflecting on these trials.</p>
<p>//Verse<br />
The centerpiece for this &#8216;game&#8217;<br />
comes at a steep price.<br />
Is it worth the pain again<br />
to come in second twice?</p>
<p>//Chorus 1<br />
This searing pain evokes the rain<br />
that fills the gypsy vials;<br />
This heart of mine &#8211; beats in time -<br />
reflecting on these trials.</p>
<p>//Chorus 2<br />
This searing pain evokes the rain<br />
that flows from my sorrow<br />
This heart of mine &#8211; beats in time -<br />
pumping blood in those gypsy vials.</p>
<p>//Bridge<br />
I just wish you could see<br />
that you don&#8217;t have to settle<br />
for anything less than perfect.<br />
But your eyes are blinded<br />
by the veil of illusion<br />
telling you, &#8220;You can&#8217;t do better.&#8221;</p>
<p>//Chorus 1<br />
This searing pain evokes the rain<br />
that fills the gypsy vials;<br />
This heart of mine &#8211; beats in time -<br />
reflecting on these trials.</p>
<p>//Chorus 2<br />
This searing pain evokes the rain<br />
that flows from my sorrow<br />
This heart of mine &#8211; beats in time -<br />
pumping blood in those gypsy vials.</p>
<p>Copyright(c) 2011. digitalVectorz.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=37&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2011/03/16/gypsy-vials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiki Tables</title>
		<link>http://digitalvectorz.wordpress.com/2009/12/11/wiki-tables/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/12/11/wiki-tables/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 23:04:41 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Ubuntu wiki tables]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=32</guid>
		<description><![CDATA[So I found the need / desire to place tables side by side in https://wiki.ubuntu.com/BeginnersTeam/FocusGroups/Development/Joining. I successfully got the tables working how I wanted them, however I noticed a few issues.  The first issue is that the tables aren&#8217;t maintained when you break them across lines by the &#8216;&#124;&#124;&#8217; tag.  i.e. &#124;&#124;&#60;tablestyle...&#62;&#124;&#124;Something&#124;&#124;SomethingElse&#124;&#124; does not parse [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=32&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>So I found the need / desire to place tables side by side in <a href="https://wiki.ubuntu.com/BeginnersTeam/FocusGroups/Development/Joining" rel="nofollow">https://wiki.ubuntu.com/BeginnersTeam/FocusGroups/Development/Joining</a>.</p>
<p>I successfully got the tables working how I wanted them, however I noticed a few issues.  The first issue is that the tables aren&#8217;t maintained when you break them across lines by the &#8216;||&#8217; tag.  i.e.</p>
<pre style="padding-left:30px;">||&lt;tablestyle...&gt;||Something||SomethingElse||</pre>
<p>does not parse the same as</p>
<pre style="padding-left:30px;">||&lt;tablestyle...&gt;</pre>
<pre style="padding-left:30px;">||Something</pre>
<pre style="padding-left:30px;">||SomethingElse</pre>
<p>But that&#8217;s understandable, given how parsing engines work.. And the only time this becomes a hassle is when you want two or three or even four tables side by side, you have to write them as one large table which tends to take up several lines for one row of tabular data.</p>
<p>But one idea I propose is to create a shortcut for &lt;style=&#8221;border:none&#8221;&gt;.  Similar to how:  &lt;#000000&gt; is a shortcut for &lt;style=&#8221;background:#000000;&#8221;&gt;  and how &lt;50%&gt;  is a shortcut for &lt;width:&#8221;50%&#8221;&gt;  which is a shortcut for &lt;style=&#8221;width:50%;&#8221;&gt;.</p>
<p>That would make it a little easier and a little clutter than seeing a line such as:</p>
<pre>||&lt;style="border:none"&gt;||&lt;style="border:none"&gt;||&lt;style="border:none"&gt;|| dataHere || DataHere ||</pre>
<p>And make it something more like:</p>
<pre>||&lt;nb&gt;||&lt;nb&gt;||&lt;nb&gt;|| dataHere || DataHere ||</pre>
<p>where &lt;nb&gt; = no border.</p>
<p>Another idea would be for the tables to actually be floated next to each other&#8230;but in the few attempts I had with the floating, it didn&#8217;t seem to work.  So if that does work, then I just may have overlooked something.  Hrm.</p>
<p>Food for thought. Tis all.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=32&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/12/11/wiki-tables/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Bash/Shell Programming &#8211; Binary Operator Expected</title>
		<link>http://digitalvectorz.wordpress.com/2009/12/10/bashshell-programming-binary-operator-expected/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/12/10/bashshell-programming-binary-operator-expected/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 06:27:04 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Binary Operator]]></category>
		<category><![CDATA[binary operator expected]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Shell Programming]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=28</guid>
		<description><![CDATA[So if you ever decide to get into shell scripting, it&#8217;s a wonderful world.  Until you run into snags that you once thought you had the hang of.  Let&#8217;s take shell conditionals, for example. So i&#8217;m trying to test the output of grep and do something if it returns a result.  After setting it up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=28&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>So if you ever decide to get into shell scripting, it&#8217;s a wonderful world.  Until you run into snags that you once thought you had the hang of.  Let&#8217;s take shell conditionals, for example.</p>
<p>So i&#8217;m trying to test the output of grep and do something if it returns a result.  After setting it up the usual way:</p>
<p style="padding-left:30px;"><code>if [ -n `ls | grep something' ]; then<br />
echo "Something Exists";<br />
fi</code></p>
<p>But by doing it that way, I kept getting the error:<br />
./scnotify.sh: line 3: [: 2841.c: binary operator expected<br />
which for the life of me I couldn't figure out.  Eventually I figured it out though...and all that the error was, was instead of a single '[' and ']&#8216; wrapping the comparison, it requires a double&#8230;i.e.</p>
<p style="padding-left:30px;"><code>if [[ -n `ls | grep something` ]]; then<br />
echo "Success";<br />
fi</code></p>
<p>Hope this saves someone some headache in the future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=28&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/12/10/bashshell-programming-binary-operator-expected/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Determining WHICH *nix distro is currently used&#8230;</title>
		<link>http://digitalvectorz.wordpress.com/2009/12/10/determining-which-nix-distro-is-currently-used/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/12/10/determining-which-nix-distro-is-currently-used/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 01:49:59 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[determine distribution]]></category>
		<category><![CDATA[determine distro]]></category>
		<category><![CDATA[distribution and build of linux]]></category>
		<category><![CDATA[distribution identifying]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Mandrake]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[Slax]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=24</guid>
		<description><![CDATA[&#8211;Edit. Originally, I had run into the issue of trying to determine the *nix distribution &#8211; a command that would tell me the distribution and the build and everythign else I wanted to know. After reviewing some of the awesome comments left behind, here&#8217;s the updated perl script to determine the distribution (in Perl). #!/usr/bin/env [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=24&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>&#8211;Edit.<br />
Originally, I had run into the issue of trying to determine the *nix distribution &#8211; a command that would tell me the distribution and the build and everythign else I wanted to know.  After reviewing some of the awesome comments left behind, here&#8217;s the updated perl script to determine the distribution (in Perl).</p>
<p style="padding-left:30px;"><code>#!/usr/bin/env perl<br />
use strict;<br />
use warnings;</code></p>
<p style="padding-left:30px;"><code>my ( $distro  );<br />
$distro = `lsb_release -i -s`;<br />
chomp $distro;</code></p>
<p style="padding-left:30px;"><code>my %installCmd = (<br />
"Fedora" =&gt; \&amp;fedora,<br />
"Ubuntu" =&gt; \&amp;ubuntu,<br />
);</code></p>
<p style="padding-left:30px;"><code>&amp;test();</p>
<p></code></p>
<p style="padding-left:30px;">
<p style="padding-left:30px;"><code>sub test {<br />
if ( exists $installCmd{$distro} ) {<br />
$installCmd{$distro}-&gt;();<br />
} else {<br />
print "Supported Distributions are: ". join(', ' , keys %installCmd) .  ".\n";<br />
exit;<br />
}<br />
}<br />
</code></p>
<p style="padding-left:30px;"><code>sub fedora { print "Hello from the Fedora Family!"; }<br />
sub ubuntu { print "Hello from UBUNTU!!!"; }</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=24&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/12/10/determining-which-nix-distro-is-currently-used/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>sqlite, sqlite3, and CPAN equivalents in Ubuntu and Fedora</title>
		<link>http://digitalvectorz.wordpress.com/2009/12/09/sqlite-sqlite3-and-cpan-equivalents-in-ubuntu-and-fedora/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/12/09/sqlite-sqlite3-and-cpan-equivalents-in-ubuntu-and-fedora/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 11:49:22 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cpan in fedora]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora cpan]]></category>
		<category><![CDATA[fedora sqlite]]></category>
		<category><![CDATA[fedora sqlite3]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[sqlite3]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu sqlite equivalent in fedora]]></category>
		<category><![CDATA[ubuntu sqlite3 equivalent in fedora]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=21</guid>
		<description><![CDATA[ubuntu's sqlite3 equivalent in fedora, cpan in fedora, ubuntu's sqlite equivalent in fedora, <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=21&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>So I ran into an issue today, while working trying to port a program from Ubuntu to Fedora, involving Sqlite and Sqlite3 and CPAN.</p>
<h2>sqlite (2.8)</h2>
<pre style="padding-left:30px;">Ubuntu:    sudo apt-get install sqlite
Fedora:    su -c 'yum install sqlite2'
</pre>
<h2>sqlite3 (3.0+)</h2>
<pre style="padding-left:30px;">Ubuntu:    sudo apt-get install sqlite3
Fedora:    su -c 'yum install sqlite'
</pre>
<h2>CPAN</h2>
<pre style="padding-left:30px;">Ubuntu:    <em>Installed by default</em>
Fedora:    su -c 'yum install perl-CPAN'
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=21&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/12/09/sqlite-sqlite3-and-cpan-equivalents-in-ubuntu-and-fedora/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Converting Images (png&#8217;s and jpeg&#8217;s) to movie (avi)</title>
		<link>http://digitalvectorz.wordpress.com/2009/10/06/converting-images-pngs-and-jpegs-to-movie-avi/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/10/06/converting-images-pngs-and-jpegs-to-movie-avi/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 04:24:28 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[images to movie]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[pictures to movie]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/2009/10/06/converting-images-pngs-and-jpegs-to-movie-avi/</guid>
		<description><![CDATA[http://www.patrickmin.com/linux/tip.php?name=images_to_movie<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=18&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.patrickmin.com/linux/tip.php?name=images_to_movie" rel="nofollow">http://www.patrickmin.com/linux/tip.php?name=images_to_movie</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=18&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/10/06/converting-images-pngs-and-jpegs-to-movie-avi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Resize / reposition divs and and background based on window size</title>
		<link>http://digitalvectorz.wordpress.com/2009/09/25/resize-reposition-divs-and-and-background-based-on-window-size/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/09/25/resize-reposition-divs-and-and-background-based-on-window-size/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 18:25:30 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[rescale background]]></category>
		<category><![CDATA[resize background]]></category>
		<category><![CDATA[resize divs]]></category>
		<category><![CDATA[scale divs]]></category>
		<category><![CDATA[scale divs to background]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/?p=14</guid>
		<description><![CDATA[One problem that I&#8217;ve run into is positioning/sizing divs on a background, with the following caveat:  when the window is resized, the background is resized&#8230;however, the divs don&#8217;t adjust accordingly.  Well here&#8217;s how to accomplish that. First let&#8217;s create our HTML file. &#60;html&#62; &#60;head&#62; &#60;link rel="stylesheet" href="ourStyle.css" type="text/css" media="screen"/&#62; &#60;/head&#62; &#60;body&#62; &#60;div id="page-background"&#62; &#60;img src="ourBackground.png" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=14&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>One problem that I&#8217;ve run into is positioning/sizing divs on a background, with the following caveat:  when the window is resized, the background is resized&#8230;however, the divs don&#8217;t adjust accordingly.  Well here&#8217;s how to accomplish that.</p>
<p>First let&#8217;s create our HTML file.</p>
<pre>&lt;html&gt;
  &lt;head&gt;
    &lt;link rel="stylesheet" href="ourStyle.css" type="text/css" media="screen"/&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;div id="page-background"&gt;
      &lt;img src="ourBackground.png" id="bgimg" alt="Our Background"/&gt;
    &lt;/div&gt;

    &lt;div id="contentBlock1"&gt;
      Some content goes here
    &lt;/div&gt;
  &lt;/body&gt;
&lt;/html&gt;
</pre>
<h3>ourStyle.css</h3>
<pre>html, body {height:100%; margin:0; padding:0;}
#page-background { /* sets background to full width and height of browser window */
 position:fixed;
 top:0;
 left:0;
 width:100%;
 height:100%;
 }
#contentBlock1 {
 position:relative;
 top: 51.42%;   /* use percentages for the top,left to maintain the top-left corner at the same */
 left: 48.66%;  /* relative position on the background */
 width: 26.69%;    /* use % for width,height to scale the div block according to the window */
 height: 23.57%;   /* width and height */
 background: #999999;
 z-index:1;
 padding:10px;
 }
</pre>
<h4>What&#8217;s Happening?</h4>
<p>Say you have an image that&#8217;s <strong>1120 x 700 </strong>at 100% view.  Now let&#8217;s say you find that you have a part of the background that you want to place a div over, say for a nav bar.  First, open the image in some editing program that will show you the pixels/points that your mouse is hovering over, and find the top-left corner of the space you want to place your nav bar.  That should give you two points:  <strong>x1 , y1</strong>.</p>
<p>Next, hover your mouse over the bottom-right corner of where your nav bar will be.  This should give you points:  <strong>x2 , y2</strong>.</p>
<p>So let&#8217;s say in my image, my top-left corner is at:  ( 545 , 360 )  and my bottom-left corner: ( 844 , 525 ).</p>
<p><strong>x1 = 545 ,  x2 = 844</strong></p>
<p><strong>y1 = 360 ,  y2 = 525<br />
</strong></p>
<p>Now to find the values:</p>
<pre>top   = y1  / 700
      = 360 / 700 = 0.5143

left  = x1  / 1120
      = 545 / 1120 = 0.4866

width =  (x2 - x1)  / 1120
      = (844 - 545) / 1120 = 0.2669

height=  (y2 - y1)  / 700
      = (525 - 360) / 700 = 0.2357 
</pre>
<p>Now, since we&#8217;re working in <strong>PERCENTAGES</strong>, we need to multiply those values by <strong>100</strong>.  Thus, our result is:</p>
<pre>top: 51.42%;
left: 48.66%;
width: 26.69%;
height: 23.57%;
</pre>
<p>Which, if we look at <strong>ourStyle.css</strong>, are the values that were used there.</p>
<p>Hope this finds use for someone.</p>
<address>Until next time,</address>
<address><strong>dVz-</strong><br />
</address>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=14&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/09/25/resize-reposition-divs-and-and-background-based-on-window-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
		<item>
		<title>Corporate Mythology</title>
		<link>http://digitalvectorz.wordpress.com/2009/09/20/3/</link>
		<comments>http://digitalvectorz.wordpress.com/2009/09/20/3/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 00:00:51 +0000</pubDate>
		<dc:creator>digitalvectorz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Hypocrisy]]></category>
		<category><![CDATA[Lyrics]]></category>
		<category><![CDATA[Poetry]]></category>
		<category><![CDATA[Song]]></category>

		<guid isPermaLink="false">http://digitalvectorz.wordpress.com/2009/09/20/3/</guid>
		<description><![CDATA[Tempo 92 I&#8217;ve got desire I&#8217;ve got the fire in my (eyes) I don&#8217;t understand why everything&#8217;s awry I try to dawn the smile that everyone will see complacency has overtaken me Corporate America deceptively disguised chiseling two-faced hypocrites out of life anchored in shadows severed bloodshed-knit ties they booted me out for the final [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=3&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Tempo 92</p>
<p>I&#8217;ve got desire<br />
I&#8217;ve got the fire in my (eyes)<br />
I don&#8217;t understand why<br />
everything&#8217;s awry</p>
<p>I try to dawn the smile<br />
that everyone will see<br />
complacency<br />
has overtaken me</p>
<p>Corporate America<br />
deceptively disguised<br />
chiseling two-faced<br />
hypocrites out of life</p>
<p>anchored in shadows<br />
severed bloodshed-knit ties<br />
they booted me out<br />
for the final time</p>
<p>//CHORUS<br />
Good morning all you fucks in Vietnam<br />
I&#8217;d rather die in vain than play along with the<br />
masquerading fantasies and<br />
empty mythologies (preaching)<br />
what they think is right and wrong</p>
<p>No time to wallow<br />
pick your heart up off that floor<br />
flog it for the masses<br />
as they riot and scream for more</p>
<p>They dont&#8217; know what they want<br />
they&#8217;re vacant miseries<br />
hiding behind<br />
those goddamned deities.</p>
<p>//CHORUS<br />
Good morning all you fucks in Vietnam<br />
I&#8217;d rather die in vain than play along with the<br />
masquerading fantasies and<br />
empty mythologies (preaching)<br />
what they think is right and wrong</p>
<p>//BRIDGE<br />
Why must we go an pick this fight?<br />
Why can&#8217;t we all just realize<br />
(That) None of this is for any gain<br />
Why must we go and complicate?</p>
<p>Copyright(c) 2009. digitalVectorz.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalvectorz.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalvectorz.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalvectorz.wordpress.com&#038;blog=9564745&#038;post=3&#038;subd=digitalvectorz&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://digitalvectorz.wordpress.com/2009/09/20/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/b2abc8d3a5a26d6d2306390893c88239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">digitalvectorz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
