<?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>code(alpha) &#187; Miscellaneous</title>
	<atom:link href="http://www.codealpha.net/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codealpha.net</link>
	<description>Tips &#38; Tutorials for Linux</description>
	<lastBuildDate>Sat, 21 Aug 2010 14:54:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Name-Based Virtual Hosts with SSL using Apache2 on Ubuntu Lucid</title>
		<link>http://www.codealpha.net/631/name-based-virtual-hosts-with-ssl-using-apache2-on-ubuntu-lucid/</link>
		<comments>http://www.codealpha.net/631/name-based-virtual-hosts-with-ssl-using-apache2-on-ubuntu-lucid/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 00:37:03 +0000</pubDate>
		<dc:creator>Arnaud Soyez</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.codealpha.net/?p=631</guid>
		<description><![CDATA[It has now been a few years (2007) that SNI (Server Name Indication) has been introduced/supported in OpenSSL 0.9.8, but it has only been just last year that SNI was fully supported in Apache2 with version 2.2.12 released in July 2009. Now we can really having multiple virtual hosts with different certificates on the same [...]]]></description>
			<content:encoded><![CDATA[<p>It has now been a few years (2007) that SNI (Server Name Indication) has been introduced/supported in OpenSSL 0.9.8, but it has only been just last year that SNI was fully supported in Apache2 with version 2.2.12 released in July 2009. Now we can really having<br />
  multiple virtual hosts with different certificates on the same IP address! No need to buy any more IP addresses!</p>
<p><span id="more-631"></span></p>
<h2>Introduction</h2>
<p>This tutorial is mainly oriented to Ubuntu, but can also be applied to other distributions such as Debian.</p>
<p>The <b>minimum requirements</b> for SNI to work are <b>Apache 2.2.12</b> (or higher) with <b>OpenSSL 0.9.8g</b> (or higher).</p>
<p>Make sure you already have your website(s) set up and running (non-SSL of course!) and listening on another port than 443 as we will use this port for SSL.</p>
<h2>Installation of packages</h2>
<p>We need to activate the <i>Apache2 SSL</i> module in order to serve websites over SSL:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> a2enmod ssl</pre></div></div>

<p>Also, the <i>ssl-cert</i> package will allow us to create certificates in a few keystrokes:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> ssl-cert</pre></div></div>

<p>If you don't have <i>ssl-cert</i> available in your distribution's package manager, you can find it here: <a href="http://packages.debian.org/sid/ssl-cert">http://packages.debian.org/sid/ssl-cert</a></p>
<h2>Creating certificates</h2>
<p>We will now create a self-signed SSL certificate.</p>
<p>When using <i>make-ssl-cert</i>, both the certificate and the private key are generated and stored within the same file. The generated <i>*.crt</i> file needs to be kept somewhere safe on your disk, it is a good practice to move it to /etc/ssl/privateand use <i>chmod 600</i> and <i>chown root:root</i>. <b>It should be readable by root only!</b></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> make-ssl-cert <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>ssl-cert<span style="color: #000000; font-weight: bold;">/</span>ssleay.cnf \
<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>private<span style="color: #000000; font-weight: bold;">/</span>mydomain.crt</pre></div></div>

<p>It should ask you for a <b>hostname</b>, enter the exact domain name of the website (e.g. if you want to use <i>https://www.myexampledomain.com</i> then put <i>www.myexampledomain.com</i>as<br />
  hostname).</p>
<h2>Enabling name-based SSL virtual hosts</h2>
<p>Apache2 needs to know that our virtual hosts using SSL will be matched using a name-based matching rule (instead of IP-based) and also that it needs to listen for SSL connections on port 443.</p>
<p>Open the Apache2 ports config file, located at <i>/etc/apache2/ports.conf</i> and add:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">NameVirtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">443</span></pre></div></div>

<p>It should look similar to this:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">NameVirtualHost *:80
NameVirtualHost *:443
&nbsp;
Listen 80
&nbsp;
&lt;IfModule mod_ssl.c&gt;
    Listen 443
&lt;/IfModule&gt;</pre></div></div>

<p>Make surethere is <i>Listen 443</i> somewhere in this file, in order to tell Apache2 to listen on this specific port for SSL connections.</p>
<h2>Creating the virtual hosts configuration file</h2>
<p><b>Important Note:<br /></b>Note that not all browsers support SNI. For those without SNI support they will be redirected to the first SSL vhost defined (which is usually the first alphabetically in the <i>/sites-enabled/</i> folder) in<br />
  the Apache2 configuration.<br />
  Also, it is good to know that in their browser, they will see the domain name that they typed in instead of the actual vhost's domain name, as a consequence the certificate will not be validated as it will not match the domain shown in their browser. As an alternative you can use <i>SSLStrictSNIVHostCheck</i>, see note below.</p>
</p>
<p>The best thing to do is to copy the normal configuration file of your website (with normal <i>http://</i> access) and add the SSL directives.</p>
<p>First, make a copy:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>sites-available<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>mywebsite.conf,mywebsite_ssl.conf<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>Then open the <i>mywebsite_ssl.conf</i> file, and add/modify the bold parts:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">&lt;VirtualHost *:443&gt;
 ServerName www.myexampledomain.com 
&nbsp;
 SSLEngine On
 SSLCertificateFile /etc/ssl/private/myexampledomain.crt 
&nbsp;
 DocumentRoot /var/www/myexampledomain
&lt;/VirtualHost&gt;</pre></div></div>

<p>Explanation:</p>
<p>“<b>*:443</b>” along with <i>ServerName</i> define this configuration as a name-based virtual host.</p>
<p>“<b>SSLEngine On</b>” enables SSL for this virtual host.</p>
<p>“<b>SSLCertificateFile</b>”points to the certificate we created earlier.</p>
</p>
<p>Note:<br />Using <i>SSLStrictSNIVHostCheck</i>it will refuse non SNI capable browsers to access any website on your server using SSL.<br /><i>This directive sets<br />
  whether a non SNI client is allowed to access a name based virtual host. If set to</i> <code>on</code> <i>in the non default name based virtual host, non SNI clients are not allowed to access this particular virtual host. If set<br />
  to</i> <code>on</code> <i>in the default name based virtual host, non SNI clients are not allowed to access any name based virtual host belonging to this IP / port combination. (</i><a href="http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#SSLStrictSNIVHostCheck">http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#SSLStrictSNIVHostCheck</a><i>)</i></p>
<h2>Enabling the virtual host</h2>
<p>We need to enable the virtual host, this is an important step which is often forgotten:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> a2ensite mywebsite_ssl.conf</pre></div></div>

<h2>Testing</h2>
<p>Restart Apache2:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> service apache2 restart</pre></div></div>

<p>This is time for a test, visit your website over SSL, make sure you prepend <i>https://</i> to your domain name (for example <i>https://www.myexampledomain.com</i>)</p>
<h2>Troubleshooting</h2>
<p>If you cannot see your website using <i>https</i> you can dig into the Apache2 logs (located at <i>/var/log/apache2/error.log</i>) and search for <i>[error]</i> or <i>[warn]</i>.</p>
<p>Also be certain to have activated/enabled all of the virtual hosts you want by typing <i>sudo a2ensite yourdomain.conf</i> and then reload or restart Apache2.</p>
<p>If you get a “ssl_error_rx_record_too_long” error, it can mean either SSL is not activated properly for this virtual host (check that there is <i>SSLEngine On</i> in your vhost config) or the virtual host configuration is not enabled<br />
  (“<i>sudo a2ensite vhostconfigfile</i>”).</p>
<h2>Notes</h2>
<p>If you already have your own certificates, you will want to use both <i>SSLCertificateKeyFile</i>and <i>SSLCertificateFile</i>in the virtual host configuration file because certificate issuers usually give<br />
  you two different files (one containing a private key and the other one containing the certificate).</p>
<p>It is important to be aware that some browsers do not support SNI and will not be able to access your virtual hosts.</p>
<p>Some browsers in mobile devices might not support SNI so be certain that your default SSL virtual host can provide some help or support to those users, like for example offering the option to switch back to regular non-SSL connection.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codealpha.net/631/name-based-virtual-hosts-with-ssl-using-apache2-on-ubuntu-lucid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable VNC (Vino) on Ubuntu (Gnome)</title>
		<link>http://www.codealpha.net/588/how-to-enable-vnc-vino-on-ubuntu-gnome/</link>
		<comments>http://www.codealpha.net/588/how-to-enable-vnc-vino-on-ubuntu-gnome/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 13:51:36 +0000</pubDate>
		<dc:creator>Arnaud Soyez</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.codealpha.net/?p=588</guid>
		<description><![CDATA[The way I'm going to describe is using the GDM autologin which can be UNSECURE if someone has physical access to the machine. Activate autologin in gdm by editing /etc/gdm/custom.conf and add: AutomaticLoginEnable=true AutomaticLogin=yourusername Reboot. Then ssh as yourusername into the machine, and type this: DISPLAY=:0.0 gconftool-2 --type list --list-type string --set /desktop/gnome/remote_access/authentication_methods '[vnc]' gconftool-2 [...]]]></description>
			<content:encoded><![CDATA[<p>The way I'm going to describe is using the GDM autologin which <strong>can be UNSECURE if</strong> someone has physical access to the machine.</p>
<p>Activate autologin in gdm by editing <strong>/etc/gdm/custom.conf</strong> and add:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">AutomaticLoginEnable=true
AutomaticLogin=yourusername</pre></div></div>

<p><strong>Reboot.</strong></p>
<p>Then ssh as <em>yourusername</em> into the machine, and type this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">DISPLAY</span>=:<span style="color: #000000;">0.0</span>
gconftool-<span style="color: #000000;">2</span> <span style="color: #660033;">--type</span> list <span style="color: #660033;">--list-type</span> string <span style="color: #660033;">--set</span> <span style="color: #000000; font-weight: bold;">/</span>desktop<span style="color: #000000; font-weight: bold;">/</span>gnome<span style="color: #000000; font-weight: bold;">/</span>remote_access<span style="color: #000000; font-weight: bold;">/</span>authentication_methods <span style="color: #ff0000;">'[vnc]'</span>
gconftool-<span style="color: #000000;">2</span> <span style="color: #660033;">-s</span> <span style="color: #660033;">-t</span> bool <span style="color: #000000; font-weight: bold;">/</span>desktop<span style="color: #000000; font-weight: bold;">/</span>gnome<span style="color: #000000; font-weight: bold;">/</span>remote_access<span style="color: #000000; font-weight: bold;">/</span>prompt_enabled <span style="color: #c20cb9; font-weight: bold;">false</span>
vino-passwd
gconftool-<span style="color: #000000;">2</span> <span style="color: #660033;">-s</span> <span style="color: #660033;">-t</span> bool <span style="color: #000000; font-weight: bold;">/</span>desktop<span style="color: #000000; font-weight: bold;">/</span>gnome<span style="color: #000000; font-weight: bold;">/</span>remote_access<span style="color: #000000; font-weight: bold;">/</span>enabled <span style="color: #c20cb9; font-weight: bold;">true</span></pre></div></div>

<p><strong>Reboot.</strong></p>
<p>Then try connecting to your machine using VNC.</p>
<p><strong>Source:</strong> By <strong><a href="http://www.codealpha.net">Weboide</a></strong> in <a href="http://serverfault.com/questions/157220/how-do-i-install-gnome-on-debian-and-remote-to-it">How do i install gnome on Debian and remote to it? [serverfault.com]</a><br/><br />
This post is <strong>Licensed under <a href="http://creativecommons.org/licenses/by-sa/2.5/">CC-BY-SA 2.5</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codealpha.net/588/how-to-enable-vnc-vino-on-ubuntu-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Video (avi) or Audio (mp3) to .3g2 for the Samsung Exclaim</title>
		<link>http://www.codealpha.net/524/convert-video-avi-or-audio-mp3-to-3g2-for-the-samsung-exclaim/</link>
		<comments>http://www.codealpha.net/524/convert-video-avi-or-audio-mp3-to-3g2-for-the-samsung-exclaim/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 03:02:15 +0000</pubDate>
		<dc:creator>Arnaud Soyez</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.codealpha.net/?p=524</guid>
		<description><![CDATA[The Samsung Exclaim™ requires the 3g2 format for its ringtones or even videos. This is a format that is optimized for 3G phones. Fortunately on Linux, FFmpeg is a very complete tool to work with audio and video formats and convert between them, and it can, of course, generate 3g2 files. If you have compiled [...]]]></description>
			<content:encoded><![CDATA[<p>The Samsung Exclaim™ requires the 3g2 format for its ringtones or even videos. This is a format that is optimized for 3G phones. Fortunately on Linux, FFmpeg is a very complete tool to work with audio and video formats and convert between them, and it can, of course, generate 3g2 files.</p>
<p>If you have compiled and installed the right packages (Medibuntu repository with the libaac support, for example), you can easily do one of these commands with ffmpeg:</p>
<p><span id="more-524"></span></p>
<h2>Convert Audio (mp3) to 3g2</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">-i</span> test.mp3 <span style="color: #660033;">-acodec</span> libfaac <span style="color: #660033;">-ab</span> 64k <span style="color: #660033;">-ar</span> <span style="color: #000000;">22050</span> test.3g2</pre></div></div>

<p>You can tweak this command and use other audio file formats as well.</p>
<h2>Convert Video (avi) to 3g2</h2>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ffmpeg</span> <span style="color: #660033;">-i</span> test.mpg  <span style="color: #660033;">-acodec</span> libfaac <span style="color: #660033;">-ab</span> 64k <span style="color: #660033;">-ar</span> <span style="color: #000000;">22050</span> <span style="color: #660033;">-vcodec</span> mpeg4 <span style="color: #660033;">-s</span> qcif <span style="color: #660033;">-b</span> 120k <span style="color: #660033;">-r</span> <span style="color: #000000;">30</span> out.3g2</pre></div></div>

<p>It also works with other video file formats. You'll certainly need to tweak this command to get a better quality.</p>
<h2>How to use them</h2>
<p>To select a 3g2 as a custom ringtone, just go to the ringer/ringtone menu as usual, and choose Videos, then From Memory Card, and that's where you can pick your 3g2's.<br />
Make sure your ringtone is smaller than 500Kb and 30 seconds to be sure it works fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codealpha.net/524/convert-video-avi-or-audio-mp3-to-3g2-for-the-samsung-exclaim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colored Man Pages</title>
		<link>http://www.codealpha.net/504/colored-man-pages/</link>
		<comments>http://www.codealpha.net/504/colored-man-pages/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 03:22:12 +0000</pubDate>
		<dc:creator>Arnaud Soyez</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[manpage]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.codealpha.net/?p=504</guid>
		<description><![CDATA[You certainly know that manpages tend to be very long and boring to read , especially without any colors at all. You can easily get colored manpages with just one copy&#38;paste into your .bashrc! Follow this link to Linuxtidbits' post about "Less Colors For Manpages" and you'll know how to make it happen!]]></description>
			<content:encoded><![CDATA[<p>You certainly know that manpages tend to be very long and boring to read , especially without any colors at all.</p>
<p>You can easily get colored manpages with just one copy&amp;paste into your .bashrc!</p>
<p>Follow this link to Linuxtidbits' post about "<strong><a href="http://linuxtidbits.wordpress.com/2009/03/23/less-colors-for-man-pages/">Less Colors For Manpages</a></strong>" and you'll know how to make it happen!</p>
<p class="center"><a href="/wp-content/uploads/2010/01/manpage.png"><img src="/wp-content/uploads/2010/01/manpage-300x184.png" alt="Colored Manpage" title="manpage" width="300" height="184" class="aligncenter size-medium wp-image-505" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codealpha.net/504/colored-man-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Electro Collection #1 - An electro-flow of music</title>
		<link>http://www.codealpha.net/406/electro-collection-1-an-electro-flow-of-music/</link>
		<comments>http://www.codealpha.net/406/electro-collection-1-an-electro-flow-of-music/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 17:44:25 +0000</pubDate>
		<dc:creator>Arnaud Soyez</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Jamendo]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Sound]]></category>

		<guid isPermaLink="false">http://www.codealpha.net/?p=406</guid>
		<description><![CDATA[Here's a collection of electro/electronica songs (as mp3) I like and that are free and libre. I'll just call this collection "Electro Collection #1"! I've picked these songs because they each contain a unique melody and they are easy to listen even for those who might think they don't like electro music. Really, listen to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img src="http://www.codealpha.net/wp-content/uploads/2009/09/225933635_260ce671ed_m_d.jpg" alt="speaker" title="speaker (by swishphotos, licensed under CC by-nc-sa, see post)" width="240" height="180" class="aligncenter size-full wp-image-422" /></p>
<p>Here's a collection of electro/electronica songs (as mp3) I like and that are <a target="_blank" href="http://en.wikipedia.org/wiki/Gratis_versus_Libre">free and <em>libre</em></a>. I'll just call this collection "Electro Collection #1"!</p>
<p>I've picked these songs because they each contain a unique melody and they are easy to listen even for those who might think they don't like electro music. Really, listen to the first three songs (though you should listen to them all) and see! I'm sure you'll find one that you like!<br />
They almost all have the same genres. Mostly, it is: Electro/Electronica, Dance, Experimental.</p>
<object type="application/x-shockwave-flash" data="http://www.codealpha.net/wp-content/plugins/mp3FP/player_mp3_multi.swf" width="400" height="110" id="mp3fp_1"><param name="movie" value="http://www.codealpha.net/wp-content/plugins/mp3FP/player_mp3_multi.swf" /><param name="wmode" value="transparent"/><param name="FlashVars" value="mp3=http://weboide.codealpha.net/music/Electro Collection 1/01 - Ambient Voyager.mp3|http://weboide.codealpha.net/music/Electro Collection 1/02 - Jolie Micro Girl.mp3|http://weboide.codealpha.net/music/Electro Collection 1/03 - Wankash.mp3|http://weboide.codealpha.net/music/Electro Collection 1/04 - Struttin'.mp3|http://weboide.codealpha.net/music/Electro Collection 1/05 - dub is dumb.mp3|http://weboide.codealpha.net/music/Electro Collection 1/06 - Chips dreams.mp3|http://weboide.codealpha.net/music/Electro Collection 1/07 - maska %26 goey.mp3|http://weboide.codealpha.net/music/Electro Collection 1/08 - dry martini.mp3|http://weboide.codealpha.net/music/Electro Collection 1/09 - Flocon.mp3|http://weboide.codealpha.net/music/Electro Collection 1/10 - Sun System.mp3|http://weboide.codealpha.net/music/Electro Collection 1/11 - The sun is coming.mp3|http://weboide.codealpha.net/music/Electro Collection 1/12 - Inside the light.mp3|http://weboide.codealpha.net/music/Electro Collection 1/13 - Plume.mp3|http://weboide.codealpha.net/music/Electro Collection 1/14 - don't be shad.mp3|http://weboide.codealpha.net/music/Electro Collection 1/15 - The Creature.mp3|http://weboide.codealpha.net/music/Electro Collection 1/16 - Emptiness.mp3|http://weboide.codealpha.net/music/Electro Collection 1/17 - Pour Toi.mp3|http://weboide.codealpha.net/music/Electro Collection 1/18 - m%2B.mp3|http://weboide.codealpha.net/music/Electro Collection 1/19 - Le nettoyeur.mp3&amp;title=01 - Ambient Voyager|02 - Jolie Micro Girl|03 - Wankash|04 - Struttin'|05 - dub is dumb|06 - Chips dreams|07 - maska %26 goey|08 - dry martini|09 - Flocon|10 - Sun System|11 - The sun is coming|12 - Inside the light|13 - Plume|14 - don't be shad|15 - The Creature|16 - Emptiness|17 - Pour Toi|18 - m%2B|19 - Le nettoyeur&amp;width=400&amp;height=110&amp;volume=100&amp;autoplay=0&amp;loop=0&amp;showvolume=0&amp;showslider=1&amp;showloading=autohide&amp;buttonwidth=25&amp;sliderwidth=15&amp;sliderheight=10&amp;volumewidth=30&amp;volumeheight=10&amp;loadingcolor=ffff00&amp;bgcolor1=7c7c7c&amp;bgcolor2=333333&amp;slidercolor1=cccccc&amp;slidercolor2=999999&amp;sliderovercolor=eeee00&amp;buttoncolor=ffffff&amp;buttonovercolor=ffff00&amp;textcolor=ffffff&amp;showlist=1&amp;playlistcolor=000000&amp;playlistalpha=&amp;currentmp3color=ffff00&amp;scrollbarcolor=ffffff&amp;scrollbarovercolor=ffff00&amp;showplaylistnumbers=0" /></object>
<p><span class="strong">If I had to pick favorite ones</span> among these, they would be (as <span class="strong">unsorted</span> list):<br />
02 - Jolie Micro Girl<br />
04 - Struttin<br />
05 - dub is dumb<br />
06 - Chips dreams<br />
11 - The sun is coming<br />
13 - Plume<br />
14 - don't be shad<br />
17 - Pour toi</p>
<p><em>Note that this is not an album. Each song in this collection has its own copyright, copyright holder(s), and license. The songs are in their entirety in unmodified form and are seperate and independent works in themselves. See below for copyrights/licenses.</em></p>
<h2>Download</h2>
<p>Tarball containing all the songs: <a href="http://weboide.codealpha.net/music/electro-collection-1.tar.gz">electro-collection-1.tar.gz</a> (~97Mb)<br />
Download each song separately from:<br />
HTTP: <a href="http://weboide.codealpha.net/music/Electro%20Collection%201/" target="_blank">Here</a><br />
FTP: <a href="ftp://anonymous@codealpha.net/Music/Electro%20Collection%201/" target="_blank">Here</a> or connect using a FTP client to <span class="strong">codealpha.net</span> on port <span class="strong">21</span> as <span class="strong">anonymous</span>.</p>
<h2>Licenses and Copyrights</h2>
<p>Licenses and copyrights are <a href="http://weboide.codealpha.net/music/Electro%20Collection%201/LICENSES">downloadable from here</a> and are also listed below:<br />
<span id="more-406"></span><br />
<span class="strong">01 - Ambient Voyager.mp3</span> by <span class="strong">Zeropage</span><br />
Copyright (C) 2006 Zeropage. Licensed to the public under <a href="http://creativecommons.org/licenses/by/3.0/" target="_blank" rel="nofollow">CC by</a> verify at <a href="http://www.jamendo.com/album/2843/" target="_blank" rel="nofollow">www.jamendo.com/album/2843/</a></p>
<p><span class="strong">02 - Jolie Micro Girl.mp3</span> by <span class="strong">M.E.A</span><br />
Copyright (C) 2006 M.E.A. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/1098/" target="_blank" rel="nofollow">www.jamendo.com/album/1098/</a></p>
<p><span class="strong">03 - Wankash.mp3</span> by <span class="strong">W. Elektro Projekt</span><br />
Copyright (C) 2007 W. Elektro Projekt. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/8300/" target="_blank" rel="nofollow">www.jamendo.com/album/8300/</a></p>
<p><span class="strong">04 - Struttin'.mp3</span> by <span class="strong">Tryad</span><br />
Copyright (C) 2006 Tryad. Licensed to the public under <a href="http://creativecommons.org/licenses/by-sa/2.5/" target="_blank" rel="nofollow">CC by-sa</a> verify at <a href="http://www.jamendo.com/album/3661/" target="_blank" rel="nofollow">www.jamendo.com/album/3661/</a><br />
'Struttin' Written and Performed by Tryad. Courtesy Tryad.org</p>
<p><span class="strong">05 - dub is dumb.mp3</span> by <span class="strong">Kernem</span><br />
Copyright (C) 2007 Kernem. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-nd/2.5/" target="_blank" rel="nofollow">CC by-nc-nd</a> verify at <a href="http://www.jamendo.com/album/3977/" target="_blank" rel="nofollow">www.jamendo.com/album/3977/</a></p>
<p><span class="strong">06 - Chips dreams.mp3</span> by <span class="strong">Florent Lelong</span><br />
Copyright (C) 2008 Florent Lelong. Licensed to the public under <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank" rel="nofollow">CC by-sa</a> verify at <a href="http://www.jamendo.com/album/19211/" target="_blank" rel="nofollow">www.jamendo.com/album/19211/</a></p>
<p><span class="strong">07 - maska &amp; goey.mp3</span> by <span class="strong">CIRC</span><br />
Copyright (C) 2009 CIRC. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/47735/" target="_blank" rel="nofollow">www.jamendo.com/album/47735/</a></p>
<p><span class="strong">08 - dry martini.mp3</span> by <span class="strong">LEGO</span><br />
Copyright (C) 2006 LEGO. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/981/" target="_blank" rel="nofollow">www.jamendo.com/album/981/</a></p>
<p><span class="strong">09 - Flocon.mp3</span> by <span class="strong">Silence</span><br />
Copyright (C) 2005 Silence. Licensed to the public under <a href="http://artlibre.org/licence.php/lal.html" target="_blank" rel="nofollow">Licence Art Libre</a> verify at <a href="http://www.jamendo.com/album/395/" target="_blank" rel="nofollow">www.jamendo.com/album/395/</a></p>
<p><span class="strong">10 - Sun System.mp3</span> by <span class="strong">eNoz</span><br />
Copyright (C) 2007 eNoz. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/4489/" target="_blank" rel="nofollow">www.jamendo.com/album/4489/</a></p>
<p><span class="strong">11 - The sun is coming.mp3</span> by <span class="strong">Oursvince</span><br />
Copyright (C) 2007 Oursvince. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/8726/" target="_blank" rel="nofollow">www.jamendo.com/album/8726/</a></p>
<p><span class="strong">12 - Inside the light.mp3</span> by <span class="strong">Musician Toy</span><br />
Copyright (C) 2009 Musician Toy. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/44123/" target="_blank" rel="nofollow">www.jamendo.com/album/44123/</a></p>
<p><span class="strong">13 - Plume.mp3</span> by <span class="strong">Silence</span><br />
Copyright (C) 2005 Silence. Licensed to the public under <a href="http://artlibre.org/licence.php/lal.html" target="_blank" rel="nofollow">Licence Art Libre</a> verify at <a href="http://www.jamendo.com/album/395/" target="_blank" rel="nofollow">www.jamendo.com/album/395/</a></p>
<p><span class="strong">14 - don't be shad.mp3</span> by <span class="strong">CIRC</span><br />
Copyright (C) 2007 CIRC. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/6747/" target="_blank" rel="nofollow">www.jamendo.com/album/6747/</a></p>
<p><span class="strong">15 - The Creature.mp3</span> by <span class="strong">Musician Toy</span><br />
Copyright (C) 2009 Musician Toy. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/44123/" target="_blank" rel="nofollow">www.jamendo.com/album/44123/</a></p>
<p><span class="strong">16 - Emptiness.mp3:</span> by <span class="strong">Alexander Blu</span><br />
Copyright (C) 2005 Alexander Blu. Licensed to the public under <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank" rel="nofollow">CC by-sa</a> verify at <a href="http://www.jamendo.com/album/149/" target="_blank" rel="nofollow">www.jamendo.com/album/149/</a></p>
<p><span class="strong">17 - Pour Toi.mp3</span> by <span class="strong">Elecmutec</span><br />
Copyright (C) 2007 Elecmutec. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.jamendo.com/album/8607/" target="_blank" rel="nofollow">www.jamendo.com/album/8607/</a></p>
<p><span class="strong">18 - 短暫.mp3</span> or <span class="strong">18 - m+.mp3</span> by <span class="strong">eNoz</span><br />
Copyright (C) 2007 eNoz. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-nd/3.0/" target="_blank" rel="nofollow">CC by-nc-nd</a> verify at <a href="http://www.jamendo.com/album/5097/" target="_blank" rel="nofollow">www.jamendo.com/album/5097/</a></p>
<p><span class="strong">19 - Le nettoyeur.mp3</span> by <span class="strong">Greg Baumont</span><br />
Copyright (C) 2005 Greg Baumont. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/fr/" target="_blank" rel="nofollow">CC by-nc-nd</a> verify at <a href="http://www.jamendo.com/album/347/" target="_blank" rel="nofollow">www.jamendo.com/album/347/</a></p>
<p>The <span class="strong">speaker picture</span> by <span class="strong">swishphotos</span><br />
Copyright (C) 2006 swishphotos. Licensed to the public under <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en" target="_blank" rel="nofollow">CC by-nc-sa</a> verify at <a href="http://www.flickr.com/photos/swishphotos/225933635/" target="_blank" rel="nofollow">flickr.com/photos/swishphotos/225933635/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codealpha.net/406/electro-collection-1-an-electro-flow-of-music/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
