<?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 &#187; eBay</title>
	<atom:link href="http://www.biggle.de/blog/tag/ebay/feed" rel="self" type="application/rss+xml" />
	<link>http://www.biggle.de/blog</link>
	<description>Web- und Software Development</description>
	<lastBuildDate>Sat, 31 Jul 2010 14:59:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Ebay Live Price-Watcher</title>
		<link>http://www.biggle.de/blog/ebay-live-price-watcher</link>
		<comments>http://www.biggle.de/blog/ebay-live-price-watcher#comments</comments>
		<pubDate>Fri, 17 Oct 2008 13:25:12 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[CodeSnippet]]></category>
		<category><![CDATA[eBay]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=543</guid>
		<description><![CDATA[Aus Fun habe ich ein Snippet gebastelt, welches den aktuellen eBay-Auktionspreis einer Auktion anzeigt.]]></description>
			<content:encoded><![CDATA[<p>Aus Fun habe ich ein Snippet gebastelt, welches den aktuellen eBay-Auktionspreis einer Auktion anzeigt. In meinem Beispiel von der <a title="Townster Auktion" href="http://www.biggle.de/blog/townster-wird-versteigert">Townster Auktion</a>. Zu sehen bei mir rechts unter der Suche.</p>
<p>Wenn es denn jemand für sich benötigt kann er es gerne nutzen.</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
19
20
21
22
23
24
25
26
27
28
29
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
* Live Price-Watcher by mario.priebe 2008
* www.biggle.de
*/</span>
<span style="color: #666666; font-style: italic;">/* config.start */</span>
<span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Townster&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$item</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;250308856257&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//eBay Artikelnummer</span>
<span style="color: #666666; font-style: italic;">/* config.end */</span>
&nbsp;
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=<span style="color: #006699; font-weight: bold;">$item</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$inhalt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$inhalt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$inhalt</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$price</span> <span style="color: #339933;">=</span> between<span style="color: #009900;">&#40;</span><span style="color: #000088;">$inhalt</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Aktuelles Gebot:EUR'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'inkl. MwSt.EUR'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$title</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Aktuelles Gebot: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$price</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;EUR&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=<span style="color: #006699; font-weight: bold;">$item</span><span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;zur Auktion&lt;/a&gt;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> between<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #339933;">||</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$start_position</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$end_position</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start_position</span><span style="color: #339933;">,</span><span style="color: #000088;">$end_position</span><span style="color: #339933;">-</span><span style="color: #000088;">$start_position</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>Update: </strong><br />
Ich möchte noch einmal vermerken, so einfach mal nutzen für irgendeine Auktion, geht leider nicht, da sich von Angebotsart zur Angebotsart die Auktionen unterscheiden.<br />
Aber bei dieser Auktion hier, habe ich noch etwas gefeilt und das &#8220;Ende der Auktion&#8221; mit einbezogen.<br />
Auch diesen Teil möchte ich Euch nicht vorenthalten, vielleicht nützt es ja mal ; )</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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
* Live Price-Watcher by mario.priebe 2008
* www.biggle.de
*/</span>
<span style="color: #666666; font-style: italic;">/* config.start */</span>
<span style="color: #000088;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Townster&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$item</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;250308856257&quot;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//eBay Artikelnummer</span>
<span style="color: #666666; font-style: italic;">/* config.end */</span>
&nbsp;
<span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=<span style="color: #006699; font-weight: bold;">$item</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$inhalt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$inhalt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$inhalt</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$price</span> <span style="color: #339933;">=</span> between<span style="color: #009900;">&#40;</span><span style="color: #000088;">$inhalt</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Aktuelles Gebot:EUR'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'inkl. MwSt.EUR'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$end</span> <span style="color: #339933;">=</span> between<span style="color: #009900;">&#40;</span><span style="color: #000088;">$inhalt</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'MESZ '</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Versandkosten:KostenlosPaketversandService'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$title</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$price</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Aktuelles Gebot: &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$price</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;EUR&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;Noch: &quot;</span> <span style="color: #339933;">.</span><span style="color: #000088;">$end</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Angebot ist beendet&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;br /&gt;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=<span style="color: #006699; font-weight: bold;">$item</span><span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;zur Auktion&lt;/a&gt;&lt;br /&gt;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> between<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #339933;">||</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">===</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$start_position</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$start</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$end_position</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$end</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span><span style="color: #000088;">$start_position</span><span style="color: #339933;">,</span><span style="color: #000088;">$end_position</span><span style="color: #339933;">-</span><span style="color: #000088;">$start_position</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>3. Januar 2010 -- <a href="http://www.biggle.de/blog/aktuelles-copyright-datum-im-footer" title="Aktuelles &#8220;Copyright&#8221; Datum im Footer">Aktuelles &#8220;Copyright&#8221; Datum im Footer</a></li><li>19. Dezember 2009 -- <a href="http://www.biggle.de/blog/datenbankverbindung-php-mysql" title="Datenbankverbindung PHP / MySQL">Datenbankverbindung PHP / MySQL</a></li><li>17. Oktober 2008 -- <a href="http://www.biggle.de/blog/letzten-10-updates-w3c-valid" title="Letzten 10 Updates W3C Valid">Letzten 10 Updates W3C Valid</a></li><li>9. September 2008 -- <a href="http://www.biggle.de/blog/willkommen-zuruck-wp-snippet" title="Willkommen zurück WP-Snippet">Willkommen zurück WP-Snippet</a></li><li>4. April 2010 -- <a href="http://www.biggle.de/blog/alle-bilder-eines-verzeichnisses-php-quicky" title="Alle Bilder eines Verzeichnisses &#8211; PHP Quicky">Alle Bilder eines Verzeichnisses &#8211; PHP Quicky</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/ebay-live-price-watcher/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Townster wird versteigert</title>
		<link>http://www.biggle.de/blog/townster-wird-versteigert</link>
		<comments>http://www.biggle.de/blog/townster-wird-versteigert#comments</comments>
		<pubDate>Wed, 15 Oct 2008 16:47:22 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[SocialNetwork]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=520</guid>
		<description><![CDATA[Und wieder wird bei EBay ein WEB 2.0 Startup versteigert.]]></description>
			<content:encoded><![CDATA[<p>Und wieder wird bei <a title="s=ebay" href="http://www.biggle.de/blog/?s=ebay">EBay</a> ein WEB 2.0 Startup <a title="ebay" href="http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=250308856257&amp;ssPageName=ADME:L:LCA:DE:1123" target="_blank">versteigert.</a></p>
<p>Townster ist eine lokales Branchenbuch in Verbindung mit einem Social Network.</p>
<p>In <a title="townster" href="http://www.townster.de" target="_blank">Townster </a> wurde nach eigenen Angaben bisher 150.000EUR investiert.</p>
<p>Ich bin gespannt in welche Grössenordnung diese Auktion gehen wird.</p>
<p><a title="ebay" href="http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=250308856257&amp;ssPageName=ADME:L:LCA:DE:1123" target="_blank"></a></p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2008/10/townster.jpg"><img class="alignnone size-medium wp-image-521" title="townster" src="http://www.biggle.de/blog/wp-content/uploads/2008/10/townster-300x240.jpg" alt="" width="300" height="240" /></a></p>
<p><br class="spacer_" /></p>
<p><strong>UPDATE</strong>:</p>
<p><br class="spacer_" /></p>
<p>3, 2, 1 verkauft. Townster wurde heute am 24.10.2008 um 18:26:54 für 37.827,77EUR versteigert.</p>
<p>Wer hinter dem Käufernamen &#8220;michael300367&#8243; steckt ist noch nicht bekannt.</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>22. Mai 2009 -- <a href="http://www.biggle.de/blog/social-networking-wars" title="Social Networking Wars">Social Networking Wars</a></li><li>17. Oktober 2008 -- <a href="http://www.biggle.de/blog/ebay-live-price-watcher" title="Ebay Live Price-Watcher">Ebay Live Price-Watcher</a></li><li>25. August 2008 -- <a href="http://www.biggle.de/blog/ein-andenken-an-meine-bescheuerte-ex-frau" title="Ein Andenken an meine bescheuerte Ex-Frau">Ein Andenken an meine bescheuerte Ex-Frau</a></li><li>22. August 2008 -- <a href="http://www.biggle.de/blog/bayanoo-nicht-verkauft" title="Bayanoo nicht verkauft">Bayanoo nicht verkauft</a></li><li>13. August 2008 -- <a href="http://www.biggle.de/blog/bayanoo-das-naechste-startup-unterm-hammer" title="Bayanoo &#8211; Das naechste StartUp unterm Hammer">Bayanoo &#8211; Das naechste StartUp unterm Hammer</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/townster-wird-versteigert/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ein Andenken an meine bescheuerte Ex-Frau</title>
		<link>http://www.biggle.de/blog/ein-andenken-an-meine-bescheuerte-ex-frau</link>
		<comments>http://www.biggle.de/blog/ein-andenken-an-meine-bescheuerte-ex-frau#comments</comments>
		<pubDate>Mon, 25 Aug 2008 20:08:08 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[eBay]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=290</guid>
		<description><![CDATA[So wirbt der Verkäufer ma-ra-so gerade für seine Auktion in der er seinen Ferrarischlüssel veräussert, der ihm noch als Andenken an seine "geliebte" Exfrau zurückgeblieben ist.]]></description>
			<content:encoded><![CDATA[<p>So wirbt der Verkäufer <em>ma-ra-so</em> gerade für seine <a title="ebay" href="http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=230284482027&amp;%23038;ru=http%3A%2F%2Fsearch.ebay.de%3A80%2Fsearch%2Fsearch.dll%3Ffrom%3DR40%26_trksid%3Dm37.l1313%26satitle%3D230284482027%26category0%3D%26fvi%3D1" target="_blank">Auktion</a> in der er seinen Ferrarischlüssel veräussert, der ihm noch als Andenken an seine &#8220;geliebte&#8221; Exfrau zurückgeblieben ist.</p>
<p>Die Besucherzahl ist nach nicht mal 2 Tagen schon im 5stelligen Bereich was aber vielleicht auch daran liegt das der <a title="basicthinking" href="http://www.basicthinking.de/blog/2008/08/25/es-passte-wohl-nicht/" target="_blank">Robert</a> davon berichtet hat : )</p>
<p>Na dann&#8230; Ich hoffe Du bekommst mit diesen Spass wenigstens den einen oder anderen Euro wieder rein ^^</p>
<p>Die Kommentare sind mittlerweile auch recht amüsant zu lesen.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2008/08/ferrari.jpg"><img class="alignnone size-medium wp-image-291" title="ferrari" src="http://www.biggle.de/blog/wp-content/uploads/2008/08/ferrari-300x185.jpg" alt="" width="300" height="185" /></a></p>
<p><strong>Update</strong>: Nach 70 Geboten wurde die Auktion für 385,00 EUR  und 149570 Besuchern beendet.</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>19. Mai 2010 -- <a href="http://www.biggle.de/blog/ob-die-jemals-fertig-werden" title="Ob die jemals fertig werden&#8230;">Ob die jemals fertig werden&#8230;</a></li><li>8. April 2010 -- <a href="http://www.biggle.de/blog/die-invasion-der-8bit-kreaturen" title="Die Invasion der 8Bit Kreaturen">Die Invasion der 8Bit Kreaturen</a></li><li>19. Dezember 2009 -- <a href="http://www.biggle.de/blog/ein-twitteraccount-soll-verkauft-werden" title="Ein Twitteraccount soll verkauft werden">Ein Twitteraccount soll verkauft werden</a></li><li>25. Oktober 2009 -- <a href="http://www.biggle.de/blog/moonwalk-fail" title="Moonwalk Fail">Moonwalk Fail</a></li><li>23. April 2009 -- <a href="http://www.biggle.de/blog/tonematrix-kling-klang-du-und-ich" title="Tonematrix &#8211; Kling Klang, Du und ich&#8230;">Tonematrix &#8211; Kling Klang, Du und ich&#8230;</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/ein-andenken-an-meine-bescheuerte-ex-frau/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bayanoo nicht verkauft</title>
		<link>http://www.biggle.de/blog/bayanoo-nicht-verkauft</link>
		<comments>http://www.biggle.de/blog/bayanoo-nicht-verkauft#comments</comments>
		<pubDate>Fri, 22 Aug 2008 21:26:54 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Auktion]]></category>
		<category><![CDATA[eBay]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=260</guid>
		<description><![CDATA[Das Unternehmen Bayanoo, welches bei eBay zum Angebot stand, endete heute die Auktion mit dem Höchstgebot von 6.411,00 EUR. ]]></description>
			<content:encoded><![CDATA[<p>Das Unternehmen Bayanoo, welches <a title="Biggle" href="/blog/bayanoo-das-naechste-startup-unterm-hammer" target="_self">bei eBay</a> <a title="ebay" href="http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=270264762932" target="_blank">zum Angebot stand</a>, wurde nicht verkauft.</p>
<p>Heute endete die Auktion zwar mit einem Höchstgebot von 6.411,00 EUR, jedoch wurde der gewünschte Mindestpreis nicht erreicht.<br />
<a href="http://www.biggle.de/blog/wp-content/uploads/2008/08/bayanoo1.jpg"><img class="alignnone size-medium wp-image-262" title="bayanoo1" src="http://www.biggle.de/blog/wp-content/uploads/2008/08/bayanoo1-300x154.jpg" alt="" width="300" height="154" /></a></p>
<p>Update: Nur schlappe ~1900 Besucher konnte die Aktion verzeichnen, meiner Meinung nach nicht sehr viel. Oder?</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>17. Oktober 2008 -- <a href="http://www.biggle.de/blog/ebay-live-price-watcher" title="Ebay Live Price-Watcher">Ebay Live Price-Watcher</a></li><li>15. Oktober 2008 -- <a href="http://www.biggle.de/blog/townster-wird-versteigert" title="Townster wird versteigert">Townster wird versteigert</a></li><li>25. August 2008 -- <a href="http://www.biggle.de/blog/ein-andenken-an-meine-bescheuerte-ex-frau" title="Ein Andenken an meine bescheuerte Ex-Frau">Ein Andenken an meine bescheuerte Ex-Frau</a></li><li>13. August 2008 -- <a href="http://www.biggle.de/blog/bayanoo-das-naechste-startup-unterm-hammer" title="Bayanoo &#8211; Das naechste StartUp unterm Hammer">Bayanoo &#8211; Das naechste StartUp unterm Hammer</a></li><li>3. August 2008 -- <a href="http://www.biggle.de/blog/goldenes-iphone-24karat" title="Goldenes iPhone 24Karat">Goldenes iPhone 24Karat</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/bayanoo-nicht-verkauft/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bayanoo &#8211; Das naechste StartUp unterm Hammer</title>
		<link>http://www.biggle.de/blog/bayanoo-das-naechste-startup-unterm-hammer</link>
		<comments>http://www.biggle.de/blog/bayanoo-das-naechste-startup-unterm-hammer#comments</comments>
		<pubDate>Wed, 13 Aug 2008 20:28:03 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[eBay]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=215</guid>
		<description><![CDATA[Nachdem Yieeha den Besitzer zu einem Preis von 24550EUR gewechselt hat, kann man nun bei eBay, bis zum 22.08.2008 13:30Uhr, die Tauschbörse für Handyverträge, Bayanoo ersteigern. Das Unternehmen soll schuldenfrei, mit allen Rechten und auf Wunsch im laufenden Betrieb dem neuen Besitzer übergehen. Da hier ein Mindestpreis gefordert wird, lässt sich nur schwer erahnen wieviel [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Yieeha" href="http://www.biggle.de/blog/yieeha-wechselt-fur-24550-euro-besitzer">Nachdem Yieeha den Besitzer zu einem Preis von 24550EUR gewechselt hat</a>, kann man nun bei eBay, bis zum 22.08.2008 13:30Uhr, die Tauschbörse für Handyverträge, <a title="bayanoo" href="http://www.bayanoo.de/" target="_blank">Bayanoo</a> <a title="ebay" href="http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&amp;item=270264762932" target="_blank">ersteigern</a>.</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2008/08/bayanoo.jpg"><img class="alignnone size-medium wp-image-217" title="bayanoo" src="http://www.biggle.de/blog/wp-content/uploads/2008/08/bayanoo-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p><span id="more-215"></span></p>
<p>Das Unternehmen soll schuldenfrei, mit allen Rechten und auf Wunsch im laufenden Betrieb dem neuen Besitzer übergehen.</p>
<p>Da hier ein Mindestpreis gefordert wird, lässt sich nur schwer erahnen wieviel sich das Unternehmen <span style="text-decoration: line-through;">erträumt</span> erhofft. Man wird sehn.</p>
<p>Update: Gerade eben noch im Blog von Bayanoo noch etwas geschmökert und folgendes gefunden : )</p>
<p><a href="http://www.biggle.de/blog/wp-content/uploads/2008/08/bayanno2.jpg"><img class="alignnone size-medium wp-image-221" title="bayanno2" src="http://www.biggle.de/blog/wp-content/uploads/2008/08/bayanno2-300x114.jpg" alt="" width="300" height="114" /></a></p>
<p>Quelle: keine, wegen nofollow¹</p>
<p>¹ (absahnende Linkschmarotzer)</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de">Mario Priebe</a>.</p><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>17. Oktober 2008 -- <a href="http://www.biggle.de/blog/ebay-live-price-watcher" title="Ebay Live Price-Watcher">Ebay Live Price-Watcher</a></li><li>15. Oktober 2008 -- <a href="http://www.biggle.de/blog/townster-wird-versteigert" title="Townster wird versteigert">Townster wird versteigert</a></li><li>25. August 2008 -- <a href="http://www.biggle.de/blog/ein-andenken-an-meine-bescheuerte-ex-frau" title="Ein Andenken an meine bescheuerte Ex-Frau">Ein Andenken an meine bescheuerte Ex-Frau</a></li><li>22. August 2008 -- <a href="http://www.biggle.de/blog/bayanoo-nicht-verkauft" title="Bayanoo nicht verkauft">Bayanoo nicht verkauft</a></li><li>3. August 2008 -- <a href="http://www.biggle.de/blog/goldenes-iphone-24karat" title="Goldenes iPhone 24Karat">Goldenes iPhone 24Karat</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/bayanoo-das-naechste-startup-unterm-hammer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
