<?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>Celik &#187; Programmierung</title>
	<atom:link href="http://www.metincelik.de/tag/programmierung/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.metincelik.de</link>
	<description>Entwickler, Blogger, Webdesigner, SciFi</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:03:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress Plugin WP-Syntax</title>
		<link>http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 12:05:41 +0000</pubDate>
		<dc:creator>Metin (backup)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CPP]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Programmiersprache]]></category>
		<category><![CDATA[Programmierung]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=826</guid>
		<description><![CDATA[WP-Syntax bietet saubere Syntaxhervorhebung mit Unterst&#252;tzung einer Vielzahl von g&#228;ngigen Programmiersprachen. Es unterst&#252;tzt die Hervorhebung mit oder ohne Zeilennummern und beh&#228;lt Formatierungen beim Kopieren von Code-Snippets aus dem Browser. Code-Bl&#246;cke werden mit &#60;pre lang=&#8221;LANGUAGE&#8221; line=&#8221;1&#8243;&#62; und &#60;/pre&#62; definiert. Der Platzhalter LANGUAGE soll durch die unterst&#252;tzte Programmiersprachen ersetzt werden. Weiter unten finden Sie eine vollst&#228;ndige Liste [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WP-Syntax</strong> bietet saubere Syntaxhervorhebung mit Unterst&#252;tzung einer Vielzahl von g&#228;ngigen Programmiersprachen. Es unterst&#252;tzt die Hervorhebung mit oder ohne Zeilennummern und beh&#228;lt Formatierungen beim Kopieren von Code-Snippets aus dem Browser.</p>
<p>Code-Bl&#246;cke werden mit  &lt;pre lang=&#8221;LANGUAGE&#8221; line=&#8221;1&#8243;&gt; und &lt;/pre&gt; definiert. Der Platzhalter LANGUAGE soll durch die unterst&#252;tzte Programmiersprachen ersetzt werden. Weiter unten finden Sie eine vollst&#228;ndige Liste der unterst&#252;tzten Sprachen. Das Zeieleattribut ist optional w&#228;hlbar.</p>
<p><strong>Beispiele</strong></p>
<p>Beispiel 1: PHP, keine Zeilennummer</p>
<blockquote><p>&lt;pre lang=&#8221;php&#8221;&gt;<br />
&lt;div id=&#8221;foo&#8221;&gt;<br />
&lt;?php<br />
  function foo() {<br />
    echo &#8220;Hello World!\\n&#8221;;<br />
  }<br />
?&gt;<br />
&lt;/div&gt;<br />
&lt;/pre&gt;</p></blockquote>
<p>Ansicht mit WP-Syntax:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div id=&quot;foo&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
  <span style="color: #000000; font-weight: bold;">function</span> foo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hello World!<span style="color: #000099; font-weight: bold;">\\</span>n&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;</pre></div></div>

<p>Beispiel 2: Java, mit Zeilennummern ab Zeile 1</p>
<blockquote><p>&lt;pre lang=&#8221;java&#8221; line=&#8221;1&#8243;&gt;<br />
public class Hello {<br />
  public static void main(String[] args) {<br />
    System.out.println(&#8220;Hello World!&#8221;);<br />
  }<br />
}<br />
&lt;/pre&gt;</p></blockquote>
<p>Ansicht mit WP-Syntax:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Hello <span style="color: #009900;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Hello World!&quot;</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><strong>Unterst&#252;tzte Programmiersprachen:</strong></p>
<p>Die folgende Sprachen werden im Attribut <strong>lang</strong> unterst&#252;tzt:</p>
<p>abap, actionscript, actionscript3, ada, apache, applescript, aptsources, asm, <strong>asp</strong>, autoit, avisynth, bash, bf, bibtex, blitzbasic, bnf, boo, <strong>c</strong>, cmac, caddcl, cadlisp, cil, cfdg, cfm, cmake, cobol, cpp-qt, <strong>cpp</strong>, <strong>csharp</strong>, <strong>css</strong>, d, dcs, <strong>delphi</strong>, diff, div, dos, dot, eiffel, email, erlang, fo, fortran, freebasic, genero, gettext, glsl, gml, bnuplot, groovy, haskell, hq9plus, <strong>html4strict</strong>, idl, ini, inno, intercal, io, <strong>java</strong>, java5, <strong>javascript</strong>, kixtart, klonec, klonecpp, latex, lisp, locobasic, lolcode lotusformulas, lotusscript, lscript, lsl2, lua, m68k, make, matlab, mirc, modula3, mpasm, mxml, <strong>mysql</strong>, nsis, oberon2, objc, ocaml-brief, ocaml, oobas, oracle11, oracle8, pascal, per, pic16, pixelbender, perl, php-brief, <strong>php</strong>, plsql, povray, powershell, progress, prolog, properties, providex, python, qbasic, rails, rebol, reg, robots, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, sql, tcl, teraterm, text, thinbasic, tsql, typoscript, <strong>vb</strong>, <strong>vbnet</strong>, verilog, vhdl, vim, visualfoxpro, visualprolog, whitespace, whois, winbatch, <strong>xml</strong>, xorg_conf, xpp, z80</p>
<p>Author Homepage: <a href="http://ryan.mcgeary.org/" title="Ryan McGeary" rel="nofollow" target="_blank" class="liexternal">http://ryan.mcgeary.org</a><br />
Plugin Homepage: <a href="http://wordpress.org/extend/plugins/wp-syntax/" title="WP-Syntax" rel="nofollow" target="_blank" class="liwp">http://wordpress.org/extend/plugins/wp-syntax/</a></p>
<p><strong>Was ist Syntaxhervorhebung?</strong></p>
<p>Das sagt <a href="http://de.wikipedia.org/wiki/Syntaxhervorhebung" title="wikipedia.de" rel="nofollow" target="_blank" class="liwikipedia">Wikipedia</a>:</p>
<blockquote><p>Syntaxhervorhebung (eng. syntax highlighting) bezeichnet die M&#246;glichkeit eines Computerprogrammes, bestimmte W&#246;rter und Zeichenkombinationen in einem Text abh&#228;ngig von ihrer Bedeutung in unterschiedlichen Farben, Schriftarten und -stilen darzustellen. Syntaxhervorhebung wird vor allem in Texteditoren zur Bearbeitung von ausgezeichneten Dokumenten, Programm-Quelltexten und Konfigurationsdateien eingesetzt. Hervorgehoben werden dabei Schl&#252;sselw&#246;rter und andere Sprachelemente.</p>
<p>Syntaxhervorhebung verbessert die Lesbarkeit von Texten: Strukturen im Text sind leichter zu erkennen, das „Querlesen“ wird vereinfacht, Kommentare erscheinen abgesetzt vom eigentlichen Code und Tippfehler fallen schneller auf, da in vielen F&#228;llen ein Tippfehler zu einer ver&#228;nderten Darstellung f&#252;hrt.</p>
<p>Die Syntaxhervorhebung geh&#246;rt heutzutage zur Standardfunktionalit&#228;t vieler integrierter Entwicklungsumgebungen und Texteditoren.</p></blockquote>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;Title=WordPress Plugin WP-Syntax" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress Plugin WP-Syntax&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;bm_description=WordPress Plugin WP-Syntax" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;t=WordPress Plugin WP-Syntax" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress Plugin WP-Syntax+http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;t=WordPress Plugin WP-Syntax" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress Plugin WP-Syntax&amp;uri=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Heutige Suche mit Google</title>
		<link>http://www.metincelik.de/programmierung/heutige-suche-mit-google/</link>
		<comments>http://www.metincelik.de/programmierung/heutige-suche-mit-google/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 08:33:14 +0000</pubDate>
		<dc:creator>Metin (admin)</dc:creator>
				<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[GDI]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=9</guid>
		<description><![CDATA[Google Suche: Was verbirgt sich hinter GDI? Powered by Bookmarkify&#8482;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.de/search?hl=de&#038;q=was+verbirgt+sich+hinter+gdi%2B&#038;meta=" class="liexternal">Google Suche: Was verbirgt sich hinter GDI?</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;Title=Heutige Suche mit Google" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/programmierung/heutige-suche-mit-google/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=Heutige Suche mit Google&amp;url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/programmierung/heutige-suche-mit-google/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;bm_description=Heutige Suche mit Google" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;t=Heutige Suche mit Google" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/programmierung/heutige-suche-mit-google/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=Heutige Suche mit Google+http://www.metincelik.de/programmierung/heutige-suche-mit-google/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;title=Heutige Suche mit Google" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;t=Heutige Suche mit Google" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=Heutige Suche mit Google&amp;uri=http://www.metincelik.de/programmierung/heutige-suche-mit-google/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/programmierung/heutige-suche-mit-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

