<?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 &#187; Life</title>
	<atom:link href="http://nedos.net/category/life/feed/" rel="self" type="application/rss+xml" />
	<link>http://nedos.net</link>
	<description>Dmitry Nedospasov&#039;s Blog</description>
	<lastBuildDate>Tue, 25 May 2010 00:37:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>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>Dmitry Nedospasov</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>Dmitry Nedospasov</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;</code></div>
<div><code><br />
require 'ftools'<br />
def parseargs(arguments, stdin)<br />
# puts arguments<br />
dir = arguments[0]<br />
oldExt = arguments[1]<br />
newExt = arguments[2]<br />
puts dir<br />
puts oldExt<br />
puts newExt<br />
if oldExt == nil or dir == nil<br />
puts 'Please enter atleast the first 2 parameters: '<br />
puts ' &lt;input directory&gt; &lt;search string&gt; [&lt;replacement string&gt;]'<br />
else<br />
convertFromTo(dir,oldExt,newExt)<br />
end<br />
end<br />
def convertFromTo(dir, oldExt, newExt)<br />
files = Dir.entries(dir)<br />
files.each do |f|<br />
next if f == '.' or f == '..'<br />
fullPath = dir + '/' + f<br />
# fullPath = fullPath.gsub(' ','\ ')<br />
if File.directory?(fullPath)<br />
puts 'Found directory: ' + fullPath<br />
convertFromTo(fullPath, oldExt, newExt)<br />
else<br />
if newExt == nil<br />
newName = fullPath.gsub(oldExt,'')<br />
else<br />
newName = fullPath.gsub(oldExt,newExt)<br />
end<br />
if fullPath != newName<br />
puts fullPath + ' -&gt; ' + newName<br />
File.rename(fullPath,newName)<br />
end<br />
end<br />
end<br />
end</code></div>
<div>
<p>parseargs(ARGV, STDIN)</p>
</div>
<div>and what you should get is something like this</div>
<div><code><br />
russo@guevara:~/Desktop$ ./batchrename.rb . stpuid stupid<br />
.<br />
stpuid<br />
stupid<br />
Found directory: ./stupidtypo<br />
./stupidtypo/stpuidtypo1.txt -&gt; ./stupidtypo/stupidtypo1.txt<br />
./stupidtypo/stpuidtypo10.txt -&gt; ./stupidtypo/stupidtypo10.txt<br />
./stupidtypo/stpuidtypo2.txt -&gt; ./stupidtypo/stupidtypo2.txt<br />
./stupidtypo/stpuidtypo3.txt -&gt; ./stupidtypo/stupidtypo3.txt<br />
./stupidtypo/stpuidtypo4.txt -&gt; ./stupidtypo/stupidtypo4.txt<br />
./stupidtypo/stpuidtypo5.txt -&gt; ./stupidtypo/stupidtypo5.txt<br />
./stupidtypo/stpuidtypo6.txt -&gt; ./stupidtypo/stupidtypo6.txt<br />
./stupidtypo/stpuidtypo7.txt -&gt; ./stupidtypo/stupidtypo7.txt<br />
./stupidtypo/stpuidtypo8.txt -&gt; ./stupidtypo/stupidtypo8.txt<br />
./stupidtypo/stpuidtypo9.txt -&gt; ./stupidtypo/stupidtypo9.txt<br />
</code></div>
<div>Enjoy!!! and here&#8217;s the <a href="http://nedos.net/ruby/batchrename.rb">file for download</a></div>
]]></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>Dmitry Nedospasov</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>Dmitry Nedospasov</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/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>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>Dmitry Nedospasov</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/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/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: initial none initial;" 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: initial none initial;" 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: initial none initial;" 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>
]]></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>Dmitry Nedospasov</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/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>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>Dmitry Nedospasov</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>Dmitry Nedospasov</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/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>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>Dmitry Nedospasov</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/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 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>Dmitry Nedospasov</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/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/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>
	</channel>
</rss>
