<?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>w8.se</title>
	<atom:link href="http://www.w8.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.w8.se</link>
	<description>Bits and pieces</description>
	<lastBuildDate>Mon, 07 Nov 2011 23:08:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Increasing the phpMyAdmin session timeout</title>
		<link>http://www.w8.se/2011/11/08/increasing-the-phpmyadmin-session-timeout/</link>
		<comments>http://www.w8.se/2011/11/08/increasing-the-phpmyadmin-session-timeout/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 23:06:24 +0000</pubDate>
		<dc:creator>joho</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.w8.se/?p=176</guid>
		<description><![CDATA[When phpMyAdmin is installed, the default session timeout value is too low for many users, making your phpMyAdmin session expire too soon. One could argue that a low session timeout value is a good idea from a security perspective. If you do not think this is an issue, here are a few simple steps that&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Go to the phpMyAdmin website" href="http://www.phpmyadmin.net"><img class="alignright size-full wp-image-177" style="border: 0pt none; margin: 5px;" title="phpMyAdmin" src="http://www.w8.se/wp-content/uploads/2011/11/phpMyAdmin_logo.png" alt="" width="172" height="100" /></a>When phpMyAdmin is installed, the default session timeout value is too low for many users, making your phpMyAdmin session expire too soon. One could argue that a low session timeout value is a good idea from a security perspective. If you do not think this is an issue, here are a few simple steps that&#8217;ll let you change how long phpMyAdmin will keep your session(s) alive.</p>
<p><span id="more-176"></span></p>
<p>Open <strong>config.inc.php</strong> in the phpMyAdmin &#8220;root&#8221; directory. Look for a line that contains this: <strong>$cfg['LoginCookieValidity']</strong>. Set the value to the desired number of seconds you want the session to stay alive <em>(3600 = one hour, which is reasonable for most users).</em> If you do not have that line in your <strong>config.inc.php</strong> file, add it like this:</p>
<blockquote><p>$cfg['LoginCookieValidity'] = 3600;</p></blockquote>
<p>Don&#8217;t forget to save the file, and then login again to phpMyAdmin. You may need to close the browser and re-open your phpMyAdmin URL.</p>
<p>This also assumes that the <em>PHP session garbage collection</em> is set-up accordingly. This can be done in a number of ways:</p>
<ul>
<li><strong>php.ini</strong>; add a line (or change an existing) that contains session.gc_maxlifetime = &lt;seconds&gt;</li>
<li><strong>Apache configuration</strong>; add a line to the appropriate &lt;Directory&gt; block that says &#8220;php_admin_value session.gc_maxlifetime &lt;seconds&gt;&#8221;</li>
<li><strong>config.inc.php</strong> (phpMyAdmin); after the previously edited line, add a line with &#8220;ini_set(&#8216;session.gc_maxlifetime&#8217;, &lt;seconds&gt;);&#8221;</li>
</ul>
<p>The &lt;seconds&gt; above is the same value that you set your variable to in config.inc.php at the beginning of this post, &#8220;3600&#8243; (sans quotes) in my case. (Some of these methods may or may not work on the server you&#8217;re using.)</p>
<p>This isn&#8217;t the only way to circumvent phpMyAdmin sessions expiring on you in the middle of that important work; you can, of course, configure phpMyAdmin to have appropriate access directly, thus allowing you to access your MySQL database(s) without entering a username and a password. You&#8217;ll find more information about this on the phpMyAdmin <a title="Go to the phpMyAdmin website" href="http://www.phpmyadmin.net" target="_blank">website</a>.</p>
<p><em>(phpMyAdmin is, IMHO, one of the best tools ever written in its class. My only gripe is that I&#8217;d really like to have a much less bloated visual display theme as the default, but you can accomplish this yourself quite easily.)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2011/11/08/increasing-the-phpmyadmin-session-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing collation of MySQL database, tables and columns</title>
		<link>http://www.w8.se/2011/05/31/changing-collation-of-mysql-database-tables-and-columns/</link>
		<comments>http://www.w8.se/2011/05/31/changing-collation-of-mysql-database-tables-and-columns/#comments</comments>
		<pubDate>Tue, 31 May 2011 13:37:23 +0000</pubDate>
		<dc:creator>Mats Djärf</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.w8.se/?p=168</guid>
		<description><![CDATA[Use this script if you need to change collation for your MySQL database, tables or columns. You can use PhpMyAdmin to change Collation but if you want to change whole database you should use this PHP-script. Run this script only at your own risk. If you have a big database you need to change the [...]]]></description>
			<content:encoded><![CDATA[<p>Use this script if you need to change collation for your MySQL database, tables or columns.</p>
<p>You can use PhpMyAdmin to change Collation but if you want to change whole database you should use this PHP-script.</p>
<p><em>Run this script only at your own risk. If you have a big database you need to change  the script execution time in your php</em></p>
<p><a href="http://www.w8.se/wp-content/uploads/2011/05/collchange.zip">Download PHP-script</a><em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2011/05/31/changing-collation-of-mysql-database-tables-and-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show all images in a folder with PHP</title>
		<link>http://www.w8.se/2010/04/09/show-all-images-in-a-folder-with-php/</link>
		<comments>http://www.w8.se/2010/04/09/show-all-images-in-a-folder-with-php/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 08:20:27 +0000</pubDate>
		<dc:creator>Mats Djärf</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.w8.se/?p=156</guid>
		<description><![CDATA[This PHP-script will show all images located in a folder. I have add some TABLE-stuff if you want to print to paper. &#60;?php //Your folder $files = glob("icons/*.*"); $colCnt=0; echo '&#60;table border="0" style="width:590px;"&#62;'; for ($i=1; $i&#60;count($files); $i++) { $colCnt++; if ($colCnt==1) echo '&#60;tr&#62;'; echo '&#60;td width="25%" style="font-size:8.5px; font-family:arial"&#62;'; $num = $files[$i]; echo '&#60;img src="'.$num.'" align="absmiddle" [...]]]></description>
			<content:encoded><![CDATA[<p>This PHP-script will show all images located in a folder. I have add some TABLE-stuff if you want to print to paper.</p>
<p><span id="more-156"></span></p>
<pre><strong>&lt;?php
//Your folder
$files = glob("icons/*.*");

$colCnt=0;
echo '&lt;table border="0" style="width:590px;"&gt;';

for ($i=1; $i&lt;count($files); $i++)
  {
  $colCnt++;
  if ($colCnt==1)
  echo '&lt;tr&gt;';
  echo '&lt;td width="25%" style="font-size:8.5px; font-family:arial"&gt;';

  $num = $files[$i];
  echo '&lt;img src="'.$num.'" align="absmiddle" /&gt; ';
  print substr(substr($num,6,100),0,-4);

  echo '&lt;/td&gt;';

  if ($colCnt==4)
    {
    echo '&lt;/tr&gt;';
    $colCnt=0;
    }
  }

echo '&lt;/table&gt;';
?&gt;
</strong>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2010/04/09/show-all-images-in-a-folder-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database multiple search &amp; replace</title>
		<link>http://www.w8.se/2009/09/30/database-multiple-search-replace/</link>
		<comments>http://www.w8.se/2009/09/30/database-multiple-search-replace/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 06:25:18 +0000</pubDate>
		<dc:creator>Mats Djärf</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.w8.se/?p=146</guid>
		<description><![CDATA[Search through your whole MySQL database and replace with preferred value. Very useful when you want replace Value1 with Value2 in every table and column in your MySQL database. It&#8217;s also possible to search &#38; replace more than one value in a time. Here&#8217;s the PHP-code. Feel free to use and modify this code but [...]]]></description>
			<content:encoded><![CDATA[<p>Search through your whole <a title="MySQL database website" href="http://www.mysql.com" target="_blank">MySQL</a> database and replace with preferred value. Very useful when you want replace <em>Value1</em> with <em>Value2</em> in every table and column in your MySQL database. It&#8217;s also possible to search &amp; replace more than one value in a time.</p>
<p><span id="more-146"></span></p>
<p>Here&#8217;s the PHP-code.</p>
<p>Feel free to use and modify this code but please inform us.</p>
<pre>&lt;?php
// DATABASE MULTIPLE SEARCH &amp; REPLACE
// Modified by Mats Djärf (md at tojoma.com), www.tojoma.com
//
// Find and replace facility for complete MySQL database
//
// Written by Mark Jackson @ MJDIGITAL
// Can be used by anyone - but give me a nod if you do!
// http://www.mjdigital.co.uk/blog

// SEARCH FOR
$search[]        = 'å';
$search[]        = 'ä';
$search[]        = 'ö';
$search[]        = 'Å';
$search[]        = 'Ä';
$search[]        = 'Ö';
$search[]        = 'é'; 

// REPLACE WITH
$replace[]    = utf8_decode('å');
$replace[]    = utf8_decode('ä');
$replace[]    = utf8_decode('ö');
$replace[]    = utf8_decode('Å');
$replace[]    = utf8_decode('Ä');
$replace[]    = utf8_decode('Ö');
$replace[]    = utf8_decode('é'); 

// DB Details
$hostname = "__DB_HOST__";
$database = "__DB_DATABASE__";
$username = "__DB_USER__";
$password = "__DB_PASSWORD__";

// Query Type: 'search' or 'replace'
$queryType = 'replace';

// show errors (.ini file dependant) - true/false
$showErrors = true;

//////////////////////////////////////////////////////
//
//        DO NOT EDIT BELOW
//
//////////////////////////////////////////////////////

if($showErrors) {
    error_reporting(E_ALL);
    ini_set('error_reporting', E_ALL);
    ini_set('display_errors',1);
}

// Create connectio to DB
$MJCONN = mysql_pconnect($hostname, $username, $password) or trigger_error(mysql_error(),E_USER_ERROR);
mysql_select_db($database,$MJCONN);

// Get list of tables
$table_sql = 'SHOW TABLES';
$table_q = mysql_query($table_sql,$MJCONN) or die("Cannot Query DB: ".mysql_error());
$tables_r = mysql_fetch_assoc($table_q);
$tables = array();

do{
    $tables[] = $tables_r['Tables_in_'.$database];
}while($tables_r = mysql_fetch_assoc($table_q));

// create array to hold required SQL
$use_sql = array();

$rowHeading = ($queryType=='replace') ?
        'Replacing specified values in database \''.$database."'\n\nSTATUS\tROWS\tTABLE / FIELD\t\t\t\"SEARCH\"\t\"REPLACE\"\t\t(+ERROR)\n"
      : 'Searching in database \''.$database."'\n\nSTATUS\tROWS\tTABLE / FIELD\t\t\t\"SEARCH\"\t\"REPLACE\"\t\t(+ERROR)\n";
$rowHeading .= "------------------------------------------------------------------------------------------------------------------\n";
$output = $rowHeading;

$summary = '';

for($i = 0; $i &lt; sizeof($search); ++$i)
{
    // LOOP THROUGH EACH TABLE
    foreach($tables as $table) {
        // GET A LIST OF FIELDS
        $field_sql = 'SHOW FIELDS FROM '.$table;
        $field_q = mysql_query($field_sql,$MJCONN);
        $field_r = mysql_fetch_assoc($field_q);

        // compile + run SQL
        do {
            $field = $field_r['Field'];
            $type = $field_r['Type'];

            switch(true) {
                // set which column types can be replaced/searched
                case stristr(strtolower($type),'char'): $typeOK = true; break;
                case stristr(strtolower($type),'text'): $typeOK = true; break;
                case stristr(strtolower($type),'blob'): $typeOK = true; break;
                case stristr(strtolower($field_r['Key']),'pri'): $typeOK = false; break; // do not replace on primary keys
                default: $typeOK = false; break;
            }

            if($typeOK) { // Field type is OK ro replacement
                // create unique handle for update_sql array
                $handle = $table.'_'.$field;
                if($queryType=='replace') {
                    $sql[$handle]['sql'] = 'UPDATE '.$table.' SET '.$field.' = REPLACE('.$field.',\''.$search[$i].'\',\''.$replace[$i].'\')';
                } else {
                    $sql[$handle]['sql'] = 'SELECT * FROM '.$table.' WHERE '.$field.' REGEXP BINARY(\''.$search[$i].'\')';
                }

                // execute SQL
                $error = false;
                $query = @mysql_query($sql[$handle]['sql'],$MJCONN) or $error = mysql_error();
                $row_count = @mysql_affected_rows() or $row_count = 0;

                // store the output (just in case)
                $sql[$handle]['result'] = $query;
                $sql[$handle]['affected'] = $row_count;
                $sql[$handle]['error'] = $error;

                // Write out Results into $output
                $output .= ($query) ? "OK\t" : "--\t";
                $output .= ($row_count&gt;0) ? $row_count."\t" : $row_count."\t";
                $fieldName = $table.' / '.$field;
                $output .= $fieldName;
                $erTab = str_repeat(' ', (60-strlen($fieldName)) );
                $output .= "\t\t".$search[$i]."\t\t";
                $output .= $replace[$i]."\t";
                $output .= ($error) ? $erTab.'(ERROR: '.$error.')' : '';

                $output .= "\n";
            }
        }while($field_r = mysql_fetch_assoc($field_q));
    }
}

// write the output out to the page
echo '&lt;pre&gt;';
echo $output."\n";
echo '&lt;/pre&gt;';

?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2009/09/30/database-multiple-search-replace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPressed W8.SE</title>
		<link>http://www.w8.se/2009/01/19/hello-world/</link>
		<comments>http://www.w8.se/2009/01/19/hello-world/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 08:25:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://new.w8.se/?p=1</guid>
		<description><![CDATA[We have switched software from Joomla to WordPress; mainly because WP suits our needs better for W8.SE]]></description>
			<content:encoded><![CDATA[<p>We have switched software from Joomla to WordPress; mainly because WP suits our needs better for W8.SE</p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2009/01/19/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W8 Contented5-Joomla template released</title>
		<link>http://www.w8.se/2006/11/02/w8-contented5-joomla/</link>
		<comments>http://www.w8.se/2006/11/02/w8-contented5-joomla/#comments</comments>
		<pubDate>Thu, 02 Nov 2006 22:40:00 +0000</pubDate>
		<dc:creator>joho</dc:creator>
				<category><![CDATA[Skins and themes]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://new.w8.se/?p=123</guid>
		<description><![CDATA[Themes, themes, themes! W8 releases Contented5-Joomla Template! Lightweight and clean two column fixed width Joomla 1.0.x template based on OSWD design by ContentedDesigns, ported to Joomla by Joaquim Homrighausen. Download w8_contented5-joomla.zip]]></description>
			<content:encoded><![CDATA[<div id="attachment_124" class="wp-caption alignright" style="width: 214px"><img class="size-full wp-image-124" title="W8 Contented 5 for Joomla" src="http://www.w8.se/wp-content/uploads/2009/01/w8_contented5-joomlathumb.png" alt="W8 Contented 5 for Joomla" width="204" height="227" /><p class="wp-caption-text">W8 Contented 5 for Joomla</p></div>
<p>Themes, themes, themes! W8 releases Contented5-Joomla Template!</p>
<p>Lightweight and clean two column fixed width Joomla 1.0.x template based on OSWD design by ContentedDesigns, ported to <a href="http://www.joomla.org" target="_blank">Joomla</a> by <a href="http://www.joho.se" target="_blank">Joaquim Homrighausen</a>.</p>
<p><a href="/_download/w8_contented5-joomla.zip" target="_blank">Download w8_contented5-joomla.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2006/11/02/w8-contented5-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dotProject icons theme</title>
		<link>http://www.w8.se/2006/04/25/dotproject-icons-theme/</link>
		<comments>http://www.w8.se/2006/04/25/dotproject-icons-theme/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 21:52:13 +0000</pubDate>
		<dc:creator>Mats Djärf</dc:creator>
				<category><![CDATA[Skins and themes]]></category>
		<category><![CDATA[dotProject]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://new.w8.se/?p=65</guid>
		<description><![CDATA[Replace your default dotProject icons (see example of below). Novola icon theme author: mats djärf version: 2006-04-25 (last updated) description: fancy icons from the Novola icon theme for KDE 3 &#62;&#62; DOWNLOAD]]></description>
			<content:encoded><![CDATA[<p>Replace your default dotProject icons (see example of below).</p>
<p><img class="alignnone size-full wp-image-69" title="appointments" src="http://www.w8.se/wp-content/uploads/2009/01/appointments.png" alt="appointments" width="48" height="48" /><img class="alignnone size-full wp-image-68" title="folder5" src="http://www.w8.se/wp-content/uploads/2009/01/folder5.png" alt="folder5" hspace="20" width="48" height="48" /><img class="alignnone size-full wp-image-67" title="applet-48" src="http://www.w8.se/wp-content/uploads/2009/01/applet-48.png" alt="applet-48" hspace="20" width="48" height="48" /><img class="alignnone size-full wp-image-66" title="applet3-48" src="http://www.w8.se/wp-content/uploads/2009/01/applet3-48.png" alt="applet3-48" hspace="20" width="48" height="48" /></p>
<p><img style="border: 0pt none; margin-left: 10px; margin-right: 10px;" title="icon-novola" src="http://www.w8.se/wp-content/uploads/2006/04/icon-novola.png" alt="icon-novola" hspace="10" width="100" height="100" align="left" /><span style="font-size: 12pt; font-family: andale mono,times;"><strong>Novola icon theme</strong></span><br />
<strong><span style="color: #000000;">author</span>: </strong>mats djärf<br />
<strong><span style="color: #000000;">version</span>: </strong><span style="color: #cc3300;"><strong>2006-04-25</strong></span> <em>(last updated)</em><strong><em> </em></strong><span style="text-decoration: underline;"><br />
</span><strong><span style="color: #000000;">description</span>: </strong>fancy icons from the Novola icon theme for  KDE 3<a title="Novola icon theme" href="/_download/core_images.tar.gz"></a></p>
<p style="text-align: right;"><a title="Novola icon theme" href="/_download/core_images.tar.gz">&gt;&gt; DOWNLOAD<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2006/04/25/dotproject-icons-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dotProject themes released</title>
		<link>http://www.w8.se/2006/04/25/dotproject/</link>
		<comments>http://www.w8.se/2006/04/25/dotproject/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 21:37:14 +0000</pubDate>
		<dc:creator>Mats Djärf</dc:creator>
				<category><![CDATA[Skins and themes]]></category>

		<guid isPermaLink="false">http://new.w8.se/?p=60</guid>
		<description><![CDATA[If you want an alternative theme for your dotProject you have come to the right place. This page contains themes for the dotProject . dotProject 2.x.x is required to use those themes. WPS &#8211; Redmond author: mats djärf version: 2006-04-25 (last updated) &#62;&#62; Download WPS &#8211; Sober author: mats djärf version: 2006-04-25 (last updated) &#62;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><img title="wps-rm-theme" src="http://www.w8.se/wp-content/uploads/2006/04/wps-rm-theme.jpg" alt="wps-rm-theme" width="100" height="100" align="right" />If you want an alternative theme for your dotProject you have come to the right place. This page contains themes for the dotProject . dotProject 2.x.x is required to use those themes.</p>
<p><span id="more-60"></span></p>
<h2>WPS &#8211; Redmond</h2>
<p><strong>author</strong>: mats djärf<br />
<strong>version</strong>: 2006-04-25 (last updated)<br />
<a title="WPS - Redmond" href="/_download/wps-redmond.tar.gz"><strong>&gt;&gt; Download</strong></a></p>
<p><img class="alignnone size-full wp-image-83" title="wps-rm-cal" src="http://www.w8.se/wp-content/uploads/2006/04/wps-rm-cal.jpg" alt="wps-rm-cal" width="170" height="170" /> <img class="alignnone size-full wp-image-90" title="wps-rm-project1" src="http://www.w8.se/wp-content/uploads/2006/04/wps-rm-project1.jpg" alt="wps-rm-project1" width="170" height="170" /></p>
<p><img class="alignnone size-full wp-image-87" title="wps-rm-cal21" src="http://www.w8.se/wp-content/uploads/2006/04/wps-rm-cal21.jpg" alt="wps-rm-cal21" width="170" height="170" /> <img class="alignnone size-full wp-image-91" title="wps-rm-task" src="http://www.w8.se/wp-content/uploads/2006/04/wps-rm-task.jpg" alt="wps-rm-task" width="170" height="170" /></p>
<p><img class="alignnone size-full wp-image-89" title="wps-rm-dayview1" src="http://www.w8.se/wp-content/uploads/2006/04/wps-rm-dayview1.jpg" alt="wps-rm-dayview1" width="470" height="296" /></p>
<h2>WPS &#8211; Sober</h2>
<p><strong>author: </strong>mats djärf<br />
<strong>version: </strong><span style="color: #cc3300;"><strong>2006-04-25</strong></span> <em>(last updated)</em><br />
<strong><a title="WPS - Sober" href="/_download/wps_sober.tar.gz">&gt;&gt; Download</a></strong></p>
<p><img class="alignnone size-full wp-image-99" title="wps-sober-user" src="http://www.w8.se/wp-content/uploads/2006/04/wps-sober-user.jpg" alt="wps-sober-user" width="170" height="170" /> <img class="alignnone size-full wp-image-98" title="wps-sober-tabs" src="http://www.w8.se/wp-content/uploads/2006/04/wps-sober-tabs.jpg" alt="wps-sober-tabs" width="170" height="170" /></p>
<p><img class="alignnone size-full wp-image-96" title="wps-sober-contact" src="http://www.w8.se/wp-content/uploads/2006/04/wps-sober-contact.jpg" alt="wps-sober-contact" width="170" height="170" /> <img class="alignnone size-full wp-image-95" title="wps-sober-company" src="http://www.w8.se/wp-content/uploads/2006/04/wps-sober-company.jpg" alt="wps-sober-company" width="170" height="170" /></p>
<p><img class="alignnone size-full wp-image-97" title="wps-sober-gantt" src="http://www.w8.se/wp-content/uploads/2006/04/wps-sober-gantt.jpg" alt="wps-sober-gantt" width="470" height="301" /></p>
<h2>WPS &#8211; light</h2>
<p><strong>author: </strong>mats djärf<br />
<strong>version: </strong><span style="color: #cc3300;"><strong>2006-04-25</strong></span> <em>(last updated)<a title="WPS - Light" href="/_download/wps_light.tar.gz"><strong><br />
</strong></a></em><a title="WPS - Light" href="/_download/wps-light.tar.gz"><strong>&gt;&gt;Download</strong></a></p>
<p><img class="alignnone size-full wp-image-104" title="wps-light-task2" src="http://new.w8.se/wp-content/uploads/2006/04/wps-light-task2.jpg" alt="wps-light-task2" width="170" height="170" /> <img class="alignnone size-full wp-image-105" title="wps-light-task" src="http://new.w8.se/wp-content/uploads/2006/04/wps-light-task.jpg" alt="wps-light-task" width="170" height="170" /></p>
<p><img class="alignnone size-full wp-image-102" title="wps-light-company" src="http://www.w8.se/wp-content/uploads/2006/04/wps-light-company.jpg" alt="wps-light-company" width="170" height="170" /> <img class="alignnone size-full wp-image-101" title="wps-light-add" src="http://www.w8.se/wp-content/uploads/2006/04/wps-light-add.jpg" alt="wps-light-add" width="170" height="170" /></p>
<p><img class="alignnone size-full wp-image-103" title="wps-light-projects" src="http://www.w8.se/wp-content/uploads/2006/04/wps-light-projects.jpg" alt="wps-light-projects" width="470" height="254" /></p>
<h3><strong>Contact us</strong></h3>
<p>Don&#8217;t hesitate to contact us if you find any bug or if you have any feedback.</p>
<h3><strong>Official dotProject webpage</strong></h3>
<p>You will find the home of dotProject &#8211; the Open Source Project Management tool at <a title="dotProject" href="http://www.dotproject.net" target="_blank">http://www.dotproject.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2006/04/25/dotproject/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Horde theme: WPS &#8211; Sober</title>
		<link>http://www.w8.se/2006/04/11/horde-theme-wps-sober/</link>
		<comments>http://www.w8.se/2006/04/11/horde-theme-wps-sober/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 20:05:48 +0000</pubDate>
		<dc:creator>Mats Djärf</dc:creator>
				<category><![CDATA[Skins and themes]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://new.w8.se/?p=17</guid>
		<description><![CDATA[If you&#8217;re looking for alternative Horde themes you have come to the right place. This page contains themes for the Horde Project. Horde 3 is required to use those themes. Screenshots Download WPS &#8211; Sober author: mats djärf version: 2006-04-12 (last updated) description: Sober theme with new fancy icons from the Novola icon theme for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-26" title="imp_panel" src="http://www.w8.se/wp-content/uploads/2009/01/imp_panel.jpg" alt="imp_panel" width="436" height="58" /></p>
<p>If you&#8217;re looking for alternative Horde themes you have come to the right place. This page contains themes for the Horde Project. Horde 3 is required to use those themes.</p>
<p><span id="more-17"></span></p>
<p><strong>Screenshots</strong></p>
<p><img title="nag" src="http://new.w8.se/wp-content/uploads/2009/01/nag.jpg" alt="NAG" width="170" height="170" /> <img title="sidebar" src="http://new.w8.se/wp-content/uploads/2009/01/sidebar.jpg" alt="Sidebar" hspace="30" width="170" height="170" /></p>
<p><img title="kronolith" src="http://new.w8.se/wp-content/uploads/2009/01/kronolith.jpg" alt="Kronolith" width="170" height="170" /> <img class="size-full wp-image-24" title="imp" src="http://new.w8.se/wp-content/uploads/2009/01/imp.jpg" alt="IMP" hspace="30" width="170" height="170" /></p>
<p><img class="size-full wp-image-29" title="options" src="http://new.w8.se/wp-content/uploads/2009/01/options.png" alt="Options" width="170" height="170" /> <img class="size-full wp-image-25" title="imp_compose" src="http://new.w8.se/wp-content/uploads/2009/01/imp_compose.jpg" alt="IMP - Compose" hspace="30" width="170" height="170" /><br />
<br style="clear: both" /><br />
<strong>Download</strong></p>
<p><strong>WPS &#8211; Sober<br />
author:</strong> mats djärf<strong><br />
version: </strong>2006-04-12 (last updated)<strong><br />
description:</strong> Sober theme with new fancy icons from the Novola icon theme for KDE 3.<a title="Download WPS-Sober theme" href="/_download/wps_sober.tar.gz"><br />
&gt;&gt; Download WPS &#8211; Sober<br />
</a></p>
<p><strong>Contact us</strong><br />
Don&#8217;t hesitate to contact us if you find any bug or if you have any feedback.</p>
<p><strong>Official Horde webpage<br />
</strong>You will find the official webpage of The Horde Project at <a title="http://www.horde.org" href="http://www.horde.org" target="_blank">http://www.horde.org</a>.</p>
<p><a title="Horde webpage" href="http://www.horde.org" target="_blank"><img class="size-full wp-image-23 alignnone" title="horde-power2" src="http://new.w8.se/wp-content/uploads/2009/01/horde-power2.png" alt="Horde" width="84" height="31" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2006/04/11/horde-theme-wps-sober/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What is W8.SE?</title>
		<link>http://www.w8.se/2006/02/18/what-is-w8se/</link>
		<comments>http://www.w8.se/2006/02/18/what-is-w8se/#comments</comments>
		<pubDate>Sat, 18 Feb 2006 08:52:13 +0000</pubDate>
		<dc:creator>webbplatsen</dc:creator>
				<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://new.w8.se/?p=3</guid>
		<description><![CDATA[W8.SE is a virtual place where you might find useful tings; depending on what you&#8217;re looking for, of course. The people behind the site sometimes decide to publish things they&#8217;ve made, or fixed, or changed. This site is not a community site per se. You cannot register to become a member or contributing editor. You [...]]]></description>
			<content:encoded><![CDATA[<p>W8.SE is a virtual place where you might find useful tings; depending on what you&#8217;re looking for, of course. The people behind the site sometimes decide to publish things they&#8217;ve made, or fixed, or changed. This site is not a community site per se. You cannot register to become a member or contributing editor. You can give us feedback and ask questions of course. If you&#8217;re really really keen on contributing, you can tell us that too <img src='http://www.w8.se/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.w8.se/2006/02/18/what-is-w8se/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

