<?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>Codecandies &#187; code</title>
	<atom:link href="http://codecandies.de/tag/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://codecandies.de</link>
	<description>Das Weblog von Nico Brünjes.</description>
	<lastBuildDate>Sat, 27 Apr 2013 05:45:02 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Media Queries und Bilder</title>
		<link>http://codecandies.de/2012/01/25/media-queries-und-bilder/</link>
		<comments>http://codecandies.de/2012/01/25/media-queries-und-bilder/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 15:26:54 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=4617</guid>
		<description><![CDATA[Nur f&#252;r die Akten, eine Art, unterschiedlich gro&#223;e Bilder in den Content zu bekommen…]]></description>
				<content:encoded><![CDATA[<p>Nur f&#252;r die Akten, eine Art, unterschiedlich gro&#223;e Bilder in den Content zu bekommen…</p>
<p><a href="http://nicobruenjes.de/demos/responsive_images/">Testseite (Fenster fr&#246;hlich gro&#223; und klein ziehen)</a>.</p>
<p><span id="more-4617"></span></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;H1 Test&lt;/title&gt;
		&lt;style type=&quot;text/css&quot;&gt;
		body {
			min-height: 500px;
		}
			@media screen and (min-width: 680px) and (max-width: 1024px) {
				h1::before { 
					content: url('img/freude_680.jpg'); 
					display: block;
				}
			}
			@media screen and (min-width: 1024px) {
				h1::before { 
					content: url('img/freude.jpg'); 
					display: block;
				}
			}
			
		&lt;/style&gt;
	&lt;/head&gt;
	&lt;body&gt;
		&lt;h1&gt;Meine tolle H1&lt;/h1&gt;
		&lt;p&gt;Lebowski ipsum vee vant zat money, Lebowski. Dolor sit amet, consectetur adipiscing elit praesent ac magna justo. I did not watch my buddies die face down in the mud so that this fucking strumpet. Pellentesque ac lectus quis elit blandit fringilla a ut turpis. Praesent felis ligula, malesuada suscipit malesuada non, ultrices non urna. It's a complicated case, Maude. Lotta ins. Lotta outs. And a lotta strands to keep in my head, man.&lt;/p&gt;

&lt;p&gt;I got information—new shit has come to light and—shit, man! She kidnapped herself! Sed orci ipsum, placerat id condimentum. Rutrum, rhoncus ac lorem aliquam placerat. You got the wrong guy. I'm the Dude, man. My dirty undies. Laundry, Dude. The whites. Posuere neque, at dignissim magna ullamcorper. In aliquam sagittis massa ac tortor. I've had a rough night, and I hate the fucking Eagles, man.&lt;/p&gt;
	&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Getestet gerade nur in Chrome. Kommt von <a href="http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2012-January/034490.html">hier</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2012/01/25/media-queries-und-bilder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3 Gradients</title>
		<link>http://codecandies.de/2010/02/16/css-3-gradients/</link>
		<comments>http://codecandies.de/2010/02/16/css-3-gradients/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 14:55:19 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2806</guid>
		<description><![CDATA[Einige der neuen CSS3-Funktionalit&#228;ten sind ein wenig schwer zu merken, vor allem da man sich hinsichtlich der Syntax bei Webkit…]]></description>
				<content:encoded><![CDATA[<p>Einige der neuen CSS3-Funktionalit&#228;ten sind ein wenig schwer zu merken, vor allem da man sich hinsichtlich der Syntax bei Webkit und Mozilla noch nicht ganz einige ist. Ein sch&#246;nes Beispiel sind <em>gradients</em>, f&#252;r die es sogar noch M$ Filter gibt, den man setzen kann, wenn man das will. Und nur bei linearen Farbverl&#228;ufen. <a href="http://robertnyman.com/2010/02/15/css-gradients-for-all-web-browsers-without-using-images" title="CSS Gradients For All Web Browsers, Without Using Images">Einmal zum Mitschreiben</a>:</p>
<p>[syntax,css3-gradient.css,css]</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2010/02/16/css-3-gradients/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Geolocation im Browser erkennen</title>
		<link>http://codecandies.de/2010/02/12/geolocation-im-browser-erkennen/</link>
		<comments>http://codecandies.de/2010/02/12/geolocation-im-browser-erkennen/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 21:21:58 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2774</guid>
		<description><![CDATA[Heute wollte mir jemand weissmachen, zum Nutzen der Geolocation-Informationen des iPhones br&#228;uchte man eine App. Quatsch. Seit iPhone 3.0 geht…]]></description>
				<content:encoded><![CDATA[<p>Heute wollte mir jemand weissmachen, zum Nutzen der Geolocation-Informationen des iPhones br&#228;uchte man eine App. Quatsch.</p>
<p>Seit iPhone 3.0 <a href="http://mapscripting.com/how-to-use-geolocation-in-mobile-safari">geht im Safari</a>:</p>
<pre><code>navigator.geolocation.getCurrentPosition(foundLocation(position){^
	var lat = position.coords.latitude;
	var long = position.coords.longitude;
	alert('Found location: ' + lat + ', ' + long);
}, noLocation(){
	alert('Could not find location');
});</code></pre>
<p>Weil ich die veraltete Information aber auch gerade nochmal in einem Buch gelesen habe und dort beinahe ausschlie&#223;lich auf jQuery gesetzt wird: es gibt nat&#252;rlich auch ein entsprechendes jQuery-Plugin: <a href="http://code.google.com/p/jquery-geolocation/">jquery-geolocation</a>. Die ist kompatibel zum Safari/iPhone ab Version 3.0 und Firefox ab 3.5.</p>
<pre><code>$.geolocation.find(function(location){
   alert(location.latitude+", "+location.longitude);
}, function(){
   alert("Your device doesn't support jquery.geolocation.js");
});</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2010/02/12/geolocation-im-browser-erkennen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
