<?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>TechnoGeeks &#187; Techno</title>
	<atom:link href="http://techno-geeks.org/tag/techno/feed/" rel="self" type="application/rss+xml" />
	<link>http://techno-geeks.org</link>
	<description>A fusion of technology, music, and geekyness.</description>
	<lastBuildDate>Fri, 09 Dec 2011 06:50:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Good Beats: December 2012</title>
		<link>http://techno-geeks.org/2011/12/good-beats/</link>
		<comments>http://techno-geeks.org/2011/12/good-beats/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 06:19:57 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Electronic Music]]></category>
		<category><![CDATA[Good Beats]]></category>
		<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[Techno]]></category>
		<category><![CDATA[Trance]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=754</guid>
		<description><![CDATA[George Acosta feat. Emma Lock &#8211; Never Fear (ATB Remix) Buy this track on Beatport! Lange &#8211; This Is New York (vs. Gareth Emery) (Heatbeat Remix) Buy this track on Beatport! Please enjoy!]]></description>
			<content:encoded><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/xLBPyQ5eudk" frameborder="0" allowfullscreen></iframe><br />
George Acosta feat. Emma Lock &#8211; Never Fear (ATB Remix)<br />
<a href="http://www.beatport.com/track/never-fear-feat-emma-lock-atb-remix/3078212">Buy this track on Beatport!</a></p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/NYm7zNZrZuk" frameborder="0" allowfullscreen></iframe><br />
Lange &#8211; This Is New York (vs. Gareth Emery) (Heatbeat Remix)<br />
<a href="http://www.beatport.com/track/this-is-new-york-heatbeat-remix/3118924">Buy this track on Beatport!</a></p>
<p>Please enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2011/12/good-beats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting FLAC to MP3 in Linux</title>
		<link>http://techno-geeks.org/2010/11/converting-flac-to-mp3-in-linux/</link>
		<comments>http://techno-geeks.org/2010/11/converting-flac-to-mp3-in-linux/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 12:30:50 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[File Formats]]></category>
		<category><![CDATA[FLAC]]></category>
		<category><![CDATA[Techno]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=595</guid>
		<description><![CDATA[Converting FLAC files to MP3 is very easy to accomplish in Linux. Unfortunately, FLAC files can not be played on most mobile devices and they normally take up too much space anyway. Use the script I wrote below to easily convert a folder (recursively) to mp3 files. It defaults to 320 kbps bit rate if [...]]]></description>
			<content:encoded><![CDATA[<p>Converting FLAC files to MP3 is very easy to accomplish in Linux. Unfortunately, FLAC files can not be played on most mobile devices and they normally take up too much space anyway. Use the script I wrote below to easily convert a folder (recursively) to mp3 files. It defaults to 320 kbps bit rate if you do not specify. This script was tested in Ubuntu 10.04 with: flac 1.2.1 and lame 3.98.2. Nothing else is required.</p>
<p><strong>Usage</strong></p>
<pre class="brush: bash;">
flac2mp3 /path/to/flac/files/ /path/to/output/mp3/files/ [bit_rate]
</pre>
<p><strong>The Script</strong></p>
<pre class="brush: bash;">
#!/bin/bash
convert_dir=$1
output_dir=$2
bitrate=$3

# Ensure require params are passed in
if [ -z $convert_dir ] || [ -z $output_dir ];
then
  echo &quot;Usage: flac2mp3 rip_dir output_dir [bitrate]&quot;
  exit
fi

# Default to 320 kbps if bitrate not specified
if [ -z $bitrate ];
then
  bitrate=320
fi

# Get the list of files to convert
files=( `find $convert_dir -iname '*.flac' | tr &quot;\n&quot; &quot; &quot;` )

# Convert each file, one at a time
for file in ${files[*]}
do
  flac -dc $file | lame -b $bitrate - $output_dir/`basename $file`.mp3
done

echo &quot;Conversions complete!&quot;
</pre>
<p><strong>Installation</strong></p>
<pre class="brush: bash;">
cd /usr/bin
sudo curl --silent --output flac2mp3 https://gist.github.com/raw/708704/10b41ddb2ab43ade403038cfb78364eb5e168286/flac2mp3
sudo chmod 755 flac2mp3
</pre>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2010/11/converting-flac-to-mp3-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My First Mix Coming Soon: Furious Elements I</title>
		<link>http://techno-geeks.org/2010/09/my-first-mix-coming-soon-furious-elements-i/</link>
		<comments>http://techno-geeks.org/2010/09/my-first-mix-coming-soon-furious-elements-i/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 11:27:58 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Breakbeats]]></category>
		<category><![CDATA[Breaks]]></category>
		<category><![CDATA[DJing]]></category>
		<category><![CDATA[Furious Elements]]></category>
		<category><![CDATA[Mixdown]]></category>
		<category><![CDATA[Techno]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=546</guid>
		<description><![CDATA[I have been practicing my beat matching and collecting tracks for several weeks now. This evening I spent some time and picked some of my favorite tracks out of everything I have gathered thus far. The result: Furious Elements I. This will mark my first mixdown since I have gained an interest in breakbeats and [...]]]></description>
			<content:encoded><![CDATA[<p>I have been practicing my beat matching and collecting tracks for several weeks now. This evening I spent some time and picked some of my favorite tracks out of everything I have gathered thus far. The result: Furious Elements I. This will mark my first mixdown since I have gained an interest in breakbeats and will be my FIRST EVER demo mix. Back in college when I was spinning NRG at raves I never successfully recorded a mix for a demo. I always nit picked and critiqued myself and would never settle for anything but perfection. I am going to be aiming for the same level of perfection in this mix so let&#8217;s hope it actually happens. Hopefully within the next 2-3 weeks I will be posting it on Soundcloud!</p>
<p><strong>Jesse Adams &#8211; Furious Elements I</strong><br />
01: Sketi &#8211; Hyperstate (Original Mix)<br />
02: Far Too Loud &#8211; We Want to Dance (Original Mix)<br />
03: X-Dream &#8211; The 1st (Far Too Loud Refix)<br />
04: Electrixx &#8211; Tetris (reFaze Edit)<br />
05: Suko &#8211; More &#038; More (Quadrat Beat Remix)<br />
06: Destroyers &#038; Aggresivnes ft. Ann Lee &#8211; Ring My Bell (Original Mix)<br />
07: Sub Focus &#8211; Rockit (Stanton Warriors Edit)<br />
08: Le Castle Vania &#8211; Nobody Gets Out Alive (Noisia Remix)<br />
09: DJ Fixx, Keith Mackenzie, Whis &#8211; Get With The Program (Calvertron Remix)<br />
10: BreakZhead &#8211; Disposis (Aggresivnes &#038; FactorFunk Remix)<br />
11: Access Denied ft. Mc Incyte &#8211; My Life (Dub Mix)<br />
12: Vandal &#8211; Idiots (Original Mix)<br />
13: Physical Bross &#8211; Untitled (Cote Remix)<br />
14: Aggresivnes &#8211; Essence (VIP Mix)</p>
<p>Coming Soon! Stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2010/09/my-first-mix-coming-soon-furious-elements-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Music Spotlight: NSB Radio</title>
		<link>http://techno-geeks.org/2010/09/music-spotlight-nsb-radio/</link>
		<comments>http://techno-geeks.org/2010/09/music-spotlight-nsb-radio/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 06:50:37 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[djs]]></category>
		<category><![CDATA[mixing]]></category>
		<category><![CDATA[NSB]]></category>
		<category><![CDATA[Nu Skool Breaks]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[Techno]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=488</guid>
		<description><![CDATA[NSB Radio http://www.nsbradio.co.uk I must say, I discovered NSB Radio about a week ago and it has already changed my life. It is a 24/7/365 radio station that has 2 hour radio shows of live DJ&#8217;s spinning Nu Skool Breaks among other things. So far it has inspired me to get my decks out of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://techno-geeks.org/wp-content/uploads/2010/09/nsblogo.png"><img src="http://techno-geeks.org/wp-content/uploads/2010/09/nsblogo.png" alt="nsblogo" title="nsblogo" width="158" height="188" class="alignleft size-full wp-image-489" /></a><br />
NSB Radio<br />
<a href="http://www.nsbradio.co.uk">http://www.nsbradio.co.uk</a></p>
<p>I must say, I discovered NSB Radio about a week ago and it has already changed my life. It is a 24/7/365 radio station that has 2 hour radio shows of live DJ&#8217;s spinning Nu Skool Breaks among other things. So far it has inspired me to get my decks out of storage and hook up my studio (well, what is left of it). It also has inspired me to invest in some new equipment that will allow me to mix mp3s as well. I am going to be completely honest: The shows are hit or miss. Some of them are amazing while others are terrible. But overall, its a great place to check out when you need some good tunes. You can also catch me hanging out in their IRC chat under the alias Envium. Curious to know more about NSB radio? Check out the excerpt taken from their website below.</p>
<p>&#8220;Broadcasting since 2003, multi award winning NSB Radio is a pioneer in the online broadcasting world. We are the world&#8217;s largest breaks and breakbeat oriented radio station brought to you by Nuskoolbreaks.co.uk. NSB Radio was voted &#8220;Best Radio Station&#8221; at the 2008, 2009 and 2010 Breakspoll International Breakbeat Awards by our amazing community of listeners. Our highly talented, award winning DJs and radio shows are live 24/7 throwing down the phattest selection of breaks, breakbeat, big beat, glitch, nu skool breakz, funk, dubstep, soul and so much more.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2010/09/music-spotlight-nsb-radio/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lucky Star &#8211; Winter 2006</title>
		<link>http://techno-geeks.org/2009/12/lucky-star-winter-2006/</link>
		<comments>http://techno-geeks.org/2009/12/lucky-star-winter-2006/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 17:39:43 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[James Bond]]></category>
		<category><![CDATA[Lucky Star]]></category>
		<category><![CDATA[Music Video]]></category>
		<category><![CDATA[Techno]]></category>
		<category><![CDATA[Trance]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=386</guid>
		<description><![CDATA[When I was in college I used to write electronic music remixes and some original tracks. None of them were ever really that great but I had a lot of fun nonetheless. In Winter of 2006 my good friend Robert approached me with another movie idea. Robert, myself, and a group of friends had been [...]]]></description>
			<content:encoded><![CDATA[<p>When I was in college I used to write electronic music remixes and some original tracks. None of them were ever really that great but I had a lot of fun nonetheless. In Winter of 2006 my good friend Robert approached me with another movie idea. Robert, myself, and a group of friends had been making movies for fun over the past couple years and we always had a blast making them. He wanted to do a music video but we didn&#8217;t know any bands or musicians that we could make a music video for. We then picked a random track that had previously written &#8211; a remix of some vocals that I found online somewhere (nothing popular). Joe, one of the two bodyguards in the video, added some of the videos from the DVD that we produced. I also found the original trailer that I put on YouTube many years ago. I hope you enjoy them. It was quite nostalgic for me <img src='http://techno-geeks.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>We used a James Bond theme because a lot of us were huge James Bond fans. Robert made magic happen with a budget (as usual) and I put a lot of time and money into a home made switch board to set off the ricochets during the shooting seen. I think both Adam, Doug, and I all suffered from our fair share of electric shocks that occurred during the whole process. Some of the sound seems a bit delayed in the YouTube videos (not sure why).</p>
<p><strong>The Trailer</strong><br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/5pVA2A76h2w&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5pVA2A76h2w&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p><strong>The Music Video</strong><br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/ELL8WkGT-P0&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ELL8WkGT-P0&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p><strong>The Fake Commercial (extras)</strong><br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/jQBhhC5tlc4&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jQBhhC5tlc4&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/12/lucky-star-winter-2006/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Music Spotlight: Dash Berlin feat Emma Hewitt</title>
		<link>http://techno-geeks.org/2009/11/music-spotlight-dash-berlin-feat-emma-hewitt/</link>
		<comments>http://techno-geeks.org/2009/11/music-spotlight-dash-berlin-feat-emma-hewitt/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 20:14:41 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Dash Berlin]]></category>
		<category><![CDATA[Emma Hewitt]]></category>
		<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[Techno]]></category>
		<category><![CDATA[Trance]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=334</guid>
		<description><![CDATA[This is some refreshing vocal trance for your listening pleasure &#8220;Waiting&#8221; by Dash Berlin featuring the voice of Emma Hewitt Make sure to pick it up on Amazon MP3]]></description>
			<content:encoded><![CDATA[<p>This is some refreshing vocal trance for your listening pleasure <img src='http://techno-geeks.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/MSgnf-tBN9s&#038;hl=en&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MSgnf-tBN9s&#038;hl=en&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>&#8220;Waiting&#8221; by Dash Berlin featuring the voice of Emma Hewitt</p>
<p>Make sure to pick it up on <a href="http://www.amazon.com/Waiting-Original-Mix/dp/B002ROISCE/ref=sr_1_1?ie=UTF8&#038;s=dmusic&#038;qid=1257624850&#038;sr=8-1">Amazon MP3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/11/music-spotlight-dash-berlin-feat-emma-hewitt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Very Rough Trance Mix</title>
		<link>http://techno-geeks.org/2009/06/very-rough-trance-mix/</link>
		<comments>http://techno-geeks.org/2009/06/very-rough-trance-mix/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 01:54:10 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[DJing]]></category>
		<category><![CDATA[Mixdown]]></category>
		<category><![CDATA[Techno]]></category>
		<category><![CDATA[Trance]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=182</guid>
		<description><![CDATA[It has been a long time (2-3 years) since I have had access to my turntables and vinyl with undamaged needles. I finally got around to mixing a few trance vinyl I have from way back in the day. I rushed the mixing so it doesn&#8217;t sound very good. I am mainly posting this because [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a long time (2-3 years) since I have had access to my turntables and vinyl with undamaged needles. I finally got around to mixing a few trance vinyl I have from way back in the day. I rushed the mixing so it doesn&#8217;t sound very good. I am mainly posting this because I like the songs and I want to use it as a place holder to see my progress. Hope you enjoy!</p>
<p><!-- Dewplayer Begin--><object type="application/x-shockwave-flash" data="http://techno-geeks.org/wp-content/plugins/dewplayer-flash-mp3-player/dewplayer.swf?mp3=http://www.techno-geeks.org/mixes/really_bad_mixdown.mp3&amp;showtime=1&amp;bgcolor=FFFFFF" width="200" height="20"><param name="bgcolor" value="FFFFFF" /><param name="movie" value="http://techno-geeks.org/wp-content/plugins/dewplayer-flash-mp3-player/dewplayer.swf?mp3=http://www.techno-geeks.org/mixes/really_bad_mixdown.mp3&amp;showtime=1&amp;bgcolor=FFFFFF" /></object><!-- Dewplayer End--><a href="http://www.techno-geeks.org/mixes/really_bad_mixdown.mp3">http://www.techno-geeks.org/mixes/really_bad_mixdown.mp3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/06/very-rough-trance-mix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.techno-geeks.org/mixes/really_bad_mixdown.mp3" length="18105741" type="audio/mpeg" />
		</item>
		<item>
		<title>Music Spotlight: ATB</title>
		<link>http://techno-geeks.org/2009/04/music-spotlight-atb/</link>
		<comments>http://techno-geeks.org/2009/04/music-spotlight-atb/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 17:24:25 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ATB]]></category>
		<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[Techno]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=152</guid>
		<description><![CDATA[Haven&#8217;t heard anything new from ATB in almost a couple years now. Apparently he has a new album coming out here in a few days (May 1). A friend sent me a link to the video below a little bit ago and I thought it was share worthy for sure. This track is available for [...]]]></description>
			<content:encoded><![CDATA[<p>Haven&#8217;t heard anything new from ATB in almost a couple years now. Apparently he has a new album coming out here in a few days (May 1). A friend sent me a link to the video below a little bit ago and I thought it was share worthy for sure. This track is available for <a href="http://www.amazon.com/dp/B0026F4ECM/?tag=you09f-20">mp3 purchase at Amazon</a> and you can buy the <a href="http://www.amazon.com/Future-Memories-ATB/dp/B001WOHLXW/ref=sr_1_1?ie=UTF8&#038;s=music&#038;qid=1241025793&#038;sr=8-1">hardcopy</a> too.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/Rv9hfuocvEI&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Rv9hfuocvEI&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>&#8220;What About Us&#8221; by ATB</p>
<p>Makes me miss the old days <img src='http://techno-geeks.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/04/music-spotlight-atb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

