<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>KOW's Blog</title>
	<atom:link href="http://jarrn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jarrn.wordpress.com</link>
	<description>Livin' in the Presence of the Lord</description>
	<lastBuildDate>Mon, 31 Oct 2011 16:25:10 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jarrn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>KOW's Blog</title>
		<link>http://jarrn.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jarrn.wordpress.com/osd.xml" title="KOW&#039;s Blog" />
	<atom:link rel='hub' href='http://jarrn.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing Ubuntu 8.10 (Beta) on Samsung SA1</title>
		<link>http://jarrn.wordpress.com/2008/10/09/installing-ubuntu-810-beta-on-samsung-sa1/</link>
		<comments>http://jarrn.wordpress.com/2008/10/09/installing-ubuntu-810-beta-on-samsung-sa1/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 23:47:08 +0000</pubDate>
		<dc:creator>jarrn</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://jarrn.wordpress.com/?p=221</guid>
		<description><![CDATA[Last updated: 19. October 2008 Status under Linux Hardware Components Status under Linux Notes Pentium Cual-Core Works TFT Display Works Brightness-Keys ([FN]+[Up], [FN]+[Down]) don&#8217;t work Mobility Radeon X2300 Works 3GB DDR Works 250 GB SATA Hard Drive Works Marvell Technology Group Ltd. 88E8039 PCI-E Fast Ethernet Controller Not Testet Atheros Communications Inc. AR242x 802.11abg Wireless [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=221&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Linux on Laptops" href="http://www.linux-on-laptops.com/"><br />
<img src="http://www.linux-on-laptops.com/images/banner1.gif" border="0" alt="Linux On Laptops" width="468" height="60" /></a></p>
<p>Last updated: 19. October 2008</p>
<p><strong>Status under Linux</strong></p>
<table border="1">
<tbody>
<tr>
<th>Hardware Components</th>
<th>Status under Linux</th>
<th>Notes</th>
</tr>
<tr>
<td>Pentium Cual-Core</td>
<td>Works</td>
<td></td>
</tr>
<tr>
<td>TFT Display</td>
<td>Works</td>
<td>Brightness-Keys ([FN]+[Up], [FN]+[Down]) don&#8217;t work</td>
</tr>
<tr>
<td>Mobility Radeon X2300</td>
<td>Works</td>
<td></td>
</tr>
<tr>
<td>3GB DDR</td>
<td>Works</td>
<td></td>
</tr>
<tr>
<td>250 GB SATA Hard Drive</td>
<td>Works</td>
<td></td>
</tr>
<tr>
<td>Marvell Technology Group Ltd. 88E8039 PCI-E Fast Ethernet Controller</td>
<td>Not Testet</td>
<td></td>
</tr>
<tr>
<td>Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter</td>
<td>Works</td>
<td>Disable Driver in System -&gt; Hardware-Drivers and Reboot</td>
</tr>
<tr>
<td>DVD/CD-ROM Drive</td>
<td>Works</td>
<td></td>
</tr>
<tr>
<td>Battery</td>
<td>Seems to Work</td>
<td></td>
</tr>
<tr>
<td>Audio device: ATI Technologies Inc SBx00 Azalia</td>
<td>Works</td>
<td></td>
</tr>
</tbody>
</table>
<p><strong>This laptop is operating under Kernel version</strong> 2.6.27-6-generic #1 SMP</p>
<p><strong>Basic Installation of Ubuntu:</strong></p>
<p>Downloaded Alternative Install-CD for Xubuntu 8.10 and installed. After installation deactivated atheros-drivers under system -&gt; hardware-drivers.</p>
<p><strong>Unresolved issues</strong></p>
<p>Brightness-control seems not to work.<br />
When Shutting down, the system does halt put the power is not turned off. (resolved by an automatically updated ACPI-System)</p>
<p><strong>Brightness-Workaround</strong></p>
<p>Use the following scripts:</p>
<pre>brightness.sh, invoke with brightness.sh [up|down]</pre>
<blockquote>
<pre>#!/bin/bash

if [ "$1" == "up" ]; then
        echo YourPassWord | sudo -S ~/bin/video_brightnessup.sh
fi

if [ "$1" == "down" ]; then
        echo YourPassWord | sudo -S ~/bin/video_brightnessdown.sh
fi</pre>
</blockquote>
<p>~/bin/videobrightness_up.sh</p>
<blockquote>
<pre>#!/bin/bash

CURRENT=$(grep "current:" /proc/acpi/video/VGA/LCD/brightness |awk '{print $2}')

case "$CURRENT" in

        100)
        echo -n 100 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        80)
        echo -n 100 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        70)
        echo -n 80 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        60)
        echo -n 70 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        50)
        echo -n 60 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        40)
        echo -n 50 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        30)
        echo -n 40 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        10)
        echo -n 30 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        *)
        echo -n 100 &gt; /proc/acpi/video/VGA/LCD/brightness ;
        ;;
