<?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>David Smeringe weblog &#187; web life</title>
	<atom:link href="http://people.merea.se/david/category/web-life/feed/" rel="self" type="application/rss+xml" />
	<link>http://people.merea.se/david</link>
	<description>programming and web design centric weblog</description>
	<lastBuildDate>Mon, 28 Feb 2011 08:59:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Speed up your basic work for new sites</title>
		<link>http://people.merea.se/david/2011/02/24/speed-up-your-basic-work-for-new-sites/</link>
		<comments>http://people.merea.se/david/2011/02/24/speed-up-your-basic-work-for-new-sites/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 08:24:57 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Markups and javascripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web life]]></category>
		<category><![CDATA[boilertemplate]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[grid960]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=101</guid>
		<description><![CDATA[From time to time I create a new site (actually, that&#8217;s kind of what my job is all about.. ). Such job is usually quite similar from one site to another. In order to simplify this process and &#8211; perhaps even more valuable &#8211; increase the production quality, I use frameworks and boiler templates. Currently [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time I create a new site (actually, that&#8217;s kind of what my job is all about.. <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ). Such job is usually quite similar from one site to another. In order to simplify this process and &#8211; perhaps even more valuable &#8211; increase the production quality, I use frameworks and boiler templates. Currently my favourite setup is the HTML5 Boilertemplate together with grid960. </p>
<p>Let me introduce the two of them for you.</p>
<p>HTML5 Boilerplate:</p>
<p>This is what it sounds like. A basic proof-of-concept foundation for any website what so ever. No need to invent the wheel all over again. It&#8217;s important to notice though that it&#8217;s not a framework, but a ready made template setup which you then can (usually) scale down safely as well as add on to, to fit your needs. </p>
<p>That&#8217;s where the nice CSS Framework grid960 comes in! <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The Grid960 is much more of a framework (as far as you can speak of frameworks in CSS). It gives you ready made CSS classes for a grid-splitted layout with a set width (960). Quoting their site;</p>
<blockquote><p>&#8220;All modern monitors support at least 1024 × 768 pixel resolution. 960 is divisible by 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320 and 480. This makes it a highly flexible base number to work with.&#8221;</p>
</blockquote>
<p>There are really nice plugins for Photoshop/AI/Fireworks/Dreamweaver that makes life even easier. </p>
<p>Applying the 960 grid to your boiler template is just a matter of adding the 960.css right after the boilerplates style.css link-tag (Ignore the reset and text css).</p>
<p>Read more about these two at</p>
<p><a href="http://mashable.com/2010/09/02/html5-boilerplate-guide/">http://mashable.com/2010/09/02/html5-boilerplate-guide/</a> &#8211; Short intro</p>
<p><a href="http://html5boilerplate.com/">http://html5boilerplate.com/</a>- Home of the boilerplate</p>
<p><a href="http://960.gs/">http://960.gs/</a> &#8211; Home of the CSS grid</p>
<p>..and Some <a href="https://github.com/paulirish/html5-boilerplate/issues/50/#issue/50">QA for boilertemplate @github</a></p>
<p>Next up will be chopping it upp all again to fit the CMS or whatever system it needs to fit into <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  (TYPO3 maybe?!)</p>
<p>Updates 24 feb 2011:</p>
<p>Here are some adjustments or additions when working with boilerplate and TYPO3:</p>
<p><code lang="ts"></p>
<p>config.doctype = &lt;!doctype html&gt;</p>
<p>config.renderCharset = utf-8</p>
<p>config.htmlTag_langKey = sv</p>
<p>config.htmlTag_setParams = class='no-js.js'</p>
<p>[browser = msie] &#038;&#038; [version = <7]</p>
<p>config.htmlTag_setParams = class='no-js.js ie6'</p>
<p>[global]</p>
<p>[browser = msie] &#038;&#038; [version = 7]</p>
<p>config.htmlTag_setParams = class='no-js.js ie7'</p>
<p>[global]</p>
<p>[browser = msie] &#038;&#038; [version = 8]</p>
<p>config.htmlTag_setParams = class='no-js.js ie8'</p>
<p>[global]</p>
<p>[browser = msie] &#038;&#038; [version = 9]</p>
<p>config.htmlTag_setParams = class='no-js.js ie9'</p>
<p>[global]</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2011/02/24/speed-up-your-basic-work-for-new-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skywriter or Bespin as bookmarklet</title>
		<link>http://people.merea.se/david/2010/11/16/skywriter-bookmarklet/</link>
		<comments>http://people.merea.se/david/2010/11/16/skywriter-bookmarklet/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 13:06:25 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[editors/ides/rads]]></category>
		<category><![CDATA[web life]]></category>
		<category><![CDATA[bespin]]></category>
		<category><![CDATA[mozilla labs]]></category>
		<category><![CDATA[skywriter]]></category>
		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=95</guid>
		<description><![CDATA[Skywriter (Bespin) is an on line pure web standards code editor from the Mozilla ppl.. It&#8217;s also available as a bookmarklet (apart from an embedded release). The bookmarklet is pritty cool, allowing you to click the bookmarklet when visiting any site with a textarea in it and then transform them into code editors with highlightning [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mozillalabs.com/skywriter/">Skywriter (Bespin)</a> is an on line pure web standards code editor from the Mozilla ppl.. It&#8217;s also available <a href="https://bespin.mozillalabs.com/bookmarklet/">as a bookmarklet</a> (apart from an embedded release). The bookmarklet is pritty cool, allowing you to click the bookmarklet when visiting any site with a textarea in it and then transform them into code editors with highlightning etc..</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2010/11/16/skywriter-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fun drawing on the web..</title>
		<link>http://people.merea.se/david/2010/09/14/fun-drawing-on-the-web/</link>
		<comments>http://people.merea.se/david/2010/09/14/fun-drawing-on-the-web/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 07:26:10 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[web life]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[harmony]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=87</guid>
		<description><![CDATA[Just stumbled (surfed) upon this link http://mrdoob.com/projects/harmony/.]]></description>
			<content:encoded><![CDATA[<p>Just stumbled (surfed) upon this link<a href="http://mrdoob.com/projects/harmony/"> http://mrdoob.com/projects/harmony/</a>.<div id="attachment_88" class="wp-caption alignnone" style="width: 310px"><a href="http://people.merea.se/david/wp-content/uploads/2010/09/hämta.png"><img src="http://people.merea.se/david/wp-content/uploads/2010/09/hämta-300x182.png" alt="" title="hämta" width="300" height="182" class="size-medium wp-image-88" /></a><p class="wp-caption-text">Monkey</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2010/09/14/fun-drawing-on-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Those where the days</title>
		<link>http://people.merea.se/david/2009/10/08/those-where-the-days/</link>
		<comments>http://people.merea.se/david/2009/10/08/those-where-the-days/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:19:52 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[web life]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[on topic]]></category>
		<category><![CDATA[sierra]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=56</guid>
		<description><![CDATA[Long time since last post, and by then it&#8217;s this really on topic link: http://sarien.net/ Just had to post it. Brings those old memories back to life. Those where the days, right? Thanks Martin Kool for bringing it all back]]></description>
			<content:encoded><![CDATA[<p>Long time since last post, and by then it&#8217;s this really on topic link: <a title="Sarien.net" href="http://sarien.net/">http://sarien.net/</a> <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Just had to post it. Brings those old memories back to life. Those where the days, right?</p>
<p>Thanks <a href="http://martinkool.com/">Martin Kool</a> for bringing it all back <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2009/10/08/those-where-the-days/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Having a midnight laughter &#8211; rebranded TYPO3 newsthread</title>
		<link>http://people.merea.se/david/2009/02/24/having-a-midnight-laughter/</link>
		<comments>http://people.merea.se/david/2009/02/24/having-a-midnight-laughter/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 06:30:09 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[web life]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=54</guid>
		<description><![CDATA[Stuck in work process I launched Thunderbird to skim through the TYPO3 newslists. Apparently I haven&#8217;t checked that one for some time since Thunderbird suggested me to get the latest 500 posts Anyway. There was a really funny, or should I say sad, posting about a Russian rebrand/fork of TYPO3. First he uses a pseudonym [...]]]></description>
			<content:encoded><![CDATA[<p>Stuck in work process I launched Thunderbird to skim through the TYPO3 newslists. Apparently I haven&#8217;t checked that one for some time since Thunderbird suggested me to get the latest 500 posts <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Anyway. There was a really funny, or should I say sad, <a title="TYPO3 fork in the newslist" href="http://lists.netfielders.de/pipermail/typo3-english/2009-February/058312.html">posting about a Russian rebrand/fork of TYPO3</a>. First he uses a pseudonym posting news about a fork, then he denies &#8216;borrowing&#8217; TYPO3 code and icons, finaly changing into admiting having to change a few lines of code and some icons.. doh.. &#8211; <a title="Telenok TYPO3 fork" href="http://telenok.org/en/possibilities/#video">check out the site</a> and judge for yourself.</p>
<p>It&#8217;s really sad that people just can&#8217;t see the fundamental philosophy of TYPO3 and the intentions of it&#8217;s original inventor Kasper Skårhöj, releasing his work as GPL:d open source software &#8211; Inspire people to share!</p>
<p>I few days earlier I stumbled upon a swedish fork/overlay work of TYPO3 called <a title="TYPO3 Magenta" href="http://www.typo3magenta.com/om-systemet/">TYPO3 magenta</a>. I got the similar feelings over this one as with that Russian guys fork. Though this is a bit more balancing on the edge. The TYPO3 name is still there but with a suffix. It&#8217;s open stated to be built on TYPO3. From the website (freely translated from Swedish using google..):</p>
<blockquote><p>&#8220;TYPO3 Magenta is a web-based system to manage, organize and publish content on websites. TYPO3 Magenta is a further development of the publishing tool TYPO3. TYPO3 is based on open source which means significantly lower costs compared with commercial counterparts. TYPO3 Magenta has developed with the user in focus. The primary user group is Swedish small-and medium-sized enterprises.&#8221;</p></blockquote>
<p>It&#8217;s sold in a license form with system, hosting and support.</p>
<p>But as I said, I find this solution better &#8211; while not good. I&#8217;m guessing it&#8217;s mostly about a nifty back end skinn. Refactoring TYPO3 this way is like saying &#8220;TYPO3 is good but old school. We make it modern and better with our own version&#8221;. And the main issue is still &#8211; what would a company loose going 100% TYPO3 and sharing improvements rather then trying to be so special?</p>
<p>I will be honest. We started our business with two CMS solutions. CMS made simple and TYPO3. One simple CMS for the simple sites and one advanced for the larger ones. We promoted them as simple and advanced cms. However during time I realized that both we and the solutions themselves would benefit much more exposing TYPO3 as it is, with it&#8217;s huge community and existing brand name rather then trying to make it seem more like our own, and so far it&#8217;s just been true. I think that the more credibility and reward the community gets for it&#8217;s efforts the better TYPO3 will be.</p>
<p>After all, the community is a vital part of TYPO3 together with it&#8217;s open source base. Alongside with that TYPO3 is also a very strong brand and should be promoted and empowered so.</p>
<p>Inspire people to share! &#8211; it will get us so much further</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2009/02/24/having-a-midnight-laughter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Extending my network to XING</title>
		<link>http://people.merea.se/david/2009/02/23/extending-my-network-to-xing/</link>
		<comments>http://people.merea.se/david/2009/02/23/extending-my-network-to-xing/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 20:42:37 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[web life]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[xing]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=53</guid>
		<description><![CDATA[I&#8217;ve been looking at the XING networking platform from time to time, but never put myself into adding an account. However, now I&#8217;m there -&#62; https://www.xing.com/profile/David_Smeringe &#60;- and the first impression is quite positive. It feels very business focused as well as having great tools to maintain your network. Sadly there&#8217;s not that many swedes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been looking at the <a title="XING networking website" href="http://www.xing.com">XING </a>networking platform from time to time, but never put myself into adding an account. However, now I&#8217;m there -&gt; <a title="David Smeringe XING account" href="https://www.xing.com/profile/David_Smeringe">https://www.xing.com/profile/David_Smeringe</a> &lt;- and the first impression is quite positive. It feels very business focused as well as having great tools to maintain your network. Sadly there&#8217;s not that many swedes afaik. Maybe I just wasn&#8217;t looking under the right stone.. <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, if your&#8217;e a XING user and think you apply to my network pattern (web development, business partners, TYPO3 people, and some more..), please include me in yours!</p>
<p>See my <a title="David Smeringe LinkedIn profile" href="http://www.linkedin.com/in/davidsmeringe">LinkedIn profile</a> as well..</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2009/02/23/extending-my-network-to-xing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typoscript code completion in TYPO3 version 4.3a1</title>
		<link>http://people.merea.se/david/2009/02/10/typoscript-code-completion-in-typo3-version-43a1/</link>
		<comments>http://people.merea.se/david/2009/02/10/typoscript-code-completion-in-typo3-version-43a1/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 13:29:32 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[web life]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=50</guid>
		<description><![CDATA[Finally I took a quick test of TYPO3 version 4.3 alpha 1. Read the link for a detailed release info. However I&#8217;d like to highlight one update a bit extra for you. The TypoScript editing extension that made life prittier highlightning and helping out with the indentation for the TS code when editing has now [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I took a quick test of <a title="Release notes for TYPO3 4.3a1" href="http://news.typo3.org/news/article/typo3-43-alpha-1/">TYPO3 version 4.3 alpha 1</a>. Read the link for a detailed release info. However I&#8217;d like to highlight one update a bit extra for you. The TypoScript editing extension that made life prittier highlightning and helping out with the indentation for the TS code when editing has now got itself a usefull and very nicely implemented code completion function. Look at the image below.</p>
<p>It&#8217;s perfect for people like me that just cant get all those object and attribute names to stick in memory.</p>
<p><a href="http://people.merea.se/david/wp-content/uploads/2009/02/t3v43a_ts_codecompletion.png"><img class="alignnone size-medium wp-image-51" title="code completion in TYPO3 v 4.3" src="http://people.merea.se/david/wp-content/uploads/2009/02/t3v43a_ts_codecompletion-240x300.png" alt="Code completion in TYPO3 v 4.3" width="240" height="300" /></a></p>
<p>Now, I&#8217;m having a hard time waiting for next alpha or maybe beta so I can test the new front end editing fuzz which at least seems awsome!. <a title="Jeff Segars blogg about the new front end editing in TYPO3 v 4.3" href="http://jeffsegars.com/2008/10/19/frontend-editing-for-typo3-43/">Check it out at Jeff Segars blogg</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2009/02/10/typoscript-code-completion-in-typo3-version-43a1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe CS4 is down for counting</title>
		<link>http://people.merea.se/david/2008/12/10/adobe-cs4-is-down-for-counting/</link>
		<comments>http://people.merea.se/david/2008/12/10/adobe-cs4-is-down-for-counting/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 23:31:09 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[Design/graphics]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[editors/ides/rads]]></category>
		<category><![CDATA[web life]]></category>
		<category><![CDATA[acrobat]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[grumpy]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=47</guid>
		<description><![CDATA[As soon as Adobe CS4 was released we got our hands on it. Since I&#8217;ve been doing quite a lot Flash things lately I was hoping the new version would reveal some greate new features. However after trying it for couple of weeks now, I can only summarize the experience as; grumpy. To begin with [...]]]></description>
			<content:encoded><![CDATA[<p>As soon as Adobe CS4 was released we got our hands on it. Since I&#8217;ve been doing quite a lot Flash things lately I was hoping the new version would reveal some greate new features. However after trying it for couple of weeks now, I can only summarize the experience as; grumpy. To begin with Flash crashes for me when opening most of my old cs3 files, doesn&#8217;t recognize an old flash project file (.flp), crashes totaly if I&#8217;m to fast clicking around (hey.. it&#8217;s fun to click around with the mouse). The last behaviour is the same for the other nifty tools such as Illustrator and Fireworks.</p>
<p>They die right in front of me leaving me with a broken (long-time-since-last-save) file. Some say it&#8217;s about fonts, some say it&#8217;s about somethingelse. I saw someone who solved it by buying a new computer..</p>
<p>I contacted Adobe in for the subject, posted an error report and gave them full dumps of my machines current state.. getting the reply to go through a bunch of help yourself links with twenty steps each! Things like that make me grumby.</p>
<p>Anyway.. I&#8217;ve tried reinstalling the entire CS4 premium package (uninstall and install taking for ages) without success.. and yeah. one last thing.. Acrobat reader now crashes if I try to open a pdf link within the (a/any) browser. Thanks..</p>
<p>regards,<br />
A grumpy web developer</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2008/12/10/adobe-cs4-is-down-for-counting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T3CON08, here I come</title>
		<link>http://people.merea.se/david/2008/08/24/t3con08-here-i-come/</link>
		<comments>http://people.merea.se/david/2008/08/24/t3con08-here-i-come/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 21:40:36 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[web life]]></category>
		<category><![CDATA[association member]]></category>
		<category><![CDATA[t3con08]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=39</guid>
		<description><![CDATA[Me and my colleague decided to register for the annual TYPO3 conference &#8211; t3con08. This year it&#8217;s taking place in Berlin, which will be cool as I&#8217;ve never been there. But the best part will hopefully be to meet a lot of TYPO3 users and developers &#8211; perhaps even one or two from freenode channel [...]]]></description>
			<content:encoded><![CDATA[<p>Me and my colleague decided to register for the annual TYPO3 conference &#8211; <a title="TYPO3 Conference 2008 in Berlin" href="http://t3con08.typo3.org">t3con</a>08. This year it&#8217;s taking place in Berlin, which will be cool as I&#8217;ve never been there. But the best part will hopefully be to meet a lot of TYPO3 users and developers &#8211; perhaps even one or two from freenode channel #typo3 where I&#8217;m hanging around from time to time.</p>
<p>Not only did we register for the conference but also to become <a href="http://association.typo3.org">association members</a> for <a href="http://www.merea.se">Merea</a>, our company, which feels like the right choice to do as we focus our business more and more around TYPO3 services. It&#8217;s a good way of giving back something to the product and community as well as taking further engagement with TYPO3.</p>
<p>So, I hope to meet a lot of friendly faces and get loaded with inspiration and knowledge.</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2008/08/24/t3con08-here-i-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgraded wordpress</title>
		<link>http://people.merea.se/david/2008/05/06/upgraded-wordpress/</link>
		<comments>http://people.merea.se/david/2008/05/06/upgraded-wordpress/#comments</comments>
		<pubDate>Tue, 06 May 2008 18:52:21 +0000</pubDate>
		<dc:creator>David Smeringe</dc:creator>
				<category><![CDATA[web life]]></category>

		<guid isPermaLink="false">http://people.merea.se/david/?p=29</guid>
		<description><![CDATA[It was time to do another of those way to late updates. This time my WordPress installation (powering this blogg) was my target. Techie Buzz supplies a really neat update plugin that makes it safe and easy. Check it out Although the auto update plugin was easy as a breeze to use, it wouldn&#8217;t hurt [...]]]></description>
			<content:encoded><![CDATA[<p>It was time to do another of those way to late updates. This time my <a title="WordPress website" href="http://www.wordpress.org">WordPress</a> installation (powering this blogg) was my target. <a title="TechieBuzz wp autoupdate plugin" href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-plugin.html">Techie Buzz supplies a really neat update plugin</a> that makes it safe and easy. <a title="TechieBuzz wp autoupdate plugin" href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-plugin.html">Check it out</a></p>
<p>Although the auto update plugin was easy as a breeze to use, it wouldn&#8217;t hurt of having some more user friendly error handling when it gets write permission errors and such. They are handled but you get the feeling of being a bit stranded. I had some file writing permission problems..  <img src='http://people.merea.se/david/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I&#8217;m normally doing most of my work with or within the TYPO3 environment, and I must say that the clean and &#8220;just working&#8221; style of WP is a desirable target for the TYPO3 backend (and others) tool.  Really neat.</p>
]]></content:encoded>
			<wfw:commentRss>http://people.merea.se/david/2008/05/06/upgraded-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

