<?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>lo-ga-rie</title>
	<atom:link href="http://www.logarie.nl/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.logarie.nl/blog</link>
	<description>words, lines .. life</description>
	<lastBuildDate>Mon, 23 May 2011 20:36:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>pure CSS semi transparent backgrounds</title>
		<link>http://www.logarie.nl/blog/2011/05/23/pure-css-semi-transparent-backgrounds/</link>
		<comments>http://www.logarie.nl/blog/2011/05/23/pure-css-semi-transparent-backgrounds/#comments</comments>
		<pubDate>Mon, 23 May 2011 20:35:49 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[werk]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=534</guid>
		<description><![CDATA[A sweet tip I got from one of my collegues: Creating semi transparent backgrounds without using extra HTML: If you add an alpha channel to an element all child elements inherit the alpha channel so black texts won't be black after applying the style. We can fix this by adding a an extra element to [...]]]></description>
			<content:encoded><![CDATA[<p>A sweet tip I got from one of my collegues: Creating semi transparent backgrounds without using extra HTML:<br />
If you add an alpha channel to an element all child elements inherit the alpha channel so black texts won't be black after applying the style. We can fix this by adding a an extra element to the dom and position it behind the element we want to style and give that an alpha channel but ... we can make this work without any extra elements as well and here's how!</p>
<p>html:</p>
<pre class="brush:xml">&lt;div class='semi'&gt;&lt;p&gt;This site is awesome!&lt;/p&gt;&lt;/div&gt;</pre>
<p>css:</p>
<pre class="brush:css">.semi {
  background-color: rgba(0,0,255,0.5);
}</pre>
<p>This works great except for our beloved Internet Explorers below version 9 so let's add the magic:</p>
<p>ie8 and below css:</p>
<pre class="brush:css">.semi {
  background: transparent;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#0000ff50,endColorstr=#0000ff50);
}</pre>
<p>Yes you add it as a gradient filter! from starting color #0000ff at 0.5 opacity to #0000ff at 0.5 opacity</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2011/05/23/pure-css-semi-transparent-backgrounds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pure CSS buttons</title>
		<link>http://www.logarie.nl/blog/2011/05/18/pure-css-buttons/</link>
		<comments>http://www.logarie.nl/blog/2011/05/18/pure-css-buttons/#comments</comments>
		<pubDate>Wed, 18 May 2011 22:27:44 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[werk]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=529</guid>
		<description><![CDATA[A small entry just because this little script is so pro it will blow your mind! Remember the days where you needed to use a sliding door principle or a piece of javascript to make buttons with rounded corners, dropshadows and gradients? Those days are still here but wait! There is a solution! let's take [...]]]></description>
			<content:encoded><![CDATA[<p>A small entry just because this little script is so pro it will blow your mind!<br />
Remember the days where you needed to use a sliding door principle or a piece of javascript to make buttons with rounded corners, dropshadows and gradients? Those days are still here but wait! There is a solution! let's take a look at it:</p>
<ul>
<li>Rounded corners?  Most browsers* support CSS3 border-radius!</li>
<li>Dropshadows? Most browsers* support CSS3 box-shadow (even with alpha channel!)</li>
<li>Gradients? Most browsers** support CSS3 gradients!</li>
</ul>
<p>* All modern browsers except IE8<br />
** All modern browsers except IE9 and IE8</p>
<p>So ok, without looking at IE we can turn a simple anchor tag into a nice looking button by just using CSS; for IE we need some magic; this is where your trusty other front-end developers come in and Jason Johnston developed <a href="http://css3pie.com/">CSS3PIE </a>just for this; take a look at the site by clicking the name or by following <a href="http://css3pie.com/">this link to CSS3PIE</a>.</p>
<p>Take these small snippets to get things started:</p>
<p>html:</p>
<pre class="brush:xml">&lt;a href="http://www.logarie.nl/blog/" class="button"&gt;This is a link to lo-ga-rie&lt;/a&gt;</pre>
<p>css:</p>
<pre class="brush:css">.button {
display: inline-block;
position: relative;
border: 1px solid #666;
padding: 5px 10px;
text-align: center;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: #aaa 0px 2px 3px;
-moz-box-shadow: #aaa 0px 2px 3px;
box-shadow: #aaa 0px 2px 3px;
background: #f00;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#ff0000), to(#00ff00));
background: -moz-linear-gradient(#ff0000, #00ff00);
background: linear-gradient(#ff0000, #00ff00);
-pie-background: linear-gradient(#ff0000, #00ff00);
behavior: url(/PIE.htc);
}</pre>
<p>Make sure the path to PIE is working and there you go, a nice looking button while only using html and css! Why should we care about this?<br />
Older techniques like the sliding door are adding unused DOM elements to the html; which slows down page rendering, isn't the best for SEO and could be breaking the accesibility of your site. Techniques like I explained with fancybutton is only working with javascript enabled browsers and thus not fully complient with the accesibility standards. This technique is just using that what is provided by the browser; with a gracefull fallback (background: #f00;) in case nothing else works. Creating hover and visited states of this button is as easy and you think; just a few extra lines of CSS; don't forget to include PIE in those rules!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2011/05/18/pure-css-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>has to do something with this</title>
		<link>http://www.logarie.nl/blog/2011/05/15/has-to-do-something-with-this/</link>
		<comments>http://www.logarie.nl/blog/2011/05/15/has-to-do-something-with-this/#comments</comments>
		<pubDate>Sun, 15 May 2011 22:33:22 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=527</guid>
		<description><![CDATA[my oh my i need so more with this part of the internetz]]></description>
			<content:encoded><![CDATA[<p>my oh my i need so more with this part of the internetz</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2011/05/15/has-to-do-something-with-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Air is ok</title>
		<link>http://www.logarie.nl/blog/2011/01/18/air-is-ok/</link>
		<comments>http://www.logarie.nl/blog/2011/01/18/air-is-ok/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 22:05:42 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=524</guid>
		<description><![CDATA[Some people may want to shoot me now but I think adobe air is a gift send from heaven. Programming with Actionscript3 is very nice and a lot more logical then actionscript was before. Using the power of flash and port it from the trusty sandbox of the browser to the desktop and mobile devices [...]]]></description>
			<content:encoded><![CDATA[<p>Some people may want to shoot me now but I think adobe air is a gift send from heaven.<br />
Programming with Actionscript3 is very nice and a lot more logical then actionscript was before. Using the power of flash and port it from the trusty sandbox of the browser to the desktop and mobile devices is just awesome. Of course we need loads more if then else loops just for checking what feature is available on what device but the base is still the solid AS3.</p>
<p>Performance is key on mobile devices and that is where Air (the programmer and the animator) is failing at a bit. Vectors should be bitmaps, Tweens should be picture sequences etc. but overall most of the performance issues are common sense. A badly written html5 webview with crappy expensive javascript is a killer as well.</p>
<p>Although I'm of the generation "why should we care about memory management if we know everyone has GB's of internal memory we can use" I'm very interessed in getting the hang of being memory and loadtime efficient. Getting the hang of it? Ye I'm no pro at that yet but I'm doing my homework :P</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2011/01/18/air-is-ok/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>it&#8217;s done!</title>
		<link>http://www.logarie.nl/blog/2010/12/05/its-done/</link>
		<comments>http://www.logarie.nl/blog/2010/12/05/its-done/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 00:17:55 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=519</guid>
		<description><![CDATA[Last few weeks i was working on an Action Script project called "wat weet Nederland" and it's live @ http://bit.ly/watweetned (sorry it's Dutch only) See my last post for what I've learned here, it was quite a journey but I am proud of what we've made and my own part in it. A fully flash [...]]]></description>
			<content:encoded><![CDATA[<p>Last few weeks i was working on an Action Script project called "wat weet Nederland" and it's live @ <a href="http://bit.ly/watweetned">http://bit.ly/watweetned</a> (sorry it's Dutch only)<br />
See my last post for what I've learned here, it was quite a journey but I am proud of what we've made and my own part in it. A fully flash based video quiz/survey, not stuff i normally do.<br />
Something might happen in the next few weeks that can blow my world apart, but i don't want to jinx it by saying to much about it. Stay tuned; could be I have some mighty interessing news next week!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2010/12/05/its-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(basic) as3 stuff</title>
		<link>http://www.logarie.nl/blog/2010/11/18/basic-as3-stuff/</link>
		<comments>http://www.logarie.nl/blog/2010/11/18/basic-as3-stuff/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 23:44:44 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=516</guid>
		<description><![CDATA[some things I learned in my last action script project: be sure to make a loader class with a dictionary that holds references to files you already loaded make a basebutton class to handle your different button states extend that class when you need to implement a reset function in your swf files so you [...]]]></description>
			<content:encoded><![CDATA[<p>some things I learned in my last action script project:</p>
<ul>
<li>be sure to make a loader class with a dictionary that holds references to files you already loaded</li>
<li>make a basebutton class to handle your different button states</li>
<li>extend that class when you need to</li>
<li>implement a reset function in your swf files so you reset an already loaded file</li>
<li>program event driven, the more events you dispatch the more power you have to interact</li>
<li>leave designing to the designers and motion to the motion developers and force them to use flash as it is intended; as scripter you need to demand fla files with embedded animations instead of making them yourself</li>
<li>Event.ADDED_TO_STAGE is very powerfull if you use a MVC program model sinc you can access your Controller when the model is added to the stage.</li>
<li>trace debug stuff with the timestamp and fully qualified class name so you know which class spawned the trace event</li>
<li>Declare baseclasses of .fla files as a dynamic class so you can add new properties on the fly (you know you want to!); you can always implement or extend the property in the class itself</li>
<li>buy a crap cheapy netbook to test performance on a low level machine</li>
<li>never think a preloader isn't needed; implement it but hide it if the file is loaded &lt; 500ms or so (a flickering preloader is just as bad so don't always show it)</li>
<li>the predefined flash components are just as strong as the predefined html form elements, they do a lot but never everything your crazy designer thinks off</li>
<li>let buissines logic be handled by the backend if available (e.g. let the backend decide what you need to show make sure you can make it show)</li>
<li>Use a generic XML parser (if used) or use json if you can handle it ;)</li>
<li>if you are using XML parse the nodes into AS values so you can handle them directly</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2010/11/18/basic-as3-stuff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Family visit</title>
		<link>http://www.logarie.nl/blog/2010/09/29/family-visit/</link>
		<comments>http://www.logarie.nl/blog/2010/09/29/family-visit/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 09:39:17 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=510</guid>
		<description><![CDATA[Last weekend I've been in Madrid and it's surroundings for a small family visit. Let's take a look at the trip with the #purring app for both Android and iPhone. It all started at schiphol http://www.purring.nl/p/004Js6 and after an easy 2 hour flight I landed in Madrid at the barajas airport http://www.purring.nl/p/004Js8 from there I [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend I've been in Madrid and it's surroundings for a small family visit. Let's take a look at the trip with the #purring app for both Android and iPhone.</p>
<p>It all started at schiphol <a href="http://www.purring.nl/p/004Js6">http://www.purring.nl/p/004Js6</a> and after an easy 2 hour flight I landed in Madrid at the barajas airport <a href="http://www.purring.nl/p/004Js8">http://www.purring.nl/p/004Js8</a> from there I took 2 metro's and a lightrail to pozuelo <a href="http://www.purring.nl/p/004Js9">http://www.purring.nl/p/004Js9</a>. I've stayed the night in pozuelo and made a trip to El Escorial <a href="http://www.purring.nl/p/004Jsd">http://www.purring.nl/p/004Jsd</a> the next day, which is an awesome and very impressive monestary.<br />
<img src="http://www.logarie.nl/madrid_20100926/IMAG0030.jpg" alt="Entering El Escorial" width="90%" align="center" /><br />
We left at 19.00 exactly<br />
<img src="http://www.logarie.nl/madrid_20100926/IMG_1429.JPG" alt="Leaving El Escorial" width="90%" align="center" /><br />
The next day i went back to barajas <a href="http://www.purring.nl/p/004Jsf">http://www.purring.nl/p/004Jsf</a> and strait back to Schiphol and back home!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2010/09/29/family-visit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music; 3/4 2010</title>
		<link>http://www.logarie.nl/blog/2010/09/05/music-34-2010/</link>
		<comments>http://www.logarie.nl/blog/2010/09/05/music-34-2010/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 11:55:39 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=507</guid>
		<description><![CDATA[3rd quarter is done and the results are in Bands Devin Townsend Project Stone Temple Pilots Edenbridge Songs Devin Townsend Project – Numbered! Devin Townsend Project – Bend It Like Bender! Devin Townsend Project – Resolve! Lol; just listen to Devin like I do ;)]]></description>
			<content:encoded><![CDATA[<p>3rd quarter is done and the results are in</p>
<h2>Bands</h2>
<ol>
<li>Devin Townsend Project</li>
<li>Stone Temple Pilots</li>
<li>Edenbridge</li>
</ol>
<h2>Songs</h2>
<ol>
<li><a href="http://www.last.fm/music/Devin+Townsend+Project">Devin Townsend Project</a> – <a href="http://www.last.fm/music/Devin+Townsend+Project/_/Numbered%21">Numbered!</a></li>
<li><a href="http://www.last.fm/music/Devin+Townsend+Project">Devin Townsend Project</a> – <a href="http://www.last.fm/music/Devin+Townsend+Project/_/Bend+It+Like+Bender%21">Bend It Like Bender!</a></li>
<li><a href="http://www.last.fm/music/Devin+Townsend+Project">Devin Townsend Project</a> – <a href="http://www.last.fm/music/Devin+Townsend+Project/_/Resolve%21">Resolve!</a></li>
</ol>
<p>Lol; just listen to Devin like I do ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2010/09/05/music-34-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>it&#8217;s the final countdown</title>
		<link>http://www.logarie.nl/blog/2010/08/28/its-the-final-countdown/</link>
		<comments>http://www.logarie.nl/blog/2010/08/28/its-the-final-countdown/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 23:13:03 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/2010/08/28/its-the-final-countdown/</guid>
		<description><![CDATA[officially it's 6 more days but let's keep it at 7 untill i go to the zoo again for the first time in years. The company is great and it will be an epic day. How it works out? well stay tuned but don't expect any pictures; my trusty phone makes every day look like [...]]]></description>
			<content:encoded><![CDATA[<p>officially it's 6 more days but let's keep it at 7 untill i go to the zoo again for the first time in years. The company is great and it will be an epic day. How it works out? well stay tuned but don't expect any pictures; my trusty phone makes every day look like the weather is now: dark and grey</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2010/08/28/its-the-final-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music; 2/4 2010</title>
		<link>http://www.logarie.nl/blog/2010/07/01/music-24-2010/</link>
		<comments>http://www.logarie.nl/blog/2010/07/01/music-24-2010/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 21:18:16 +0000</pubDate>
		<dc:creator>lucien immink</dc:creator>
				<category><![CDATA[bericht]]></category>

		<guid isPermaLink="false">http://www.logarie.nl/blog/?p=504</guid>
		<description><![CDATA[2nd quarter is done and the results are in Bands Stone temple pilots Ayreon Pearl jam Songs 30 Seconds to Mars – Vox Populi Linkin Park – The Little Things Give You Away Epica – Martyr of the Free Word The new Stone temple pilots album is great!]]></description>
			<content:encoded><![CDATA[<p>2nd quarter is done and the results are in</p>
<h2>Bands</h2>
<ol>
<li>Stone temple pilots</li>
<li>Ayreon</li>
<li>Pearl jam</li>
</ol>
<h2>Songs</h2>
<ol>
<li><a href="http://www.last.fm/music/30+Seconds+to+Mars">30 Seconds to Mars</a> – <a href="http://www.last.fm/music/30+Seconds+to+Mars/_/Vox+Populi">Vox Populi</a></li>
<li><a href="http://www.last.fm/music/Linkin+Park">Linkin Park</a> – <a href="http://www.last.fm/music/Linkin+Park/_/The+Little+Things+Give+You+Away">The Little Things Give You Away</a></li>
<li><a href="http://www.last.fm/music/Epica">Epica</a> – <a href="http://www.last.fm/music/Epica/_/Martyr+of+the+Free+Word">Martyr of the Free Word</a></li>
</ol>
<p>The new Stone temple pilots album is great!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.logarie.nl/blog/2010/07/01/music-24-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