esac</pre>
</blockquote>
<p>And simmilar video_brightnessdown.sh</p>
<blockquote>
<pre>#!/bin/bash

CURRENT=$(grep "current:" /proc/acpi/video/VGA/LCD/brightness |awk '{print $2}')

case "$CURRENT" in

        10)
        echo -n 10 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        30)
        echo -n 10 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        40)
        echo -n 30 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        50)
        echo -n 40 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        60)
        echo -n 50 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        70)
        echo -n 60 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        80)
        echo -n 70 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        100)
        echo -n 80 &gt; /proc/acpi/video/VGA/LCD/brightness;
        ;;
        *)
        echo -n 50 &gt; /proc/acpi/video/VGA/LCD/brightness ;
        ;;
esac</pre>
</blockquote>
<p><strong>System Information</strong></p>
<pre><strong>$lspci</strong>
00:00.0 Host bridge: ATI Technologies Inc Radeon Xpress 7930 Host Bridge
00:02.0 PCI bridge: ATI Technologies Inc RS7933 PCI Bridge
00:05.0 PCI bridge: ATI Technologies Inc Device 7935
00:06.0 PCI bridge: ATI Technologies Inc RS7936 PCI Bridge
00:07.0 PCI bridge: ATI Technologies Inc Device 7937
00:12.0 SATA controller: ATI Technologies Inc SB600 Non-Raid-5 SATA
00:13.0 USB Controller: ATI Technologies Inc SB600 USB (OHCI0)
00:13.1 USB Controller: ATI Technologies Inc SB600 USB (OHCI1)
00:13.2 USB Controller: ATI Technologies Inc SB600 USB (OHCI2)
00:13.3 USB Controller: ATI Technologies Inc SB600 USB (OHCI3)
00:13.4 USB Controller: ATI Technologies Inc SB600 USB (OHCI4)
00:13.5 USB Controller: ATI Technologies Inc SB600 USB Controller (EHCI)
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 14)
00:14.1 IDE interface: ATI Technologies Inc SB600 IDE
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
00:14.3 ISA bridge: ATI Technologies Inc SB600 PCI to LPC Bridge
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
01:00.0 VGA compatible controller: ATI Technologies Inc M64-S [Mobility Radeon X2300]
02:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
05:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8039 PCI-E Fast Ethernet Controller (rev 15)</pre>
<pre><strong>$lsmod</strong>
Module                  Size  Used by
nls_iso8859_1          12032  1
nls_cp437              13696  1
vfat                   18816  1
fat                    57376  1 vfat
isofs                  40100  0
udf                    88356  0
crc_itu_t              10112  1 udf
ipv6                  263972  10
binfmt_misc            16904  1
radeon                147616  2
drm                    86056  3 radeon
af_packet              25728  4
bridge                 56980  0
stp                    10628  1 bridge
bnep                   20480  2
rfcomm                 44432  4
l2cap                  30464  16 bnep,rfcomm
bluetooth              61924  5 bnep,rfcomm,l2cap
ppdev                  15620  0
acpi_cpufreq           15500  1
cpufreq_conservative    14600  0
cpufreq_stats          13188  0
cpufreq_userspace      11396  0
cpufreq_ondemand       14988  1
freq_table             12672  3 acpi_cpufreq,cpufreq_stats,cpufreq_ondemand
cpufreq_powersave       9856  0
pci_slot               12552  0
wmi                    14504  0
container              11520  0
sbs                    19464  0
sbshc                  13440  1 sbs
iptable_filter         10752  0
ip_tables              19600  1 iptable_filter
x_tables               22916  1 ip_tables
parport_pc             39204  0
lp                     17156  0
parport                42604  3 ppdev,parport_pc,lp
loop                   23180  2
joydev                 18368  0
snd_hda_intel         381488  5
snd_pcm_oss            46848  0
snd_mixer_oss          22784  1 snd_pcm_oss
snd_pcm                83204  3 snd_hda_intel,snd_pcm_oss
snd_seq_dummy          10884  0
snd_seq_oss            38528  0
evdev                  17696  13
psmouse                45200  0
snd_seq_midi           14336  0
serio_raw              13444  0
snd_rawmidi            29824  1 snd_seq_midi
snd_seq_midi_event     15232  2 snd_seq_oss,snd_seq_midi
snd_seq                57776  6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
pcspkr                 10624  0
snd_timer              29960  3 snd_pcm,snd_seq
snd_seq_device         15116  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
snd                    63268  17 snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore              15328  1 snd
snd_page_alloc         16136  2 snd_hda_intel,snd_pcm
arc4                    9984  2
ecb                    10880  2
crypto_blkcipher       25476  1 ecb
video                  25104  0
output                 11008  1 video
ath5k                 108032  0
mac80211              216820  1 ath5k
led_class              12164  1 ath5k
cfg80211               32392  2 ath5k,mac80211
battery                18436  0
ac                     12292  0
button                 14224  0
i2c_piix4              16144  0
i2c_core               31892  1 i2c_piix4
ati_agp                14988  0
agpgart                42184  2 drm,ati_agp
shpchp                 37908  0
pci_hotplug            35236  1 shpchp
ext3                  133256  2
jbd                    55444  1 ext3
mbcache                16004  1 ext3
usbhid                 35840  0
hid                    50560  1 usbhid
sr_mod                 22212  1
cdrom                  43168  1 sr_mod
pata_acpi              12160  0
pata_atiixp            12800  1
sd_mod                 42264  4
crc_t10dif              9984  1 sd_mod
sg                     39732  0
ohci_hcd               31888  0
ata_generic            12932  0
ehci_hcd               43276  0
ahci                   37132  3
usbcore               148848  4 usbhid,ohci_hcd,ehci_hcd
libata                177312  4 pata_acpi,pata_atiixp,ata_generic,ahci
sky2                   53508  0
scsi_mod              155212  4 sr_mod,sd_mod,sg,libata
dock                   16656  1 libata
thermal                23708  0
processor              43052  4 acpi_cpufreq,thermal
fan                    12548  0
fbcon                  47648  0
tileblit               10880  1 fbcon
font                   16512  1 fbcon
bitblit                13824  1 fbcon
softcursor              9984  1 bitblit
uvesafb                34788  0
fuse                   60828  1</pre>
<p><strong>Contact Information</strong></p>
<p>Send <a href="mailto:jarrn@web.de">Mail</a> or comment below.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrn.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrn.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrn.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrn.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrn.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrn.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrn.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrn.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=221&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrn.wordpress.com/2008/10/09/installing-ubuntu-810-beta-on-samsung-sa1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e91c1d1d90b842d8b4c6f19039a1d18?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jarrn</media:title>
		</media:content>

		<media:content url="http://www.linux-on-laptops.com/images/banner1.gif" medium="image">
			<media:title type="html">Linux On Laptops</media:title>
		</media:content>
	</item>
		<item>
		<title>Bodo Wartke</title>
		<link>http://jarrn.wordpress.com/2007/09/14/bodo-wartke/</link>
		<comments>http://jarrn.wordpress.com/2007/09/14/bodo-wartke/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 12:38:26 +0000</pubDate>
		<dc:creator>jarrn</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://jarrn.wordpress.com/2007/09/14/bodo-wartke/</guid>
		<description><![CDATA[Ein Klick auf mein &#8222;Zufallsblog&#8220;-Bookmark brachte mich heute auf die Seite von Patrick Kontschak. Der Junge ist Christ, was unter Deutschsprachigen Blogs ja eh schonmal nicht so häufig vorkommt, sondern hat auch noch Geschmack. Unter anderem verlinkt er hier einen Musiker namens Bodo Wartke. Ich hab bei MyVideo ein bisschen rumgesucht und ein paar wirklich [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=217&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ein Klick auf mein <a href="http://wordpress.com/next/">&#8222;Zufallsblog&#8220;-Bookmark</a> brachte mich heute auf die Seite von <a href="http://kl3ks.wordpress.com/">Patrick Kontschak</a>. Der Junge ist Christ, was unter Deutschsprachigen Blogs ja eh schonmal nicht so häufig vorkommt, sondern hat auch noch Geschmack. Unter anderem verlinkt er <a href="http://kl3ks.wordpress.com/2007/08/28/pcdenzfall/">hier</a> einen Musiker namens Bodo Wartke. Ich hab bei MyVideo ein bisschen rumgesucht und ein paar wirklich tolle Lieder &#8211; Stimme und Klavier &#8211; gefunden. Unbedingt hörenswert:</p>
<ul>
<li><a href="http://www.myvideo.de/watch/1947661">PCdenzfall</a>: Ein Blues über Microsoft und Apple &#8211; Verappelt Microsoft!</li>
<li><a href="http://www.myvideo.de/watch/2241903">An Dich</a>: &#8222;Andere Mütter haben auch schöne Töchter &#8211; aber auch schöne Söhne.&#8220; Recht hat er, der Dingsbums! Wer mich kennt, weiß wahrscheinlich, an wen ich bei dem Text denken muss.</li>
<li><a href="http://www.myvideo.de/watch/1994402">Ich trau mich nicht</a>: Handelt vom Schwarzfahren (und reimt sich seit der Währungsreform nicht mehr)</li>
<li><a href="http://www.myvideo.de/watch/1947877">Ja, Schatz!</a>: Ein Liebeslied der Kategorie drei: &#8222;Seit der Hochzeit hat es sich mit dem ledig sein erledigt&#8230;&#8220;</li>
<li><a href="http://www.myvideo.de/watch/1929554">Liebeslied</a>: Er lernt extra viel zu viele Sprachen, um seiner Angebeteten seine Liebe zu erklären. (Achtung, Holländerfeindlich &#8211; möglicherweise auch gegen andere Nationen, aber da hab ich den Text nicht verstanden)</li>
<li><a href="http://www.myvideo.de/watch/1907977">Claudia</a>: (Kommt ganz ohne schwarze Tasten aus) Ein Lied für die tollste Frau der Welt, auch wenn man das nicht beurteilen kann.</li>
<li><a href="http://www.myvideo.de/watch/1907074">Monica</a>: Protestsong. Handelt von Monica Lewinsky</li>
<li><a href="http://www.myvideo.de/watch/1906899">Was ich gerade denke</a>: Na wovon handelt das wohl? Och, nix.</li>
<li><a href="http://www.myvideo.de/watch/1788322">Da muß er durch</a>: &#8222;Dieses Lied ist das Ergebnis einer Wette, die ich besser nicht gewettet hätte &#8230;&#8220;</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jarrn.wordpress.com/217/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jarrn.wordpress.com/217/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrn.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrn.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrn.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrn.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrn.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrn.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrn.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrn.wordpress.com/217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=217&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrn.wordpress.com/2007/09/14/bodo-wartke/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e91c1d1d90b842d8b4c6f19039a1d18?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jarrn</media:title>
		</media:content>
	</item>
		<item>
		<title>1089</title>
		<link>http://jarrn.wordpress.com/2007/03/29/1089/</link>
		<comments>http://jarrn.wordpress.com/2007/03/29/1089/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 13:34:07 +0000</pubDate>
		<dc:creator>jarrn</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://jarrn.wordpress.com/2007/03/29/1089/</guid>
		<description><![CDATA[Ich hatte hier eine kleine Rechenaufgabe rund um die Zahl 1089 gestellt. Hier nochmal die Aufgabe in kurz: Man denke sich eine 3-stellige Zahl. Irgendeine, bei der sich die erste und letzte Ziffer unterscheiden. Jetzt kehre man sie um und subtrahiere die kleinere von der größeren. Danach vertausche man die erste Ziffer der neuen 3-stelligen [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=198&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich hatte <a href="http://jarrn.wordpress.com/2007/03/27/magische-zauberkugel/">hier</a> eine kleine Rechenaufgabe rund um die Zahl 1089 gestellt. Hier nochmal die Aufgabe in kurz:</p>
<blockquote><p>Man denke sich eine 3-stellige Zahl. Irgendeine, bei der sich die erste und letzte Ziffer unterscheiden. Jetzt kehre man sie um und subtrahiere die kleinere von der größeren. Danach vertausche man die erste Ziffer der neuen 3-stelligen Zahl mit der letzten und addiere die beiden. Heraus kommt 1089</p></blockquote>
<p><strong>Auflösung</strong><br />
Ich weiß ja nicht, wie viele von euch sich an der Übung versucht haben. Die Lösung ist eigentlich ähnlich einfach wie die Lösung der <a href="http://jarrn.wordpress.com/2007/03/27/magische-zauberkugel/">magischen Zauberkugel</a>.<br />
Diesmal nennen wir unsere Zahl <img src='http://s0.wp.com/latex.php?latex=ABC&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='ABC' title='ABC' class='latex' />, sie hat den Wert <img src='http://s0.wp.com/latex.php?latex=100A%2B10B%2BC&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='100A+10B+C' title='100A+10B+C' class='latex' />  und ihre Umkehrung den Wert <img src='http://s0.wp.com/latex.php?latex=100C%2B10B%2BA&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='100C+10B+A' title='100C+10B+A' class='latex' />, abziehen ergibt dann (wenn wir davon ausgehen, dass <img src='http://s0.wp.com/latex.php?latex=ABC+%3E+CBA&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='ABC &gt; CBA' title='ABC &gt; CBA' class='latex' />, ansonsten einfach mit der anderen Zahl anfangen) <img src='http://s0.wp.com/latex.php?latex=99%28A-C%29&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='99(A-C)' title='99(A-C)' class='latex' />. Schön, das Ergebnis ist also durch 99 teilbar. Wir nennen diese Zahl, die wir ja nun zu ihrer Umkehrung addieren sollen, einfach mal <img src='http://s0.wp.com/latex.php?latex=LMN&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='LMN' title='LMN' class='latex' /> und ihre Umkehrung <img src='http://s0.wp.com/latex.php?latex=NML&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='NML' title='NML' class='latex' />. Sie ist genau dann durch 99 teilbar, wenn sie gleichzeitig durch 11 und durch 9 teilbar ist. Durch 9 ist sie teilbar, wenn ihre Quersumme durch 9 teilbar ist, wenn also gilt <img src='http://s0.wp.com/latex.php?latex=L%2BM%2BN+%3D+9&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='L+M+N = 9' title='L+M+N = 9' class='latex' /> oder <img src='http://s0.wp.com/latex.php?latex=L%2BM%2BN%3D18&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='L+M+N=18' title='L+M+N=18' class='latex' /> (weil ja alle drei Ziffern zwischen 1 und 9 liegen und <img src='http://s0.wp.com/latex.php?latex=L%5Cnot%3DM&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='L&#92;not=M' title='L&#92;not=M' class='latex' />). Durch 11 ist sie teilbar, wenn <img src='http://s0.wp.com/latex.php?latex=L%2BN+%3D+M&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='L+N = M' title='L+N = M' class='latex' /> gilt. Es ergeben sich also insgesamt zwei Möglichkeiten: <img src='http://s0.wp.com/latex.php?latex=LN%3DM%3D4%2C5&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='LN=M=4,5' title='LN=M=4,5' class='latex' /> (können wir ausschließen, weil die mittlere Ziffer <img src='http://s0.wp.com/latex.php?latex=M&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='M' title='M' class='latex' /> nicht 4,5 sein kann) und <img src='http://s0.wp.com/latex.php?latex=L%2BN%3DM%3D9&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='L+N=M=9' title='L+N=M=9' class='latex' /> (das muss also gelten). Jetzt führen wir schriftliches Addieren von <img src='http://s0.wp.com/latex.php?latex=LMN+%2B+NML&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='LMN + NML' title='LMN + NML' class='latex' /> durch und berücksichtigen, dass <img src='http://s0.wp.com/latex.php?latex=L%2BN+%3D+9&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='L+N = 9' title='L+N = 9' class='latex' /> und <img src='http://s0.wp.com/latex.php?latex=M%3D9&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='M=9' title='M=9' class='latex' /> gelten. Ergebnis ist: 1089.</p>
<p>Eine andere Lösung findet sich in <a href="http://www.amazon.de/1089-Wunder-Zahlen-Reise-Mathematik/dp/3866470207/ref=pd_bbs_sr_1/028-9780146-3109300?ie=UTF8&amp;s=books&amp;qid=1175174512&amp;sr=8-1">1089 oder das Wunder der Zahlen</a> von David Acheson. Das Buch habe ich in etwa zwei Stunden durchgelesen und war begeistert. Es ist ideal für jeden, der sich mal für etwas anderes als Schul-Mathematik interessiert und das nicht gleich studieren will.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jarrn.wordpress.com/198/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jarrn.wordpress.com/198/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrn.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrn.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrn.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrn.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrn.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrn.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrn.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrn.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=198&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrn.wordpress.com/2007/03/29/1089/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e91c1d1d90b842d8b4c6f19039a1d18?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jarrn</media:title>
		</media:content>
	</item>
		<item>
		<title>Magische Zauberkugel</title>
		<link>http://jarrn.wordpress.com/2007/03/27/magische-zauberkugel/</link>
		<comments>http://jarrn.wordpress.com/2007/03/27/magische-zauberkugel/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 20:42:18 +0000</pubDate>
		<dc:creator>jarrn</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://jarrn.wordpress.com/2007/03/27/magische-zauberkugel/</guid>
		<description><![CDATA[Ich habe hier (und hier, hier, hier) den Link zu einer &#8222;magischen Zauberkugel&#8220; gefunden. Interessant, dachte ich mir, mal sehen ob du herausfindest, wie das Ding funktioniert. (Ja, das reizt mich, sowas) Und was soll ich sagen: Ganz einfach. Nehmen wir uns also mal eine zweistellige Zahl und nennen sie , also erste Ziffer , [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=197&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich habe <a href="http://netztaucher.wordpress.com/2007/01/19/magische-zauberkugel/">hier</a> (und <a href="http://grosenbaum.wordpress.com/2006/09/07/magische-zauberkugel/">hier</a>, <a href="http://janek.php4you.de/2007/03/04/unglaublich/">hier</a>, <a href="http://www.informatik-student.de/2006/08/25/die-magische-zauberkugel/">hier</a>) den Link zu einer &#8222;<a href="http://www.messe-ideen.de/upload/magische-zauberkugel.swf">magischen Zauberkugel</a>&#8220; gefunden. Interessant, dachte ich mir, mal sehen ob du herausfindest, wie das Ding funktioniert. (Ja, das reizt mich, sowas) Und was soll ich sagen: Ganz einfach.</p>
<p>Nehmen wir uns also mal eine zweistellige Zahl und nennen sie <img src='http://s0.wp.com/latex.php?latex=AB&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='AB' title='AB' class='latex' />, also erste Ziffer <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='A' title='A' class='latex' />, zweite Ziffer <img src='http://s0.wp.com/latex.php?latex=B&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='B' title='B' class='latex' />. Welchen Wert hat diese Zahl nun, wenn wir damit rechnen wollen? Richtig, sie besteht aus <img src='http://s0.wp.com/latex.php?latex=A&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='A' title='A' class='latex' /> Zehnern und <img src='http://s0.wp.com/latex.php?latex=B&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='B' title='B' class='latex' /> Einern, hat also den Wert <img src='http://s0.wp.com/latex.php?latex=10%5Ccdot+A+%2B+1%5Ccdot+B&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='10&#92;cdot A + 1&#92;cdot B' title='10&#92;cdot A + 1&#92;cdot B' class='latex' />. Weiter geht die Anweisung, man solle die beiden Ziffern der Zahl zusammenzählen, ergibt <img src='http://s0.wp.com/latex.php?latex=A%2BB&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='A+B' title='A+B' class='latex' />. Jetzt voneinander abziehen (Subtrahieren, Abziehen tut man Hasen!) ergibt: <img src='http://s0.wp.com/latex.php?latex=%2810%5Ccdot+A+%2B+B%29-%28A%2BB%29+%3D+9%5Ccdot+A&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='(10&#92;cdot A + B)-(A+B) = 9&#92;cdot A' title='(10&#92;cdot A + B)-(A+B) = 9&#92;cdot A' class='latex' />. Folglich ist die Ergebnis-Zahl durch 9 Teilbar. Sehen wir uns nochmal die &#8222;magische&#8220; Zeichenliste neben der Kugel an und vergleichen wir die Zeichen, die neben den durch 9 teilbaren Zahlen 9, 18, 27, 36, 45, 54, 63, 72 und 81 stehen (Es gilt ja <img src='http://s0.wp.com/latex.php?latex=1+%5Cle+A+%5Cle+9&amp;bg=ffffff&amp;fg=333333&amp;s=0' alt='1 &#92;le A &#92;le 9' title='1 &#92;le A &#92;le 9' class='latex' /> und damit liegt das Ergebnis zwischen 9 und 81). Und jetzt klicken wir mal auf die &#8222;magische&#8220; Kugel und wundern uns, welches Zeichen sie zeigt.</p>
<p><strong>So, und jetzt die Übung für den geneigten Studenten:</strong> Wir wählen eine dreistellige Zahl (erste und letzte Ziffer müssen unterschiedlich sein), kehren sie um (aus ABC mach CBA), ziehen die kleinere von der größeren ab (wie den Hasen). Das Ergebnis kehren wir wieder um und addieren das Ergebnis zu seiner Umkehrung. Das Letzte Ergebnis heißt jetzt 1089.</p>
<p>Die <strong>Lösung</strong> gibt es <a href="/2007/03/29/1089">hier</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jarrn.wordpress.com/197/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jarrn.wordpress.com/197/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrn.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrn.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrn.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrn.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrn.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrn.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrn.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrn.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=197&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrn.wordpress.com/2007/03/27/magische-zauberkugel/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e91c1d1d90b842d8b4c6f19039a1d18?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jarrn</media:title>
		</media:content>
	</item>
		<item>
		<title>Physik B</title>
		<link>http://jarrn.wordpress.com/2006/07/31/physik-b/</link>
		<comments>http://jarrn.wordpress.com/2006/07/31/physik-b/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 11:20:14 +0000</pubDate>
		<dc:creator>jarrn</dc:creator>
				<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">https://jarrn.wordpress.com/2006/07/31/physik-b/</guid>
		<description><![CDATA[Juhu! Ich habe Physik B &#8211; Elektrodynamik und Optik bestanden! Wen es interessiert, hier die Klausur als Gedächtnisprotokoll zum Selberrechnen: Aufgabe 1: Gegeben sei eine Ringförmige Ladungsverteilung auf einem Kreis in der x-y-Ebene um die z-Achse mit Linienladungsdichte sigma. Berechnen sie für Punkte auf der z-Achse die elektrische Feldstärke. Aufgabe 2: + --------------------------- +-------------------------+ &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=9&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Juhu! Ich habe Physik B &#8211; Elektrodynamik und Optik bestanden!</p>
<p>Wen es interessiert, hier die Klausur als Gedächtnisprotokoll zum Selberrechnen:<span id="more-9"></span><br />
<b> Aufgabe 1:</b></p>
<p>Gegeben sei eine Ringförmige Ladungsverteilung auf einem Kreis in der  x-y-Ebene um die z-Achse mit Linienladungsdichte sigma. Berechnen sie  für Punkte auf der z-Achse die elektrische Feldstärke.</p>
<p><b>Aufgabe 2:</b></p>
<pre>+
---------------------------
               +-------------------------+
               |           epsilon_r     |
               +-------------------------+
---------------------------
-</pre>
<p>in einen Kondensator der Abmessungen L x b x d wird bei konstaner  Spannung ein Kern mit DK epsilon_r eingeführt. Sei x die Länge des  Kondensators, in den der Kern noch nicht eingeführt wurde. Berechnen Sie<br />
a) Die Kapazität des Kondensators C(x) Tipp: Fassen sie das System als  zwei parallelgeschaltete Kondensatoren auf<br />
b) die Feld-Energie<br />
c) die Kraft</p>
<p><b>Aufgabe 3:</b></p>
<p>Ein Kondensator entläd sich über einen Widerstand. Berechnen sie I(t).  Zu welchem Zeitpunkt ist der Strom auf die Hälfte abgefallen, wieviel  Leistung wurde bis dahin umgesetzt?<br />
Tipp: Stellen Sie die Differentialgleichung für I(t) auf und setzen sie  I(t)=I_0 exp(lambda t) an.</p>
<p><b>Aufgabe 4:</b></p>
<p>Gegeben sei ein Hohlleiter mit Radien R_1 (innen) und R_2 (aussen). In  dem ganzen Leiter fließt über die gesamte Querschnittsfläche homogen  verteilt der Strom I. Zeigen sie mit Hilfe des Ampereschen Gesetzes,  dass für das Magnetfeld in Abhängigkeit vom Radius gilt:<br />
B(r) = 0                    für r &lt; R_1<br />
B(r) = µI/2PI * (r<sup>2</sup>-R_1<sup>2</sup>)/(R_1<sup>2</sup>-R_2<sup>2</sup>)    für R_1 &lt; r &lt; R_2<br />
B(r) = µI/2PI * 1/r<sup>2</sup></p>
<p>(Bei den Formeln bin ich mir ziemlich unsicher)</p>
<p><b>Aufgabe 5:</b></p>
<p>Ein Elektron wird in ein homogenes Magnetfeld geschossen. Zeigen sie,  dass das Elektron eine Spiralbewegung beschreibt, es sei denn, es bewegt  sich parallel zum Magnetfeld. Welche Winkelgeschwindigkeit ergibt sich?<br />
Tipp: Stellen Sie die Bewegungsgleichung auf und setzen Sie</p>
<pre>'   / vsenkr * sin(wt) \
v = | vsenkr * cos(wt) | an.
    \    vparral       /</pre>
<p><b>Aufgabe 6:</b></p>
<pre>-------------------------------------------
'-,  eps                                  /
   '-,                                   /
      '-,              n=sqrt(2)        /
         '-,                           /
            '-,                       /
             ,-'-,                   /
          ,-'     '-,               /
       ,-'           '-,           /
                        '-,   ,., /  n=1
                           '-, o /
                              '-'</pre>
<p>Ein Winkel wird in ein Spitzwinkliges Prisma mit Brechungsindex n unter  einem Winkel von 45° Eingestrahlt. Sei eps=30°.<br />
a) Berechnen sie den Brechungswinkel bei Eintritt in das Prisma<br />
b) Prüfen Sie,ob an der Hypertenuse die Bedingung für Totalreflexion  erfüllt ist und berechnen Sie den Reflexionswinkel.<br />
c) Unter welchem Winkel verlässt der Lichtstrahl das Prisma. Welchen  Winkel delta schließt der ausfallende mit dem einfallenden Strahl ein?<br />
Hinweils: sin(30°) = 1/2    sin(45°) = 1/sqrt(2)<br />
Totalreflexion: sin(alpha_Grenz) = n2/n1</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jarrn.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jarrn.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jarrn.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jarrn.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jarrn.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jarrn.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jarrn.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jarrn.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jarrn.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jarrn.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jarrn.wordpress.com&amp;blog=330107&amp;post=9&amp;subd=jarrn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jarrn.wordpress.com/2006/07/31/physik-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e91c1d1d90b842d8b4c6f19039a1d18?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">jarrn</media:title>
		</media:content>
	</item>
	</channel>
</rss>
