<?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>schwobeseggl.de &#187; PC &amp; Accessoires</title>
	<atom:link href="http://schwobeseggl.de/category/pc-accessoires/feed/" rel="self" type="application/rss+xml" />
	<link>http://schwobeseggl.de</link>
	<description>ein Neigschmecktr in Baden</description>
	<lastBuildDate>Wed, 18 Apr 2012 15:48:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>emerge python</title>
		<link>http://schwobeseggl.de/2011/03/08/emerge-python/</link>
		<comments>http://schwobeseggl.de/2011/03/08/emerge-python/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 07:32:05 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sonstiges]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=3033</guid>
		<description><![CDATA[So, damit ich das nicht jedes Mal neu ergooglen muss, hier eine Erinnerung für mich selbst: emerge -av python:2.5 python:2.6 &#160;]]></description>
			<content:encoded><![CDATA[<p>So, damit ich das nicht jedes Mal neu ergooglen muss, hier eine Erinnerung für mich selbst:</p>
<blockquote><p><code>emerge -av python:2.5 python:2.6</code></p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2011/03/08/emerge-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bitlbee, jabber group conference</title>
		<link>http://schwobeseggl.de/2010/12/03/bitlbee-jabber-group-conference/</link>
		<comments>http://schwobeseggl.de/2010/12/03/bitlbee-jabber-group-conference/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 09:28:24 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=3006</guid>
		<description><![CDATA[Nur damit ich das nicht wieder vergesse: account list // account id rausfinden chat add &#60;account id&#62; room@conference.mydomain.de #lokalerraum /join #lokalerraum]]></description>
			<content:encoded><![CDATA[<p>Nur damit ich das nicht wieder vergesse:</p>
<pre>account list // account id rausfinden
chat add &lt;account id&gt; room@conference.mydomain.de #lokalerraum
/join #lokalerraum</pre>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/12/03/bitlbee-jabber-group-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geburtstage</title>
		<link>http://schwobeseggl.de/2010/11/05/geburtstage/</link>
		<comments>http://schwobeseggl.de/2010/11/05/geburtstage/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 00:36:09 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sonstiges]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2949</guid>
		<description><![CDATA[Inzwischen hab ich eine einigermassen gepflegte Kontaktliste, Google Contacts sei Dank. Früher hatte ich ein kleines Skript das über meine Datenbank gegangen ist und die heutigen und morgigen Geburtstage rausgesucht hat und per E-Mail verschickt hat. Hier mal die Version für Google Contacts/Calendar: Potthässlich, aber funktional. Man braucht dafür zwei Dinge https://code.google.com/p/googlecl/ http://www.google.com/support/calendar/bin/answer.py?hl=en&#38;answer=37098 -&#62; More [...]]]></description>
			<content:encoded><![CDATA[<p>Inzwischen hab ich eine einigermassen gepflegte Kontaktliste, Google Contacts sei Dank. Früher hatte ich ein kleines Skript das über meine Datenbank gegangen ist und die heutigen und morgigen Geburtstage rausgesucht hat und per E-Mail verschickt hat. Hier mal die Version für Google Contacts/Calendar:</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash
TODAY=$(date +%Y-%m-%d) # 2010-03-30
TOMORROW=$(date --date=tomorrow +%Y-%m-%d)

TODAY2=$(echo ${TODAY} | cut -d &quot;-&quot; -f 2,3 )
TOMORROW2=$(echo ${TOMORROW} | cut -d &quot;-&quot; -f 2,3 )

YEAR=$(echo ${TODAY} | cut -d &quot;-&quot; -f 1 )
FOUND=&quot;false&quot;

google calendar list --cal '.*birthday.*' --date ${TODAY},${TOMORROW} --field title | grep &quot;^[^[]&quot; | sed -e &quot;s/'s birthday//g&quot; &gt; /tmp/file.txt
while read line; do
  LASTNAME=$(echo $line | rev | cut -d &quot; &quot; -f 1 | rev)
  BIRTHDAY=$(google contacts list &quot;$LASTNAME&quot; --fields birthday | grep &quot;${TODAY2}\|${TOMORROW2}&quot;)
  if [ &quot;${BIRTHDAY}&quot; != &quot;&quot; ]; then
    BIRTHYEAR=$(echo ${BIRTHDAY} | cut -d &quot;-&quot; -f 1)
    echo &quot;${line}: ${BIRTHDAY} -&gt; $(( ${YEAR} - ${BIRTHYEAR} )). Geburtstag&quot;
    FOUND=&quot;true&quot;
  fi
done &lt; /tmp/file.txt

if [ &quot;${FOUND}&quot; == &quot;false&quot; ]; then
  echo &quot;no birthdays&quot;
fi

rm /tmp/file.txt
</pre>
<p>Potthässlich, aber funktional. Man braucht dafür zwei Dinge</p>
<ol>
<li><a  href="https://code.google.com/p/googlecl/">https://code.google.com/p/googlecl/</a></li>
<li><a  href="http://www.google.com/support/calendar/bin/answer.py?hl=en&#038;answer=37098">http://www.google.com/support/calendar/bin/answer.py?hl=en&amp;answer=37098</a> -&gt; More -&gt; "Contacts' birthdays and events"</li>
</ol>
<p>Wird bei mir per Cronjob aufgerufen und produziert dann beispielsweise sowas:</p>
<pre>Peter Test: 1981-11-05 -&gt; 29. Geburtstag
Karlheinz Mustermann: 2009-11-06 -&gt; 1. Geburtstag</pre>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/11/05/geburtstage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird Addons</title>
		<link>http://schwobeseggl.de/2010/08/19/thunderbird-addons/</link>
		<comments>http://schwobeseggl.de/2010/08/19/thunderbird-addons/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 08:46:28 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC & Accessoires]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2793</guid>
		<description><![CDATA[Aktivierte Erweiterungen innerhalb von Thunderbird. Nur das ich die halt mal irgendwo dokumentiert hab Contacts 0.3.6 GlodaQuilla 0.3.2 Lightning 1.0b2pre Lightning Nightly Updater (Unofficial) 0.10.100315 MR Tech Toolkit 6.0.4 OAuthorizer 0.1.2 Provider for Google Calendar 0.7pre Quote Colors 0.3 random(signature) 1.4 Sieve 0.1.10 ThunderBirthDay 0.3.3 Zindus 0.8.22.20100706.205324]]></description>
			<content:encoded><![CDATA[<p><span class="ExtensionHeader">Aktivierte Erweiterungen innerhalb von Thunderbird. Nur das ich die halt mal irgendwo dokumentiert hab <img src='http://schwobeseggl.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<ul>
<li><a  href="http://mozillalabs.com/contacts/" target="_blank">Contacts</a> 0.3.6</li>
<li><a  href="http://www.mesquilla.com/extensions/glodaquilla" target="_blank">GlodaQuilla</a> 0.3.2</li>
<li> <a  href="http://www.mozilla.org/projects/calendar/releases/lightning1.0b2pre.html" target="_blank" class="broken_link">Lightning</a> 1.0b2pre</li>
<li> <a  href="http://ilpolipo.free.fr/addons/?sn=lnu" target="_blank">Lightning Nightly Updater (Unofficial)</a> 0.10.100315</li>
<li> <a  href="http://www.mrtech.com/extensions/" target="_blank">MR Tech Toolkit</a> 6.0.4</li>
<li> <a  href="http://www.google.com/search?q=Thunderbird%20OAuthorizer" target="_blank">OAuthorizer</a> 0.1.2</li>
<li> <a  href="https://addons.mozilla.org/thunderbird/addon/4631" target="_blank">Provider for Google Calendar</a> 0.7pre</li>
<li> <a  href="http://quotecolors.mozdev.org/" target="_blank">Quote Colors</a> 0.3</li>
<li> <a  href="https://addons.mozilla.org/af/thunderbird/addon/6632/" target="_blank">random(signature)</a> 1.4</li>
<li> <a  href="http://sieve.mozdev.org/" target="_blank">Sieve</a> 0.1.10</li>
<li> <a  href="http://ingomueller.net/mozilla/thunderbirthday" target="_blank">ThunderBirthDay</a> 0.3.3</li>
<li> <a  href="http://www.zindus.com/" target="_blank">Zindus</a> 0.8.22.20100706.205324</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/08/19/thunderbird-addons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$N zufällig gewählte Dateien</title>
		<link>http://schwobeseggl.de/2010/07/07/n-zufallig-gewahlte-dateien/</link>
		<comments>http://schwobeseggl.de/2010/07/07/n-zufallig-gewahlte-dateien/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 11:01:46 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Arbeit]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sonstiges]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2781</guid>
		<description><![CDATA[$N wäre hier die Anzahl der Dateien die man haben will ls &#124; sort -R &#124; tail -$N]]></description>
			<content:encoded><![CDATA[<p>$N wäre hier die Anzahl der Dateien die man haben will</p>
<pre lang="bash">ls | sort -R | tail -$N</pre>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/07/07/n-zufallig-gewahlte-dateien/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ICE</title>
		<link>http://schwobeseggl.de/2010/03/22/ice/</link>
		<comments>http://schwobeseggl.de/2010/03/22/ice/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 09:12:53 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[PC & Accessoires]]></category>
		<category><![CDATA[Sonstiges]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2677</guid>
		<description><![CDATA[gibt es in einer neuen Version (1.3.3). Wer das Programm nicht kennt, ich hab schonmal darüber berichtet. Changelog: Accelerated stitching on multiple CPU cores Ability to publish, view, and share panoramas on the Photosynth web site Support for "structured panoramas" — panoramas consisting of hundreds of photos taken in a rectangular grid of rows and [...]]]></description>
			<content:encoded><![CDATA[<p>gibt es in einer neuen Version (1.3.3). Wer das Programm nicht kennt, ich hab <a  href="http://schwobeseggl.de/2009/04/07/panoramafotos/">schonmal darüber berichtet</a>.</p>
<p>Changelog:</p>
<ul>
<li>Accelerated stitching on multiple CPU cores</li>
<li>Ability to publish, view, and share panoramas on the Photosynth web site</li>
<li>Support for "structured panoramas" — panoramas consisting of hundreds of photos taken in a rectangular grid of rows and columns (usually by a robotic device like the GigaPan tripod heads)</li>
<li>No image size limitation — stitch gigapixel panoramas</li>
<li>Support for input images with 8 or 16 bits per component</li>
</ul>
<p>Download: <a  href="http://research.microsoft.com/en-us/um/redmond/groups/ivm/ice/">http://research.microsoft.com/en-us/um/redmond/groups/ivm/ice/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/03/22/ice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 und Openoffice 3.2.0</title>
		<link>http://schwobeseggl.de/2010/02/19/ubuntu-9-10-und-openoffice-3-2-0/</link>
		<comments>http://schwobeseggl.de/2010/02/19/ubuntu-9-10-und-openoffice-3-2-0/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:30:52 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Openoffice]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2642</guid>
		<description><![CDATA[Wozu selbst viel schreiben, wenn das andere schon für einen machen: http://www.braekling.de/personal-interests/2689-openoffice-org-3-2-0-unter-ubuntu-9-10.html]]></description>
			<content:encoded><![CDATA[<p>Wozu selbst viel schreiben, wenn das andere schon für einen machen:</p>
<p><a  href="http://www.braekling.de/personal-interests/2689-openoffice-org-3-2-0-unter-ubuntu-9-10.html">http://www.braekling.de/personal-interests/2689-openoffice-org-3-2-0-unter-ubuntu-9-10.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/02/19/ubuntu-9-10-und-openoffice-3-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP im Firefox mitschneiden</title>
		<link>http://schwobeseggl.de/2010/01/26/http-im-firefox-mitschneiden/</link>
		<comments>http://schwobeseggl.de/2010/01/26/http-im-firefox-mitschneiden/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 13:28:09 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Arbeit]]></category>
		<category><![CDATA[PC & Accessoires]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[HTTP]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2632</guid>
		<description><![CDATA[Nachdem ich fast immer "Live HTTP Headers" benutzt hatte, kam ich jetzt mit der FF 3.6 Version in Schwierigkeiten. Die Erweiterung ist nicht kompatibel. Das Problem könnte man zwar auch relativ leicht lösen (einfach die kompatiblen Versionen anpassen in der Erweiterung), aber ich nehm sowas gerne als Anlass mal nach was Neuem zu suchen Lösung: [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem ich fast immer "<a  href="https://addons.mozilla.org/de/firefox/addon/3829">Live HTTP Headers</a>" benutzt hatte, kam ich jetzt mit der FF 3.6 Version in Schwierigkeiten. Die Erweiterung ist nicht kompatibel. Das Problem könnte man zwar auch relativ leicht lösen (einfach die kompatiblen Versionen anpassen in der Erweiterung), aber ich nehm sowas gerne als Anlass mal nach was Neuem zu suchen <img src='http://schwobeseggl.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Lösung: <a  href="https://addons.mozilla.org/en-US/firefox/addon/6647">HttpFox</a>. Gefällt mir. Macht genau das was ich brauch <img src='http://schwobeseggl.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/01/26/http-im-firefox-mitschneiden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF Presenter Console 1.1</title>
		<link>http://schwobeseggl.de/2010/01/03/pdf-presenter-console-1-1/</link>
		<comments>http://schwobeseggl.de/2010/01/03/pdf-presenter-console-1-1/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 22:18:49 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2615</guid>
		<description><![CDATA[Gibt eine neue Version der bereits vorgestellten PDF Presenter Console: http://westhoffswelt.de/blog/0044_pdf_presenter_console_1.1_released_on_github.html]]></description>
			<content:encoded><![CDATA[<p>Gibt eine neue Version der <a  href="http://schwobeseggl.de/2009/11/22/pdf-presenter-console/">bereits vorgestellten</a> PDF Presenter Console:</p>
<p><a  href="http://westhoffswelt.de/blog/0044_pdf_presenter_console_1.1_released_on_github.html">http://westhoffswelt.de/blog/0044_pdf_presenter_console_1.1_released_on_github.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/01/03/pdf-presenter-console-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Profis am Werk</title>
		<link>http://schwobeseggl.de/2010/01/01/profis-am-werk/</link>
		<comments>http://schwobeseggl.de/2010/01/01/profis-am-werk/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 14:00:06 +0000</pubDate>
		<dc:creator>pennywise</dc:creator>
				<category><![CDATA[PC & Accessoires]]></category>

		<guid isPermaLink="false">http://schwobeseggl.de/?p=2609</guid>
		<description><![CDATA[Gehäuse bestellt, ausprobiert, tut nicht. Was macht man dann? Richtig, mal genauer hinschauen: Das weiße Zeug gehört da definitiv nicht hin]]></description>
			<content:encoded><![CDATA[<p>Gehäuse bestellt, ausprobiert, tut nicht. Was macht man dann? Richtig, mal genauer hinschauen:</p>
<p><span id="more-2609"></span></p>
<p style="text-align: center;"><a  class="thickbox no_icon" href="http://schwobeseggl.de/wp-content/uploads/2010/01/DSCF3965.jpg" rel="gallery-2609" title="DSCF3965"><img class="aligncenter size-medium wp-image-2610" title="DSCF3965" src="http://schwobeseggl.de/wp-content/uploads/2010/01/DSCF3965-400x266.jpg" alt="" width="400" height="266" /></a>Das weiße Zeug gehört da definitiv nicht hin <img src='http://schwobeseggl.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://schwobeseggl.de/2010/01/01/profis-am-werk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

