<?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>Xoke.org &#187; Podcasts</title>
	<atom:link href="http://xoke.org/category/podcasts/feed/" rel="self" type="application/rss+xml" />
	<link>http://xoke.org</link>
	<description>Xoke&#039;s Small Area of the Net</description>
	<lastBuildDate>Thu, 19 Aug 2010 08:20:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Windows 7 Install (HPR Episode)</title>
		<link>http://xoke.org/2010/08/18/windows-7-install-hpr-episode/</link>
		<comments>http://xoke.org/2010/08/18/windows-7-install-hpr-episode/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 06:20:24 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[HPR]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://xoke.org/?p=528</guid>
		<description><![CDATA[Just a little slideshow for the screenshots&#8230; Also I just listened to my episode again and realise I kept calling it VMWare.  I was running Virtual Box.  Apologies for the confusion.]]></description>
			<content:encoded><![CDATA[<p>Just a little slideshow for the screenshots&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="host=picasaweb.google.com&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FXokesoru%2Falbumid%2F5506997920561198705%3Falt%3Drss%26kind%3Dphoto%26authkey%3DGv1sRgCNrVw7bOtdf0sAE%26hl%3Den_US" /><param name="src" value="http://picasaweb.google.com/s/c/bin/slideshow.swf" /><embed type="application/x-shockwave-flash" width="600" height="400" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" flashvars="host=picasaweb.google.com&amp;hl=en_US&amp;feat=flashalbum&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2FXokesoru%2Falbumid%2F5506997920561198705%3Falt%3Drss%26kind%3Dphoto%26authkey%3DGv1sRgCNrVw7bOtdf0sAE%26hl%3Den_US"></embed></object></p>
<p>Also I just listened to my episode again and realise I kept calling it VMWare.  I was running Virtual Box.  Apologies for the confusion.</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2010/08/18/windows-7-install-hpr-episode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Too Many Podcasts, Too Little Time&#8230;</title>
		<link>http://xoke.org/2009/09/28/too-many-podcasts-too-little-time/</link>
		<comments>http://xoke.org/2009/09/28/too-many-podcasts-too-little-time/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 17:39:10 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Creative Commons]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://xoke.org/?p=279</guid>
		<description><![CDATA[No I don&#8217;t want to stop listening to some of my podcasts, but seriously TLLTs takes forever to catch up on! So I&#8217;ve been reading up on / talking to people about speeding up the playback of podcasts.  You can play them through mplayer (CLI version) and press ] to increase the speed, but the [...]]]></description>
			<content:encoded><![CDATA[<p>No I don&#8217;t want to stop listening to some of my podcasts, but seriously TLLTs takes forever to catch up on!</p>
<p>So I&#8217;ve been reading up on / talking to people about speeding up the playback of podcasts.  You can play them through mplayer (CLI version) and press ] to increase the speed, but the people end up sounding like chipmunks.  Whilst this may be an improvement for Dann, other people sound terrible this way.</p>
<p>SoX is a cool command that will sort this out for you.  You can increase the &#8216;tempo&#8217; without adjusting the pitch.  I want to have a script to amend this that can be called after bashpodder so it&#8217;s a one-stop-shop to fix everything.</p>
<p>To install SoX (and let it handle MP3 files):</p>
<pre style="padding-left: 30px;">sudo apt-get install sox libsox-fmt-mp3</pre>
<p>So far I have:</p>
<pre style="padding-left: 30px;">#!/bin/bash
##################################################
#
#                       LICENSE
#
##################################################
#
# Xoke's Speed Increase script for Podcasts
# Copyright (C) 2009 Xoke
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details &lt;http://www.gnu.org/licenses/&gt;.

# I added a bit of a version control section here to mark any changes to the code
##################################################
#
#                       Versions
#
##################################################
#
# Ver    Date            Author        Description
# ------------------------------------------------------------------------------------
# 0.1        Sep 2009    Xoke        Initial Version

# Increase tempo of podcasts for today
#    Issues:
#        Assumes bashpodder is running
#        Probably has issues being run twice in one day
#        Doesn't tidy up after itself
#        mp3s become *.mp3.ogg

# Make script crontab friendly:
cd $(dirname $0)

# Speed Increase - change this to change
# the speed.
incspeedby=1.5

# datadir is the directory you want podcasts saved to:
datadir=$(date +%Y-%m-%d)

# Move into directory
cd $datadir

# Find all the MP3s
list=`ls *.mp3`
for currfile in $list
do
 echo $currfile
 # Process them
 sox $currfile z$currfile.ogg tempo $incspeedby
done

# Find all the OGGs
list=`ls *.ogg`
for currfile in $list
do
 echo $currfile
 # Process them
 sox $currfile z$currfile tempo $incspeedby
done</pre>
<p>This will go into the current date directory, as per bashpodder.  This means if you run it <em>twice</em> in one day it will have problems as it will try to increase the tempo of the files already increased&#8230; which will be a problem.  It will convert mp3 files to ogg as the Jaunty version of SoX does not come with MP3 export capabilities.  This means HPR069.mp3 becomes zHPR069.mp3.ogg which is a little annoying, but not a huge problem.  The files all get a &#8216;z&#8217; appended to the front, as I didn&#8217;t want to delete the old files without testing this on a lot of different files!  The next version (after lots of testing) will remove the old files and tidy things up!  Also this takes a while to run to convert files.</p>
<p>If you think 1.5x speed is too fast (or too slow if you&#8217;re Kajarii!) then you can change the <em>incspeedby</em> variable to change both mp3 and ogg.</p>
<p>Apart from that, I posted it here and not under &#8216;tips&#8217; so everyone on the planet can look and let me know if I&#8217;m missing something, or if there is a better way of doing it.  I did google however most people are converting the MP3s to WAV files to increase the tempo and then recompress them!</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2009/09/28/too-many-podcasts-too-little-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tiny Tiny RSS</title>
		<link>http://xoke.org/2009/08/20/tiny-tiny-rss/</link>
		<comments>http://xoke.org/2009/08/20/tiny-tiny-rss/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 05:51:52 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Podcasts]]></category>
		<category><![CDATA[TiT]]></category>

		<guid isPermaLink="false">http://xoke.org/?p=197</guid>
		<description><![CDATA[I mentioned Tiny Tiny RSS on the last two TiT Radios.  On the first I had only just set it up, and on the second I mentioned how it didn&#8217;t seem to be updating correctly.  I took my feeds from Google Reader and imported them into TTRSS and cleared them both down to compare how [...]]]></description>
			<content:encoded><![CDATA[<p>I mentioned <a href="http://tt-rss.org/redmine/">Tiny Tiny RSS</a> on the last two TiT Radios.  On the first I had only just set it up, and on the second I mentioned how it didn&#8217;t seem to be updating correctly.  I took my feeds from Google Reader and imported them into TTRSS and cleared them both down to compare how they worked.  I noted that I had a lot more in Reader then TTRSS.  Now I also said I was looking into why that was.</p>
<p>Well I have been playing around reading through <a href="http://tt-rss.org/trac/wiki/UpdatingFeeds">this page</a>, where they give a bunch of ways to update.  Some seem better then others (as they warn) and I still have to try to sort out the &#8216;best&#8217; way they recommend.  But for now, it&#8217;s looking a lot more promising.</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2009/08/20/tiny-tiny-rss/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The snake has it!</title>
		<link>http://xoke.org/2009/01/21/the-snake-has-it/</link>
		<comments>http://xoke.org/2009/01/21/the-snake-has-it/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 22:27:24 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[HPR]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Python will be the language I&#160;do my HPR on.&#160; Well I&#160;say &#039;do&#039; because I&#160;just recorded it (although still have to edit it).&#160; I&#160;am thinking I&#160;will create a new section for programming here, with the scripts I&#160;started with (I&#160;do ad-lib a fraction mind) and the code examples and similar.&#160; I&#160;will also of course have show notes [...]]]></description>
			<content:encoded><![CDATA[<p>Python will be the language I&nbsp;do my HPR on.&nbsp; Well I&nbsp;say &#039;do&#039; because I&nbsp;just recorded it (although still have to edit it).&nbsp; I&nbsp;am thinking I&nbsp;will create a new section for programming here, with the scripts I&nbsp;started with (I&nbsp;do ad-lib a fraction mind) and the code examples and similar.&nbsp; I&nbsp;will also of course have show notes on the HPR&nbsp;site, but think putting a list here will be helpful.</p>
<p>So I&nbsp;have closed the poll.&nbsp; Thank you everyone who voted / commented / spoke to me about it in IRC.</p>
<p>My next HPR ep is due on the 28th I&nbsp;believe, so look for it then!</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2009/01/21/the-snake-has-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Language should I do for my HPR series?</title>
		<link>http://xoke.org/2008/12/22/what-language-should-i-do-for-my-hpr-series/</link>
		<comments>http://xoke.org/2008/12/22/what-language-should-i-do-for-my-hpr-series/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 10:56:37 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[HPR]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[C 24% (13 votes) PHP 11% (6 votes) Python 58% (32 votes) Other (see comments) 7% (4 votes) Total votes: 55]]></description>
			<content:encoded><![CDATA[<div class="poll">
<div class="text">C</div>
<div class="bar">
<div style="width: 24%;" class="foreground"></div>
</div>
<div class="percent">
  24% (13 votes)
</div>
<div class="text">PHP</div>
<div class="bar">
<div style="width: 11%;" class="foreground"></div>
</div>
<div class="percent">
  11% (6 votes)
</div>
<div class="text">Python</div>
<div class="bar">
<div style="width: 58%;" class="foreground"></div>
</div>
<div class="percent">
  58% (32 votes)
</div>
<div class="text">Other (see comments)</div>
<div class="bar">
<div style="width: 7%;" class="foreground"></div>
</div>
<div class="percent">
  7% (4 votes)
</div>
<div class="total">
    Total votes: 55  </div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2008/12/22/what-language-should-i-do-for-my-hpr-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New HPR Episode Out</title>
		<link>http://xoke.org/2008/12/19/new-hpr-episode-out/</link>
		<comments>http://xoke.org/2008/12/19/new-hpr-episode-out/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 06:48:19 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[HPR]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#160;talk about Encryption, various ways and some examples.&#160; Hopefully it&#039;s not completely confusing!&#160; Link is in the podcast section. The notes seemed to have gone from the HPR&#160;website so they are below: Three Prime Numbers: 2, 3 and 5. I will call them A, B and C so A=2, B=3 and C=5 Working through x [...]]]></description>
			<content:encoded><![CDATA[<p>I&nbsp;talk about Encryption, various ways and some examples.&nbsp; Hopefully it&#039;s not completely confusing!&nbsp; Link is in the podcast section.</p>
<p>The notes seemed to have gone from the HPR&nbsp;website so they are below:</p>
<p>Three Prime Numbers: 2, 3 and 5.<br />
I will call them A, B and C so A=2, B=3 and C=5<br />
Working through x as the current position, and i being the unencrypted password and j being the encrypted as an array, so i[x] is the &#039;current&#039; position we get:</p>
<p>j[x] = ((j[x-1] + i[x] + A) * B ) MOD C</p>
<p>The password example I give is:</p>
<p>Encrypting 123</p>
<p>1 (unencrypted password) + 2 (Prime A) = 3<br />
3 * 3 (Prime B) = 9<br />
9 MOD 5 (Prime C) = 4</p>
<p>4 (previous encrypted) + 2 (current unencrypted) + 2 (Prime A) = 8<br />
8 * 3 (Prime B) = 24<br />
24 MOD 5 (Prime C) = 4</p>
<p>4 (previous encrypted) + 3 (current unencrypted) + 2 (Prime A) = 9<br />
9 * 3 (Prime C) = 27<br />
27 MOD 5 (Prime C) = 2</p>
<p>So the encrypted password is 442<br />
&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2008/12/19/new-hpr-episode-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Conscience of a Hacker</title>
		<link>http://xoke.org/2008/10/12/the-conscience-of-a-hacker-2/</link>
		<comments>http://xoke.org/2008/10/12/the-conscience-of-a-hacker-2/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 23:23:47 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[Cranks]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Hacker]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://xoke.org/?p=182</guid>
		<description><![CDATA[We discussed this on Linux Cranks last night and I attempted to do justice by reading it.  Here is the text I was trying to read. Another one got caught today, it&#8217;s all over the papers. &#8220;Teenager Arrested in Computer Crime Scandal&#8221;, &#8220;Hacker Arrested after Bank Tampering&#8221;&#8230; Damn kids. They&#8217;re all alike. But did you, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We discussed this on Linux Cranks last night and I attempted to do justice by reading it.  Here is the text I was trying to read.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><em>Another one got caught today, it&#8217;s all over the papers. &#8220;Teenager Arrested in Computer Crime Scandal&#8221;, &#8220;Hacker Arrested after Bank Tampering&#8221;&#8230;</em></p>
<p style="text-align: justify;"><em>Damn kids. They&#8217;re all alike.</em></p>
<p style="text-align: justify;"><em>But did you, in your three-piece psychology and 1950&#8242;s techno brain, ever take a look behind the eyes of the hacker? Did you ever wonder what made him tick, what forces shaped him, what may have molded him?</em></p>
<p style="text-align: justify;"><em>I am a hacker, enter my world&#8230;</em></p>
<p style="text-align: justify;"><em>Mine is a world that begins with school&#8230; I&#8217;m smarter than most of the other kids, this crap they teach us bores me&#8230;</em></p>
<p style="text-align: justify;"><em>Damn under achiever. They&#8217;re all alike.</em></p>
<p style="text-align: justify;"><em>I&#8217;m in junior high or high school. I&#8217;ve listened to teachers explain for the fifteenth time how to reduce a fraction. I understand it. &#8220;No, Ms. Smith, I didn&#8217;t show my work. I did it in my head&#8230;&#8221;</em></p>
<p style="text-align: justify;"><em>Damn kid. Probably copied it. They&#8217;re all alike.</em></p>
<p style="text-align: justify;"><em>I made a discovery today. I found a computer. Wait a second, this is cool. It does what I want it to. If it makes a mistake, it&#8217;s because I screwed it up. Not because it doesn&#8217;t like me&#8230; Or feels threatened by me&#8230; Or thinks I&#8217;m a smart-ass&#8230; Or doesn&#8217;t like teaching and shouldn&#8217;t be here&#8230;</em></p>
<p style="text-align: justify;"><em>Damn kid. All he does is play games. They&#8217;re all alike.</em></p>
<p style="text-align: justify;"><em>And then it happened&#8230; a door opened to a world&#8230; rushing through the phone line like heroin through an addict&#8217;s veins, an electronic pulse is sent out, a refuge from the day-to-day incompetencies is sought&#8230; a board is found.</em></p>
<p style="text-align: justify;"><em>&#8220;This is it&#8230; this is where I belong&#8230;&#8221; I know everyone here&#8230; even if I&#8217;ve never met them, never talked to them, may never hear from them again&#8230; I know you all&#8230;</em></p>
<p style="text-align: justify;"><em>Damn kid. Tying up the phone line again. They&#8217;re all alike&#8230;</em></p>
<p style="text-align: justify;"><em>You bet your ass we&#8217;re all alike&#8230; we&#8217;ve been spoon-fed baby food at school when we hungered for steak&#8230; the bits of meat that you did let slip through were pre-chewed and tasteless. We&#8217;ve been dominated by sadists, or ignored by the apathetic. The few that had something to teach found us willing pupils, but those few are like drops of water in the desert.</em></p>
<p style="text-align: justify;"><em>This is our world now&#8230; the world of the electron and the switch, the beauty of the baud. We make use of a service already existing without paying for what could be dirt-cheap if it wasn&#8217;t run by profiteering gluttons, and you call us criminals. We explore&#8230; and you call us criminals. We seek after knowledge&#8230; and you call us criminals. We exist without skin color, without nationality, without religious bias&#8230; and you call us criminals. You build atomic bombs, you wage wars, you murder, cheat, and lie to us and try to make us believe it&#8217;s for our own good, yet we&#8217;re the criminals.</em></p>
<p style="text-align: justify;"><em>Yes, I am a criminal. My crime is that of curiosity. My crime is that of judging people by what they say and think, not what they look like. My crime is that of out-smarting you, something that you will never forgive me for.</em></p>
<p style="text-align: justify;"><em>I am a hacker, and this is my manifesto. You may stop this individual, but you can&#8217;t stop us all&#8230; after all, we&#8217;re all alike.</em></p>
<p style="text-align: justify;">
<p style="text-align: justify;">The Mentor. 08/01/1986</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2008/10/12/the-conscience-of-a-hacker-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New HPR Ep in the Installing stuff series</title>
		<link>http://xoke.org/2008/10/02/new-hpr-ep-in-the-installing-stuff-series/</link>
		<comments>http://xoke.org/2008/10/02/new-hpr-ep-in-the-installing-stuff-series/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 17:15:38 +0000</pubDate>
		<dc:creator>Xoke</dc:creator>
				<category><![CDATA[HPR]]></category>
		<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[It can be found here and in it I install Windows in my Virtual Box.  It was definitely interesting!]]></description>
			<content:encoded><![CDATA[<p>It can be found <a title="Installing Windows" href="http://www.hackerpublicradio.org/eps/hpr0198.mp3">here</a> and in it I install Windows in my Virtual Box.  It was definitely interesting!</p>
]]></content:encoded>
			<wfw:commentRss>http://xoke.org/2008/10/02/new-hpr-ep-in-the-installing-stuff-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.hackerpublicradio.org/eps/hpr0198.mp3" length="16072440" type="audio/mpeg" />
		</item>
	</channel>
</rss>
