<?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; safari</title>
	<atom:link href="http://codecandies.de/tag/safari/feed/" rel="self" type="application/rss+xml" />
	<link>http://codecandies.de</link>
	<description>Das Weblog von Nico Brünjes.</description>
	<lastBuildDate>Sat, 05 May 2012 07:17:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Mehr Spass mit CSS3 in Webkit und Safari</title>
		<link>http://codecandies.de/2010/02/25/mehr-spass-mit-css3-in-webkit-und-safari/</link>
		<comments>http://codecandies.de/2010/02/25/mehr-spass-mit-css3-in-webkit-und-safari/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 07:15:09 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2870</guid>
		<description><![CDATA[Anmerkung vorne weg: dieser Artikel enth&#228;lt Demonstrationen von CSS-Techniken, die weder in allen Webbrowsern schon noch in RSS-Readern jemals funktionieren…]]></description>
			<content:encoded><![CDATA[<p>Anmerkung vorne weg: dieser Artikel enth&#228;lt Demonstrationen von CSS-Techniken, die weder in allen Webbrowsern <em>schon</em> noch in RSS-Readern <em>jemals</em> funktionieren werden.</p>
<p>Am weitesten bei der Implementierung von <a href="http://www.w3.org/TR/css3-3d-transforms/">CSS 3D Transformationen</a> sind <a href="http://webkit.org/blog/386/3d-transforms/">Webkit (der Browser), Safari4 und mobile Safari (iPhone OS 3)</a>. In meiner Chrome 5.0.322.2dev-Version auf dem Mac funktioniert es noch nicht, sehr wohl aber im iPhone-Simulator. In der folgenden Demo (die nur Nutzer der genannten Browser live sehen k&#246;nnen, f&#252;r die anderen gibt&#8217;s ein Video) wird eine einfache 3D Transformation gezeigt, basierend auf zwei Bildern, von denen eines um 180° auf der Y-Achse gedreht wurde, und dann werden auf &#8220;onclick&#8221; beide Ebenen gedreht. Bitte nicht nachmachen: den onlick-Event habe ich zu Demozwecken inline definiert, sowas macht man nicht. Und so sieht das ganze aus:</p>
<div class="video">
<p><a href="http://www.youtube.com/watch?v=M8i15iEFJaY&#038;fmt=18">http://www.youtube.com/watch?v=M8i15iEFJaY</a></p>
</div>
<div id="flip-container">
<div class="card" onclick="jQuery(this).toggleClass('flipped');">
<div class="front face"><img src="http://codecandies.de/wp-content/uploads/2010/02/vlcsnap-00009-620x353.png" alt="Jay und Bob" /></div>
<div class="back face"><img src="http://codecandies.de/wp-content/uploads/2010/02/vlcsnap-00014-620x353.png" alt="Jay und Bob" /></div>
</div>
</div>
<p>Nebenbei, die Bilder sind &#252;brigens aus <em>Clerks II</em>, ein von mir dringend empfohlener Streifen &#252;ber die soziale Lage in den USA. Hier jedoch zun&#228;chst als Beweis sozusagen der HTML-Code auf dem der Trick beruht:</p>
<pre class="brush: xml; title: ; notranslate">&lt;div id=&quot;flip-container&quot;&gt;
    &lt;div class=&quot;card&quot; onclick=&quot;jQuery(this).toggleClass('flipped');&quot;&gt;
        &lt;div class=&quot;front face&quot;&gt;
            &lt;img src=&quot;img/00009-620x353.png&quot; alt=&quot;Jay und Bob&quot; /&gt;
        &lt;/div&gt;
        &lt;div class=&quot;back face&quot;&gt;
            &lt;img src=&quot;img/00014-620x353.png&quot; alt=&quot;Jay und Bob&quot; /&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<p>Und hier das CSS mit allen Erkl&#228;rungen in den Kommentaren.</p>
<pre class="brush: css; title: ; notranslate">#flip-container {
    display: none; /* unsichtbar, stattdessen ist .video zu sehen */
    position: relative;
    width: 620px;
    height: 353px;
    z-index: 1;
}

/*
*  Hier die Magic, Teil 1:
*  mit diesem CSS-Mediaquery wird auf die F&#228;higkeit
*  gepr&#252;ft, CSS 3D darstellen zu k&#246;nnen
*  siehe auch: http://reference.sitepoint.com/css/mediaqueries
*/
@media all and (-webkit-transform-3d) {

    .video {display:none;} /* Video ausblenden */

    #flip-container {
        cursor: pointer;
        display: block; /* ausgeblendeten Container einblenden */
        -webkit-perspective: 800; /* unser Betrachtungsabstand zum Objekt, 200 w&#228;re sehr nah, 1200 weit weg… */
    }

    .card {
        width: 100%;
        height: 100%;
        -webkit-transform-style: preserve-3d; /* weitere M&#246;glichkeit: &quot;flat&quot;, aber dann w&#228;re der sch&#246;ne Effekt des Drehens weg */
        -webkit-transition: -webkit-transform 1s; /* Dauer einer Drehung */
    }

    .face.back {
        /*
        *  Magic Teil 2:
        *  Das zweite Bild wird an der Y-Achse um 180° gedreht und ist dann hinter dem ersten Bild.
        */
        -webkit-transform: rotateY(180deg);
    }

    .face {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden; /* gibt an, welches der beiden Bilder zu sehen ist, hier: das HINTERE ist versteckt */
    }

    .card.flipped {
        /*
        *  Der Magic dritter Teil:
        *  per onclick wird die Klasse .flipped an das Element gesetzt,
        *  die Transformation l&#228;uft ab, mit dem Zeitweit der Klasse .card, also 1s
        */
        -webkit-transform: rotateY(180deg);
    }

} /* Ende: @media */</pre>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2010/02/25/mehr-spass-mit-css3-in-webkit-und-safari/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title><![CDATA[Verlinkt: Web Inspector Updates]]></title>
		<link><![CDATA[http://webkit.org/blog/829/web-inspector-updates/]]></link>
		<comments>http://codecandies.de/2009/11/05/web-inspector-updates/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 08:19:57 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2426</guid>
		<description><![CDATA[A number of exciting new features have been added to the Web Inspector since our last update. Today we would…<p><a href="http://codecandies.de/2009/11/05/web-inspector-updates/" rel="bookmark" title="Permanent link to 'Web Inspector Updates'" class="glyph">→</a></p>
]]></description>
			<content:encoded><![CDATA[<p><q>A number of exciting new features have been added to the Web Inspector since our last update. Today we would like to highlight some of those features!</q> […] <q>If you would like to play with most of these features you will need to be running a recent WebKit Nightly.</q></p>
<p><a href="http://codecandies.de/2009/11/05/web-inspector-updates/" rel="bookmark" title="Permanent link to 'Web Inspector Updates'" class="glyph">→</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/11/05/web-inspector-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@font-face considered harmful?</title>
		<link>http://codecandies.de/2009/10/14/font-face-considered-harmful/</link>
		<comments>http://codecandies.de/2009/10/14/font-face-considered-harmful/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 08:11:05 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[typographie]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2380</guid>
		<description><![CDATA[<p>Eingehende Tests der @font-face-Implementierung in diversen Browsern hat ergeben: wenn man nicht aufpasst, kann das Einbetten von Schriftarten zu einer echten Performancefalle werden. F&#252;r strakfrequentierte Webseiten derzeit noch keine Perspektive.</p>]]></description>
			<content:encoded><![CDATA[<p>Nachdem sich die Kunde von den <a href="http://codecandies.de/2009/06/30/embedden-sie-jetzt/">M&#246;glichkeiten des Fontembedding</a> nun reichlich verbreitet hat, tauchen leider die ersten Problme auf. <a href="http://www.stevesouders.com/blog/2009/10/13/font-face-and-performance/" title="@font-face and performance">Steve Sounders hat einige Quellen zu Problemen beim Fontembedding zusammengefasst und eigene Untersuchungen angestellt</a>, unbedingt lesen bitte, auch wenn ich hier kurz die unliebsamen Fakten zusammenfasse: im Bereich <em>high performance websites</em> muss man wohl von <code>@font-face</code> zun&#228;chst mal Abstand nehmen.</p>
<p>Nat&#252;rlich ist es mal wieder die Internet-Explorer-Familie, die extreme Perdormanceprobleme aufweisen, aber auch s&#228;mtliche andere Browser bekleckern sich im Umgang mit der noch recht jungen Technologie kaum mit Ruhm. <abbr title="FlashOfUnstyledText">FOUT</abbr> – <q>flash of unstyled text</q> ist dabei noch das kleinste Problem, wenn die Fontdateien nicht schnell genug vom Server geliefert werden. In IEs wirkt sich das noch schlimmer aus: bis zum Download des Fonts zeigt <em>Bill Gates Rache</em> <strong>gar nichts an</strong>. In anderen Browsern bleiebn nur die Textteile, die mit <code>@font-face</code> gerendert werden sollen unsichtbar, Firefox zeigt die Ausweichschrift(en) an.</p>
<p>Solchen (und den anderen im Text genannten) Performancefallen kann man nat&#252;rlich mit Caching, Zipping und &#228;hnlichzen Techniken begegnen. Ob man sich aber den Aufwand leisten will, bereits zum jetzigen Zeitpunkt, ich stelle das mal in Frage…</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/10/14/font-face-considered-harmful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedden Sie jetzt!</title>
		<link>http://codecandies.de/2009/06/30/embedden-sie-jetzt/</link>
		<comments>http://codecandies.de/2009/06/30/embedden-sie-jetzt/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 07:46:01 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[typographie]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=2145</guid>
		<description><![CDATA[Mit @font-face lassen sich Schriften in Webseiten einbetten. Machen Sie das! Ok, es ist soweit, mit dem neuen Firefox 3.5…]]></description>
			<content:encoded><![CDATA[<div class="medium"><a class="thickbox" title="Embedded Font im Firefox 3.5rc3" href="http://codecandies.de/wp-content/uploads/2009/06/fontatfirefox.jpg"><img src="http://codecandies.de/wp-content/uploads/2009/06/fontatfirefox-340x123.jpg" alt="fontatfirefox" title="fontatfirefox" width="340" height="123" class="alignnone size-medium wp-image-2148" /></a>
<p>Mit <code>@font-face</code> lassen sich Schriften in Webseiten einbetten. Machen Sie das!</p>
</div>
<p>Ok, es ist soweit, mit dem neuen <a href="http://www.mozilla.com/en-US/firefox/all-rc.html">Firefox 3.5</a> (und Safari 4 und <a href="http://www.opera.com/browser/next/">Opera 10beta</a>), steht immer mehr Nutzern unserer Websites <em>Font<del>embedding</del><ins>downloading<sup><a href="#star1">1</a></sup></ins></em> zur Verf&#252;gung. Damit widerum steht der fl&#228;chendeckenden Umsetzung  typographisch ordentlich gestylter Websites nicht mehr viel im Weg, ausser nat&#252;rlich die IE-Familie, aber die ignorieren wir hier einfach einmal.<sup><a href="#star2">2</a></sup></p>
<p><span id="more-2145"></span></p>
<h4>Und so geht&#8217;s</h4>
<p>Das obige Beispiel nutzt das Embedding, der Code daf&#252;r sieht ungef&#228;hr so aus:</p>
<pre><code>@font-face {
    font-family: Kaffeesatz;
    font-weight: normal;
    src: url(fonts/YanoneKaffeesatz-Regular.otf) format('opentype');
}
h1 {
	font: normal 3em/120% Kaffeesatz, sans-serif;
	text-shadow: 1px 1px 1px #eee;
}</code></pre>
<p>Der genutzte Font ist die unter CC Lizenz stehende <a href="http://yanone.de/typedesign/kaffeesatz/">Kaffeesatz</a>. Der Code ist vielleicht nicht ganz selbst erkl&#228;rend: mit <code>@font-face</code> legen wir selbst eine Font fest, den Namen der <code>font-family</code> kann man dabei frei w&#228;hlen, ein dem Font nahe stehender Name empfiehlt sich nat&#252;rlich. Als <code>src</code> wird der Pfad zum <abbr title="Open Type Font">OTF</abbr>- oder <abbr title="TrueTypeFont">TTF</abbr>-File angegeben, danach noch das <code>format</code>. Fertig. Damit steht uns die <code>font-family</code> „Kaffeesatz” zur weiteren Nutzung zu Verf&#252;gung. Das <code>H1</code> macht auch gleich Gebrauch davon, noch ein wenig vers&#252;sst mit etwas CSS3-<code>text-shadow</code> (wenn wir auf den IE sch…sen, dann aber richtg).</p>
<h4>Mehr Gewicht, bitte</h4>
<p>Folgendes ist zu beachten: wir haben bis hier nur den Font f&#252;r die <code>font-weight</code> <em>normal</em> definiert. Wollen wir eine <em>bold</em>e Schrift, muss ein Font daf&#252;r <em>embedded</em> werden, und zwar bspw. so:</p>
<pre><code>@font-face {
    font-family: Kaffeesatz;
    font-weight: normal;
    src: url(fonts/YanoneKaffeesatz-Regular.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: bold;
    src: url(fonts/YanoneKaffeesatz-Bold.otf) format('opentype');
}
h1 {
	font: normal 3em/120% Kaffeesatz,sans-serif;
	text-shadow: 1px 1px 1px #eee;
}
h2 {
    font: bold 2em/120% Kaffeesatz, sans-serif;
    text-transform: uppercase;
}</code></pre>
<p>In diesem Falle w&#252;rden die H2s bold gesetzt, da wir hierf&#252;r <em>YanoneKaffeesatz-Bold.otf</em> embedded haben. &#196;hnliches k&#246;nnen wir nun auch mit <code>font-style: italic</code> anstellen.</p>
<p>Nochmal zur&#252;ck zur Fettung: <del>Safari kann einige Fettungsstufen mehr anzeigen als Firefox</del>. Unterst&#252;tzt wird eine genauere Abstufung des Fettungsgrades, wenn man bspw. einen Font hat die Kaffeesatz. Das kann dann so aussehen:</p>
<pre><code>@font-face {
    font-family: Kaffeesatz;
    font-weight: 100;
    src: url(fonts/YanoneKaffeesatz-Thin.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: 300;
    src: url(fonts/YanoneKaffeesatz-Light.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: 400;
    src: url(fonts/YanoneKaffeesatz-Regular.otf) format('opentype');
}
@font-face {
    font-family: Kaffeesatz;
    font-weight: 700;
    src: url(fonts/YanoneKaffeesatz-Bold.otf) format('opentype');
}</code></pre>
<p>Das geht sicherlich auch mit <em>keywords</em> wie „light” oder „bolder” etc.</p>
<div class="medium"><a class="thickbox" href="http://codecandies.de/wp-content/uploads/2009/06/schriftenvergleich.gif"><img src="http://codecandies.de/wp-content/uploads/2009/06/schriftenvergleich-340x215.gif" alt="schriftenvergleich" title="schriftenvergleich" width="340" height="215" class="alignnone size-medium wp-image-2155" /></a>
<p>Das Fontrendering unterscheidet sich mitunter, links Firefox, rechts Safari 4 (Mac).</p></div>
<h4>Fonts von der Platte zuerst</h4>
<p>Was ja auch angehen kann, ist dass man eher einen Font nutzen m&#246;chte, der sowieso schon lokal vorhanden ist und nur wenn dieser nicht vorhanden ist, will man einen Download anbieten. Geht auch, wie man bei <a href="http://hacks.mozilla.org/2009/06/beautiful-fonts-with-font-face/">John Dagget</a> nachlesen kann, mit der Eigenschaft „local”:</p>
<pre><code>@font-face {
  font-family: NeueHelvetica;
  src: local("Helvetica Neue"),
       local("HelveticaNeue"),
       url(fonts/MgOpenModernaRegular.ttf);
}</code></pre>
<p>Hier sind zwei <code>local</code> angegeben, &#252;ber diese Liste wird iteriert, genauso wie in der normalem <code>font-family</code> Zuweisung, wo die Schriften durch Kommata getrennt werden (das diese Zusammenstellung von Namen nicht immer ganz einfach ist, <a href="http://www.qxm.de/webdesign/20080317-155549/helvetica-neue-light-in-firefox-3">lesen wir bei Herrn Preidel</a>).</p>
<h4>Und nun?</h4>
<p>Nat&#252;rlich sollte man nur Schriften nehmen, die man auch f&#252;rs embedding benutzen darf, sonst gibt&#8217;s schnell Lizenz&#228;rger. <a href="http://opentype.info/blog/2008/08/05/10-great-free-fonts-for-font-face-embedding/">Hier gibt&#8217;s ein paar freie Schriften</a>, die das ausdr&#252;cklich zulassen. Ach ja und zum guten Schluss, sollte man <code>font-size-adjust</code> <a title="Peter Kr&#246;ner: Sch&#246;nes neues CSS: font-size-adjust" href="http://www.peterkroener.de/schoenes-neues-css-font-size-adjust/">auf keinen Fall vergssen</a>.</p>
<h4>Updates</h4>
<p id="star1"><sup>1)</sup> Von „Embedding“ zu sprechen ist eigentlich nicht richtig, weil der Font tats&#228;chlich auf den Rechner des Nutzers heruntergeladen wird. Das schl&#228;gst sich nat&#252;rlich auch in der Gr&#246;&#223;e der Website nieder und ist auch f&#252;r die Lizenzfrage nicht unerheblich.</p>
<p id="star2"><sup>2)</sup> Na gut, ich hab noch einen Link <a href="http://codecandies.de/2008/11/05/font-face-in-ie-making-web-fonts-work/">aus meinen Bookmarks geangelt</a>, der mehr in Sachen IE verr&#228;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/06/30/embedden-sie-jetzt/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Safari 4</title>
		<link>http://codecandies.de/2009/02/25/safari-4/</link>
		<comments>http://codecandies.de/2009/02/25/safari-4/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 08:45:16 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1907</guid>
		<description><![CDATA[Hurra, ein neuer Browser zum Testen. Gestern legte Apple die Betaversion des Safari 4 vor, was mich, wohl aufgrund meiner…]]></description>
			<content:encoded><![CDATA[<p>Hurra, ein neuer Browser <em>zum Testen</em>. Gestern legte Apple die Betaversion des <a href="http://www.apple.com/safari/" title="Apple: Safari">Safari 4</a> vor, was mich, wohl aufgrund meiner umzugsbedingten Netzfreizeitabstinenz, ziemlich &#252;berrascht hat. <a href="http://www.apple.com/safari/features.html">150 neue Features</a> verspricht uns Apple, viel beeindruckender jedoch ist der erste Eindruck, den man bekommt, wenn man den Browser startet und damit die ersten Seiten ansurft. Um es kurz zu machen: es mir v&#246;llig egal, ob die Tabs oben sitzen, wenn Webseiten in einer derartigen Geschwindigkeit gerendert werden. Halleluja, das geht fix, sch&#246;n und smooth. So drei bis vier Mal schneller als der neueste Firefox, w&#252;rd&#8217; ich tippen. Gef&#228;llt mir.</p>
<p>Um mal doch &#252;ber Features zu sprechen: die »Top Sites« sind <a title="Fontblog: Mein Arbeitstag aus der Sicht von Safari 4"  href="http://www.fontblog.de/mein-arbeitstag-aus-der-sicht-von-safari-4">eine sch&#246;ne Sache</a>, richtg praktisch. Auch sonst stehen da interessante, neue Dinge auf der Featurelist: ARIA-Support, <strong>endlich</strong> Fullpagezoom, CSS Effects, CSS Canvas, 100/100 im Acid3-Test, HTML5-Offline Support, Javascript Debugger und Profiler und so fort…</p>
<p>F&#252;r den Developer in mir, ist es nat&#252;rlich wichtiger <a title="Beatnik Pad: How to run Safari 4 beta and Safari 3 on the same mac" href="http://www.beatnikpad.com/archives/2009/02/24/safari4-safari3">Safari 4 und 3 nebeneinander betreiben</a> zu k&#246;nnen.</p>
<p>Achja, très chic: <a href="http://www.apple.com/safari/">die Safari-Site</a> ist <a href="http://waffle.wootest.net/2009/02/24/html5-for-4/">in HTML5</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2009/02/25/safari-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Verlinkt: Web Inspector Redesign]]></title>
		<link><![CDATA[http://webkit.org/blog/197/web-inspector-redesign/]]></link>
		<comments>http://codecandies.de/2008/10/02/web-inspector-redesign/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 07:46:39 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=1223</guid>
		<description><![CDATA[It has been nine months since our last Web Inspector update and we have a lot of cool things to…<p><a href="http://codecandies.de/2008/10/02/web-inspector-redesign/" rel="bookmark" title="Permanent link to 'Web Inspector Redesign'" class="glyph">→</a></p>
]]></description>
			<content:encoded><![CDATA[<p><q>It has been nine months since our last Web Inspector update and we have a lot of cool things to talk about. If you diligently use the Web Inspector in nightly builds, you might have seen some of these improvements, while other subtle changes might have gone unnoticed.</q> Der Webinspector holt auf.</p>
<p><a href="http://codecandies.de/2008/10/02/web-inspector-redesign/" rel="bookmark" title="Permanent link to 'Web Inspector Redesign'" class="glyph">→</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/10/02/web-inspector-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Verlinkt: Improve the Quality of Bold Text in Safari with text-shadow]]></title>
		<link><![CDATA[http://www.usabilitypost.com/post/4-improve-quality-of-bold-text-in-safari-with-text-shadow]]></link>
		<comments>http://codecandies.de/2008/08/11/improve-the-quality-of-bold-text-in-safari-with-text-shadow/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 09:12:16 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=847</guid>
		<description><![CDATA[Kleiner CSS-Trick, der unliebsames »zu-fett«-Rendern bei heller Schrift auf dunklem Hintergrund in Safari verhindern hilft. →<p><a href="http://codecandies.de/2008/08/11/improve-the-quality-of-bold-text-in-safari-with-text-shadow/" rel="bookmark" title="Permanent link to 'Improve the Quality of Bold Text in Safari with text-shadow'" class="glyph">→</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Kleiner CSS-Trick, der unliebsames »zu-fett«-Rendern bei heller Schrift auf dunklem Hintergrund in Safari verhindern hilft.</p>
<p><a href="http://codecandies.de/2008/08/11/improve-the-quality-of-bold-text-in-safari-with-text-shadow/" rel="bookmark" title="Permanent link to 'Improve the Quality of Bold Text in Safari with text-shadow'" class="glyph">→</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/08/11/improve-the-quality-of-bold-text-in-safari-with-text-shadow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Verlinkt: Building a website for the iPhone]]></title>
		<link><![CDATA[http://www.engageinteractive.co.uk/blog/2008/06/19/tutorial-building-a-website-for-the-iphone/]]></link>
		<comments>http://codecandies.de/2008/06/20/building-a-website-for-the-iphone/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 07:48:06 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=639</guid>
		<description><![CDATA[How to build a website with orientation specific content especially for the iPhone! →<p><a href="http://codecandies.de/2008/06/20/building-a-website-for-the-iphone/" rel="bookmark" title="Permanent link to 'Building a website for the iPhone'" class="glyph">→</a></p>
]]></description>
			<content:encoded><![CDATA[<p>How to build a website with orientation specific content especially for the iPhone!</p>
<p><a href="http://codecandies.de/2008/06/20/building-a-website-for-the-iphone/" rel="bookmark" title="Permanent link to 'Building a website for the iPhone'" class="glyph">→</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/06/20/building-a-website-for-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Verlinkt: SqirrelFish]]></title>
		<link><![CDATA[http://webkit.org/blog/189/announcing-squirrelfish/]]></link>
		<comments>http://codecandies.de/2008/06/03/sqirrelfish/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 08:55:03 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/?p=613</guid>
		<description><![CDATA[Webkit bekommt mal eben einen neuen Javascript-Interpreter eingebaut. Surfin&#8217; Safari dazu mit jeder Menge Details… →<p><a href="http://codecandies.de/2008/06/03/sqirrelfish/" rel="bookmark" title="Permanent link to 'SqirrelFish'" class="glyph">→</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Webkit bekommt mal eben einen neuen Javascript-Interpreter eingebaut. <a href="http://webkit.org/blog/189/announcing-squirrelfish/">Surfin&#8217; Safari</a> dazu mit jeder Menge Details…</p>
<p><a href="http://codecandies.de/2008/06/03/sqirrelfish/" rel="bookmark" title="Permanent link to 'SqirrelFish'" class="glyph">→</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/06/03/sqirrelfish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari vs. FF3</title>
		<link>http://codecandies.de/2008/04/07/safari-vs-ff3/</link>
		<comments>http://codecandies.de/2008/04/07/safari-vs-ff3/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 08:23:14 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/2008/04/07/safari-vs-ff3/</guid>
		<description><![CDATA[In short, competition in the Mac web browser space is strong and getting stronger. Firefox isn’t just a great web…]]></description>
			<content:encoded><![CDATA[<blockquote cite="http://daringfireball.net/2008/04/firefox_3_safari_3"><p>In short, competition in the Mac web browser space is strong and getting stronger. Firefox isn’t just a great web browser, but it’s a pretty good Mac web browser, too.</p>
 <p class="citesource"><cite><a href="http://daringfireball.net/2008/04/firefox_3_safari_3">daringfireball.net</a></cite></p></blockquote>
<p>Afterwards, <a href="http://daringfireball.net/2008/04/firefox_3_safari_3">John Gruber switched back to Safari</a>. Schade.</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/04/07/safari-vs-ff3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beinahe vergessen: Safari 3.1</title>
		<link>http://codecandies.de/2008/03/27/beinahe-vergessen-safari-31/</link>
		<comments>http://codecandies.de/2008/03/27/beinahe-vergessen-safari-31/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 08:18:55 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/2008/03/27/beinahe-vergessen-safari-31/</guid>
		<description><![CDATA[Safari 3.1 bietet einige interessante Neuigkeiten, die Macworld hier kurz beleuchtet: Webfonts, &#60;video&#62; und &#60;audio&#62; Tags aus dem HTML5 Draft,…]]></description>
			<content:encoded><![CDATA[<p>Safari 3.1 bietet einige interessante Neuigkeiten, die <a href="http://www.macworld.com/article/132708/2008/03/safari31.html">Macworld hier kurz beleuchtet</a>: Webfonts, &lt;video&gt; und &lt;audio&gt; Tags aus dem HTML5 Draft, CSS Animationen. All das sind echte Fortschritte hin zu besseren Browsern, wenn der Rest nur ein &#228;hnliches Entwicklungstempo<br />
vorlegen k&#246;nnte…</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/03/27/beinahe-vergessen-safari-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Am liebsten…</title>
		<link>http://codecandies.de/2008/03/17/am-liebsten/</link>
		<comments>http://codecandies.de/2008/03/17/am-liebsten/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 17:33:04 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/2008/03/17/am-liebsten/</guid>
		<description><![CDATA[…w&#252;rde ich zeit.de nur noch mit _bens iPod touch besurfen. Das macht richtig Spass so…]]></description>
			<content:encoded><![CDATA[<p>…w&#252;rde ich <a href="http://www.zeit.de/">zeit.de</a> nur noch mit <a href="http://anmutunddemut.de/node/5854">_bens</a> <em>iPod touch</em> besurfen. Das macht richtig Spass so…</p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/03/17/am-liebsten/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Geht das denn wirklich nicht besser?</title>
		<link>http://codecandies.de/2008/03/02/geht-das-denn-wirklich-nicht-besser/</link>
		<comments>http://codecandies.de/2008/03/02/geht-das-denn-wirklich-nicht-besser/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 20:04:12 +0000</pubDate>
		<dc:creator>Nico Brünjes</dc:creator>
				<category><![CDATA[Postings]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://codecandies.de/2008/03/02/geht-das-denn-wirklich-nicht-besser/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href='http://codecandies.de/wp-content/uploads/2008/03/ff3safari3.png' title='Klick f&#252;r Gro&#223;ansicht: Firefox 3 gegen Safari'><img src="http://codecandies.de/wp-content/uploads/iw/ZZ7762C07F.jpg" width="420" height="104" alt="Vergleich Firefox3 und Safari" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://codecandies.de/2008/03/02/geht-das-denn-wirklich-nicht-besser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

