<?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>Biggle&#039;s Blog</title>
	<atom:link href="http://www.biggle.de/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.biggle.de/blog</link>
	<description>Web- und Software Development</description>
	<lastBuildDate>Mon, 08 Mar 2010 21:52:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>OpenBook &#8211; Grundlagen und Programmierung Android</title>
		<link>http://www.biggle.de/blog/openbook-grundlagen-und-programmierung-android</link>
		<comments>http://www.biggle.de/blog/openbook-grundlagen-und-programmierung-android#comments</comments>
		<pubDate>Mon, 08 Mar 2010 21:52:10 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[OpenBook]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=4048</guid>
		<description><![CDATA[Der dpunkt.verlag verschenkt derzeit das Grundlagen und Programmieren Buch Android. Gebunden ist die 1.Auflage leider schon vergriffen und aus diesem Grund wird das 352seitige PDF verschenkt. Das Angebot gilt bis zur Veröffentlichung der 2. Auflage.

Dieser Beitrag stammt von Mario Priebe.Du bist dran mit Kaffee holen : )]]></description>
			<content:encoded><![CDATA[<p>Der dpunkt.verlag <a href="http://dpunkt.de/buecher/3436.html">verschenkt</a> derzeit das Grundlagen und Programmieren Buch Android. Gebunden ist die 1.Auflage leider schon vergriffen und aus diesem Grund wird das 352seitige PDF verschenkt. Das Angebot gilt bis zur Veröffentlichung der 2. Auflage.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/03/android.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-4049" title="android" src="http://www.biggle.de/blog/wp-content/uploads/2010/03/android.jpg" alt="" width="500" height="324" /></a></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+OpenBook+-+Grundlagen+und+Programmierung+Android+" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/openbook-grundlagen-und-programmierung-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alle User auflisten &#124; Linux Quicky</title>
		<link>http://www.biggle.de/blog/alle-user-auflisten-linux-quicky</link>
		<comments>http://www.biggle.de/blog/alle-user-auflisten-linux-quicky#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:28:56 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Quicky]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=4045</guid>
		<description><![CDATA[Der folgende Befehl unter Linux bewirkt, dass man sich alle User  auflisten kann:

cat /etc/passwd

Da das recht unübersichtlich werden kann, kann man alle User unter  der ID 1000 ausschliessen und ggfl. nur den Loginnamen anzeigen mit:

awk -F: '$3&#62;999{print $1}' /etc/passwd

Analog bekommt man  mit $3 die UID (UserID), mit $4 die Primary GID (GroupID), ]]></description>
			<content:encoded><![CDATA[<p>Der folgende Befehl unter Linux bewirkt, dass man sich alle User  auflisten kann:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">cat <span style="color: #339933;">/</span>etc<span style="color: #339933;">/</span>passwd</pre></div></div>

<p>Da das recht unübersichtlich werden kann, kann man alle User unter  der ID 1000 ausschliessen und ggfl. nur den Loginnamen anzeigen mit:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">awk <span style="color: #339933;">-</span>F<span style="color: #339933;">:</span> <span style="color: #0000ff;">'$3&gt;999{print $1}'</span> <span style="color: #339933;">/</span>etc<span style="color: #339933;">/</span>passwd</pre></div></div>

<p>Analog bekommt man  mit $3 die UID (UserID), mit $4 die Primary GID (GroupID), mit $5 den  ausgeschriebenen Namen/Gecos-Feld, mit $6 das Home-Verzeichnis und mit  $7 die  Login-Shell</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Alle+User+auflisten+|+Linux+Quicky" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/alle-user-auflisten-linux-quicky/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates &#8211; 2010-03-07</title>
		<link>http://www.biggle.de/blog/twitter-weekly-updates-2010-03-07</link>
		<comments>http://www.biggle.de/blog/twitter-weekly-updates-2010-03-07#comments</comments>
		<pubDate>Sun, 07 Mar 2010 22:59:00 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/twitter-weekly-updates-2010-03-07</guid>
		<description><![CDATA[10+ useful online code editors &#124; #webtools #onlineeditor #ide http://icio.us/itut02 #
Fix for: KB980920 &#8211; #VisualStudio2010 crashes with System.InvalidOperationException when performing QuickInfo http://icio.us/sparon #
I&#39;ll write a small c++ app for $5 &#8211; The place for people to share things they’re willing to do for $5 via @caschy http://icio.us/tkikln #
How to Increase the size of Taskbar Thumbnail ]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>10+ useful online code editors | #<a href="http://search.twitter.com/search?q=%23webtools" class="aktt_hashtag">webtools</a> #onlineeditor #<a href="http://search.twitter.com/search?q=%23ide" class="aktt_hashtag">ide</a> <a href="http://icio.us/itut02" rel="nofollow">http://icio.us/itut02</a> <a href="http://twitter.com/MarioPriebe/statuses/10135764453" class="aktt_tweet_time">#</a></li>
<li>Fix for: KB980920 &#8211; #<a href="http://search.twitter.com/search?q=%23VisualStudio2010" class="aktt_hashtag">VisualStudio2010</a> crashes with System.InvalidOperationException when performing QuickInfo <a href="http://icio.us/sparon" rel="nofollow">http://icio.us/sparon</a> <a href="http://twitter.com/MarioPriebe/statuses/10134321197" class="aktt_tweet_time">#</a></li>
<li>I&#39;ll write a small c++ app for $5 &#8211; The place for people to share things they’re willing to do for $5 via @<a href="http://twitter.com/caschy" class="aktt_username">caschy</a> <a href="http://icio.us/tkikln" rel="nofollow">http://icio.us/tkikln</a> <a href="http://twitter.com/MarioPriebe/statuses/10132339598" class="aktt_tweet_time">#</a></li>
<li>How to Increase the size of Taskbar Thumbnail preview in #<a href="http://search.twitter.com/search?q=%23Windows7" class="aktt_hashtag">Windows7</a> <a href="http://icio.us/55xtj4" rel="nofollow">http://icio.us/55xtj4</a> <a href="http://twitter.com/MarioPriebe/statuses/10132049830" class="aktt_tweet_time">#</a></li>
<li>Windows 7 Multitouch Application Development Part &#8211; I  <a href="http://goo.gl/Kd8Q" rel="nofollow">http://goo.gl/Kd8Q</a> | Part &#8211; II <a href="http://goo.gl/U7R7" rel="nofollow">http://goo.gl/U7R7</a> | #<a href="http://search.twitter.com/search?q=%23wpf" class="aktt_hashtag">wpf</a> #multitouch <a href="http://twitter.com/MarioPriebe/statuses/10117747175" class="aktt_tweet_time">#</a></li>
<li>Simplest Way to Implement Multilingual WPF Application | #<a href="http://search.twitter.com/search?q=%23wpf" class="aktt_hashtag">wpf</a> #localization <a href="http://icio.us/ipwxrm" rel="nofollow">http://icio.us/ipwxrm</a> <a href="http://twitter.com/MarioPriebe/statuses/10117698892" class="aktt_tweet_time">#</a></li>
<li>instantly create a private network between computers, coworkers &amp; friends <a href="http://icio.us/xbpbvq" rel="nofollow">http://icio.us/xbpbvq</a> <a href="http://twitter.com/MarioPriebe/statuses/10048829951" class="aktt_tweet_time">#</a></li>
<li>7 #<a href="http://search.twitter.com/search?q=%23seo" class="aktt_hashtag">seo</a> #cheatsheet <a href="http://sharetabs.com/?seosheets" rel="nofollow">http://sharetabs.com/?seosheets</a> <a href="http://twitter.com/MarioPriebe/statuses/10048214310" class="aktt_tweet_time">#</a></li>
<li>A Guide to Claims-Based Identity and Access Control &#8211; Code Samples | #<a href="http://search.twitter.com/search?q=%23WIF" class="aktt_hashtag">WIF</a> #claim #<a href="http://search.twitter.com/search?q=%23identity" class="aktt_hashtag">identity</a> <a href="http://icio.us/y0bkgt" rel="nofollow">http://icio.us/y0bkgt</a> <a href="http://twitter.com/MarioPriebe/statuses/10045180330" class="aktt_tweet_time">#</a></li>
<li>A Guide to Claims-Based Identity and Access Control &#8211; Book Download | #<a href="http://search.twitter.com/search?q=%23WIF" class="aktt_hashtag">WIF</a> #claim #<a href="http://search.twitter.com/search?q=%23identity" class="aktt_hashtag">identity</a> <a href="http://icio.us/sorkdn" rel="nofollow">http://icio.us/sorkdn</a> <a href="http://twitter.com/MarioPriebe/statuses/10045126475" class="aktt_tweet_time">#</a></li>
<li>what is pivot? A new tool explores large sets of data to organize the Web &#8211; <a href="http://goo.gl/ux9Q" rel="nofollow">http://goo.gl/ux9Q</a> and the developer overview <a href="http://goo.gl/8bcg" rel="nofollow">http://goo.gl/8bcg</a> <a href="http://twitter.com/MarioPriebe/statuses/10044504573" class="aktt_tweet_time">#</a></li>
<li>sql statement to disable comments on older posts #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a> #wp  <a href="http://twitpic.com/16t2db" rel="nofollow">http://twitpic.com/16t2db</a> <a href="http://twitter.com/MarioPriebe/statuses/10043819798" class="aktt_tweet_time">#</a></li>
<li>sql statement to remove all the tags from your #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a>  blog  <a href="http://twitpic.com/16t1ss" rel="nofollow">http://twitpic.com/16t1ss</a> | #<a href="http://search.twitter.com/search?q=%23wp" class="aktt_hashtag">wp</a> <a href="http://twitter.com/MarioPriebe/statuses/10043760831" class="aktt_tweet_time">#</a></li>
<li>sql statement to find unused tags #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a> #wp <a href="http://twitpic.com/16t1iv" rel="nofollow">http://twitpic.com/16t1iv</a> <a href="http://twitter.com/MarioPriebe/statuses/10043649734" class="aktt_tweet_time">#</a></li>
<li>the mood music player <a href="http://icio.us/mkf411" rel="nofollow">http://icio.us/mkf411</a> <a href="http://twitter.com/MarioPriebe/statuses/10043422105" class="aktt_tweet_time">#</a></li>
<li>send a big ass message : ) <a href="http://twitpic.com/16sxl1" rel="nofollow">http://twitpic.com/16sxl1</a> | <a href="http://goo.gl/fnlC" rel="nofollow">http://goo.gl/fnlC</a> <a href="http://twitter.com/MarioPriebe/statuses/10042927415" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23free" class="aktt_hashtag">free</a> #audiobook download on booksshouldbefree | #<a href="http://search.twitter.com/search?q=%23mp3" class="aktt_hashtag">mp3</a> #ipod #<a href="http://search.twitter.com/search?q=%23itunes" class="aktt_hashtag">itunes</a> <a href="http://icio.us/q4x2tr" rel="nofollow">http://icio.us/q4&#215;2tr</a> <a href="http://twitter.com/MarioPriebe/statuses/10042499092" class="aktt_tweet_time">#</a></li>
<li>52 high resolution #<a href="http://search.twitter.com/search?q=%23vector" class="aktt_hashtag">vector</a> based #<a href="http://search.twitter.com/search?q=%23multitouch" class="aktt_hashtag">multitouch</a> icons (creative commons 3.0) <a href="http://icio.us/rm41mn" rel="nofollow">http://icio.us/rm41mn</a> <a href="http://twitter.com/MarioPriebe/statuses/10042350275" class="aktt_tweet_time">#</a></li>
<li>70 awesome #<a href="http://search.twitter.com/search?q=%23opensource" class="aktt_hashtag">opensource</a> tools for #<a href="http://search.twitter.com/search?q=%23graphic" class="aktt_hashtag">graphic</a> #designers <a href="http://icio.us/sf43ss" rel="nofollow">http://icio.us/sf43ss</a> <a href="http://twitter.com/MarioPriebe/statuses/10042258625" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23CSS" class="aktt_hashtag">CSS</a> Border Radius &#8211; nice generator for lazy people : ) <a href="http://icio.us/zw1nxq" rel="nofollow">http://icio.us/zw1nxq</a> <a href="http://twitter.com/MarioPriebe/statuses/10042218226" class="aktt_tweet_time">#</a></li>
<li>Windows Communication Foundation (#WCF) and Windows Workflow Foundation (#WF) Samples for .NET Framework 4 RC <a href="http://icio.us/nrrey3" rel="nofollow">http://icio.us/nrrey3</a> <a href="http://twitter.com/MarioPriebe/statuses/10025577648" class="aktt_tweet_time">#</a></li>
<li>Visual Studio 2010 and .NET Framework 4 Training Kit &#8211; February Release | #<a href="http://search.twitter.com/search?q=%23vs2010" class="aktt_hashtag">vs2010</a> #net4 <a href="http://icio.us/pe0gdw" rel="nofollow">http://icio.us/pe0gdw</a> <a href="http://twitter.com/MarioPriebe/statuses/10025539248" class="aktt_tweet_time">#</a></li>
<li>.NET LINQ from Scratch | #<a href="http://search.twitter.com/search?q=%23net" class="aktt_hashtag">net</a> #linq <a href="http://icio.us/pf1x2c" rel="nofollow">http://icio.us/pf1&#215;2c</a> <a href="http://twitter.com/MarioPriebe/statuses/9938740801" class="aktt_tweet_time">#</a></li>
<li>How to Add Custom Configuration Settings for an (ASP).NET Application | #<a href="http://search.twitter.com/search?q=%23asp" class="aktt_hashtag">asp</a> #net <a href="http://icio.us/hb3tmv" rel="nofollow">http://icio.us/hb3tmv</a> <a href="http://twitter.com/MarioPriebe/statuses/9938517513" class="aktt_tweet_time">#</a></li>
<li>Translator Widget from Microsoft allows you to bring real-time, in-place translation to your web site | #<a href="http://search.twitter.com/search?q=%23webtools" class="aktt_hashtag">webtools</a> <a href="http://icio.us/jb5ity" rel="nofollow">http://icio.us/jb5ity</a> <a href="http://twitter.com/MarioPriebe/statuses/9928169293" class="aktt_tweet_time">#</a></li>
<li>WPF Toolkit &#8211; February 2010 Release &#8211; new in the Kit AutoCompleteBox, Accordion and Rating | #<a href="http://search.twitter.com/search?q=%23wpf" class="aktt_hashtag">wpf</a> #xaml <a href="http://icio.us/s13mzd" rel="nofollow">http://icio.us/s13mzd</a> <a href="http://twitter.com/MarioPriebe/statuses/9891590621" class="aktt_tweet_time">#</a></li>
<li>Getting Things Done with Thunderbird | #<a href="http://search.twitter.com/search?q=%23gtd" class="aktt_hashtag">gtd</a> <a href="http://icio.us/hfggay" rel="nofollow">http://icio.us/hfggay</a> <a href="http://twitter.com/MarioPriebe/statuses/9889991101" class="aktt_tweet_time">#</a></li>
<li>DependencyProperties or INotifyPropertyChanged? <a href="http://icio.us/nrs1xg" rel="nofollow">http://icio.us/nrs1xg</a> <a href="http://twitter.com/MarioPriebe/statuses/9889363783" class="aktt_tweet_time">#</a></li>
<li>XAML Power Toys for #<a href="http://search.twitter.com/search?q=%23vs2008" class="aktt_hashtag">vs2008</a> and #<a href="http://search.twitter.com/search?q=%23vs2010" class="aktt_hashtag">vs2010</a> <a href="http://icio.us/dpg0ce" rel="nofollow">http://icio.us/dpg0ce</a> <a href="http://twitter.com/MarioPriebe/statuses/9889169570" class="aktt_tweet_time">#</a></li>
<li>The Windows Driver Kit | #<a href="http://search.twitter.com/search?q=%23wdk" class="aktt_hashtag">wdk</a> #net <a href="http://icio.us/z2zn3o" rel="nofollow">http://icio.us/z2zn3o</a> <a href="http://twitter.com/MarioPriebe/statuses/9888245199" class="aktt_tweet_time">#</a></li>
<li>Obsolete Members in the .NET Framework 4 | #<a href="http://search.twitter.com/search?q=%23net" class="aktt_hashtag">net</a> <a href="http://icio.us/bwij1p" rel="nofollow">http://icio.us/bwij1p</a> <a href="http://twitter.com/MarioPriebe/statuses/9833709168" class="aktt_tweet_time">#</a></li>
<li>Obsolete Types in the .NET Framework 4 | #<a href="http://search.twitter.com/search?q=%23net" class="aktt_hashtag">net</a> <a href="http://icio.us/fxuuj5" rel="nofollow">http://icio.us/fxuuj5</a> <a href="http://twitter.com/MarioPriebe/statuses/9833691224" class="aktt_tweet_time">#</a></li>
</ul>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Twitter+Weekly+Updates+-+2010-03-07" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/twitter-weekly-updates-2010-03-07/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navigation / Paging in WPF</title>
		<link>http://www.biggle.de/blog/navigation-paging-in-wpf</link>
		<comments>http://www.biggle.de/blog/navigation-paging-in-wpf#comments</comments>
		<pubDate>Fri, 05 Mar 2010 13:12:28 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[MarkUp]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Paging]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=4025</guid>
		<description><![CDATA[Es gibt so einige Ansätze wie man in einer WPF Applikation navigieren kann. Im kommenden Beispiel zeige ich eine Möglichkeit wie man recht einfach neue Seiten im Menue hinzufügen und darstellen kann.
Ziel ist es, im MainWindow (Shell) ein Menue hinzuzufügen und die entsprechenden Pages unterhalb dieses anzuzeigen.
Ich verwende in diesem HowTo ein TabControl, ein StackPanel ]]></description>
			<content:encoded><![CDATA[<p>Es gibt so einige Ansätze wie man in einer WPF Applikation navigieren kann. Im kommenden Beispiel zeige ich eine Möglichkeit wie man recht einfach neue Seiten im Menue hinzufügen und darstellen kann.</p>
<p>Ziel ist es, im MainWindow (Shell) ein Menue hinzuzufügen und die entsprechenden Pages unterhalb dieses anzuzeigen.</p>
<p>Ich verwende in diesem HowTo ein TabControl, ein StackPanel ein Menu und MenuItems.</p>
<p><strong>Umsetzung:</strong></p>
<p>Zuvor definiere ich einen Style in der Shell (Windows.xaml), welcher das Element vom Typ TabControl überschreibt:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>Window<span style="color: #339933;">.</span>Resources<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>Style TargetType<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;TabControl&quot;</span> x<span style="color: #339933;">:</span><span style="color: #990000;">Key</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagingStyle&quot;</span><span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;</span>Setter Property<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Template&quot;</span><span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;</span>Setter<span style="color: #339933;">.</span>Value<span style="color: #339933;">&gt;</span>
				<span style="color: #339933;">&lt;</span>ControlTemplate TargetType<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{x:Type TabControl}&quot;</span><span style="color: #339933;">&gt;</span>
					<span style="color: #339933;">&lt;</span>Grid<span style="color: #339933;">&gt;</span>
						<span style="color: #339933;">&lt;</span>Border Background<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Transparent&quot;</span><span style="color: #339933;">&gt;</span>
							<span style="color: #339933;">&lt;</span>ContentPresenter x<span style="color: #339933;">:</span>Name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;PART_SelectedContentHost&quot;</span> Margin<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{TemplateBinding Padding}&quot;</span>
                              SnapsToDevicePixels<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{TemplateBinding SnapsToDevicePixels}&quot;</span>
                              ContentSource<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;SelectedContent&quot;</span> <span style="color: #339933;">/&gt;</span>
						<span style="color: #339933;">&lt;/</span>Border<span style="color: #339933;">&gt;</span>
						<span style="color: #339933;">&lt;</span>TabPanel IsItemsHost<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;True&quot;</span> Visibility<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Hidden&quot;</span> <span style="color: #339933;">/&gt;</span>
					<span style="color: #339933;">&lt;/</span>Grid<span style="color: #339933;">&gt;</span>
				<span style="color: #339933;">&lt;/</span>ControlTemplate<span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;/</span>Setter<span style="color: #339933;">.</span>Value<span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;/</span>Setter<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;/</span>Style<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>Window<span style="color: #339933;">.</span>Resources<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Weiter lege ich in der Shell (Windows.xaml) ein CommandBinding fest:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>Window<span style="color: #339933;">.</span>CommandBindings<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>CommandBinding Command<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;GoToPage&quot;</span> Executed<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;OnGoToPage&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>Window<span style="color: #339933;">.</span>CommandBindings<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Und dargestellt wird das Ganze dann in einem StackPanel (Orientation Horizontal), welches ein Menue und ein TabControl enthält. Im TabControl zeigen wir später dann die Pages an.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>StackPanel<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>Menu<span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;</span>MenuItem <span style="color: #990000;">Header</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Pages&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>MenuItem<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;/</span>Menu<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>TabControl Style<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{StaticResource pagingStyle}&quot;</span> SelectedIndex<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;0&quot;</span>  x<span style="color: #339933;">:</span>Name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Pages&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>StackPanel<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Wechseln wir nun zum Code-Behind der Windows.xaml (Shell) und schreiben die Methode OnGoToPage(), welche in den CommandBindings definiert wurde:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> void OnGoToPage<span style="color: #009900;">&#40;</span>object sender<span style="color: #339933;">,</span> ExecutedRoutedEventArgs e<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>e<span style="color: #339933;">.</span>Parameter <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
        Pages<span style="color: #339933;">.</span>SelectedIndex <span style="color: #339933;">=</span> Pages<span style="color: #339933;">.</span>SelectedIndex <span style="color: #339933;">&lt;</span> Pages<span style="color: #339933;">.</span>Items<span style="color: #339933;">.</span><span style="color: #990000;">Count</span> ? int<span style="color: #339933;">.</span>Parse<span style="color: #009900;">&#40;</span>e<span style="color: #339933;">.</span>Parameter<span style="color: #339933;">.</span>ToString<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">1</span> <span style="color: #339933;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Weiter abonnieren wir das LoadedEvent im Konstruktor um hier später die entsprechenden Pages in der TabControl-Collection hinzuzufügen.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> Window1<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    InitializeComponent<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    Loaded <span style="color: #339933;">+=</span> Window1_Loaded<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Nun lege ich eine neue Klasse namens BasePage an. In dieser Klasse definieren wir das &#8220;Masterlayout&#8221; der Pages. Man kann das zwar auch in einem Style definieren, jedoch in diesem Beispiel mache ich das direkt  in der Klasse. dazu schreib ich in den Konstruktor:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> BasePage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    this<span style="color: #339933;">.</span>Height <span style="color: #339933;">=</span> <span style="color: #cc66cc;">250</span><span style="color: #339933;">;</span>
    this<span style="color: #339933;">.</span>Background <span style="color: #339933;">=</span> Brushes<span style="color: #339933;">.</span>AliceBlue<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Die Basis ist damit vorerst fertig &#8211; &#8220;vorerst&#8221; deshalb, weil hier später grundlegende Einstellungen vorgenommen werden können, aber für dieses Beispiel erstmal nicht relevant. Nun muss man nur noch die einzelnen Pages erstellen und der MenuCollection (Shell) die Pages hinzufügen. </p>
<p>Die <strong>UserControls</strong> die wir nun anlegen, erben von unserer Basisklasse BasePage. Dazu im XAML des jeweiligen UserControls das UserControl gegen Pages:BasePage und im Code-behind das UserControl gegen BasePage austauschen.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>Pages<span style="color: #339933;">:</span>BasePage x<span style="color: #339933;">:</span><span style="color: #000000; font-weight: bold;">Class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;NavigateWpfApplication.Pages.Page1&quot;</span>
    xmlns<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;</span>
    xmlns<span style="color: #339933;">:</span>x<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;</span>
    xmlns<span style="color: #339933;">:</span>Pages<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;clr-namespace:NavigateWpfApplication.Pages&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>Grid<span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;</span>TextBlock Text<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Hello from Page 1&quot;</span> <span style="color: #339933;">/&gt;</span>
	<span style="color: #339933;">&lt;/</span>Grid<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>Pages<span style="color: #339933;">:</span>BasePage<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> partial <span style="color: #000000; font-weight: bold;">class</span> Page1 <span style="color: #339933;">:</span> BasePage
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">public</span> Page1<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        InitializeComponent<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Zum Schluss nun die MenuItems in der Shell hinzufügen:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>MenuItem <span style="color: #990000;">Header</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Pages&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>MenuItem <span style="color: #990000;">Header</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Page1&quot;</span> Command<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;GoToPage&quot;</span> CommandParameter<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;1&quot;</span> <span style="color: #339933;">/&gt;</span>
	<span style="color: #339933;">&lt;</span>MenuItem <span style="color: #990000;">Header</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Page2&quot;</span> Command<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;GoToPage&quot;</span> CommandParameter<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;2&quot;</span> <span style="color: #339933;">/&gt;</span>
	<span style="color: #339933;">&lt;</span>MenuItem <span style="color: #990000;">Header</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Page3&quot;</span> Command<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;GoToPage&quot;</span> CommandParameter<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;3&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>MenuItem<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>und im LoadedEvent der Shell die Pages:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">void Window1_Loaded<span style="color: #009900;">&#40;</span>object sender<span style="color: #339933;">,</span> RoutedEventArgs e<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    this<span style="color: #339933;">.</span>Pages<span style="color: #339933;">.</span>Items<span style="color: #339933;">.</span>Add<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> Page1<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    this<span style="color: #339933;">.</span>Pages<span style="color: #339933;">.</span>Items<span style="color: #339933;">.</span>Add<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> Page2<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    this<span style="color: #339933;">.</span>Pages<span style="color: #339933;">.</span>Items<span style="color: #339933;">.</span>Add<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> Page3<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Et Voila, das wars auch schon,</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/03/pages.jpg" rel="thumbnail"><img src="http://www.biggle.de/blog/wp-content/uploads/2010/03/pages.jpg" alt="" title="pages" width="260" height="290" class="alignnone size-full wp-image-4036" /></a></p>
<p>Viel Spaß beim entwickeln : )</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Navigation+/+Paging+in+WPF" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/navigation-paging-in-wpf/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates &#8211; 2010-02-28</title>
		<link>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-28</link>
		<comments>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-28#comments</comments>
		<pubDate>Sun, 28 Feb 2010 21:59:00 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/twitter-weekly-updates-2010-02-28</guid>
		<description><![CDATA[must see! &#8211; Food Design At Its Best: 40 Extraordinary Examples Of Edible Art http://icio.us/a1umon #
wpf autocomplete textbox / combobox &#124; #wpf http://icio.us/u3kysz #
Free Web Application Toolkits #microsoft #net #web http://icio.us/tt1pfv #
complete list of #html5 tags &#124; #reference #development http://icio.us/ltl5k1 #
clean up and manage who you follow &#124; #twitter http://icio.us/50vjzy #
RT @lprichar: I can&#39;t wait ]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>must see! &#8211; Food Design At Its Best: 40 Extraordinary Examples Of Edible Art <a href="http://icio.us/a1umon" rel="nofollow">http://icio.us/a1umon</a> <a href="http://twitter.com/MarioPriebe/statuses/9788852026" class="aktt_tweet_time">#</a></li>
<li>wpf autocomplete textbox / combobox | #<a href="http://search.twitter.com/search?q=%23wpf" class="aktt_hashtag">wpf</a> <a href="http://icio.us/u3kysz" rel="nofollow">http://icio.us/u3kysz</a> <a href="http://twitter.com/MarioPriebe/statuses/9787624221" class="aktt_tweet_time">#</a></li>
<li>Free Web Application Toolkits #<a href="http://search.twitter.com/search?q=%23microsoft" class="aktt_hashtag">microsoft</a> #net #<a href="http://search.twitter.com/search?q=%23web" class="aktt_hashtag">web</a> <a href="http://icio.us/tt1pfv" rel="nofollow">http://icio.us/tt1pfv</a> <a href="http://twitter.com/MarioPriebe/statuses/9786879136" class="aktt_tweet_time">#</a></li>
<li>complete list of #<a href="http://search.twitter.com/search?q=%23html5" class="aktt_hashtag">html5</a> tags | #<a href="http://search.twitter.com/search?q=%23reference" class="aktt_hashtag">reference</a> #development <a href="http://icio.us/ltl5k1" rel="nofollow">http://icio.us/ltl5k1</a> <a href="http://twitter.com/MarioPriebe/statuses/9775757974" class="aktt_tweet_time">#</a></li>
<li>clean up and manage who you follow | #<a href="http://search.twitter.com/search?q=%23twitter" class="aktt_hashtag">twitter</a> <a href="http://icio.us/50vjzy" rel="nofollow">http://icio.us/50vjzy</a> <a href="http://twitter.com/MarioPriebe/statuses/9728063842" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/lprichar" class="aktt_username">lprichar</a>: I can&#39;t wait for .Net 4.  Fun PLINQ and parallel extensions example: <a href="http://tinyurl.com/ycz5dhb" rel="nofollow">http://tinyurl.com/ycz5dhb</a> <a href="http://twitter.com/MarioPriebe/statuses/9726854857" class="aktt_tweet_time">#</a></li>
<li>amazing #<a href="http://search.twitter.com/search?q=%23advertising" class="aktt_hashtag">advertising</a> they must see  RT @<a href="http://twitter.com/caschy" class="aktt_username">caschy</a>: DAS ist kreativ: video anschauen! :) <a href="http://bit.ly/9QkXQ2" rel="nofollow">http://bit.ly/9QkXQ2</a> #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/MarioPriebe/statuses/9726766543" class="aktt_tweet_time">#</a></li>
<li>A Guide to Claims-Based Identity and Access Control | #<a href="http://search.twitter.com/search?q=%23WIF" class="aktt_hashtag">WIF</a> #Claim <a href="http://icio.us/lusgxv" rel="nofollow">http://icio.us/lusgxv</a> <a href="http://twitter.com/MarioPriebe/statuses/9725650483" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23ADO" class="aktt_hashtag">ADO</a> NET Data Services for #<a href="http://search.twitter.com/search?q=%23Silverlight" class="aktt_hashtag">Silverlight</a> 3 Update CTP3 <a href="http://icio.us/mogs0o" rel="nofollow">http://icio.us/mogs0o</a> <a href="http://twitter.com/MarioPriebe/statuses/9675707376" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/caschy" class="aktt_username">caschy</a> ist das #<a href="http://search.twitter.com/search?q=%23devolo" class="aktt_hashtag">devolo</a> Prinzip im Grunde nicht nur eine &quot;wireless repeater topology&quot; ?! <a href="http://twitter.com/caschy/statuses/9673730169" class="aktt_tweet_reply">in reply to caschy</a> <a href="http://twitter.com/MarioPriebe/statuses/9674022677" class="aktt_tweet_time">#</a></li>
<li>if freeze your #<a href="http://search.twitter.com/search?q=%23VirtualBox" class="aktt_hashtag">VirtualBox</a> at any installation, switch off the Guest Additions, then it works <a href="http://twitter.com/MarioPriebe/statuses/9671271765" class="aktt_tweet_time">#</a></li>
<li>back @ home : ) <a href="http://twitter.com/MarioPriebe/statuses/9643902731" class="aktt_tweet_time">#</a></li>
<li>EF 4.0 &#8211; the last session for me &#8211; thx #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> for the three nice days ! <a href="http://twitter.com/MarioPriebe/statuses/9626935777" class="aktt_tweet_time">#</a></li>
<li>localization tool  for #<a href="http://search.twitter.com/search?q=%23MFC" class="aktt_hashtag">MFC</a>  #<a href="http://search.twitter.com/search?q=%23NET" class="aktt_hashtag">NET</a>  #<a href="http://search.twitter.com/search?q=%23WPF" class="aktt_hashtag">WPF</a>  #<a href="http://search.twitter.com/search?q=%23Delphi" class="aktt_hashtag">Delphi</a>  and #<a href="http://search.twitter.com/search?q=%23Java" class="aktt_hashtag">Java</a>  based applications, that simplifies #<a href="http://search.twitter.com/search?q=%23localization" class="aktt_hashtag">localization</a> <a href="http://icio.us/ijslnv" rel="nofollow">http://icio.us/ijslnv</a> <a href="http://twitter.com/MarioPriebe/statuses/9623003927" class="aktt_tweet_time">#</a></li>
<li>good morning #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> <a href="http://twitter.com/MarioPriebe/statuses/9616106923" class="aktt_tweet_time">#</a></li>
<li>ACID Transactions with STM.NET #<a href="http://search.twitter.com/search?q=%23asynchron" class="aktt_hashtag">asynchron</a> #parallel #<a href="http://search.twitter.com/search?q=%23programming" class="aktt_hashtag">programming</a> <a href="http://icio.us/u2k0jj" rel="nofollow">http://icio.us/u2k0jj</a> <a href="http://twitter.com/MarioPriebe/statuses/9596719928" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/dotnetshoutout" class="aktt_username">dotnetshoutout</a>: NEW: Finger Style &#8211; Exploring Multi-Touch Support in Silverlight &#8211; <a href="http://is.gd/96QH2" rel="nofollow">http://is.gd/96QH2</a>,  #<a href="http://search.twitter.com/search?q=%23multitouch" class="aktt_hashtag">multitouch</a> #Silverlight <a href="http://twitter.com/MarioPriebe/statuses/9596454935" class="aktt_tweet_time">#</a></li>
<li>Flixtime &#8211; Video Slideshows made easy! #<a href="http://search.twitter.com/search?q=%23webtools" class="aktt_hashtag">webtools</a> #free <a href="http://icio.us/psglpw" rel="nofollow">http://icio.us/psglpw</a> <a href="http://twitter.com/MarioPriebe/statuses/9595621411" class="aktt_tweet_time">#</a></li>
<li>The Education #<a href="http://search.twitter.com/search?q=%23Podcast" class="aktt_hashtag">Podcast</a> Network | #<a href="http://search.twitter.com/search?q=%23elearning" class="aktt_hashtag">elearning</a> <a href="http://icio.us/ppoapx" rel="nofollow">http://icio.us/ppoapx</a> <a href="http://twitter.com/MarioPriebe/statuses/9595335882" class="aktt_tweet_time">#</a></li>
<li>Wer kramt  denn dort vorne noch in der Tasche, nice : ) RT @<a href="http://twitter.com/philipproplesch" class="aktt_username">philipproplesch</a> &quot;Von LINQ nach PLINQ&quot; kann beginnen. <a href="http://twitpic.com/1521pk" rel="nofollow">http://twitpic.com/1521pk</a> <a href="http://twitter.com/MarioPriebe/statuses/9594545197" class="aktt_tweet_time">#</a></li>
<li>win a mac with office from @<a href="http://twitter.com/OfficeforMac" class="aktt_username">OfficeforMac</a>  <a href="http://tweetphoto.com/12381558" rel="nofollow">http://tweetphoto.com/12381558</a> #<a href="http://search.twitter.com/search?q=%23officeformac" class="aktt_hashtag">officeformac</a> <a href="http://twitter.com/MarioPriebe/statuses/9588185289" class="aktt_tweet_time">#</a></li>
<li>I feel bad, but one session yet  (8pm) the last for today..  then I go sleep. tommorrow tight schedule on #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> <a href="http://twitter.com/MarioPriebe/statuses/9585390638" class="aktt_tweet_time">#</a></li>
<li>Mir auch bitte : ) RT @<a href="http://twitter.com/Anheledir" class="aktt_username">Anheledir</a>: Geht jemand zur #<a href="http://search.twitter.com/search?q=%23Cebit" class="aktt_hashtag">Cebit</a> &amp; kann mir evtl. die aktuelle #<a href="http://search.twitter.com/search?q=%23Microsoft" class="aktt_hashtag">Microsoft</a> #Webcast DVD 2009 mitbringen? <a href="http://twitter.com/MarioPriebe/statuses/9584386735" class="aktt_tweet_time">#</a></li>
<li>good morning @<a href="http://twitter.com/all" class="aktt_username">all</a> &#8211; lets go to another nice day #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> : ) <a href="http://twitter.com/MarioPriebe/statuses/9566236199" class="aktt_tweet_time">#</a></li>
<li>now in advanced debugging for vs 2008 and vs 2010 #<a href="http://search.twitter.com/search?q=%23bastcon" class="aktt_hashtag">bastcon</a> <a href="http://twitter.com/MarioPriebe/statuses/9539224673" class="aktt_tweet_time">#</a></li>
<li>next session DataVisualizing visual representation <a href="http://twitter.com/MarioPriebe/statuses/9533204611" class="aktt_tweet_time">#</a></li>
<li>now in SIlverlight Live Coding with Dr. Holger Schwichtenberg and Daniel Greitens #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> <a href="http://twitter.com/MarioPriebe/statuses/9529435205" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bastacon" class="aktt_username">bastacon</a> wo findet nun die Session von Christian Weyer statt? <a href="http://twitter.com/bastacon/statuses/9526752445" class="aktt_tweet_reply">in reply to bastacon</a> <a href="http://twitter.com/MarioPriebe/statuses/9528661181" class="aktt_tweet_time">#</a></li>
<li>next session &quot;REST with WCF 4.0&quot;  with @<a href="http://twitter.com/lennybacon" class="aktt_username">lennybacon</a> #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> <a href="http://twitter.com/MarioPriebe/statuses/9524749011" class="aktt_tweet_time">#</a></li>
<li>next session with oliver sturm &#8211; Dynamics in C# 4.0 #<a href="http://search.twitter.com/search?q=%23bastacon" class="aktt_hashtag">bastacon</a> <a href="http://twitter.com/MarioPriebe/statuses/9520732832" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Lufthansa_DE" class="aktt_username">Lufthansa_DE</a> Der Streik ist ausgesetzt. Über die Auswirkungen auf den Flugbetrieb  werden wir in Kürze informieren: <a href="http://t.lh.com/rVs3" rel="nofollow">http://t.lh.com/rVs3</a> <a href="http://twitter.com/MarioPriebe/statuses/9490388042" class="aktt_tweet_time">#</a></li>
<li>I&#39;m sitting now in the train to the basta confererence in Darmstadt <a href="http://twitter.com/MarioPriebe/statuses/9472482627" class="aktt_tweet_time">#</a></li>
<li>.net video #<a href="http://search.twitter.com/search?q=%23tutorials" class="aktt_hashtag">tutorials</a> | #<a href="http://search.twitter.com/search?q=%23csharp" class="aktt_hashtag">csharp</a> #asp.net # vb # wpf <a href="http://icio.us/jnyqmf" rel="nofollow">http://icio.us/jnyqmf</a> <a href="http://twitter.com/MarioPriebe/statuses/9468631976" class="aktt_tweet_time">#</a></li>
<li>good bye &lt;div&gt; soup, hello semantic markup &#8211; the power of #<a href="http://search.twitter.com/search?q=%23html5" class="aktt_hashtag">html5</a> and #<a href="http://search.twitter.com/search?q=%23css3" class="aktt_hashtag">css3</a> <a href="http://icio.us/15zjnv" rel="nofollow">http://icio.us/15zjnv</a> <a href="http://twitter.com/MarioPriebe/statuses/9467682645" class="aktt_tweet_time">#</a></li>
<li>PyCon on blip.tv | #<a href="http://search.twitter.com/search?q=%23python" class="aktt_hashtag">python</a> #conferences <a href="http://icio.us/fmi5og" rel="nofollow">http://icio.us/fmi5og</a> <a href="http://twitter.com/MarioPriebe/statuses/9467575170" class="aktt_tweet_time">#</a></li>
<li>What really happens when you navigate to a URL |  #<a href="http://search.twitter.com/search?q=%23http" class="aktt_hashtag">http</a> #dns <a href="http://icio.us/ancnxy" rel="nofollow">http://icio.us/ancnxy</a> <a href="http://twitter.com/MarioPriebe/statuses/9466662160" class="aktt_tweet_time">#</a></li>
</ul>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Twitter+Weekly+Updates+-+2010-02-28" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-28/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basta Spring 2010 Tag 1 und  2</title>
		<link>http://www.biggle.de/blog/basta-spring-tag-1-und-2</link>
		<comments>http://www.biggle.de/blog/basta-spring-tag-1-und-2#comments</comments>
		<pubDate>Wed, 24 Feb 2010 19:27:19 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Private]]></category>
		<category><![CDATA[Basta]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3975</guid>
		<description><![CDATA[Es waren bisher zwei anstrengende Tage, an denen ich eigentlich jeden Tag davon ein Artikel verfassen wollte.
Bevor hier aber digitaler Dünnsch*** gedruckt wird, möchte ich gerne die Informationen, welche ich die Tage dazu gewonnen habe, lieber erst einmal verdauen und nach und nach jedes Thema für sich aufbereitet, hier speichern.
Also seid gespannt, es sind wirklich ]]></description>
			<content:encoded><![CDATA[<p>Es waren bisher zwei anstrengende Tage, an denen ich eigentlich jeden Tag davon ein Artikel verfassen wollte.</p>
<p>Bevor hier aber digitaler Dünnsch*** gedruckt wird, möchte ich gerne die Informationen, welche ich die Tage dazu gewonnen habe, lieber erst einmal verdauen und nach und nach jedes Thema für sich aufbereitet, hier speichern.</p>
<p>Also seid gespannt, es sind wirklich nette Sachen dabei : )</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/bastalogo1.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3976" title="bastalogo" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/bastalogo1.jpg" alt="" width="500" height="77" /></a></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Basta+Spring+2010+Tag+1+und++2" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/basta-spring-tag-1-und-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basta Spring 2010 &#8211; Ankunft in Darmstadt</title>
		<link>http://www.biggle.de/blog/basta-spring-2010-ankunft-darmstadt</link>
		<comments>http://www.biggle.de/blog/basta-spring-2010-ankunft-darmstadt#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:48:00 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Private]]></category>
		<category><![CDATA[Basta]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3956</guid>
		<description><![CDATA[Ja ich bin angekommen in Darmstadt, wo die diesjährige Basta Veranstaltung statt findet.

Aber gleich mal mit einem &#8220;kleinen&#8221; Missgeschick, denn in meinem Koffer ist das Mundwasser ausgelaufen -.- Aber zum Glück wird  mir hier schnell durch den netten  Hotelservice geholfen, indem sie die in Leidenschaft geratene Wäsche gleich mal zum waschen abgeholt haben. Vielen Dank ]]></description>
			<content:encoded><![CDATA[<p>Ja ich bin angekommen in Darmstadt, wo die diesjährige Basta Veranstaltung statt findet.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/bastalogo.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3957" title="bastalogo" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/bastalogo.jpg" alt="" width="500" height="77" /></a></p>
<p>Aber gleich mal mit einem &#8220;kleinen&#8221; Missgeschick, denn in meinem Koffer ist das Mundwasser ausgelaufen -.- Aber zum Glück wird  mir hier schnell durch den netten  Hotelservice geholfen, indem sie die in Leidenschaft geratene Wäsche gleich mal zum waschen abgeholt haben. Vielen Dank nochmal!</p>
<p>Puh, das nenn ich mal Glück im Unglück : )</p>
<p>So nun muss ich aber noch etwas frieren, denn der Geruch soll endlich mal auch das Zimmer verlassen, weshalb ich hier alle Fenster aufgerissen habe, ich bekomme hier so langsam  Kopfschmerzen davon&#8230;</p>
<p>Morgen dann, gehts um 9Uhr in Raum &#8220;Hamburg&#8221; los, mit der Session &#8220;Cloud oder Desktop, wohin geht die Reise&#8221;.</p>
<p>Wir werden gespannt sein.</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Basta+Spring+2010+-+Ankunft+in+Darmstadt+" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/basta-spring-2010-ankunft-darmstadt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates &#8211; 2010-02-21</title>
		<link>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-21</link>
		<comments>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-21#comments</comments>
		<pubDate>Sun, 21 Feb 2010 21:59:00 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/twitter-weekly-updates-2010-02-21</guid>
		<description><![CDATA[Synergy  &#8211; easily share a single mouse and keyboard between multiple computers http://icio.us/vnacx3 #
Power Tools for Windows #Azure #cmdlets #wasm http://icio.us/1d3ljx #
RT @oocx sieht vielversprechend aus, werd ich beobachten : ) http://bit.ly/cHsC4Y #
@oocx  das ist richtig, hab deinen Artikel eben gelesen btw : ) aber das hier war die headline die ich vom ]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Synergy  &#8211; easily share a single mouse and keyboard between multiple computers <a href="http://icio.us/vnacx3" rel="nofollow">http://icio.us/vnacx3</a> <a href="http://twitter.com/MarioPriebe/statuses/9436470441" class="aktt_tweet_time">#</a></li>
<li>Power Tools for Windows #<a href="http://search.twitter.com/search?q=%23Azure" class="aktt_hashtag">Azure</a> #cmdlets #<a href="http://search.twitter.com/search?q=%23wasm" class="aktt_hashtag">wasm</a> <a href="http://icio.us/1d3ljx" rel="nofollow">http://icio.us/1d3ljx</a> <a href="http://twitter.com/MarioPriebe/statuses/9433138200" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/oocx" class="aktt_username">oocx</a> sieht vielversprechend aus, werd ich beobachten : ) <a href="http://bit.ly/cHsC4Y" rel="nofollow">http://bit.ly/cHsC4Y</a> <a href="http://twitter.com/MarioPriebe/statuses/9432461092" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/oocx" class="aktt_username">oocx</a>  das ist richtig, hab deinen Artikel eben gelesen btw : ) aber das hier war die headline die ich vom Artikel übernommen habe <a href="http://twitter.com/MarioPriebe/statuses/9430015318" class="aktt_tweet_time">#</a></li>
<li>Localization: Just a translation easy and fast #<a href="http://search.twitter.com/search?q=%23wpf" class="aktt_hashtag">wpf</a> #silverlight <a href="http://icio.us/ib51g5" rel="nofollow">http://icio.us/ib51g5</a> <a href="http://twitter.com/MarioPriebe/statuses/9428352182" class="aktt_tweet_time">#</a></li>
<li>times go through your contacts and write a mail to your friends : ) <a href="http://twitter.com/MarioPriebe/statuses/9428170051" class="aktt_tweet_time">#</a></li>
<li>.. to pack bags for the Basta <a href="http://goo.gl/hyqv" rel="nofollow">http://goo.gl/hyqv</a>  &#8211; way there with train (because of strike #<a href="http://search.twitter.com/search?q=%23lufthansa" class="aktt_hashtag">lufthansa</a>  way back with the airplane  probably <a href="http://twitter.com/MarioPriebe/statuses/9389360620" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dustinklein" class="aktt_username">dustinklein</a> Happy Birthday!!! wishing you all the best. <a href="http://twitpic.com/145xjj" rel="nofollow">http://twitpic.com/145xjj</a> <a href="http://twitter.com/dustinklein/statuses/9349113999" class="aktt_tweet_reply">in reply to dustinklein</a> <a href="http://twitter.com/MarioPriebe/statuses/9349465922" class="aktt_tweet_time">#</a></li>
<li>play the sound of your website <a href="http://icio.us/xuoxnw" rel="nofollow">http://icio.us/xuoxnw</a> <a href="http://twitter.com/MarioPriebe/statuses/9341866938" class="aktt_tweet_time">#</a></li>
<li>this 2 any &amp; any 2 this &#8211; ConvertCenter #<a href="http://search.twitter.com/search?q=%23multinational" class="aktt_hashtag">multinational</a> #converter <a href="http://icio.us/ak5w1t" rel="nofollow">http://icio.us/ak5w1t</a> <a href="http://twitter.com/MarioPriebe/statuses/9340770919" class="aktt_tweet_time">#</a></li>
<li>paying customer vs. pirate <a href="http://icio.us/auxr3s" rel="nofollow">http://icio.us/auxr3s</a> <a href="http://twitter.com/MarioPriebe/statuses/9340375394" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23ASP" class="aktt_hashtag">ASP</a> NET for #<a href="http://search.twitter.com/search?q=%23PHP" class="aktt_hashtag">PHP</a> Developers #<a href="http://search.twitter.com/search?q=%23development" class="aktt_hashtag">development</a> #tutorial <a href="http://icio.us/opw2tl" rel="nofollow">http://icio.us/opw2tl</a> <a href="http://twitter.com/MarioPriebe/statuses/9340110688" class="aktt_tweet_time">#</a></li>
<li>Top 25 Most Dangerous #<a href="http://search.twitter.com/search?q=%23Programming" class="aktt_hashtag">Programming</a> Errors #<a href="http://search.twitter.com/search?q=%23development" class="aktt_hashtag">development</a> #security <a href="http://icio.us/zeo3ey" rel="nofollow">http://icio.us/zeo3ey</a> <a href="http://twitter.com/MarioPriebe/statuses/9339971500" class="aktt_tweet_time">#</a></li>
<li>Short Domain Search Service #<a href="http://search.twitter.com/search?q=%23webtools" class="aktt_hashtag">webtools</a> <a href="http://icio.us/hkoban" rel="nofollow">http://icio.us/hkoban</a> <a href="http://twitter.com/MarioPriebe/statuses/9337009181" class="aktt_tweet_time">#</a></li>
<li>the g-point mouse : ) <a href="http://icio.us/4ukots" rel="nofollow">http://icio.us/4ukots</a> <a href="http://twitter.com/MarioPriebe/statuses/9296160381" class="aktt_tweet_time">#</a></li>
<li>tweet from #<a href="http://search.twitter.com/search?q=%23twitterizer" class="aktt_hashtag">twitterizer</a> lib <a href="http://twitter.com/MarioPriebe/statuses/9254487094" class="aktt_tweet_time">#</a></li>
<li>tweet from own client, using #<a href="http://search.twitter.com/search?q=%23yedda" class="aktt_hashtag">yedda</a> lib <a href="http://twitter.com/MarioPriebe/statuses/9253847792" class="aktt_tweet_time">#</a></li>
<li>Tube2Tone &#8211; easy convert #<a href="http://search.twitter.com/search?q=%23youtube" class="aktt_hashtag">youtube</a> videos to #<a href="http://search.twitter.com/search?q=%23ringtones" class="aktt_hashtag">ringtones</a> <a href="http://icio.us/31dmcl" rel="nofollow">http://icio.us/31dmcl</a> <a href="http://twitter.com/MarioPriebe/statuses/9246677114" class="aktt_tweet_time">#</a></li>
<li>Hot Fix Available for #<a href="http://search.twitter.com/search?q=%23VS2010" class="aktt_hashtag">VS2010</a> RC Intellisense  Crash <a href="http://icio.us/au5shl" rel="nofollow">http://icio.us/au5shl</a> <a href="http://twitter.com/MarioPriebe/statuses/9203603570" class="aktt_tweet_time">#</a></li>
<li>Nice Scroll Clock you must see &#8211; the html element &quot;scrollbar&quot; shows the actual time <a href="http://icio.us/dn01ls" rel="nofollow">http://icio.us/dn01ls</a> <a href="http://twitter.com/MarioPriebe/statuses/9202272533" class="aktt_tweet_time">#</a></li>
<li>Publication Network &#8211; turn pages &amp; flippable from your pdf <a href="http://icio.us/htkuyx" rel="nofollow">http://icio.us/htkuyx</a> <a href="http://twitter.com/MarioPriebe/statuses/9202131587" class="aktt_tweet_time">#</a></li>
<li>IzzyToDo the simple #<a href="http://search.twitter.com/search?q=%23webapplication" class="aktt_hashtag">webapplication</a> for managing your tasks online #<a href="http://search.twitter.com/search?q=%23gtd" class="aktt_hashtag">gtd</a> <a href="http://icio.us/zfqtwy" rel="nofollow">http://icio.us/zfqtwy</a> <a href="http://twitter.com/MarioPriebe/statuses/9201874341" class="aktt_tweet_time">#</a></li>
<li>update your #<a href="http://search.twitter.com/search?q=%23twitter" class="aktt_hashtag">twitter</a> account within teams or groups <a href="http://icio.us/ajy4li" rel="nofollow">http://icio.us/ajy4li</a> <a href="http://twitter.com/MarioPriebe/statuses/9201606767" class="aktt_tweet_time">#</a></li>
<li>Translate your tweets to 8 different languages #<a href="http://search.twitter.com/search?q=%23twitter" class="aktt_hashtag">twitter</a> <a href="http://icio.us/ipyovf" rel="nofollow">http://icio.us/ipyovf</a> <a href="http://twitter.com/MarioPriebe/statuses/9201282854" class="aktt_tweet_time">#</a></li>
<li>Plan.fm is a #<a href="http://search.twitter.com/search?q=%23gtd" class="aktt_hashtag">gtd</a> utility for collecting plans you make on other sites and organizing them into a single source <a href="http://icio.us/sc5j3i" rel="nofollow">http://icio.us/sc5j3i</a> <a href="http://twitter.com/MarioPriebe/statuses/9201190255" class="aktt_tweet_time">#</a></li>
<li>What happened in my birth year? <a href="http://icio.us/wrdbro" rel="nofollow">http://icio.us/wrdbro</a> <a href="http://twitter.com/MarioPriebe/statuses/9200700090" class="aktt_tweet_time">#</a></li>
<li>Copy and Paste text in CarryoutText to convert it to a MP3 file that can be downloaded &#8211; no software needed <a href="http://icio.us/kgivgl" rel="nofollow">http://icio.us/kgivgl</a> <a href="http://twitter.com/MarioPriebe/statuses/9200578632" class="aktt_tweet_time">#</a></li>
<li>todoTweet takes all the tweets from your twitter account with #<a href="http://search.twitter.com/search?q=%23todo" class="aktt_hashtag">todo</a> and creates easy to use to-do list. #<a href="http://search.twitter.com/search?q=%23gtd" class="aktt_hashtag">gtd</a> <a href="http://icio.us/kb1zuu" rel="nofollow">http://icio.us/kb1zuu</a> <a href="http://twitter.com/MarioPriebe/statuses/9200264527" class="aktt_tweet_time">#</a></li>
<li>YUI: #<a href="http://search.twitter.com/search?q=%23CSS" class="aktt_hashtag">CSS</a> Grid Builder <a href="http://icio.us/mirczf" rel="nofollow">http://icio.us/mirczf</a> <a href="http://twitter.com/MarioPriebe/statuses/9200177830" class="aktt_tweet_time">#</a></li>
<li>A small #<a href="http://search.twitter.com/search?q=%23WordPress" class="aktt_hashtag">WordPress</a> plugin that allows you to display messages with usernames and avatars from a #<a href="http://search.twitter.com/search?q=%23Twitter" class="aktt_hashtag">Twitter</a> search <a href="http://icio.us/2c10qo" rel="nofollow">http://icio.us/2c10qo</a> <a href="http://twitter.com/MarioPriebe/statuses/9199876351" class="aktt_tweet_time">#</a></li>
<li>This Google Buzz plugin allows you to display your latest Google #<a href="http://search.twitter.com/search?q=%23Buzz" class="aktt_hashtag">Buzz</a> updates as a #<a href="http://search.twitter.com/search?q=%23widget" class="aktt_hashtag">widget</a> on your #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a> blog <a href="http://icio.us/5ojp1i" rel="nofollow">http://icio.us/5ojp1i</a> <a href="http://twitter.com/MarioPriebe/statuses/9199754155" class="aktt_tweet_time">#</a></li>
<li>This plugin displays a button to add a link to Google #<a href="http://search.twitter.com/search?q=%23Buzz" class="aktt_hashtag">Buzz</a> in your #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a> blog <a href="http://icio.us/ioi3v2" rel="nofollow">http://icio.us/ioi3v2</a> <a href="http://twitter.com/MarioPriebe/statuses/9199709862" class="aktt_tweet_time">#</a></li>
<li>Simple Buzz Link displays a link allowing people to bookmark a post/page on Google #<a href="http://search.twitter.com/search?q=%23Buzz" class="aktt_hashtag">Buzz</a> #wordpress <a href="http://icio.us/ufcfic" rel="nofollow">http://icio.us/ufcfic</a> <a href="http://twitter.com/MarioPriebe/statuses/9199658394" class="aktt_tweet_time">#</a></li>
<li>Simply displays to the visitor the last #<a href="http://search.twitter.com/search?q=%23Google" class="aktt_hashtag">Google</a> #Buzz status updates of a Google user in your #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a> blog <a href="http://icio.us/putfdg" rel="nofollow">http://icio.us/putfdg</a> <a href="http://twitter.com/MarioPriebe/statuses/9199523793" class="aktt_tweet_time">#</a></li>
<li>Integrate Google Buzz into your #<a href="http://search.twitter.com/search?q=%23WordPress" class="aktt_hashtag">WordPress</a> blog <a href="http://icio.us/xjluc1" rel="nofollow">http://icio.us/xjluc1</a> <a href="http://twitter.com/MarioPriebe/statuses/9176957336" class="aktt_tweet_time">#</a></li>
<li>how many oranges do you need to power an #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> <a href="http://icio.us/oxr13s" rel="nofollow">http://icio.us/oxr13s</a> <a href="http://twitter.com/MarioPriebe/statuses/9176930203" class="aktt_tweet_time">#</a></li>
<li>An investment in knowledge always pays the best interest. – Benjamin Franklin <a href="http://twitter.com/MarioPriebe/statuses/9176611229" class="aktt_tweet_time">#</a></li>
<li>25+ Alternative &amp; #<a href="http://search.twitter.com/search?q=%23OpenSource" class="aktt_hashtag">OpenSource</a> #Database Engines <a href="http://icio.us/geqv55" rel="nofollow">http://icio.us/geqv55</a> <a href="http://twitter.com/MarioPriebe/statuses/9150512297" class="aktt_tweet_time">#</a></li>
</ul>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Twitter+Weekly+Updates+-+2010-02-21" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-21/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wlan Verbindung bricht immer ab</title>
		<link>http://www.biggle.de/blog/wlan-verbindung-bricht-immer-ab</link>
		<comments>http://www.biggle.de/blog/wlan-verbindung-bricht-immer-ab#comments</comments>
		<pubDate>Sun, 21 Feb 2010 12:00:33 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3945</guid>
		<description><![CDATA[Wer das Problem hat, dass die Wlan Verbindung ständig abbricht, sollte mal einen Blick in die Energieverwaltung werfen. Hier nimmt sich Windows 7 standardmäßig das Recht, die Verbindung zu kappen, wenn Windows &#8220;denkt&#8221;, es ist Zeit Energie zu sparen. Um diese Option abzustellen, geht man wie folgt vor.
Man geht zum Netzwerk-Freigabecenter auf den Link:  Adaptereinstellungen ]]></description>
			<content:encoded><![CDATA[<p>Wer das Problem hat, dass die Wlan Verbindung ständig abbricht, sollte mal einen Blick in die Energieverwaltung werfen. Hier nimmt sich Windows 7 standardmäßig das Recht, die Verbindung zu kappen, wenn Windows &#8220;denkt&#8221;, es ist Zeit Energie zu sparen. Um diese Option abzustellen, geht man wie folgt vor.</p>
<p>Man geht zum Netzwerk-Freigabecenter auf den Link:  <strong>Adaptereinstellungen ändern </strong></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3947" title="wlan" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan.jpg" alt="" width="309" height="282" /></a></p>
<p>und dann via <strong>Rechtsklick </strong>auf die <strong>Eigenschaften </strong>seiner <strong>Drahtlosnetzwerkverbindung</strong></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan1.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3946" title="wlan1" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan1.jpg" alt="" width="341" height="314" /></a></p>
<p>und dort unter den Reiter <strong>Netzwerk </strong>auf <strong>Konfigurieren</strong></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan2.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3948" title="wlan2" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan2.jpg" alt="" width="381" height="168" /></a></p>
<p>Nach dem Klick auf den Reiter <strong>Energieverwaltung </strong>kann man die entsprechende <strong>Checkbox</strong>, wo der Computer die Energie verwaltet abstellen.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan3.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3949" title="wlan3" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/wlan3.jpg" alt="" width="352" height="302" /></a></p>
<p>Die Wlanverbindung sollte nun aufrechterhalten bleiben : )</p>
<p><br class="spacer_" /></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Wlan+Verbindung+bricht+immer+ab" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/wlan-verbindung-bricht-immer-ab/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basta Spring 2010 &#8211; Ich bin dabei</title>
		<link>http://www.biggle.de/blog/basts-spring-2010-ich-bin-dabei</link>
		<comments>http://www.biggle.de/blog/basts-spring-2010-ich-bin-dabei#comments</comments>
		<pubDate>Sat, 20 Feb 2010 17:39:25 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Basta]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3930</guid>
		<description><![CDATA[Auch dieses Jahr wurde es mir ermöglicht, die Basta Spring 2010 zu besuchen. Letztes Jahr hat es ja leider projektbedingt nicht geklappt, aber diesmal ist (noch) alles fest.

Aber&#8230;. Ja wenn es  diese kleine Wörtchen nicht geben würde : )
Die liebe Pilotenvereinigung Cockpit, hat genau ab meinen Anreisetag bis zu meinen Abreisetag einen Streik geplant. Die ]]></description>
			<content:encoded><![CDATA[<p>Auch dieses Jahr wurde es mir ermöglicht, die <a href="http://it-republik.de/dotnet/basta10spring/">Basta Spring 2010</a> zu besuchen. Letztes Jahr hat es ja leider projektbedingt <a href="http://www.biggle.de/blog/basta-2009-ich-bin-dabei">nicht geklappt</a>, aber diesmal ist (noch) alles fest.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/basta2010.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3937" title="basta2010" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/basta2010.jpg" alt="" width="506" height="380" /></a></p>
<p>Aber&#8230;. Ja wenn es  diese kleine Wörtchen nicht geben würde : )</p>
<p>Die liebe Pilotenvereinigung Cockpit, hat genau ab meinen Anreisetag bis zu meinen Abreisetag einen Streik geplant. Die Lufthansa hat hier zwar einen <a href="http://www.lufthansa.com/online/portal/lh/de/nonav/local?l=de&amp;nodeid=1875150&amp;cid=18002">Notflugplan </a>bereit gestellt, jedoch der Hinflug bleibt auf alle Fälle annuliert, Naja was solls dann gehts halt per Zug über Frankfurt nach Darmstadt und für den Zurückweg sieht es noch danach aus, dass der Flug planmässig statt finden wird.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/lhstreik.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3936" title="lhstreik" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/lhstreik.jpg" alt="" width="500" /></a></p>
<p>Auf jeden Fall freue ich mich aber <a href="http://www.biggle.de/blog/?s=technical+summit+2008+tag&amp;x=0&amp;y=0">wieder</a> auf jede Menge &#8220;Input&#8221;.</p>
<p>Einen voraussichtlichen Sessionplan hab ich mir auch schon zusammengestellt.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color:#800080;">23.</span> Februar <span style="color: #cc66cc;">2010</span>
&nbsp;
  <span style="color: #339933;">*</span>
    <span style="color:#800080;">09</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> <span style="color: #339933;">-</span> <span style="color:#800080;">09</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Hamburg
    <span style="color: #cc66cc;">2010</span> – Cloud oder Desktop – wohin geht <span style="color: #990000;">die</span> Reise?
        o Peter Monadjemi Activetraining
  <span style="color: #339933;">*</span>
   <span style="color: #cc66cc;">10</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">11</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> Uhr <span style="color: #339933;">|</span> Room Köln
    Neue Sprachfeatures in C<span style="color: #666666; font-style: italic;"># 4.0
</span>        o Christian Nagel Thinktecture
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">11</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">13</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> Uhr <span style="color: #339933;">|</span> Room Köln
    Dynamisch konsumieren in C<span style="color: #666666; font-style: italic;"># 4.0
</span>        o Oliver Sturm Developer Express
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">14</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">15</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Ulm
    REST mit WCF <span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span> Silverlight und AJAX
        o Daniel Fisher devcoach
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">16</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">17</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> Uhr <span style="color: #339933;">|</span> Room Ulm
    Jenseits von <span style="color: #990000;">System</span><span style="color: #339933;">.</span>ServiceModel<span style="color: #339933;">:</span> WCF<span style="color: #339933;">-</span>Tools und Libraries
        o Christian Weyer thinktecture
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">17</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">19</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> Uhr <span style="color: #339933;">|</span> Room Königswinter
    Datenvisualisierung aus Usability<span style="color: #339933;">-</span>Sicht
        o Dr<span style="color: #339933;">.</span> Tobias Komischke Infragistics
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">20</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">21</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Köln
    Advanced Debugging mit Visual Studio <span style="color: #cc66cc;">2008</span> und <span style="color: #cc66cc;">2010</span>
        o Ingo Rammer thinktecture</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color:#800080;">24.</span> Februar <span style="color: #cc66cc;">2010</span>
&nbsp;
  <span style="color: #339933;">*</span>
    <span style="color:#800080;">08</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color:#800080;">09</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Würzburg
    Microsoft Visual Studio <span style="color: #0000ff;">&quot;IDE&quot;</span> Tipps und Tricks
        o Rainer Stropek software architects
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">10</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">11</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> Uhr <span style="color: #339933;">|</span> Room Köln
    Parallele Applikationen mit <span style="color: #339933;">.</span>NET <span style="color: #cc66cc;">4</span>
        o Manfred Steyer CAMPUS <span style="color: #208080;">02</span>
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">11</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">13</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> Uhr <span style="color: #339933;">|</span> Room Köln
    Parallel Computing<span style="color: #339933;">:</span> Von LINQ nach PLINQ
        o Marc André Zhou Logica Deutschland GmbH <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;</span> Co<span style="color: #339933;">.</span> KG
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">14</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">15</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Hannover
    Windows Identity Foundation
        o Dominick Baier thinktecture
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">16</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">17</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> Uhr <span style="color: #339933;">|</span> Room Ulm
    Das MVVM<span style="color: #339933;">-</span>Pattern
        o Thomas Claudius Huber
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">19</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">19</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Hamburg
    Why Software Sucks
        o David S<span style="color: #339933;">.</span> Platt Harvard University Extension School
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">20</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">21</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> Uhr <span style="color: #339933;">|</span> Room Ulm
    Blend für Nichtdesigner
        o Stefan Lange empira Software GmbH</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color:#800080;">25.</span> Februar <span style="color: #cc66cc;">2010</span>
&nbsp;
  <span style="color: #339933;">*</span>
    <span style="color:#800080;">08</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color:#800080;">09</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Hamburg
    Sync Framework Deep Dive
        o Rainer Stropek software architects
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">10</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">11</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> Uhr <span style="color: #339933;">|</span> Room Hamburg
    ADO<span style="color: #339933;">.</span>NET Entity Framework – Tipps<span style="color: #339933;">,</span> Tricks und gute Praktiken
        o Dr<span style="color: #339933;">.</span> Holger Schwichtenberg www<span style="color: #339933;">.</span>IT<span style="color: #339933;">-</span>Visions<span style="color: #339933;">.</span>de
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">11</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">12</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> Uhr <span style="color: #339933;">|</span> Room Hamburg
    Writing Functional Code — Why F<span style="color: #666666; font-style: italic;"># Matters
</span>        o Ted Neward Neward <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;</span> Associates
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">13</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">14</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> Uhr <span style="color: #339933;">|</span> Room Hannover
    WPF <span style="color:#800080;">4.0</span> – <span style="color: #990000;">die</span> Neuerungen im Überblick
        o Thomas Claudius Huber
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">15</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">15</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">16</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">30</span> Uhr <span style="color: #339933;">|</span> Room Würzburg
    TDD und BDD
        o Gregor Biswanger TRIA IT<span style="color: #339933;">-</span>solutions
  <span style="color: #339933;">*</span>
    <span style="color: #cc66cc;">16</span><span style="color: #339933;">:</span><span style="color: #cc66cc;">45</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">18</span><span style="color: #339933;">:</span><span style="color: #208080;">00</span> Uhr <span style="color: #339933;">|</span> Room Hamburg
    ADO<span style="color: #339933;">.</span>NET optimiert mit SQL Server einsetzen
        o Thorsten Kansy dotnetconsulting<span style="color: #339933;">.</span>eu</pre></div></div>

<p><br class="spacer_" /></p>
<p>Wenn du magst, <a href="http://twitter.com/mariopriebe">folge mir auf Twitter</a> und/oder <a href="http://feeds2.feedburner.com/BigglesBlog">abonniere meinen Feed</a>, ich werde sicher ein paar Fotos und meine Eindrücke online stellen, oder wir sehen uns dort : )</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Basta+Spring+2010+-+Ich+bin+dabei" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/basts-spring-2010-ich-bin-dabei/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>aus alt mach neu</title>
		<link>http://www.biggle.de/blog/aus-alt-mach-neu</link>
		<comments>http://www.biggle.de/blog/aus-alt-mach-neu#comments</comments>
		<pubDate>Wed, 17 Feb 2010 18:43:56 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Private]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3919</guid>
		<description><![CDATA[Meine Mom ihr Notebook  und von meinem Kumpel seiner Tochter das, sind schon etwas in die Tage gekommen und bei beiden waren die Deckel schon ziemlich zerkratzt.
Was kann man also machen, damit man sich nicht schämen muss, wenn man sein Notebook in der Öffentlichkeit benutzt? Richtig, man besucht 123skins, wählt seine Notebook-Marke aus, ein Design ]]></description>
			<content:encoded><![CDATA[<p>Meine Mom ihr Notebook  und von meinem Kumpel seiner Tochter das, sind schon etwas in die Tage gekommen und bei beiden waren die Deckel schon ziemlich zerkratzt.</p>
<p>Was kann man also machen, damit man sich nicht schämen muss, wenn man sein Notebook in der Öffentlichkeit benutzt? Richtig, man besucht <a href="http://www.123skins.de">123skins</a>, wählt seine Notebook-Marke aus, ein Design seiner Wahl, bezahlt dieses und wartet 3 Tage bis die Folien zu Hause eintreffen (Wenn man Paypal nutzt).</p>
<p>Wie das ganze aussieht soll folgende Bilder zeigen.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook7.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3921" title="notebook7" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook7.jpg" alt="" width="506" height="281" /></a></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook2.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3922" title="notebook2" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook2.jpg" alt="" width="506" height="381" /></a></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook4.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3923" title="notebook4" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook4.jpg" alt="" width="506" height="375" /></a></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook3.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3924" title="notebook3" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook3.jpg" alt="" width="506" height="381" /></a></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook5.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3925" title="notebook5" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/notebook5.jpg" alt="" width="506" height="333" /></a></p>
<p><br class="spacer_" /></p>
<p>Fazit: mehr als zufrieden!</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+aus+alt+mach+neu" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/aus-alt-mach-neu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates &#8211; 2010-02-14</title>
		<link>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-14</link>
		<comments>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-14#comments</comments>
		<pubDate>Sun, 14 Feb 2010 22:59:00 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/twitter-weekly-updates-2010-02-14</guid>
		<description><![CDATA[@dustinklein: not real alternative. #Levenshtein is  a distance measure between two strings, #SoundEx match words  that are similar phonemes in reply to dustinklein #
the soundex algorithm #csharp http://icio.us/tdmpon #
listening with google reader http://twitpic.com/137c0h thx!  @caschy:  http://83.98.170.75/podcasts/weekendmix.xml #
cross-fade #youtube videos and create video playlist with TurnTubelist http://icio.us/scewad #
fav4 &#8211; the simple startpage ]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@dustinklein: not real alternative. #<a href="http://search.twitter.com/search?q=%23Levenshtein" class="aktt_hashtag">Levenshtein</a> is  a distance measure between two strings, #<a href="http://search.twitter.com/search?q=%23SoundEx" class="aktt_hashtag">SoundEx</a> match words  that are similar phonemes <a href="http://twitter.com/dustinklein/statuses/9103609212" class="aktt_tweet_reply">in reply to dustinklein</a> <a href="http://twitter.com/MarioPriebe/statuses/9104139131" class="aktt_tweet_time">#</a></li>
<li>the soundex algorithm #<a href="http://search.twitter.com/search?q=%23csharp" class="aktt_hashtag">csharp</a> <a href="http://icio.us/tdmpon" rel="nofollow">http://icio.us/tdmpon</a> <a href="http://twitter.com/MarioPriebe/statuses/9098722871" class="aktt_tweet_time">#</a></li>
<li>listening with google reader <a href="http://twitpic.com/137c0h" rel="nofollow">http://twitpic.com/137c0h</a> thx!  @caschy:  <a href="http://83.98.170.75/podcasts/weekendmix.xml" rel="nofollow">http://83.98.170.75/podcasts/weekendmix.xml</a> <a href="http://twitter.com/MarioPriebe/statuses/9098312667" class="aktt_tweet_time">#</a></li>
<li>cross-fade #<a href="http://search.twitter.com/search?q=%23youtube" class="aktt_hashtag">youtube</a> videos and create video playlist with TurnTubelist <a href="http://icio.us/scewad" rel="nofollow">http://icio.us/scewad</a> <a href="http://twitter.com/MarioPriebe/statuses/9066806111" class="aktt_tweet_time">#</a></li>
<li>fav4 &#8211; the simple startpage for you : ) <a href="http://icio.us/ipkt3r" rel="nofollow">http://icio.us/ipkt3r</a> <a href="http://twitter.com/MarioPriebe/statuses/9055457938" class="aktt_tweet_time">#</a></li>
<li>how to animate visibility property #<a href="http://search.twitter.com/search?q=%23wpf" class="aktt_hashtag">wpf</a> <a href="http://icio.us/vxd1cf" rel="nofollow">http://icio.us/vxd1cf</a> <a href="http://twitter.com/MarioPriebe/statuses/9033628413" class="aktt_tweet_time">#</a></li>
<li>#WPF “Tip of the Day” window <a href="http://icio.us/sa14pl" rel="nofollow">http://icio.us/sa14pl</a> <a href="http://twitter.com/MarioPriebe/statuses/9033489956" class="aktt_tweet_time">#</a></li>
<li>Full Screen Weather <a href="http://icio.us/b3ibxa" rel="nofollow">http://icio.us/b3ibxa</a> <a href="http://twitter.com/MarioPriebe/statuses/9033229099" class="aktt_tweet_time">#</a></li>
<li>#PHP Secure Login Tips And Tricks <a href="http://icio.us/dzkvx2" rel="nofollow">http://icio.us/dzkvx2</a> <a href="http://twitter.com/MarioPriebe/statuses/9032548516" class="aktt_tweet_time">#</a></li>
<li>SOLID Software That Works | #<a href="http://search.twitter.com/search?q=%23ccd" class="aktt_hashtag">ccd</a> #<a href="http://search.twitter.com/search?q=%23solidprinciples" class="aktt_hashtag">solidprinciples</a> #<a href="http://search.twitter.com/search?q=%23cleancode" class="aktt_hashtag">cleancode</a> <a href="http://icio.us/4atkbq" rel="nofollow">http://icio.us/4atkbq</a> <a href="http://twitter.com/MarioPriebe/statuses/9028763245" class="aktt_tweet_time">#</a></li>
<li>for all the gambler out there &#8211; 51 #<a href="http://search.twitter.com/search?q=%23free" class="aktt_hashtag">free</a> #<a href="http://search.twitter.com/search?q=%23PCGames" class="aktt_hashtag">PCGames</a> that can rock your world <a href="http://icio.us/jq2pq3" rel="nofollow">http://icio.us/jq2pq3</a> <a href="http://twitter.com/MarioPriebe/statuses/9028622181" class="aktt_tweet_time">#</a></li>
<li>Zeigt mir Firefox bei der Seite vom USBDriveFresher  : ) RT @Anheledir: Lol&#8230; welches Tool? Bisher hatte ich damit noch keine Probleme :) <a href="http://twitter.com/MarioPriebe/statuses/9028585731" class="aktt_tweet_time">#</a></li>
<li>RT @edward_tanguay: live now Wow,  Joel Spolsky is calling into #<a href="http://search.twitter.com/search?q=%23TWist" class="aktt_hashtag">TWist</a> asking about raising VC $ for stackoverflow.com&#8230;http://bit.ly/2QhCz <a href="http://twitter.com/MarioPriebe/statuses/9027501702" class="aktt_tweet_time">#</a></li>
<li>lol <a href="http://twitpic.com/12uh4o" rel="nofollow">http://twitpic.com/12uh4o</a> RT @Anheledir: USBDriveFresher: A free tool to cleanup your USB drives automatically <a href="http://bit.ly/2BdREq" rel="nofollow">http://bit.ly/2BdREq</a> <a href="http://twitter.com/MarioPriebe/statuses/9027324527" class="aktt_tweet_time">#</a></li>
<li>Buzz Buzz #<a href="http://search.twitter.com/search?q=%23Buzz" class="aktt_hashtag">Buzz</a>&#8230; Tips, Tricks And Resources <a href="http://icio.us/djnx0q" rel="nofollow">http://icio.us/djnx0q</a> <a href="http://twitter.com/MarioPriebe/statuses/9027278322" class="aktt_tweet_time">#</a></li>
<li>if you share  a commented item in google reader, you can find this on your google buzz <a href="http://twitter.com/MarioPriebe/statuses/9026991665" class="aktt_tweet_time">#</a></li>
<li>#IronPython 2.6.1 RC1 for .NET 4.0 RC available <a href="http://icio.us/lwvzjh" rel="nofollow">http://icio.us/lwvzjh</a> <a href="http://twitter.com/MarioPriebe/statuses/9000907258" class="aktt_tweet_time">#</a></li>
<li>#IronRuby v1.0 Release Candidate 2 (RC2) available <a href="http://icio.us/idn4yr" rel="nofollow">http://icio.us/idn4yr</a> <a href="http://twitter.com/MarioPriebe/statuses/9000876026" class="aktt_tweet_time">#</a></li>
<li>Visual Studio 2010 and .NET Framework 4 Release Candidate (RC) Open Downloads <a href="http://icio.us/xhrds2" rel="nofollow">http://icio.us/xhrds2</a> <a href="http://twitter.com/MarioPriebe/statuses/8977997556" class="aktt_tweet_time">#</a></li>
<li>Google Street Snowmobile on the mountain slopes in Vancouver  &#8211; XXI #<a href="http://search.twitter.com/search?q=%23OlympicWinterGa" class="aktt_hashtag">OlympicWinterGa</a>mes <a href="http://icio.us/hnuvi5" rel="nofollow">http://icio.us/hnuvi5</a> <a href="http://twitter.com/MarioPriebe/statuses/8914512197" class="aktt_tweet_time">#</a></li>
<li>Listary is an excellent enhancement #<a href="http://search.twitter.com/search?q=%23utility" class="aktt_hashtag">utility</a> for #<a href="http://search.twitter.com/search?q=%23Windows" class="aktt_hashtag">Windows</a> Explorer, Task Manager, Registry Editor | #<a href="http://search.twitter.com/search?q=%23tools" class="aktt_hashtag">tools</a> <a href="http://icio.us/d1uixt" rel="nofollow">http://icio.us/d1uixt</a> <a href="http://twitter.com/MarioPriebe/statuses/8913573805" class="aktt_tweet_time">#</a></li>
<li>Test-Driven Development (#TDD) Slide <a href="http://icio.us/3shqrx" rel="nofollow">http://icio.us/3shqrx</a> <a href="http://twitter.com/MarioPriebe/statuses/8906847188" class="aktt_tweet_time">#</a></li>
<li>#XNA 2D Basic Collision Detection with Rotation (Sprite2Sprite) <a href="http://icio.us/oplv2f" rel="nofollow">http://icio.us/oplv2f</a> <a href="http://twitter.com/MarioPriebe/statuses/8895695186" class="aktt_tweet_time">#</a></li>
<li>#DualScreen #<a href="http://search.twitter.com/search?q=%23Wallpaper" class="aktt_hashtag">Wallpaper</a> <a href="http://icio.us/k15zno" rel="nofollow">http://icio.us/k15zno</a> <a href="http://twitter.com/MarioPriebe/statuses/8868977952" class="aktt_tweet_time">#</a></li>
<li>#VS2010 / .NET Framework 4 Release Candidate (RC) for subscriber available <a href="http://icio.us/quanvs" rel="nofollow">http://icio.us/quanvs</a> <a href="http://twitter.com/MarioPriebe/statuses/8846936622" class="aktt_tweet_time">#</a></li>
<li>#Snowmageddon <a href="http://twitter.com/MarioPriebe/statuses/8822696541" class="aktt_tweet_time">#</a></li>
<li>Deskography &#8211; Share photos of your desk <a href="http://icio.us/eeqxod" rel="nofollow">http://icio.us/eeqxod</a> <a href="http://twitter.com/MarioPriebe/statuses/8820866002" class="aktt_tweet_time">#</a></li>
</ul>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Twitter+Weekly+Updates+-+2010-02-14" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/twitter-weekly-updates-2010-02-14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 / Vista vom USB Stick booten / installieren</title>
		<link>http://www.biggle.de/blog/windows-7-vista-vom-usb-stick-booten-installieren</link>
		<comments>http://www.biggle.de/blog/windows-7-vista-vom-usb-stick-booten-installieren#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:44:43 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows7]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3886</guid>
		<description><![CDATA[Wer ein NetBook oder Notebook kauft, wird sicher ein vorinstalliertes Windows finden. Die Hersteller aber nehmen sich marketingtechnisch das Recht heraus, so einige (teilweise schrottige) Software zu installieren. Grund genug, ein eigenes &#8211; sauberes &#8211; Windows zu installieren.
Nun, aber was wenn kein CD-Rom vorhanden? Richtig ein externes kaufen : ) oder aber die Möglichkeit in ]]></description>
			<content:encoded><![CDATA[<p>Wer ein NetBook oder Notebook kauft, wird sicher ein vorinstalliertes Windows finden. Die Hersteller aber nehmen sich marketingtechnisch das Recht heraus, so einige (teilweise schrottige) Software zu installieren. Grund genug, ein eigenes &#8211; sauberes &#8211; Windows zu installieren.</p>
<p>Nun, aber was wenn kein CD-Rom vorhanden? Richtig ein externes kaufen : ) oder aber die Möglichkeit in Betracht ziehen, dass man über einen USB Stick Windows installiert.</p>
<p>Um ein Windows auf einen USB Sticks zu installieren, bedarf es keinen grossen Aufwand. Microsoft bietet da ein recht angenehmes &#8211; mir bis dato unbekanntes &#8211; Tool namens <a href="http://support.microsoft.com/kb/300415/de">Diskpart</a> um den Stick entsprechend zu partitionieren.</p>
<p>Also was brauchen wir, einen mindestens 4GB großen USB Stick, 1 Windows 7 / Vista Installations DVD und natürlich ein Netobook, Notebook mit dem es möglich ist, über USB zu booten.</p>
<p>Wenn das alles vorhanden, kann es los gehen.</p>
<p>Wir öffnen dazu &#8211; als Administrator &#8211; die Konsole (cmd) und rufen das Programm <strong>diskpart </strong>auf</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/diskpart.jpg"></a><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/diskpart1.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3888" title="diskpart" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/diskpart1.jpg" alt="" width="500" /></a></p>
<p>Anschliessend, lassen wir uns mit <strong>list disk</strong> die verfügbaren Datenträger anzeigen</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/listdisk.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3889" title="listdisk" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/listdisk.jpg" alt="" width="500" /></a></p>
<p>Nun wählt man mit <strong>select disk NUMMER</strong> den entsprechenden Datenträger, bei mir hier im Beispiel <strong>3</strong>. Den USB Stick kann man hier recht einfach an der Größe erkennen. Wenn man sich hier nicht sicher ist, Finger weg!</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/selectdisk.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3890" title="selectdisk" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/selectdisk.jpg" alt="" width="500" /></a></p>
<p>Mit den Befehl <strong>clean</strong> löschen wir den gesamten Inhalt des Sticks.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/clean.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3891" title="clean" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/clean.jpg" alt="" width="500" /></a></p>
<p>Nun erstellen wir eine primäre Partition mit: <strong>create partition primary</strong></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/createpartitionprimary.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3892" title="createpartitionprimary" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/createpartitionprimary.jpg" alt="" width="500" /></a></p>
<p>und wählen diese mit <strong>select partition 1</strong> aus</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/selectpartition1.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3893" title="selectpartition1" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/selectpartition1.jpg" alt="" width="500" /></a></p>
<p>Mit <strong>active </strong>wird die Partition auf aktiv gesetzt.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/active.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3894" title="active" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/active.jpg" alt="" width="500" /></a></p>
<p>Und mit <strong>format fs=ntfs quick</strong> formatieren wir (schnell) den Stick mit den Dateisystem NTFS.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/formatquickfsntfs.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3895" title="formatquickfsntfs" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/formatquickfsntfs.jpg" alt="" width="500" /></a></p>
<p>Zum Schluss weisen wir den Stick einen freien Laufwerksbuchstaben mit <strong>assign </strong>zu.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/assign.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3896" title="assign" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/assign.jpg" alt="" width="500" /></a></p>
<p>Das wars auch schon was wir auf der Konsole zu tun haben. Wir verlassen diskpart nun mit <strong>exit, </strong></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/exit.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3897" title="exit" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/exit.jpg" alt="" width="500" /></a></p>
<p>und wechseln in den Explorer um den <strong>Inhalt der Windows DVD auf den USB Stick zu kopieren</strong>.</p>
<p>Nachdem die Daten sich auf dem Stick befinden, geht man über die Konsole auf die DVD in das Verzeichnis boot</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/cdboot.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3912" title="cdboot" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/cdboot.jpg" alt="" width="500" /></a></p>
<p>um den Stick bootable zu machen, führt zum Abschluss <strong>bootsect.exe /nt60 F:</strong> aus, hier darauf achten das der Laufwerksbuchstabe vom USB Stick angegeben wird. In meinem Beispiel hier F:</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/bootsectnt60.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3913" title="bootsectnt60" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/bootsectnt60.jpg" alt="" width="500" /></a><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>Nun muss man nur noch im BIOS des Note- oder NetBooks die BootReihenfolge so einstellen, dass dieser von dem Stick bootet. Man muss aber nach den ersten Neustart, den Windows erfordert, im Bios die BootReihenfolge wieder auf die entsprechende Festplatte zurückstellen, ansonsten beginnt die Installation wieder erneut.</p>
<p>Viel Spaß beim installieren : )</p>
<p><br class="spacer_" /></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Windows+7+/+Vista+vom+USB+Stick+booten+/+installieren" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/windows-7-vista-vom-usb-stick-booten-installieren/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dotnet-Kick Button in Wordpress einbinden II</title>
		<link>http://www.biggle.de/blog/dotnet-kick-button-in-wordpress-einbinden-ii</link>
		<comments>http://www.biggle.de/blog/dotnet-kick-button-in-wordpress-einbinden-ii#comments</comments>
		<pubDate>Sat, 13 Feb 2010 09:29:35 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3870</guid>
		<description><![CDATA[Stefan Lieser hat zwar schon einmal ein CodeSnippet veröffentlicht, wie man den Dotnet-Kick Button in einem Wordpress Blog einbindet, ich hab dieses kleine Snippet aber noch ein bisschen &#8220;verfeinert&#8221; : ) 
Es wird nun nicht nur der Link und der Titel des Artikels zu dotnet-kicks mit übertragen, sondern auch ein Teil vom Content, welcher im ]]></description>
			<content:encoded><![CDATA[<p>Stefan Lieser hat zwar schon einmal ein CodeSnippet <a href="http://www.lieser-online.de/blog/?p=161">veröffentlicht</a>, wie man den Dotnet-Kick Button in einem Wordpress Blog einbindet, ich hab dieses kleine Snippet aber noch ein bisschen &#8220;verfeinert&#8221; : ) </p>
<p>Es wird nun nicht nur der Link und der Titel des Artikels zu <a href="http://dotnet-kicks.de/">dotnet-kicks</a> mit übertragen, sondern auch ein Teil vom Content, welcher im Beschreibungsfeld mit vorausgefüllt wird.</p>
<p>Hier kannst Du auch die Anzahl der Zeichen, die von Deinem Content abgeschnitten werden sollen mit angeben (atm im Code 160). Nun einfach nur noch die Kategorie auf dotnet-kick anwählen und speichern.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;a href=&quot;http://dotnet-kicks.de/kick/?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;title=<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;description=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$string</span> <span style="color: #339933;">=</span> get_the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$newString</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$string</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">160</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$newString</span><span style="color: #339933;">.=</span> <span style="color: #0000ff;">' ...'</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$newString</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;&lt;img src=&quot;http://dotnet-kicks.de/Services/Images/KickItImageGenerator.ashx?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;Kick it on dotnet-kicks.de&quot; /&gt;&lt;/a&gt;</pre></td></tr></table></div>

<p>Wenn Du den Content nicht abschneiden möchtest, dann benutzt du einfach folgenden Code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;a href=&quot;http://dotnet-kicks.de/kick/?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;title=<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;description=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$string</span> <span style="color: #339933;">=</span> get_the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;&lt;img src=&quot;http://dotnet-kicks.de/Services/Images/KickItImageGenerator.ashx?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;Kick it on dotnet-kicks.de&quot; /&gt;&lt;/a&gt;</pre></td></tr></table></div>

<p>Ich glaub sogar, dass <a href="http://blog.jan-welker.de/">Jan Welker</a> (Mitinitiator von dotnet-kicks) ein Truncate in der Artikelansicht mit eingebaut hat, also sollte normal das untere Snippet ausreichen&#8230;</p>
<p>Wie auch immer, viel Spass damit</p>
<p>Ich bin auch mal so frech und &#8220;kick&#8221; mich gleich mal selbst :D</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Dotnet-Kick+Button+in+Wordpress+einbinden+II" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/dotnet-kick-button-in-wordpress-einbinden-ii/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Benachrichtigung für Buzz-Items abstellen</title>
		<link>http://www.biggle.de/blog/email-benachrichtigung-fur-buzz-items-abstellen</link>
		<comments>http://www.biggle.de/blog/email-benachrichtigung-fur-buzz-items-abstellen#comments</comments>
		<pubDate>Sat, 13 Feb 2010 07:54:01 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Google & Co]]></category>
		<category><![CDATA[Buzz]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=3855</guid>
		<description><![CDATA[Wenn man nicht über jeden neuen Buzz, den man erstellt hat, per Mail benachrichtigt werden möchte, kann man die Notification-Option bei GMail auch abstellen.
Hierzu geht man in seinem Gmail-Konto auf &#8220;Create a filter&#8221; oben rechts neben der SuchBox für Mails:

Dort schreibt man in das Feld &#8220;Has the words&#8221; label:buzz und klickt auf Next Step

Die folgende ]]></description>
			<content:encoded><![CDATA[<p>Wenn man nicht über jeden neuen Buzz, den man erstellt hat, per Mail benachrichtigt werden möchte, kann man die Notification-Option bei GMail auch abstellen.</p>
<p>Hierzu geht man in seinem Gmail-Konto auf &#8220;Create a filter&#8221; oben rechts neben der SuchBox für Mails:</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/createFilterGmail.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3856" title="createFilterGmail" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/createFilterGmail.jpg" alt="" width="500" /></a></p>
<p>Dort schreibt man in das Feld &#8220;Has the words&#8221; <strong>label:buzz </strong>und klickt auf Next Step</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/labelBuzz.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3857" title="labelBuzz" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/labelBuzz.jpg" alt="" width="500" /></a></p>
<p>Die folgende Message bestätigt man mit ok</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/messageok.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3858" title="messageok" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/messageok.jpg" alt="" width="500" /></a></p>
<p>Und im folgenden Formular, checkt man &#8220;Skip the Inbox&#8221; und &#8220;Mark as Read&#8221; an und wiederum auf Next Step. (Hier kannst Du natürlich auch &#8220;Delete it&#8221; anwählen um diese gleich zu löschen&#8230;)</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2010/02/createFilter.jpg" rel="thumbnail"><img class="alignnone size-full wp-image-3859" title="createFilter" src="http://www.biggle.de/blog/wp-content/uploads/2010/02/createFilter.jpg" alt="" width="394" height="192" /></a></p>
<p>Die Ergebnisseite, listet diesen erstellten Filter auf und ab sofort sollte man von Buzz-Benachrichtigungen verschont bleiben.</p>
<p>Viel Spaß beim buzzen : )</p>
<p><br class="spacer_" /></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><p class="postmetadata"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=mp@biggle.de&amp;currency_code=EUR&amp;amount=1.50&amp;return=&amp;item_name=Donate+a+Coffee+for+Email+Benachrichtigung+für+Buzz-Items+abstellen" target="paypal"><img src="http://www.biggle.de/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="right" alt="Donate a Coffee" title="Donate a Coffee" style="width:15px;height:15px;border:0;" />Du bist dran mit Kaffee holen : )</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/email-benachrichtigung-fur-buzz-items-abstellen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
