<?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>nedos.net</title>
	<atom:link href="http://nedos.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://nedos.net</link>
	<description>a few tips to make life easier...</description>
	<lastBuildDate>Thu, 25 Feb 2010 19:43:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu 9.10 Karmic LUKS + LVM Root Encryption with Desktop or Netinstall CD</title>
		<link>http://nedos.net/2010/01/21/ubuntu-luks-lvm/</link>
		<comments>http://nedos.net/2010/01/21/ubuntu-luks-lvm/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 10:00:19 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[crypto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nedos.net/?p=138</guid>
		<description><![CDATA[LUKS + LVM root on Debian is a breeze, in fact the installer does everything for you. And the Ubuntu Desktop CD? Well, not so much, unfortunately. You could use the alternate or server CD, but this was not possible for me, I only had the desktop CD on a USB Stick. In any case, since Ubuntu also uses apt, its really just more or less a matter of installing what's missing, dpkg will do the rest!]]></description>
			<content:encoded><![CDATA[<p>So after recently migrating my backup server to a Debian LUKS set up, i decided to move my Ubuntu desktop to such a setup as well. If there are so many great free open-source encryption solutions, why doesn&#8217;t everyone use them?</p>
<p>In any case setting up a LUKS + LVM root on Debian is a breeze, in fact the installer does everything for you. And the Ubuntu Desktop CD? Well, not so much, unfortunately. You could use the alternate or server CD, but this was not possible for me, I only had the desktop CD on a USB Stick. In any case, since Ubuntu also uses apt, its really just more or less a matter of installing what&#8217;s missing, <code>dpkg</code> will do the rest!</p>
<p>It goes a little something like this&#8230;</p>
<h2>Pre-flight</h2>
<h3>Before we begin&#8230;</h3>
<ol>
<li>Boot the Ubuntu Karmic CD into the &#8220;LiveCD&#8221; mode this is the one called, <em>&#8220;Try Ubuntu without any change to your computer&#8221;</em>.</li>
<li>You will need an internet connection to download the latest versions of the missing programs, make sure you have connectivity from the LiveCD.</li>
<li>Make sure you know what the drive name is of the drive you are installing to in this <em>howto</em> it will be <code>/dev/sda</code></li>
<li>You will need a <em>separate unencrypted</em> boot partition, it is entirely possible to have this on a different device, such as a USB Stick, however here we assume that the boot partition is the first partition of the internal harddrive, i.e. <code>/dev/sda1</code></li>
<li>Open up a Terminal (Man up sissy boy &#8211; Applications &gt; Accessories &gt; Terminal)</li>
<li>(Optional) fill your drive with random data <code>dd if=/dev/urandom of=/dev/sda</code>. This prevents people from seeing <em>how much data</em>, but not what data has been written to the drive. This will take forever, especially if you have a large drive, like a 1TB.</li>
</ol>
<h3>Getting the tools</h3>
<p>Now we need to get the tools, this is relatively simple to do. Since we will need root privileges for almost the entire process, i recommend dropping to root immediately. To do this, simply type:<br />
<code><br />
sudo su -l<br />
</code></p>
<p><em><strong>We will assume that you are root for all commands below!!!</strong></em></p>
<p>Now we need to update the packages and install <code>cryptsetup</code> and <code>lvm2</code>. To do this first type in:</p>
<ol>
<li><code>apt-get update</code></li>
<li><code>apt-get install cryptsetup lvm2</code></li>
</ol>
<h2>Setting up the encrypted volume</h2>
<h3>Partitioning the disk</h3>
<p>First we need to create a partition table, to do this we fire up fdisk. In this tutorial the disk we will partitioning is <code>/dev/sda</code>.</p>
<ol>
<li>type: <code>fdisk /dev/sda</code></li>
<li>Type in <code>p</code> to print the current partition table and use <code>d</code> to delete any existing partitions: <code>Command (m for help): p</code></li>
<li>Create the first, primary, bootable, 250MB partition.
<ol>
<li>type: <code>n</code></li>
<li>then: <code>p</code></li>
<li>then: <code>1</code></li>
<li>then hit enter</li>
<li>then type: <code>+250M</code></li>
<li>then: <code>a</code></li>
<li>then: <code>1</code></li>
<li>and type: <code>p</code>, you should get something like:<br />
<code><br />
Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1   *           1          33      265041   83  Linux<br />
</code></li>
</ol>
</li>
<li>Now create a single partition, taking up the rest of the space:
<ol>
<li>type: <code>n</code></li>
<li>then: <code>p</code></li>
<li>then: <code>2</code></li>
<li>then hit enter</li>
<li>then hit enter again</li>
<li>and type: <code>p</code>, you should get something like:<br />
<code><br />
Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1   *           1          33      265041   83  Linux<br />
/dev/sda2              34        2610    20699752+  83  Linux<br />
</code></li>
</ol>
</li>
<li>now press <code>w</code></li>
</ol>
<h3>Create the encrypted Volume</h3>
<p>Next step is to setup the encrypted volume. We &#8220;luksFormat&#8221; the partition we want to be our encrypted volume, in this example this is <code>/dev/sda2</code>. To encrypt the volume, you should select a nice password. If you are not good at making your own pseudo-random passwords, download pwgen <strong>AND DON&#8217;T LOSE THIS PASSWORD!!!</strong></p>
<ol>
<li><code>apt-get install pwgen</code></li>
<li><code>pwgen 20</code></li>
</ol>
<p>Now we wipe the partition. Enter your super-duper password at the prompt for the LUKS volume.<br />
<code><br />
cryptsetup luksFormat /dev/sda2<br />
</code></p>
<h3>Mount the encrypted volume</h3>
<p>Now all that is left is mounting the encrypted volume. The first parameter of the command is the physical partition or device that the encrypted volume resides on, the second parameter is the alias for the decrypted volume in <code>/dev/mapper</code>. In this example I called my decrypted volume <code>sda2_crypt</code> (this happens to also be the Debian naming scheme) however you can chose whatever you want. Enter the LUKS volume password at the prompt.<br />
<code><br />
cryptsetup luksOpen /dev/sda2 sda2_crypt<br />
</code></p>
<p>Now that we should have the encrypted volume up and running, we can check by typing <code>cryptsetup status /dev/mapper/sda2_crypt</code>. You should see a similar output.</p>
<p><code><br />
/dev/mapper//dev/mapper/sda2_crypt is active:<br />
cipher:  aes-cbc-essiv:sha256<br />
keysize: 128 bits<br />
device:  /dev/sda2<br />
offset:  1032 sectors<br />
size:    41398473 sectors<br />
mode:    read/write<br />
</code></p>
<h2>Setting up LVM</h2>
<p>Perfect, now we can make this a physical volume for LVM. If you have never used LVM before, its about time! I&#8217;m not gonna go into great detail about how it works, there are plenty of resources online explaining the differences between physical volumes, volume groups and logical volumes. Very briefly though, <em>each</em> logical volume resides on a <em>single</em> volume group which reside on <em>one or more</em> physical volumes. So a volume group is a pool of physical devices which we can use to create logical volumes. In our case we will have <em>one</em> physical volume (<code>/dev/mapper/sda2_crypt</code>), <em>one</em> volume group (i called mine <code>crypto</code> in this example) and <em>several</em> logical volumes.</p>
<h3>Create the Physical Volume</h3>
<p>Lets go! Create the physical volume with:<br />
<code><br />
pvcreate /dev/mapper/sda2_crypt<br />
</code></p>
<h3>Create the Volume Group</h3>
<p>Create a volume group with:<br />
<code><br />
vgcreate crypto /dev/mapper/sda2_crypt<br />
</code></p>
<h3>Create the Logical Volumes</h3>
<p>And now create your logical volumes. You need at least a root and a swap, but you can create more. In this example i also created a <code>/home</code> and a <code>/tmp</code> partition (albeit pretty small). To create a logical volume use <code>lvcreate -n&lt;volume_name&gt; -L&lt;volume_size&gt; crypto</code>, where <code>&lt;volume_name&gt;</code> is the name of the volume (i.e. root), where <code>&lt;volume_size&gt;</code> is size of the volume (i.e 10G or 512M) and where crypto is, of course, the example name of our volume group from the previous step.<br />
<code><br />
root@ubuntu:~# lvcreate -nroot -L10G crypto<br />
Logical volume "root" created<br />
root@ubuntu:~# lvcreate -nswap -L1G crypto<br />
Logical volume "swap" created<br />
root@ubuntu:~# lvcreate -nhome -L4G crypto<br />
Logical volume "home" created<br />
root@ubuntu:~# lvcreate -ntmp -L4G crypto<br />
Logical volume "tmp" created<br />
</code></p>
<p>Now we&#8217;re ready to install!</p>
<h2>Installation</h2>
<p>The installation should be completely normal, the only changes you have to make are at the Partitioning screen.</p>
<h3>Partitioning</h3>
<div id="attachment_141" class="wp-caption alignnone" style="width: 514px"><a href="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-2.png"><img class="size-full wp-image-141  " title="Prepare Disk Space" src="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-2.png" alt="Select: Specify Partitions manually at this screen" width="504" height="410" /></a><p class="wp-caption-text">Select: Specify Partitions manually at this screen</p></div>
<h3>Formatting</h3>
<p>At the next screen remember to set mountpoints for your partitions and for them to be formatted. I chose to use <code>ext2</code> for my boot partition (<code>/dev/sda1</code>), mostly for legacy reasons. Make sure the <code>swap</code> logical volume is formatted <code>swap</code>, otherwise format the other partitions (i.e. <code>root</code>, <code>tmp</code> and <code>home</code>) whatever you want, i chose ext4. Again, <strong>MAKE SURE YOU ARE SETTING MOUNTPOINTS</strong> and <strong>DO NOT</strong> format <code>/dev/sda2</code>!!!</p>
<div id="attachment_144" class="wp-caption alignnone" style="width: 514px"><a href="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-21.png"><img class="size-full wp-image-144  " title="Prepare Partitions" src="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-21.png" alt="Remember to select mountpoints, filesystems and format the partitions at this screen." width="504" height="410" /></a><p class="wp-caption-text">Remember to select mountpoints, filesystems and format the partitions at this screen.</p></div>
<h3>Finishing the Installation</h3>
<p>Now click forward and let the installer finish. Remember to <strong>NOT RESTART</strong> at the very end, select &#8220;Continue Testing&#8221;.</p>
<div id="attachment_146" class="wp-caption alignnone" style="width: 514px"><a href="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-22.png"><img class="size-full wp-image-146  " title="Installation Complete" src="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-22.png" alt="Select &quot;Continue Testing&quot; here!" width="504" height="410" /></a><p class="wp-caption-text">Select &quot;Continue Testing&quot; here!</p></div>
<h2>Getting the missing bits and pieces</h2>
<p>Now, fire up a Terminal again, drop to root (<code>sudo su -l</code>). We will need to mount the new system, create an <code>/etc/crypttab</code> entry and install some missing packages.</p>
<h3>Mount the new system</h3>
<p>To mount the partitions do the following</p>
<ol>
<li>create a mount point: <code>mkdir -p /mnt/newroot</code></li>
<li>mount the root: <code>mount /dev/crypto/root /mnt/newroot</code></li>
<li>mount proc: <code>mount /proc /mnt/newroot/proc -t proc</code></li>
<li>mount your boot partition: <code>mount /dev/sda1 /mnt/newroot/boot</code></li>
<li>mount any other partitions (i.e. /tmp, /home, /var&#8230;): <code>mount /dev/crypto/&lt;vol_name&gt; /mnt/newroot/&lt;mount_name&gt;</code></li>
</ol>
<h3><code>chroot</code> into the new environment</h3>
<p>Now we are going to chroot into this environment, to do this type: chroot /mnt/newroot if you got no errors, and the command pwd returns /, you should be good.</p>
<h3>Create an <code>/etc/crypttab</code></h3>
<p>Now we need to create the <code>/etc/crypttab</code> entry and install the missing packages:</p>
<p>To create an entry in <code>/etc/crypttab</code> simply (replacing any discrepancies in naming) do:<br />
<code><br />
echo "sda2_crypt /dev/sda2 none luks" &gt;&gt; /etc/crypttab<br />
</code></p>
<p>Your /etc/crypttab should now look something like this, when you type <code>cat /etc/crypttab</code>.<br />
<code><br />
# &lt;target name&gt;    &lt;source device&gt;        &lt;key file&gt;    &lt;options&gt;<br />
sda2_crypt /dev/sda2 none luks<br />
</code></p>
<h3>Install the missing packages</h3>
<p>Now we only need to install the missing packages, the rest will be done by dpkg&#8217;s scripts.</p>
<ol>
<li>apt-get update</li>
<li>apt-get install lvm2 cryptsetup</li>
</ol>
<h3>Unmount the partitions</h3>
<p>Thats it! Now exit chroot and unmount all the volumes</p>
<ol>
<li>to exit <code>chroot</code> simply type: <code>exit</code></li>
<li>to <code>unmount</code> all the mountpoints within <code>/mnt/newroot</code>, type comma-seperated in curly-brackets what you want to unmount: <code>umount /mnt/newroot/{boot,home,tmp,proc}</code></li>
<li>you should now be able to unmount <code>/mnt/newroot</code>, if not check if you unmounted all partitions in step 2: <code>umount /mnt/newroot</code></li>
</ol>
<h3>Reboot&#8230; pray</h3>
<p>Now type in <code>reboot</code> and cross your fingers! Hopefully you are welcomed by a screen like this:</p>
<div id="attachment_148" class="wp-caption alignnone" style="width: 514px"><a href="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-23.png"><img class="size-full wp-image-148  " title="Enter Passphrase" src="http://nedos.net/wordpress/wp-content/uploads/2010/01/Ubuntu-64-bit-23.png" alt="If all went well, Ubuntu's splash screen should ask you for the password" width="504" height="410" /></a><p class="wp-caption-text">If all went well, Ubuntu&#39;s splash screen should ask you for the password</p></div>
<h3>Troubleshooting</h3>
<p>Ideally it all went well, and you don&#8217;t have any complaints, however, I will create a troubleshooting section as comments rain in, so please do comment.</p>
<p>Thanks for reading, can&#8217;t wait to see some comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2010/01/21/ubuntu-luks-lvm/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ruby .txt to .html link script for Rapidshare</title>
		<link>http://nedos.net/2009/03/04/ruby-txt-to-html-link-script-for-rapidshare/</link>
		<comments>http://nedos.net/2009/03/04/ruby-txt-to-html-link-script-for-rapidshare/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 14:37:30 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://nedos.net/?p=124</guid>
		<description><![CDATA[So you know what&#8217;s really annoying? How many downloaders people are trying to sell! I love DownThemAll for firefox, its a great plug-in that i highly recommend. Unfortunately you can&#8217;t just add a list of links. You have to have &#8220;clickable&#8221; links for it to work. Well that sucks, I guess you have to get [...]]]></description>
			<content:encoded><![CDATA[<p>So you know what&#8217;s really annoying? How many downloaders people are trying to sell! I love DownThemAll for firefox, its a great plug-in that i highly recommend. Unfortunately you can&#8217;t just add a list of links. You have to have &#8220;clickable&#8221; links for it to work. Well that sucks, I guess you have to get one of those 20 dollar apps, right? WRONG! Ruby saves the day! I might make a gui for this script at some point but until then it works flawlessly in terminal.</p>
<p>Just add all the links you want to download to a text file and save it with .txt extension. Now run this script and input the .txt file as the parameter, i.e:</p>
<p><code>./txttohtml links.txt</code></p>
<p>Now you should find an html file in the same folder with the text file, the filename is the, but with an .html extension. Anyway, here&#8217;s the script:</p>
<p><code><br />
#!/usr/bin/ruby<br />
# Dmitry Nedospasov<br />
# Text to HTML<br />
# This script converts a .txt file to an html file with each<br />
# line of the file as a link<br />
#<br />
# I wanted this so that i could use rapidshare with DTA<br />
# Script needs one argument, the .txt file<br />
require 'ftools'<br />
def parseargs(arguments, stdin)<br />
# puts arguments<br />
txtFile = arguments[0]<br />
if txtFile == nil<br />
puts 'Please enter a filename'<br />
elsif txtFile =~ /.txt$/<br />
puts 'Checking the following file: ' + txtFile<br />
convertFromTxtToHtml(txtFile)<br />
else<br />
puts 'Please enter a file that ends with .txt'<br />
end<br />
end<br />
def convertFromTxtToHtml(txtFile)<br />
htmlFile = txtFile.sub(/.txt$/, " .html" )<br />
puts 'Writing results to: ' + htmlFile<br />
myHtmlFile = File.new(htmlFile, " w+" )<br />
myTxtFile = File.open(txtFile, " r" )<br />
if File.zero?(myTxtFile)<br />
puts 'the .txt file is empty'<br />
elsif File.exist?(myTxtFile)<br />
myHtmlFile.puts(" &lt;html&gt;" )<br />
counter = 1<br />
myTxtFile.readlines.each { |curLine|<br />
newLine = '&lt;a href=" '<br />
newLine += curLine<br />
newLine += '" &gt;'<br />
newLine += " #{counter}"<br />
newLine += ' - '<br />
newLine += curLine<br />
newLine += '&lt;/a&gt;'<br />
myHtmlFile.puts(newLine)<br />
myHtmlFile.puts(" &lt;br /&gt;" )<br />
counter += 1<br />
}<br />
myHtmlFile.puts(" &lt;/html&gt;" )<br />
else<br />
puts 'File not found'<br />
end<br />
end<br />
parseargs(ARGV, STDIN)<br />
</code></p>
<p>Now you can fire up firefox and open the html file and start dta, however the &#8220;cool&#8221; way to create the html files and launch firefox from terminal is, in Mac OS:</p>
<p><code><br />
./txttohtml.rb *.txt &amp;&amp; open -a Firefox *.html<br />
</code></p>
<p>And in linux:</p>
<p><code>./txttohtml.rb *.txt &amp;&amp; firefox *.html</code></p>
<p>Have fun and here is the <a href="http://nedos.net/ruby/txttohtml.rb">file for download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2009/03/04/ruby-txt-to-html-link-script-for-rapidshare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby Batch Rename Script</title>
		<link>http://nedos.net/2009/02/20/ruby-batch-rename-script/</link>
		<comments>http://nedos.net/2009/02/20/ruby-batch-rename-script/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 23:26:03 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://nedos.net/?p=94</guid>
		<description><![CDATA[So I&#8217;ve recently gotten into scripting in ruby and with a couple of scripts you really can save yourself a lot of tedious work in the future. Here&#8217;s one i wrote that does a batch rename of all files in a given folder and its subfolders. You can do either of the following:
Enter 3 parameters:

input [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve recently gotten into scripting in ruby and with a couple of scripts you really can save yourself a lot of tedious work in the future. Here&#8217;s one i wrote that does a batch rename of all files in a given folder and its subfolders. You can do either of the following:</p>
<p>Enter 3 parameters:</p>
<ol>
<li>input directory</li>
<li>search string</li>
<li>replacement string</li>
</ol>
<div>Or just enter 2 parameters in which case the search string will be removed from all files:</div>
<div>
<ol>
<li>input directory</li>
<li>search string</li>
</ol>
<div>Remember, to enter the parameters in that order, &lt;input dir&gt; &lt;search string&gt; [&lt;replacement string&gt;].</div>
</div>
<div>
<code><br />
#!/usr/bin/ruby<br />
# Dmitry Nedospasov<br />
# Batch Rename<br />
# 2 parameters: batchrename.rb &lt;input dir&gt; &lt;search string&gt;<br />
# &lt;search string&gt; will be completely removed from all occurances<br />
# 3 parameters: batrename.rb &lt;input dir&gt; &lt;search string&gt; &lt;replacement string&gt;<br />
# all occurances of &lt;search string&gt; will be replaced with &lt;replacement string&gt;</p>
<p>require &apos;ftools&apos;<br />
def parseargs(arguments, stdin)<br />
&nbsp; # puts arguments<br />
&nbsp; dir = arguments[0]<br />
&nbsp; oldExt = arguments[1]<br />
&nbsp; newExt = arguments[2]<br />
&nbsp; puts dir<br />
&nbsp; puts oldExt<br />
&nbsp; puts newExt<br />
&nbsp; if oldExt == nil or dir == nil<br />
&nbsp; puts &apos;Please enter atleast the first 2 parameters: &apos;<br />
&nbsp; puts &apos; &lt;input directory&gt; &lt;search string&gt; [&lt;replacement string&gt;]&apos;<br />
&nbsp; else<br />
&nbsp; &nbsp; convertFromTo(dir,oldExt,newExt)<br />
&nbsp; end<br />
end<br />
def convertFromTo(dir, oldExt, newExt)<br />
&nbsp; files = Dir.entries(dir)<br />
&nbsp; files.each do |f|<br />
&nbsp; &nbsp; next if f == &apos;.&apos; or f == &apos;..&apos;<br />
&nbsp; &nbsp; fullPath = dir + &apos;/&apos; + f<br />
&nbsp; &nbsp; # fullPath = fullPath.gsub(&apos; &apos;,&apos;\ &apos;)<br />
&nbsp; &nbsp; if File.directory?(fullPath)<br />
&nbsp; &nbsp; &nbsp; puts &apos;Found directory: &apos; + fullPath<br />
&nbsp; &nbsp; &nbsp; convertFromTo(fullPath, oldExt, newExt)<br />
&nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; if newExt == nil<br />
&nbsp; &nbsp; &nbsp; &nbsp; newName = fullPath.gsub(oldExt,&apos;&apos;)<br />
&nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; newName = fullPath.gsub(oldExt,newExt)<br />
&nbsp; &nbsp; &nbsp; end<br />
&nbsp; &nbsp; &nbsp; if fullPath != newName<br />
&nbsp; &nbsp; &nbsp; &nbsp; puts fullPath + &apos; -&gt; &apos; + newName<br />
&nbsp; &nbsp; &nbsp; &nbsp; File.rename(fullPath,newName)<br />
&nbsp; &nbsp; &nbsp; end<br />
&nbsp; &nbsp; end<br />
&nbsp; end<br />
end</p>
<p>parseargs(ARGV, STDIN)</p>
<p></code>
</div>
<div>
<p>and what you should get is something like this</p>
</div>
<div>
<code><br />
russo@guevara:~/Desktop$ ./batchrename.rb . stpuid stupid<br />
.<br />
stpuid<br />
stupid<br />
Found directory: ./stupidtypo<br />
./stupidtypo/stpuidtypo1.txt -> ./stupidtypo/stupidtypo1.txt<br />
./stupidtypo/stpuidtypo10.txt -> ./stupidtypo/stupidtypo10.txt<br />
./stupidtypo/stpuidtypo2.txt -> ./stupidtypo/stupidtypo2.txt<br />
./stupidtypo/stpuidtypo3.txt -> ./stupidtypo/stupidtypo3.txt<br />
./stupidtypo/stpuidtypo4.txt -> ./stupidtypo/stupidtypo4.txt<br />
./stupidtypo/stpuidtypo5.txt -> ./stupidtypo/stupidtypo5.txt<br />
./stupidtypo/stpuidtypo6.txt -> ./stupidtypo/stupidtypo6.txt<br />
./stupidtypo/stpuidtypo7.txt -> ./stupidtypo/stupidtypo7.txt<br />
./stupidtypo/stpuidtypo8.txt -> ./stupidtypo/stupidtypo8.txt<br />
./stupidtypo/stpuidtypo9.txt -> ./stupidtypo/stupidtypo9.txt<br />
</code>
</div>
<div>
<p>Enjoy!!! and here&#8217;s the <a href="http://nedos.net/ruby/batchrename.rb">file for download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2009/02/20/ruby-batch-rename-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hackintosh Bonjour woes (avahi-daemon)</title>
		<link>http://nedos.net/2009/02/09/hackintosh-bonjour-woes-avahi-daemon/</link>
		<comments>http://nedos.net/2009/02/09/hackintosh-bonjour-woes-avahi-daemon/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 11:06:22 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Hackintosh]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nedos.net/?p=90</guid>
		<description><![CDATA[After hours of searching, compiling avahi-daemon myself, crying and sleepless nights it turns out if you are running Mac OS on non-apple hardware, and you have a mainboard with a Realtek r1000 series card (i.e. my ga-ep45-ds4) you should definitely use the RealtekR1000 driver if you want bonjour!
Although the hardware is detected by default, somehting isn&#8217;t supported [...]]]></description>
			<content:encoded><![CDATA[<p>After hours of searching, compiling avahi-daemon myself, crying and sleepless nights it turns out if you are running Mac OS on non-apple hardware, and you have a mainboard with a Realtek r1000 series card (i.e. my <a href="http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2840">ga-ep45-ds4</a>) you should definitely use the <a href="http://sourceforge.net/projects/realtekr1000/">RealtekR1000</a> driver if you want bonjour!</p>
<p>Although the hardware is detected by default, somehting isn&#8217;t supported and causes the broadcasts from avahi and Mac OS to be dropped. You will need XCode to build the sources, or look for pre-compiled ones on the net. More on my hackintosh later.</p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2009/02/09/hackintosh-bonjour-woes-avahi-daemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mosaic Project</title>
		<link>http://nedos.net/2009/02/06/mosaic-project/</link>
		<comments>http://nedos.net/2009/02/06/mosaic-project/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 13:37:36 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://nedos.net/?p=88</guid>
		<description><![CDATA[Hello everyone, and happy new year  
Haven&#8217;t written in a really long time. Anyway, We recently did a project that generates Mosaics in C++. You can check out the results here. And a full write up should be up pretty soon with some detailed explanations and links to paper&#8217;s that will get you started [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, and happy new year <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Haven&#8217;t written in a really long time. Anyway, We recently did a project that generates Mosaics in C++. You can check out the results <a title="Results" href="http://nedos.net/results">here</a>. And a full write up should be up pretty soon with some detailed explanations and links to paper&#8217;s that will get you started on a similar project.</p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2009/02/06/mosaic-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10.5.3 9D11 Change Log found on PasteBin</title>
		<link>http://nedos.net/2008/04/01/1053-9d11-change-log-found-on-pastebin/</link>
		<comments>http://nedos.net/2008/04/01/1053-9d11-change-log-found-on-pastebin/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 19:43:01 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=59</guid>
		<description><![CDATA[Well there it is&#8230; take it or leave it   I found it interesting. Keeping my fingers crossed for &#8220;unsupported&#8221; TimeMachine Backups.
http://pastebin.ca/966414
]]></description>
			<content:encoded><![CDATA[<p>Well there it is&#8230; take it or leave it <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I found it interesting. Keeping my fingers crossed for &#8220;unsupported&#8221; TimeMachine Backups.</p>
<p><strong><a href="http://pastebin.ca/966414">http://pastebin.ca/966414</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2008/04/01/1053-9d11-change-log-found-on-pastebin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restore from an unsupported Time Machine network volume from the Leopard DVD</title>
		<link>http://nedos.net/2008/03/29/restore-from-an-unsupported-time-machine-backup-with-the-leopard-dvd/</link>
		<comments>http://nedos.net/2008/03/29/restore-from-an-unsupported-time-machine-backup-with-the-leopard-dvd/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 00:05:15 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[NFS]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=49</guid>
		<description><![CDATA[So, I&#8217;ve been biting my nails the past week, that was ever since i decided that i want a bigger hard drive. And finally i can stop now, because i got my notebook back and i got time machine to do a &#8220;full&#8221; system restore, from an unsupported volume! I&#8217;m so relieved&#8230; and this means, [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve been biting my nails the past week, that was ever since i decided that i want a bigger hard drive. And finally i can stop now, because i got my notebook back and i got time machine to do a &#8220;full&#8221; system restore, from an unsupported volume! I&#8217;m so relieved&#8230; and this means, that all of you that have NAS and File servers need no longer cry or worry, let me be yet another person to confirm that it can be done. And let me be the first to show you&#8230; how <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>My configuration</h3>
<p>Just in case you were wondering what configuration i used, and continue to use for that matter <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Here it is:</p>
<ul>
<li>Debian Etch</li>
<li>Self-compiled netatalk (for Leopard compatibility) <a href="http://www.kremalicious.com/2008/06/ubuntu-as-mac-file-server-and-time-machine-volume/">here&#8217;s a good howto.</a></li>
<li>330GB Volume on Raid5 formatted ext3</li>
</ul>
<p>So, if you have the first two you&#8217;re in business, but even if you don&#8217;t use netatalk. All you have to do is mount everything as described in &#8220;Mounting&#8221;.</p>
<h3>Setting up the Harddrive</h3>
<p>Now first things first, boot from your cd. To do that just press and hold the c-key immediately after powering on your computer. You should eventually be greeted by a language selection etc. After all of this you will be welcomed by the installer. We don&#8217;t need it at all. At the top you will see &#8220;Utilities&#8221;, where you will find among others Disk Utility, Terminal and Restore from a Time Machine Backup.You will probably want to start off, especially if its a new harddrive by checking out Disk Utility and creating  any volumes you want to install your system. After you have them configured your pretty much ready to go.</p>
<h3>Network and Jumbo Frames</h3>
<p>So now you should connect make sure you are connect to your network. You can open up disk utility to check connectivity. If you need anything special, like setting up specific network settings, these can be done in terminal. I for example like to have jumbo frames, since all my gigabit devices support it. Open up Terminal from the utilities menu, and type.<code>ifconfig en0 mtu 9000</code>and you should be set.</p>
<h3>Mounting the Volumes</h3>
<p>Let me reitterate that I have not yet tested anything other than netatalk (afp), but this should for any network file sharing protocol. All you have to do is mount your Time Machine volume under /Volumes. The syntax for mounting an afp share is<code>mount -t afp afp://username:password@hostname/ShareName<br />
/Volumes/ShareMount</code>Important here is to remember that the ShareName is a case-sensitive string. So make sure you type \ before a  space, and to check for proper capitalization. Otherwise you get some mount errors, which occur because a volume wasn&#8217;t found with that name, since the actual name doesn&#8217;t match the one you typed. ShareMount is any string you want, it doesn&#8217;t matter what you call it. Same goes for spaces here. If you mount your afp volume just /Volumes (i.e. without ShareMount) you might see multiple TMBackups, as is the case with the images bellow. Still works, just shocking to see 2 of the same thing. Thats basically it, you&#8217;re almost done&#8230;</p>
<h3>Restoring&#8230;</h3>
<p><a style="text-decoration: none; border-width: initial; border-color: initial; border-style: none" href="http://nedos.net/wordpress/wp-content/uploads/2008/03/dsc01687.JPG"><img title="Select a Backup Source" src="http://nedos.net/wordpress/wp-content/uploads/2008/03/dsc01687thumb.JPG" alt="Select a Backup Source" width="200" align="right" /></a><a style="text-decoration: none; border-width: initial; border-color: initial; border-style: none" href="http://nedos.net/wordpress/wp-content/uploads/2008/03/dsc01689.JPG"><img title="Select a Backup" src="http://nedos.net/wordpress/wp-content/uploads/2008/03/dsc01689thumb.JPG" alt="Select a Backup" width="200" align="right" /></a><a style="text-decoration: none; border-width: initial; border-color: initial; border-style: none" href="http://nedos.net/wordpress/wp-content/uploads/2008/03/dsc01691.JPG"><img title="Restoring..." src="http://nedos.net/wordpress/wp-content/uploads/2008/03/dsc01691thumb.JPG" alt="Restoring..." width="200" align="right" /></a>Before you close Terminal, make sure the share actually mounted properly, you can simply ls /Volumes and see if your mount is there. If you didn&#8217;t mount it at /Volumes/ShareMount your /Volumes folder might be litered with the contents of your afp volume, this shouldn&#8217;t cause any problems, just doesn&#8217;t look neat at first site. If everything seems to be there, then select &#8220;Restore from a Time Machine Backup&#8221; from Utilities. Click through the menu and you will come to a screen called &#8220;Select a Backup Source&#8221;, with your shares appearing properly and being recognized. Don&#8217;t ask me why there are two, probably because MacOS in general uses a lot of symlinks&#8230; Anyway, important thing is that it works. Select the first volume, and after selecting the you will come to a screen called &#8220;Select a Backup&#8221;, where you get to chose which backup you wish to use. Afterwards, the system will calculate if there is enough space and will afterwards let you restore. This will now take some time and it went up for me after about 25mins, so don&#8217;t hesitate to let it sit there for 2-3 hours. Afterwards, you will just need to reboot, and you&#8217;ll be back where you left off.</p>
<h3>Hey, I&#8217;ve seen this before!</h3>
<p>One thing some will notice, is that things like Mail and Itunes, will need to reconfigure themselves, i.e. reimport all your emails. Having said that, I&#8217;m still blown away by how well this went over, even if this is &#8220;unsupported&#8221;. Oh and for those of you wondering how to backup to an unsupported volume in the first place, well its simple. All you have to do is:<code>defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1</code>Hope this helps some people, feel free to leave a comment.</p>
<p>And if you appreciate all my hard work, please feel free to donate:</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="3634342">
<input type="image" src="https://www.paypal.com/en_US/DE/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2008/03/29/restore-from-an-unsupported-time-machine-backup-with-the-leopard-dvd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Moved</title>
		<link>http://nedos.net/2008/03/20/moving/</link>
		<comments>http://nedos.net/2008/03/20/moving/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 18:16:34 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Moving]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=4</guid>
		<description><![CDATA[Well&#8230; it was some cloudy sad weather today, so i did what everyone else would do on such a day, namely moved my blog! This blog will stay up for a while, but will eventually dissapear (when my contract for the hosting runs out) so from now on you can check it out at http://nedos.net/blog.But [...]]]></description>
			<content:encoded><![CDATA[<p>Well&#8230; it was some cloudy sad weather today, so i did what everyone else would do on such a day, namely moved my blog! This blog will stay up for a while, but will eventually dissapear (when my contract for the hosting runs out) so from now on you can check it out at <a href="http://nedos.net/blog">http://nedos.net/blog</a>.But you&#8217;re here already so I guess you knew all that! Anyway enjoy!Oh, and update your rss links <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2008/03/20/moving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NFS in Mac OS 10.5 Leopard</title>
		<link>http://nedos.net/2007/11/10/nfs-in-mac-os-105-leopard/</link>
		<comments>http://nedos.net/2007/11/10/nfs-in-mac-os-105-leopard/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 20:55:53 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=46</guid>
		<description><![CDATA[Okay Okay, so I haven&#8217;t posted in while. Well, now Its decided. In this world, one which lacks Leopard howtos, I&#8217;ll do my best to write some posts that will in the end save you the time you would spend searching google.  
NFS and OS X
Anyway, some of us have had Leopard for a [...]]]></description>
			<content:encoded><![CDATA[<p>Okay Okay, so I haven&#8217;t posted in while. Well, now Its decided. In this world, one which lacks Leopard howtos, I&#8217;ll do my best to write some posts that will in the end save you the time you would spend searching google. <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>NFS and OS X</h3>
<p>Anyway, some of us have had Leopard for a couple of weeks, and i recommend it for anyone who has a fairly new mac, by which i mean that the only consideration should be if you have enough performance to get everything out of leopard. Leopard has a lot of new &#8220;features&#8221;, one of which I&#8217;ll be explaing today.</p>
<p>NFS isn&#8217;t something new, and its not even something new for Mac OS. The client to mount NFS is included on almost every *nix, and doesn&#8217;t require any additional installation (usually). It also has better performance than Samba (thats what windows uses to share files), and has a fairly extensive list of configuration options. Of course, nfs isn&#8217;t perfect for everything, but if your computers run *nix (aka BSD/Unix/Mac/Linux), then NFS might be the easiest file sharing protocol to configure. After all, its basically already there, so you save yourself the install.</p>
<p>I&#8217;m going to assume you have NFS configured on the server, this is the computer hosting the files. If not, well its actually pretty simple, and NFS has probably the best howtos out there. You can <a href="http://nfs.sourceforge.net/nfs-howto/">find it here</a>. Anyway back to the client side, running OS X. So in 10.4, mounting NFS was kind of, well a pain. Mac OS connects to an &#8220;insecure&#8221; port by default. In other words it doesn&#8217;t send a request to the server for a port. This means if you run a firewall, you can&#8217;t connect via finder, because Mac OS will attempt to connect to a port that will be blocked, since its not in the firewall rules. Not only that, you have to configure your your shares to be &#8220;insecure&#8221; otherwise <span style="font-style: italic;">/var/log/messages</span> will get something along the lines of:</p>
<p><code>russo@marx:~$ cat /var/log/messages | grep nfsd<br />
Nov  8 16:56:15 marx kernel: nfsd: request from insecure port (192.168.0.4:49204)!</code></p>
<h3>Directory Utility</h3>
<p>There was a solution in 10.4, and it was fairly complicated and involved setting everything up with NetInfo Manager. This procedure was quite tedious, as you can see in <a href="http://i1.dk/misc/automount_nfs_volumes_on_mac_osx/">this howto</a>. But we&#8217;re not in 10.4 anymore (thank god!) And guess what&#8230; NetInfo is gone! And replaced by something, much more user friendly. The new replacement is called, Directory Utility. And can be found in your Utilities folder, imagine that! Fire it up, lets take a look!</p>
<p><img src="http://nedos.net/wordpress/wp-content/uploads/2008/04/dirutil.png" width=540 alt="" /></p>
<p>So at first site, there probably won&#8217;t be much there, especially on a home network. But, this doesn&#8217;t matter we&#8217;re not configuring Directory Services, we&#8217;re here for the NFS mounts. Just click &#8220;Show Advanced Settings&#8221; and you&#8217;ll see &#8220;Mounts&#8221; appear up top. Click that. Next you should see something like this</p>
<p><img src="http://nedos.net/wordpress/wp-content/uploads/2008/04/dirutiladv.png" width=540 alt="" /></p>
<p>Click the lock in the bottom left corner, to allow you to add/edit mounts. Enter the username and password of an Administrator on the computer (Chuck Norris administers mine). Now you should be able to click the + to add a mount. By the way, with Directory Utility you don&#8217;t have to reboot to see changes. You just click that apply in the corner. How sweet is that?</p>
<p>The syntax here is a bit different than mount in CLI, however the syntax still contains that which made many new users make a mistake. <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The syntax is</p>
<p><code>nfs://&lt;hostname or ip&gt;/&lt;full path to directory&gt;</code></p>
<p>Remember, /full/path/to/dir is the full path on the server!</p>
<p><img src="http://nedos.net/wordpress/wp-content/uploads/2008/04/nfsadd.png" alt="" /></p>
<p>Also enter, the directory where you want this share to be mounted. Its probably best to keep everything under either /Volumes or /Network. This way all users can easily access to the shares. You can always add aliases to your home directory, or wherever you want these mounts to actually appear. Now if you, just want to automount &#8220;insecure&#8221; mounts, than you&#8217;re basically done at this point. However we want to add &#8220;secure&#8221; mounts. This means we need to specify the &#8220;Privelaged&#8221; flag to the mount. This will cause it to use a port designated by the server. Click the little triangle next to &#8220;Advanced Mount Parameters&#8221; And you&#8217;ll see something like this:</p>
<p><img src="http://nedos.net/wordpress/wp-content/uploads/2008/04/nfsaddadv.png" alt="" /></p>
<p>all we have to do is add, &#8220;-P&#8221;. This makes the mount use a privelaged port. Now click &#8220;Verify&#8221;. At this point, its good to mention that if Directory Utility only checks if the server that you entered is running nfs and not if the mount is actually functional. Now click &#8220;Apply&#8221;</p>
<h3>Nothing Happend&#8230;</h3>
<p>Well it did, but you might not be able to see it. At the very least the mount point has been created, and you can check this by opening finder and going to either /Volumes or /Network (<em>EDIT: </em>or wherever you mounted you shaere). To get there you&#8217;ll have to type command (apple) + shift + G, and then type in where you want to go. Okay, so now you should see it there, BUT you probably won&#8217;t be able to write to even if you didn&#8217;t mount it read-only. Why is that, you ask? Well you don&#8217;t have permissions, silly! And even if you your user does have permissions to write, even if your user exists on both machines, he probably won&#8217;t have the same gid/uid. How can you check? Just use the id command:</p>
<p><code>lenin:~ russo$ id<br />
uid=501(russo) gid=20(staff)</code></p>
<p>Just as a side note Mac OS begins with 500, whereas most linux distros begin with 1000. So now you can either change the gid/uid of one of the machines so that they do match, or run &#8220;chmod 777&#8243; the directory on the server&#8230; that should be it. You should be able to write now!</p>
<p><em>EDIT: </em>There are also ways to map IPs, hostnames and authenticated users to users on the machine. Maping ips and hostnames is fairly easy, you simply add anonuid=youruid, anongid=yourgid to the options in the /etc/exports file. (Thanks <span class="comment-footer"><strong><a href="../../2007/11/10/nfs-in-mac-os-105-leopard/" target="_blank">Paolo</a>)</strong> </span></p>
<h3>How do i get the share in my Finder Sidebar?</h3>
<p>Simple! Just click the folder and drag it while holding apple + option. You can place it under &#8220;Places&#8221; in this manner. Even if you&#8217;re not an admin user.</p>
<p><em>EDIT:</em> This wasn&#8217;t clear enough for some. You <strong>cannot</strong> create aliases for the actual mounts, however you can create a folder enclosing the mounts and create an alias for that. I.e /Volumes/Hostname and put all the mounts in /Volumes/Hostname. I hope its a little bit easier to understand now&#8230;</p>
<p>And if you appreciate all my hard work, please feel free to donate:</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="3634342">
<input type="image" src="https://www.paypal.com/en_US/DE/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/11/10/nfs-in-mac-os-105-leopard/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>2 good Shoutcast streams</title>
		<link>http://nedos.net/2007/06/17/2-good-shoutcast-streams/</link>
		<comments>http://nedos.net/2007/06/17/2-good-shoutcast-streams/#comments</comments>
		<pubDate>Sun, 17 Jun 2007 07:26:54 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Vinyl]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=45</guid>
		<description><![CDATA[Although there are thousands of shoutcast stations some of the cooler ones are the ones with bigger names. 2 ones that I like because they feature some really cool deep house and tech house in the evenings are 2 Ibiza radio stations. Ibiza Global Radio and Ibiza Sonica. Anyway its a good answer to all [...]]]></description>
			<content:encoded><![CDATA[<p>Although there are thousands of shoutcast stations some of the cooler ones are the ones with bigger names. 2 ones that I like because they feature some really cool deep house and tech house in the evenings are 2 Ibiza radio stations. <a href="http://www.ibizaglobalradio.com/">Ibiza Global Radio</a> and <a href="http://www.ibizasonica.com/">Ibiza Sonica</a>. Anyway its a good answer to all the people who say theres no good music out there for free. BTW, both sites have some mixes up for download.</p>
<p>Here are the links to the .pls files, which you can open with winamp or iTunes among anothers, to tune in to the stream.</p>
<p><a href="http://nedos.net/blog/wp-content/uploads/2008/03/ibizaglobal.pls" title="Ibiza Global Radio">Ibiza Global Radio</a>.</p>
<p><a href="http://nedos.net/blog/wp-content/uploads/2008/03/ibizasonica.pls" title="Ibiza Sonica">Ibiza Sonica</a>.</p>
<p style="text-align: right; font-size: 8px">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Floc</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/06/17/2-good-shoutcast-streams/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://nedos.net/blog/wp-content/uploads/2008/03/ibizaglobal.pls" length="68" type="audio/x-scpls" />
<enclosure url="http://nedos.net/blog/wp-content/uploads/2008/03/ibizasonica.pls" length="136" type="audio/x-scpls" />
		</item>
		<item>
		<title>EFX 500 up for sale!</title>
		<link>http://nedos.net/2007/04/03/efx-500-up-for-sale/</link>
		<comments>http://nedos.net/2007/04/03/efx-500-up-for-sale/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 23:04:29 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Vinyl]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=44</guid>
		<description><![CDATA[So i&#8217;m ebaying an EFX 500 so if anyone needs one they can find it here. I&#8217;m probably gonna use the money for something like gettings some KRK RP-5s so&#8230; help me out&#8230; plz  
Blogged with Flock
]]></description>
			<content:encoded><![CDATA[<p>So i&#8217;m ebaying an EFX 500 so if anyone needs one they can find it <a href="http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=160102660233">here</a>. I&#8217;m probably gonna use the money for something like gettings some KRK RP-5s so&#8230; help me out&#8230; plz <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p style="text-align: right; font-size: 8px">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/04/03/efx-500-up-for-sale/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Akismet</title>
		<link>http://nedos.net/2007/03/21/akismet/</link>
		<comments>http://nedos.net/2007/03/21/akismet/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 09:45:55 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=43</guid>
		<description><![CDATA[Okay&#8230; so i finally enabled it&#8230; finally! And&#8230; the result? No more spam on my blog   Thank god! So if you run WP&#8230; enable Akismet!
Blogged with Flock
]]></description>
			<content:encoded><![CDATA[<p>Okay&#8230; so i finally enabled it&#8230; finally! And&#8230; the result? No more spam on my blog <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Thank god! So if you run WP&#8230; enable Akismet!<br/></p>
<p style="text-align: right; font-size: 8px">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/03/21/akismet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Tiger-Administration</title>
		<link>http://nedos.net/2007/03/04/wordpress-tiger-administration/</link>
		<comments>http://nedos.net/2007/03/04/wordpress-tiger-administration/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 20:06:30 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=42</guid>
		<description><![CDATA[If you use wordpress, you should really check out WordPress Tiger Administration.  I like it much more. Its basically a skin for your wordpress administartion page, but one that has a much cleaner look that and is easier to read. Not to mention it doesn&#8217;t make you feel like you&#8217;re drowning in a sea [...]]]></description>
			<content:encoded><![CDATA[<p>If you use wordpress, you should really check out <a href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/">WordPress Tiger Administration</a>.  I like it much more. Its basically a skin for your wordpress administartion page, but one that has a much cleaner look that and is easier to read. Not to mention it doesn&#8217;t make you feel like you&#8217;re drowning in a sea of blue &#8211; by which wordpress users are normally greeted.<a href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/" title="Dashboard"><img src="http://orderedlist.com/assets/2006/12/13/tiger_admin_3_1.jpg" alt="Dashboard" style="padding: 5px" border="0" /></a></p>
<p style="text-align: right; font-size: 8px">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/03/04/wordpress-tiger-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LightScribe: The verdict</title>
		<link>http://nedos.net/2007/03/02/lightscribe-the-verdict/</link>
		<comments>http://nedos.net/2007/03/02/lightscribe-the-verdict/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 15:03:39 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=41</guid>
		<description><![CDATA[So, here we are again and this time with more detailed results!
So what is LightScribe again?
LightScribe is a labeling technology for optical media. In short you burn a CD, flip it over and burn a label.
How does it work?
LightScribe works in that it uses a laser to heat special ink on LightScribe discs. This ink [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/407773215/"><img width="240" height="180" align="left" alt="DSC01272.JPG" style="padding: 0pt 5px 5px 0pt" src="http://farm1.static.flickr.com/177/407773215_41a79ca6e5_m.jpg" /></a>So, here we are again and this time with more detailed results!</p>
<h4>So what is LightScribe again?</h4>
<p>LightScribe is a labeling technology for optical media. In short you burn a CD, flip it over and burn a label.</p>
<h4>How does it work?</h4>
<p>LightScribe works in that it uses a laser to heat special ink on LightScribe discs. This ink then changes color.</p>
<h4>Prime-On LightScribe CDs</h4>
<p>So for the first time in 3 years i purchased some non-TDK optical media! Of course TDK won my heart over by being read by my xbox as i modded it. Anyway after searching for optical media in the stores around my house I found that all stores only have the Verbaitim 16x DVD-R with jewel cases. This is of course also very nice media, but it costs 6€ for 5 DVDs&#8230; I then did a quick search on <a href="http://www.billiger.de">billiger.de</a> and found several formats, and colors of LightScribe media. The best selection I found was on <a href="http://www.shoxx.com">shoXX.com</a>, a website making huge strides in terms of Internet contents, by offering you prices rather than prizes!</p>
<p><a href="http://www.shoxx.com/catalog/default.php"><img border="0" src="http://www.shoxx.com/catalog/images/banner/english/gs_kw9_07.jpg" /></a>Anyway, I went with Prime-On <a href="http://www.shoxx.com/catalog/product_info.php/cPath/14_84/products_id/2324?sID=78edc739276272d9f4972d412d780b9cca91556bf4f46f4caa8e68827e11b9da">CDs</a> and <a href="http://www.shoxx.com/catalog/product_info.php/cPath/3_127/products_id/1851?sID=78edc739276272d9f4972d412d780b9cca91556bf4f46f4caa8e68827e11b9da">DVDs</a>. there are 2 reasons why i got Prime-On:</p>
<ol>
<li>Cheaper</li>
<li>Wider selection of colors</li>
</ol>
<p>I went with the &#8220;green-edition&#8221;! I guess because i thought i need to pick something ridiculous <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But, in all honesty the discs turned out very well. You can look at some examples on the shoXX website.</p>
<h4>GIVE ME THE RESULTS!</h4>
<p>In short: I&#8217;m very pleased. And very reassured after the &#8220;meh&#8221; quality i got with my <a href="http://flickr.com/photo_zoom.gne?id=398723396&#038;size=m">&#8220;Mac Apps&#8221; label</a>. So, here it is: Prime-On &#8220;Green Edition&#8221; (LightScribe 1.2) CD and &#8220;Best&#8221; Quality.</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/407773283/"><img width="450" height="339" alt="DSC01275.JPG" src="http://farm1.static.flickr.com/133/407773283_cf9647222d.jpg" /></a></p>
<p>I think it looks great! It looks very professional and very clean. It would be good to mention that this was a 2-tone logo to start and thus ideal for LightScribe. But this just proves that LightScribe can do wonders. Unfortunately the label will be smaller than that of a normal CD because LightScribe needs the position, which is the shiny part in the middle which contains data about the CD&#8217;s position.</p>
<p>Anyway, to go from <a href="http://flickr.com/photos/66719388@N00/407773347">this</a> to <a href="http://flickr.com/photos/66719388@N00/407773283">this</a> is just amazing <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: right; font-size: 8px">Blogged with <a target="_new" title="Flock" href="http://www.flock.com/blogged-with-flock">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/03/02/lightscribe-the-verdict/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Samsung SH-S183L LightScribe SATA DVD Burner (2x)</title>
		<link>http://nedos.net/2007/02/22/samsung-sh-s183l-lightscribe-sata-dvd-burner-2x/</link>
		<comments>http://nedos.net/2007/02/22/samsung-sh-s183l-lightscribe-sata-dvd-burner-2x/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 15:36:14 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=40</guid>
		<description><![CDATA[
So i would like to think that this will be an enlightening and interesting review of mine. Especially for anyone who has been considering getting a LightScribe DVD burner.
What is LightScribe?
LightScribe is a media labeling technology. And how it works is it melts one side of an optical media. Sound cool doesn&#8217;t it? And it [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/398723147/"><img width="240" height="180" align="left" style="padding: 0px 5px 5px 0px" alt="The old and the new..." src="http://farm1.static.flickr.com/138/398723147_fca3f25779_m.jpg" /></a></p>
<p>So i would like to think that this will be an enlightening and interesting review of mine. Especially for anyone who has been considering getting a LightScribe DVD burner.</p>
<h3>What is <a href="http://www.lightscribe.com">LightScribe</a>?</h3>
<p>LightScribe is a media labeling technology. And how it works is it melts one side of an optical media. Sound cool doesn&#8217;t it? And it is! I&#8217;m always surprised to hear that people buy those label printers&#8230; and better yet those CD stompers! A friend of mine ruined his drive because a label came off when spinning! In any case this, imho, is worlds better than any CD stomper. And unless your home is a CD print center&#8230; this is probably not a bad choice for making labeled optical media.</p>
<h3>Samsung SH-S183L SATA?</h3>
<p>Now, as it turns out from a conversation with my mate a few days ago, some people haven&#8217;t heard of SATA optical drives yet (I of course don&#8217;t mean the people that haven&#8217;t heard of SATA yet <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). Why would you get a SATA drive? Because IDE is slowly going the way of the floppy and becoming a legacy port that is just on the mainboard. Why not buy a SATA drive? Windows recognized it as ATAPI. 0 problems with my BIOS detecting it either (albeit after a CMOS clear). Some of the biggest benefits to SATA are the cables. Both the power and data connector are much easier to connect. There are no pins to be bent. And the cables themselves are much lower profile, eg. you&#8217;ll get better ventilation.</p>
<h3>Why 2 drives?!</h3>
<p>Why not?! 48€! It really isn&#8217;t that much money considering these will be with me for a good while <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Why the Samsung SH-S183L?</h3>
<p>Simple, all manufacturers are generally the same these days with the exception of companies like Plextor&#8230; which cost 2 times as much. This drive doesn&#8217;t cost much (48€ OEM). And i got it K&#038;M Elektronik in Berlin which means that if i did have problems that I could just run down there and return the drives. I really can&#8217;t tell you much about read/write speeds&#8230; because I never care! I can&#8217;t believe the forum discussions I see sometimes.</p>
<blockquote><p>&#8220;Hey but drive A burns a DVD 25seconds faster than drive B!&#8221;</p></blockquote>
<p>Use that time to make a sandwich, make a playlist or something else&#8230; As someone who owned a Mitsumi 2xCD-R/RW drive&#8230; I think that discussing burn times in +/- 25 seconds is ridiculous <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Not to mention the difference is usually even less than 25 seconds. By the way, 2x = 40mins of burning for an 80min CD <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  That was back when most burning programs couldn&#8217;t burn mp3s!!! They couldn&#8217;t convert them on the fly fast enough. You had to make .wav&#8217;s first. Oh yeah, and napster was around <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Now&#8230; the Samsung SH-S183L</h3>
<p>The Samsung drive has the following features</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/398723058/"><img width="240" height="180" align="right" alt="My new samsung burners :)" style="padding: 5px 0px 5px 5px" src="http://farm1.static.flickr.com/154/398723058_053ddd3fd9_m.jpg" /></a></p>
<table width="236" cellspacing="0" cellpadding="2" border="0" style="height: 590px">
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">Cache:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">2 MB</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">Avg. Seek times:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">130/110</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">S-ATA Type:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">S-ATA 150</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">CD Read max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">48x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> Read max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">16x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> <a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=RAM">		 RAM</a> Support:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">Yes</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> Ram Read max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">12x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> Ram Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">12x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">CD Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">48x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">CDRW Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">32x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> +R Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">18x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> +RW Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">8x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> -R Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">18x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> -RW Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">8x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> +R Double Layer Support:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">Yes</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> +R Double Layer Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">8x</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> -R Double Layer Support:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">Yes</div>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" align="right" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000"><a style="color: #000080; text-decoration: none" href="http://blog.djdmitry.com/fach.php?&#038;Begriff=DVD">		 DVD</a> -R Double Layer Write max.:</div>
</td>
<td bgcolor="#ffffff" align="left" style="width: 50%">
<div style="font-size: 8pt; font-family: Verdana,Arial; color: #000000">8x</div>
</td>
</tr>
</table>
<p>In any case it has everything I wanted (and could ask for). Its 18x, +/- R/RW and Ram. And also does Double Layer <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Oh yeah, and it has LightScribe <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
So, as i said, the drives DID install fine. I had no unexpected problems. In fact, it even boots from CDs fine! Of course the windows installer will need your SATA drivers to correctly continue the installation, but thats what <a href="http://www.nliteos.com">nLite</a> is there for <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  All in all these drives met my expectations. They are quick (18x) and i had no problems burning a verbatim 16x LightScribe DVD at 18x. No problems with reading or burning CDs either</p>
<p>A very missed feature (Nooooo!) from the drives that I&#8217;m upgrading from (Lite-On) is that you could just nudge the Trays and they&#8217;d immediately go in.</p>
<h3>What about LightScribe?</h3>
<p>What about it? It does what it says&#8230; but unfortunately, and I didn&#8217;t know this before buying these drives, is that LightScribe takes 15 mins to make a label on media v1.2 (this is a CD media standard from LightScribe) and 35 mins or more on older media! However this is by the looks of it something that is dependent on the CDs and not on the drives. Which is of course another plus for this drive and kudos to LightScribe for thinking that bit through <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  and not forcing constant drive upgrades <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (I hope)</p>
<h3>So how does it look?</h3>
<p>WARNING: DON&#8217;T EXPECT A PHOTO TO COME OUT!!! I expected a bit more out of LightScribe which was probably just me being naive. I ordered some more DVDs and I&#8217;ll give you all more examples later on. But at the moment i just have this label (thrown together in 3 seconds thanks to google and a keyboard) and this label was made with normal quality. &#8220;Best&#8221; is said to be look better obviously and when i get more discs I&#8217;ll make an article about that too. Anyway, here it is:</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/398723396/"><img width="240" height="180" align="right" style="padding: 5px 0px 5px 5px" alt="My new samsung burners :)" src="http://farm1.static.flickr.com/162/398723396_6375687696_m.jpg" /></a></p>
<p>I ordered green discs&#8230; because if I&#8217;m making labels i don&#8217;t want a cream colored CD&#8230; thats just not cool <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  That is another plus for LightScribe, by the way. There are a lot of colors you can choose from. LightScribe also has some cool free designs on their website (buyer propaganda? <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) that can quickly be downloaded and applied to whatever disc you are making.</p>
<h3>And what software makes this?</h3>
<p>Well the drivers and some background software comes from LightScribe&#8217;s <a href="http://www.lightscribe.com/downloadSection/index.aspx">download page</a> (Windows, Mac and Linux!). The software integrates with CD <a href="http://www.lightscribe.com/products/index.aspx?id=105">certain labeling software</a>. All in all I&#8217;m pretty happy although I really don&#8217;t like the beige colored labels. And thus, we&#8217;ll just have to see how it all looks when i get my green media <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<h4>Pros</h4>
<ul>
<li>Quick Drives (18x!)</li>
<li>Burns all types of media</li>
<li>Good price</li>
<li>SATA, SATA, SATA!</li>
<li>LightScribe</li>
<li>Available in black (look how many drives aren&#8217;t you&#8217;ll be surprised)</li>
</ul>
<h4>Cons</h4>
<ul>
<li>LightScribe != LightningFast (bit slow)</li>
<li>Not the best looking bezel (Samsungs in general)</li>
<li>Activity LED looks like the emergency eject hole</li>
<li>Can&#8217;t just push the tray in</li>
</ul>
<p style="text-align: right; font-size: 8px">Blogged with <a title="Flock" target="_new" href="http://www.flock.com/blogged-with-flock">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/02/22/samsung-sh-s183l-lightscribe-sata-dvd-burner-2x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Video reviews</title>
		<link>http://nedos.net/2007/01/08/video-reviews/</link>
		<comments>http://nedos.net/2007/01/08/video-reviews/#comments</comments>
		<pubDate>Mon, 08 Jan 2007 09:48:45 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Vinyl]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=39</guid>
		<description><![CDATA[So&#8230; after looking about the net I discovered that there aren&#8217;t that many reviews of many products that i own, especially dj equipment. Anyway I&#8217;ve decided I&#8217;m gonna try to do video reviews of equipment that i own. Hopefully they will turn out decent  
D.

Blogged with Flock
]]></description>
			<content:encoded><![CDATA[<p>So&#8230; after looking about the net I discovered that there aren&#8217;t that many reviews of many products that i own, especially dj equipment. Anyway I&#8217;ve decided I&#8217;m gonna try to do video reviews of equipment that i own. Hopefully they will turn out decent <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>D.<br/>
</p>
<p style="text-align: right; font-size: 8px">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2007/01/08/video-reviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Bag: UDG SoftBag Large</title>
		<link>http://nedos.net/2006/12/14/new-bag-udj-softbag-large/</link>
		<comments>http://nedos.net/2006/12/14/new-bag-udj-softbag-large/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 17:44:00 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Vinyl]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=38</guid>
		<description><![CDATA[
So this is the first bag DJ bag i&#8217;ve bought! I was gonna save a couple of Euros and get a cheaper one but then I saw a deal on it on RecordCase.de and pounced on that!
What do i think? I think even 60 vinyls is really heavy! But this one suports up to ~100!!! [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/322302901/"><img width="180" height="240" align="left" alt="DSC00865.JPG" style="padding: 0pt 5px 5px 0px" src="http://static.flickr.com/132/322302901_c1d6b3f306_m.jpg" /></a></p>
<p>So this is the first bag DJ bag i&#8217;ve bought! I was gonna save a couple of Euros and get a cheaper one but then I saw a deal on it on <a href="http://www.recordcase.de/cgi-bin/cosmoshop/lshop.cgi?action=showdetail&#038;artnum=0020102021">RecordCase.de</a> and pounced on that!</p>
<p>What do i think? I think even 60 vinyls is really heavy! But this one suports up to ~100!!! I mean the shoulder strap is well capable of carying this weight but it is still quite heavy. I&#8217;ve read that some people recommend getting to Small Softbags instead. Maybe this is a good idea&#8230; I don&#8217;t know. I still very much like the bag and i use it to hold Vinyl that i&#8217;m making a mix with. Which is a very nice feature.</p>
<p>Again, this is my first bag, but I am still very impressed. The Bag is well constructed. It has 3 large pockets that are able to acommidate headphones or anything slightly bigger than that. This ofcourse will also easily acomidate a CD wallet or something similar.</p>
<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/322303051/"><img width="240" height="180" align="right" style="padding: 5px 0px 5px 5px" alt="DSC00867.JPG" src="http://static.flickr.com/143/322303051_dd9319896d_m.jpg" /></a></p>
<p>The bag itself weighs almost nothing! It comes completely flat to your door! What it has is Velcro covered foam pads that you attach inside. You see may have noticed that the one inside the lid displays a nice UDG Logo. All the Small/Large Softbags Have the same style padding and straps. Which is why i chose maroon, which btw looks much darker normally. All bags have rubbery feet to keep them from sliding on the floor or letting the bottoms wear down with time.</p>
<p>Final thoughts? Its quite shiny (as you can tell by the pics) so be warned! Like most school bags if you had something of similar material. It does what i want it to do and gets 2 thumbs way up from me <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: right; font-size: 8px">Blogged with <a target="_new" title="Flock" href="http://www.flock.com/blogged-with-flock">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2006/12/14/new-bag-udj-softbag-large/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Mix: African/Latin</title>
		<link>http://nedos.net/2006/12/11/new-mix-africanlatin/</link>
		<comments>http://nedos.net/2006/12/11/new-mix-africanlatin/#comments</comments>
		<pubDate>Mon, 11 Dec 2006 08:20:27 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Vinyl]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=37</guid>
		<description><![CDATA[Hmm, I haven&#8217;t written in a while. University is a bit much nowadays. I have accumulated some stuff that i want review/discuss so stay tuned this week.
I made a new mix! Thanks to new headphones and, most importantly, a new mixer its you the listener that benefits the most! Anyway check it out here
Blogged with [...]]]></description>
			<content:encoded><![CDATA[<p><img align="left" style="padding: 0pt 5px" src="http://static.flickr.com/129/317967271_25ee13a313_m.jpg" />Hmm, I haven&#8217;t written in a while. University is a bit much nowadays. I have accumulated some stuff that i want review/discuss so stay tuned this week.</p>
<p>I made a new mix! Thanks to new headphones and, most importantly, a new mixer its you the listener that benefits the most! Anyway check it out <a href="http://www.djdmitry.com/mixes/101206.html">here</a></p>
<p style="text-align: right; font-size: 8px">Blogged with <a title="Flock" target="_new" href="http://www.flock.com/blogged-with-flock">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2006/12/11/new-mix-africanlatin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Mixer: Ecler Nuo2</title>
		<link>http://nedos.net/2006/11/04/new-mixer-ecler-nuo2/</link>
		<comments>http://nedos.net/2006/11/04/new-mixer-ecler-nuo2/#comments</comments>
		<pubDate>Sat, 04 Nov 2006 14:24:35 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Vinyl]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=36</guid>
		<description><![CDATA[
I finally got a new mixer!!! I bought the Ecler Nuo2 and I&#8217;m so happy. I can&#8217;t believe how much better music sounds just by changing the mixer! Before i had the Numark DM1050 which is, to put it simply, a POS  
The Ecler Nuo2 sounds very good. Be it through my average stereo [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Photo Sharing" href="http://www.flickr.com/photos/66719388@N00/288458455/"><img width="240" height="180" align="left" alt="DSC00773.JPG" style="padding: 0px 5px 5px 0px" src="http://static.flickr.com/108/288458455_5df0b53544_m.jpg" /></a></p>
<p>I finally got a new mixer!!! I bought the Ecler Nuo2 and I&#8217;m so happy. I can&#8217;t believe how much better music sounds just by changing the mixer! Before i had the Numark DM1050 which is, to put it simply, a POS <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The Ecler Nuo2 sounds very good. Be it through my average stereo (next thing needing an upgrade) or even what is recorded on my computer. The Bass is noticeably deeper and the highs and mids clearer. This mixer also has a couple of nice features such as.</p>
<ul>
<li>Hi, Mid, Bass Kill switches</li>
<li>Complete Channel Kill Switches</li>
<li>Very good headphone output</li>
<li>Very good display that shows accurate levels (as opposed to DM1050)</li>
<li>2 master outs</li>
<li>effects loop</li>
<li>Adjustable curve shape and sharpness</li>
<li>100-240V and easy access to the fuses</li>
<li>Standard PC powersupply cable</li>
</ul>
<p>Those are definitely the most important features for me. I should also mention that it is a slim-fit mixer. I forgot the actual name for the formfactor. I was going to get something with more channels and more expensive but in the end decided this is a perfect mixer for me at the moment. Especially if i just hook an effects unit up to it&#8230; then it will last me a long time <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: right; font-size: 8px">Blogged with <a target="_new" title="Flock" href="http://www.flock.com/blogged-with-flock">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2006/11/04/new-mixer-ecler-nuo2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>October 25th Short House Mix</title>
		<link>http://nedos.net/2006/10/30/october-25th-short-house-mix/</link>
		<comments>http://nedos.net/2006/10/30/october-25th-short-house-mix/#comments</comments>
		<pubDate>Mon, 30 Oct 2006 07:59:21 +0000</pubDate>
		<dc:creator>russo.</dc:creator>
				<category><![CDATA[Vinyl]]></category>

		<guid isPermaLink="false">http://nedos.net/blog/?p=35</guid>
		<description><![CDATA[Oh here&#8217;s another thing   I have a nice short mix that i made out now and available for you all   Its slightly tribal and latin and demo length   Its actually been up on my website for a couple of days now but my site has been down&#8230; Anyway enjoy!
October [...]]]></description>
			<content:encoded><![CDATA[<p><img width="140" height="140" align="left" style="padding: 0px 5px 5px 0px" src="http://www.djdmitry.com/mixes/covers/OctHouseShort.png" />Oh here&#8217;s another thing <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I have a nice short mix that i made out now and available for you all <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Its slightly tribal and latin and demo length <img src='http://nedos.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Its actually been up on my website for a couple of days now but my site has been down&#8230; Anyway enjoy!</p>
<p><a href="http://www.djdmitry.com/mixes/251006.html">October 25th Short House Mix</a></p>
<p style="text-align: right; font-size: 8px">Blogged with <a target="_new" title="Flock" href="http://www.flock.com/blogged-with-flock">Flock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nedos.net/2006/10/30/october-25th-short-house-mix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
