<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Wisnaes.com - Visual communication</title>
	
	<link>http://www.wisnaes.com</link>
	<description>Tips and ideas for people that work with visual media.</description>
	<lastBuildDate>Sun, 25 Jul 2010 20:06:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Wisnaes" /><feedburner:info uri="wisnaes" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><image><link>http://www.wisnaes.com/</link><url>http://www.wisnaes.com/images/Wlogo.png</url><title>Wisnaes.com logo</title></image><feedburner:emailServiceId>Wisnaes</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Category drop-down in mod_k2_tools sorted reverse</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/19gGo4H4aDI/</link>
		<comments>http://www.wisnaes.com/2010/07/25/category-drop-down-in-mod_k2_tools-sorted-reverse/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 20:03:21 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[K2]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=299</guid>
		<description><![CDATA[I am working on a website where I need a category drop-down. And I need it sorted in reverse compared to the standard sorting. The CMS that I am using for the website is Joomla, and i am using the K2 extension. With K2 comes...]]></description>
			<content:encoded><![CDATA[<p>I am working on a website where I need a category drop-down. And I need it sorted in reverse compared to the standard sorting.</p>
<p>The CMS that I am using for the website is Joomla, and i am using the K2 extension. With K2 comes a module called K2 Tools (mod_k2_tools) and you can use it to make a list of categories or a drop-down menu for choosing the category among other things.</p>
<p>The category listing has a setting in the control panel to decide how to sort it. But if you choose category drop-down, you do not get any options for sorting at all.</p>
<p>After searching a lot, it appears that nobody knows how to do this, but at least I got a suggestion from Simon aka. k2joom to see if it would be possible to use the code from the listing option.</p>
<p>As I am not a programmer, this would not be an easy thing to do, but I started to look at the code. In mod_k2_tools.php there was nothing that looked like sorting, but it called another file, helper.php, so I opened this one and found this piece of code in a section that looked like it could belong to the category listing:</p>
<pre><code>switch ($params-&gt;get('categoriesListOrdering')) {

case 'alpha':
$orderby = 'name';
break;

case 'ralpha':
$orderby = 'name DESC';
break;

case 'order':
$orderby = 'ordering';
break;

case 'reversedefault':
$orderby = 'id DESC';
break;

default:
$orderby = 'id ASC';
break;
}</code></pre>
<p>As the category drop-down menu is the next in the settings I looked a bit further and found this code:</p>
<pre><code>function treeselectbox(&amp;$params, $id = 0, $level = 0) {

$root_id = (int) $params-&gt;get('root_id2');
$option = JRequest::getCmd('option');
$view = JRequest::getCmd('view');
$category = JRequest::getInt('id');
$id = (int) $id;
$user = &amp;JFactory::getUser();
$aid = (int) $user-&gt;get('aid');
$db = &amp;JFactory::getDBO();
if (($root_id != 0) &amp;&amp; ($level == 0)) {
$query = "SELECT * FROM #__k2_categories WHERE parent={$root_id} AND published=1 AND trash=0 AND access&lt; ={$aid} ORDER BY ordering ";
} else {
$query = "SELECT * FROM #__k2_categories WHERE parent={$id} AND published=1 AND trash=0 AND access&lt;={$aid} ORDER BY ordering ";
}</code></pre>
<p>Comparing the last couple of lines to the first block seemed to indicate that there indeed was some ordering going on in there. So I tried changing the order in the categories, and the drop-down menu immediately reflected the change!</p>
<p>As I needed reverse sort by ID, I would rather not sit and redo the order by hand every time something got added. So I looked at the first block of code and decided to try to replace &#8220;ordering&#8221; with &#8220;id DESC&#8221; in the last couple of lines. They would then look like this:</p>
<pre><code>if (($root_id != 0) &amp;&amp; ($level == 0)) {
$query = "SELECT * FROM #__k2_categories WHERE parent={$root_id} AND published=1 AND trash=0 AND access&lt; ={$aid} ORDER BY id DESC ";
} else {
$query = "SELECT * FROM #__k2_categories WHERE parent={$id} AND published=1 AND trash=0 AND access&lt;={$aid} ORDER BY id DESC ";
}</code></pre>
<p>And the miracle happened! The drop-down menu is now prefectly sorted by ID in descending order!</p>
<p>Of course, this change will be overwritten in the next upgrade, which is part of the reason why I document it here. But I also hope that someone that knows a little bit about programming could add sort order as a setting in this module. It would certainly be welcome by me!</p>
<p>Joomla: <a title="Learn more about Joomla!" href="http://www.joomla.org/" target="_blank">http://www.joomla.org/</a><br />
K2: <a title="Leran more about K2!" href="http://getk2.org/" target="_blank">http://getk2.org/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=19gGo4H4aDI:73Y0x1ep9JU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=19gGo4H4aDI:73Y0x1ep9JU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=19gGo4H4aDI:73Y0x1ep9JU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=19gGo4H4aDI:73Y0x1ep9JU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=19gGo4H4aDI:73Y0x1ep9JU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=19gGo4H4aDI:73Y0x1ep9JU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=19gGo4H4aDI:73Y0x1ep9JU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=19gGo4H4aDI:73Y0x1ep9JU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/19gGo4H4aDI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2010/07/25/category-drop-down-in-mod_k2_tools-sorted-reverse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2010/07/25/category-drop-down-in-mod_k2_tools-sorted-reverse/</feedburner:origLink></item>
		<item>
		<title>Adding DHCP to your Ubuntu server</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/iiRyl9exGeI/</link>
		<comments>http://www.wisnaes.com/2010/03/20/adding-dhcp-to-your-ubuntu-server/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 14:29:12 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=230</guid>
		<description><![CDATA[I have in the previous articles described how to get the DNS working on your server. To complete the setup, it is useful to add DHCP to the mix so that you can have computers set to automatically receive the correct settings for your network....]]></description>
			<content:encoded><![CDATA[<p>I have in the previous articles described how to get the DNS working on your server. To complete the setup, it is useful to add DHCP to the mix so that you can have computers set to automatically receive the correct settings for your network. And the more computers you have on the network, the more useful it is.</p>
<p>After a bit of research, I found <a title="Server setup - dhcp and more" href="http://howtoforge.com/nat-gateway-iptables-port-forwarding-dns-and-dhcp-setup-ubuntu-8.10-server" target="_blank">a post about this</a> that helped me get things right on the first try. Here is what I did:</p>
<p>First I needed to install the DHCP package:</p>
<pre><code>sudo apt-get update
sudo apt-get install dhcp3-server</code></pre>
<p>After that is well and done, I needed to edit the configuration for it:</p>
<pre><code>sudo nano /etc/dhcp3/dhcpd.conf</code></pre>
<p>Here is what my dhcp.conf file look like now:</p>
<pre><code># DHCP configuration file for Argoz
#
# Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as
# configuration file instead of this file.
#
# $Id: dhcpd.conf,v 1.1.1.1 2002/05/21 00:07:44 peloy Exp $
#

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;

# option definitions common to all supported networks...
option domain-name "lan1.domainname.com";
option domain-name-servers 10.11.12.100, 208.67.222.222, 208.67.220.220;

default-lease-time 600;
max-lease-time 7200;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
# log-facility local7;

# The rest of the network info

option subnet-mask 255.255.255.0;
option broadcast-address 10.11.12.255;
option routers 10.11.12.1;

# The subnet

subnet 10.11.12.0 netmask 255.255.255.0 {
range 10.11.12.150 10.11.12.170;
}</code></pre>
<p>I chose to keep the comments in there as I am not working with these things on a daily basis and thought it might be a good thing to have some reminders if I needed to edit it again.</p>
<p>Notice that all lines starting with # is just a comment and will not influence the DHCP server. This is a pretty common way of doing things in Ubuntu.</p>
<p>I chose to set the range for IP addresses from 10.11.12.150 to 10.11.12.170 as this should give me more than enough addresses for the little use I have. Your need might vary here.</p>
<p>After saving the configuration, the only thing left to do is starting the DHCP server:</p>
<pre><code>sudo /etc/init.d/dhcp3-server start</code></pre>
<p>You should now have a reliable DHCP service on your network and if you had one running in a wireless router or ADSL router, you can log on there and turn it off. Have you considered setting up your own server yet?</p>
<p><em>The photograph of the computer classrom is by <a title="Extra Ketchup on Flickr" href="http://www.flickr.com/photos/extraketchup/" target="_blank">Extra Ketchup</a> and has a <a title="Creative Commons license" href="http://creativecommons.org/licenses/by-sa/2.0/" target="_blank">Creative Commons</a> license.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=iiRyl9exGeI:srNnVxWeJng:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=iiRyl9exGeI:srNnVxWeJng:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=iiRyl9exGeI:srNnVxWeJng:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=iiRyl9exGeI:srNnVxWeJng:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=iiRyl9exGeI:srNnVxWeJng:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=iiRyl9exGeI:srNnVxWeJng:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=iiRyl9exGeI:srNnVxWeJng:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=iiRyl9exGeI:srNnVxWeJng:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/iiRyl9exGeI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2010/03/20/adding-dhcp-to-your-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2010/03/20/adding-dhcp-to-your-ubuntu-server/</feedburner:origLink></item>
		<item>
		<title>Setting up your own DNS part 3: Configuring bind9</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/CAO7wRf1J2A/</link>
		<comments>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-3-configuring-bind9/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:06:22 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[bind9]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=164</guid>
		<description><![CDATA[This is part 3 of a 3 part series. You should also read Part 1 : Getting started Part 2 : Basic configuration The place for bind9 configuration files can differ a little between Linux distributions. On Ubuntu servers they are located in /etc/bind with...]]></description>
			<content:encoded><![CDATA[<p><em>This is part 3 of a 3 part series. You should also read<br />
<a title="DNS part 1" href="http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-1-getting-started/" target="_self">Part 1 : Getting started</a><a title="DNS part 2" href="http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-2-basic-configuration/" target="_self"><br />
Part 2 : Basic configuration<br />
</a></em></p>
<p>The place for bind9 configuration files can differ a little between Linux distributions. On Ubuntu servers they are located in /etc/bind with the zonefiles placed under /etc/bind/zones .</p>
<p>The standard install of bind9 on Ubuntu server is to act as a caching DNS. But for this to work, you need to tell it where to look for an adress that it can not resolve locally. So you need to edit a file called named.conf.options .</p>
<pre><code>sudo nano /etc/bind/named.conf.options</code></pre>
<p>Here you have to add at least two DNS&#8217;es. I added the two from <a title="OpenDNS - free DNS for anyone" href="http://www.opendns.com/" target="_blank">OpenDNS</a> first, and then the two from my ISP just to be sure:</p>
<pre><code>options {
        directory "/var/cache/bind";

        // If there is a firewall between you and nameservers you want
        // to talk to, you may need to fix the firewall to allow multiple
        // ports to talk.  See http://www.kb.cert.org/vuls/id/800113

        // If your ISP provided one or more IP addresses for stable
        // nameservers, you probably want to use them as forwarders.
        // Uncomment the following block, and insert the addresses replacing
        // the all-0's placeholder.

        forwarders {
             208.67.222.222;
             208.67.220.220;
             200.251.161.2;
             200.251.161.7;
         };

        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { any; };

};</code></pre>
<h3>The zone files</h3>
<p>Before we can start editing the zonefiles, we need to let bind9 know where they are. This is as easy as editing a file called named.conf.local .</p>
<pre><code>sudo nano /etc/bind/named.conf.local</code></pre>
<p>Here you need to add the names for the zone definitions of your forward and reverse DNS lookups. The first one will be the name of your domain plus .db . The other will be rev. plus the IP address of your server in reverse minus the last number plus .in-addr.arpa . It is not as difficult as it sounds, but maybe easier to show you how mine looks:</p>
<pre><code>//
// Do any local configuration here
//

// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";

# This is the zone definition. replace example.com with your domain name
zone "lan1.domainname.com" {
        type master;
        file "/etc/bind/zones/lan1.domainname.com.db";
        };

# This is the zone definition for reverse DNS. replace 0.168.192 with your network address in $
zone "12.11.10.in-addr.arpa" {
     type master;
     file "/etc/bind/zones/rev.12.11.10.in-addr.arpa";
};</code></pre>
<p>As the domain I wanted to use for my network is lan1.domainname.com, the zonefile will be called lan1.domainname.com.db .</p>
<p>And as my IP address for the server is 10.11.12.100, the reverse zone name will be rev.12.11.10.in-addr.arpa .</p>
<p>Creating these two files are as easy as editing them the usual ways:</p>
<pre><code>sudo nano /etc/bind/zones/lan1.domainname.com.db</code></pre>
<p>Mine looks like this &#8211; I&#8217;ll do the explanation later:</p>
<pre><code>$TTL 1h
lan1.domainname.com.      IN      SOA     argoz.lan1.domainname.com.   post.otherdomain.net. (

                                                        2009072804
                                                        28800
                                                        3600
                                                        604800
                                                        38400
 )

lan1.domainname.com.      IN      NS      argoz.lan1.domainname.com.

www             IN      CNAME   argoz.lan1.domainname.com.

localhost       IN      A       10.11.12.100

argoz           IN      A       10.11.12.100
aslan           IN      A       10.11.12.30
phoenix         IN      A       10.11.12.40
alambil         IN      A       10.11.12.50</code></pre>
<p>As I am not an expert in DNS, I will stick to explaining the things you need to change to make it work. The rest, you can copy as it is here.</p>
<p>lan1.domainname.com. is the domain. Take extra care not to forget the last period!<br />
argoz.lan1.domainname.com. is the full name of the server.<br />
post.otherdomain.net. is the mail address to the administrator with a period instead of the @ sign on a different server.<br />
2009072804 is a serial number that should change every time you change this zonefile. A very common way to do this number is to use the date in reverse order and a two digit number at the end. In most cases, you will not need more than 99 changes during a 24 hour period.</p>
<p>I added a few special names to the list and I also added some of the other PC&#8217;s in the house just to be able to address them by name, not only by IP. Also note &#8211; I do not have an in-house mail server (yet) so there is no MX record.</p>
<p>The last thing you need to do is to set up the reverse zone file:</p>
<pre><code>sudo nano /etc/bind/zones/rev.12.11.10.in-addr.arpa</code></pre>
<p>Again, here is what this looks like on my server:</p>
<pre><code>$TTL 1h
@ IN SOA argoz.lan1.domainname.com. post.otherdomain.net. (
                        2009072803;
                        28800;
                        604800;
                        604800;
                        86400
)

                IN      NS      argoz.lan1.domainname.com.
100              IN      PTR     argoz.lan1.domainname.com.
30              IN      PTR     aslan.lan1.domainname.com.
40              IN      PTR     phoenix.lan1.domainname.com.
50              IN      PTR     alambil.lan1.wdomainname.com.</code></pre>
<p>After setting up the previous file, this one becomes a bit more clear. As with the other file, remember the trailing periods. And also remember to change the serial number if you open and change this file again later.</p>
<p>The last thing you need to do is to restart bind9 to get the whole thing to work:</p>
<pre><code>sudo /etc/init.d/bind9 restart</code></pre>
<p>And then you can test your DNS with this command (substitute the domainname with your own):</p>
<pre><code>dig lan1.domainname.com</code></pre>
<p>I am sure there are still errors in this setup, but it is working for me. I can do a dig and get a respons that seems to be ok. Was this helpful? Any tips on how to improve things?</p>
<p><em>A big thank you to the following websites and people for help and knowledge:<br />
Ubuntu forum -  Howto: <a title="Ubuntu Forum - DNS HowTo" href="http://ubuntuforums.org/showthread.php?t=236093" target="_blank">Setup a DNS server with bind</a><br />
Ubuntu DNS Server Guide &#8211; <a title="Caching DNS guide" href="http://www.zaphu.com/2007/09/10/ubuntu-dns-server-guide-bind-caching-name-server-setup/" target="_blank">BIND Caching Name Server Setup</a><br />
The admins at <a title="Domenetorget webhosting" href="http://www.domenetorget.no/" target="_blank">Domenetorget.no</a> for excellent support</em>!</p>
<p><em>The photograph of the rack and network cables is by <a title="Wiring Closet: AFTER" href="http://www.flickr.com/photos/clonedmilkmen/3605000402/in/photostream/" target="_blank">Cloned Milkmen</a> and has a <a title="Creative Commons license" href="http://creativecommons.org/licenses/by-sa/2.0/deed.en" target="_blank">Creative Commons</a> license.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=CAO7wRf1J2A:FAn8M6Lg7ug:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=CAO7wRf1J2A:FAn8M6Lg7ug:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=CAO7wRf1J2A:FAn8M6Lg7ug:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=CAO7wRf1J2A:FAn8M6Lg7ug:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=CAO7wRf1J2A:FAn8M6Lg7ug:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=CAO7wRf1J2A:FAn8M6Lg7ug:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=CAO7wRf1J2A:FAn8M6Lg7ug:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=CAO7wRf1J2A:FAn8M6Lg7ug:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/CAO7wRf1J2A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-3-configuring-bind9/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-3-configuring-bind9/</feedburner:origLink></item>
		<item>
		<title>Setting up your own DNS part 2: Basic configuration</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/DTFatIALHY8/</link>
		<comments>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-2-basic-configuration/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:02:39 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[bind9]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=113</guid>
		<description><![CDATA[This is part 2 of a 3 part series. You should also read Part 1 : Getting started Part 3 : Configuring bind9 Editing configuration files in Linux can be a daunting task for a person that is new to the whole concept. I do...]]></description>
			<content:encoded><![CDATA[<p><em>This is part 2 of a 3 part series. You should also read<br />
<a title="DNS part 1" href="http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-1-getting-started/" target="_self">Part 1 : Getting started</a><br />
<a title="DNS part 3" href="http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-3-configuring-bind9/" target="_self">Part 3 : Configuring bind9<br />
</a></em></p>
<p>Editing configuration files in Linux can be a daunting task for a person that is new to the whole concept. I do it when I have to and have done it a lot over the years. But unlike some people that almost fall in love with the command line interface (CLI), I like it less and less as the time passes. I prefer to use my time on other things than administrating and configuring the server. Once it is done, it should just work. And this makes CLI very difficult because I never remember the commands when I need them. So I have to search the internet every time.</p>
<p>When I have to do it, my editor of choice is nano. So to edit a file, I type</p>
<pre><code>sudo nano filename.txt</code></pre>
<p>The reason for the sudo is that most of the files that needs to be edited will be outside of the home directory and because of this, not possible to edit with normal user privileges. Adding sudo and giving your password takes care of that.</p>
<h3>Checking basic server configuration</h3>
<p>First of all, it is a good idea to check that the standard stuff of the server has been configured correct after bind9 has been installed. The first file to check would be the basic networking configuration on your server:</p>
<pre><code>sudo nano /etc/network/interfaces</code></pre>
<p>Mine looks like this:</p>
<pre><code># This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 10.11.12.100
netmask 255.255.255.0
network 10.11.12.0
broadcast 10.11.12.255
gateway 10.11.12.1</code></pre>
<p>Yours might differ, but this one should get you what you need.</p>
<p>Your server needs to know a DNS in order to look up requests. Of course, as you will have a DNS running locally, you just have to point it to itself.</p>
<pre><code>sudo nano /etc/resolv.conf</code></pre>
<p>My server only has two lines here. One for the DNS, the other for the domain.</p>
<pre><code>search lan1.domainname.com

nameserver 127.0.0.1</code></pre>
<p>The hosts file could do the job as a simple &#8220;DNS&#8221;, but as we are setting up a complete DNS, it is better to keep it clean:</p>
<pre><code>sudo nano /etc/hosts</code></pre>
<p>Something similar to this is ok, nothing else should be needed:</p>
<pre><code>127.0.0.1       localhost

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts</code></pre>
<p>In the last post I will cover the bind9 specific configuration.</p>
<p><em>The photograph of the web is copyright Svein Wisnæs.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=DTFatIALHY8:Vg4pnzYp4wk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=DTFatIALHY8:Vg4pnzYp4wk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=DTFatIALHY8:Vg4pnzYp4wk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=DTFatIALHY8:Vg4pnzYp4wk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=DTFatIALHY8:Vg4pnzYp4wk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=DTFatIALHY8:Vg4pnzYp4wk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=DTFatIALHY8:Vg4pnzYp4wk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=DTFatIALHY8:Vg4pnzYp4wk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/DTFatIALHY8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-2-basic-configuration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-2-basic-configuration/</feedburner:origLink></item>
		<item>
		<title>Setting up your own DNS part 1: Getting started</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/R_GJ-_RGP_s/</link>
		<comments>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-1-getting-started/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 20:59:22 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[bind9]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=107</guid>
		<description><![CDATA[I have been playing with Linux for the last 15 years, but lately I have taken it to a whole new level. On my laptop I have set up a dual boot with Windows XP and Kubuntu, and after almost half a year of running...]]></description>
			<content:encoded><![CDATA[<p>I have been playing with Linux for the last 15 years, but lately I have taken it to a whole new level. On my laptop I have set up a dual boot with Windows XP and Kubuntu, and after almost half a year of running this combination, I am amazed at how few times I have actually booted into Windows XP. Had it not been for the video editing, the second part with Windows XP would not have existed. There are a few other programs I am using under Windows XP, but they are happy to run in VirtualBox without any need for rebooting.</p>
<p>I have had a server in the house on and off over the years, but after moving to Brazil, it became a real need. The server is used for developing websites, testing different installations, caching updates for the workstations in the house, sharing files and sharing our laser printer as well as a number of other small things. It is also a way for me to learn more about networking, Linux servers etc.</p>
<p>Learning is also one of the reasons why I would like to set up a small caching DNS that also resolves the stuff I have on my local network. This task has been a challenge, but with the help of a lot of different online documentation, friends that have given me tips about this and that, I have managed to get it to a point where I can truly say it is working. So I thought I would try to gather the information here, both to help others and for me to remember what I actually have done.</p>
<p><span style="color: #ff0000;">One thing has to be said loud and clear: This server is not exposed on the internet. It sits behind a firewall and is only used by us locally. No ports have been opened up for access from the outside and there is no need to update the rest of the world with the stuff running on our local network. </span></p>
<p>Before I started, I had to make a few decisions. One of them was that I wanted to use a real domain for this, so I chose to use a subdomain off my wisnaes.com domain &#8211; lan1.wisnaes.com . This way, if I ever need to set up a lan at another site, I can simply name it lan2.wisnaes.com and avoid any conflicts. But for the examples, I have substituted this with lan1.domainname.com so that nobody by accident uses my domain.</p>
<p>Other things I decided on either at the installation of Ubuntu server or before the configuration of the DNS:</p>
<p>Name of server: argoz<br />
IP of server: 10.11.12.100<br />
IP of gateway: 10.11.12.1<br />
DNS1: 208.67.222.222 (OpenDNS)<br />
DNS2: 208.67.220.220 (OpenDNS)</p>
<p>There are a few DNS packages to choose from, but I chose to go for bind9 as this seems to be the most common one and it can do everything from small stuff to really big stuff.</p>
<p>Installing it is as easy as typing</p>
<pre><code language="plain">sudo apt-get update
sudo apt-get install bind9</code></pre>
<p>on the command line. Follow the prompts, and you have the basic install with a standard configuration. Note that the install has to be done with sodu/root privileges. Either use sudo or become root temporarily.</p>
<p>I will get into the configurations in the other two parts:<a title="DNS part 2" href="http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-2-basic-configuration/" target="_self"><br />
Part 2 : Basic configuration</a><br />
<a title="DNS part 3" href="http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-3-configuring-bind9/" target="_self">Part 3 : Configuring bind9<br />
</a></p>
<p><em>The photograph of the phonebook is copyright Egil Sundal and used by permission.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=R_GJ-_RGP_s:QRQ2EhgoawA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=R_GJ-_RGP_s:QRQ2EhgoawA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=R_GJ-_RGP_s:QRQ2EhgoawA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=R_GJ-_RGP_s:QRQ2EhgoawA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=R_GJ-_RGP_s:QRQ2EhgoawA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=R_GJ-_RGP_s:QRQ2EhgoawA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=R_GJ-_RGP_s:QRQ2EhgoawA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=R_GJ-_RGP_s:QRQ2EhgoawA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/R_GJ-_RGP_s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-1-getting-started/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2009/10/25/setting-up-your-own-dns-part-1-getting-started/</feedburner:origLink></item>
		<item>
		<title>Testing new themes, no need to panic</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/Gc4pV9wsf1o/</link>
		<comments>http://www.wisnaes.com/2009/04/03/testing-new-themes-no-need-to-panic/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 14:41:09 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Sitenews]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=87</guid>
		<description><![CDATA[You might have noticed that the pictures in the last post are not looking too well together with the text. This is a preoblem with the template I am using and has prompted me to look for a new theme. It is time to update...]]></description>
			<content:encoded><![CDATA[<p>You might have noticed that the pictures in the last post are not looking too well together with the text. This is a preoblem with the template I am using and has prompted me to look for a new theme.</p>
<p>It is time to update the look of this blog a little bit and make it possible to use more of the new features in the latest version of WordPress. So please don&#8217;t get alarmed if you see a strange look on this page. I am just trying out some new things, and the best way to really get a feel for it is to test it on the real stuff.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Gc4pV9wsf1o:dQ8B-ge5wFQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Gc4pV9wsf1o:dQ8B-ge5wFQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Gc4pV9wsf1o:dQ8B-ge5wFQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Gc4pV9wsf1o:dQ8B-ge5wFQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Gc4pV9wsf1o:dQ8B-ge5wFQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Gc4pV9wsf1o:dQ8B-ge5wFQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Gc4pV9wsf1o:dQ8B-ge5wFQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Gc4pV9wsf1o:dQ8B-ge5wFQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/Gc4pV9wsf1o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2009/04/03/testing-new-themes-no-need-to-panic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2009/04/03/testing-new-themes-no-need-to-panic/</feedburner:origLink></item>
		<item>
		<title>How to set up dual boot</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/JaVbalGoWM4/</link>
		<comments>http://www.wisnaes.com/2009/03/27/how-to-set-up-dual-boot/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 02:06:28 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[dual boot]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[partition]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=71</guid>
		<description><![CDATA[Funny how much time a man can spend on technology. I got myself a new harddisk for my laptop. A 320GB WesternDigital with 16MB cache spinning at 7200 rpm. Great. But how do I move from the old 100GB harddisk to the new one? So...]]></description>
			<content:encoded><![CDATA[<p>Funny how much time a man can spend on technology.</p>
<p>I got myself a new harddisk for my laptop. A 320GB WesternDigital with 16MB cache spinning at 7200 rpm. Great. But how do I move from the old 100GB harddisk to the new one?</p>
<p>So I decided to do a bit of research before doing it. And while I was doing that, I started moving all data off the old one over to a USB disk.</p>
<p>The first thing I quickly decided on was that I wanted a dual boot system. I have been using Linux on and off for a long time and I finally wanted to use as much time using it as possible. The next I had to decide was what distro to go for. Linux comes in many flavours, and it can be a nightmare to choose. But I had always liked the Ubuntu family and on a different computer I have Linux Mint installed. This is one of the many offsprings of Ubuntu.</p>
<div id="attachment_74" class="wp-caption alignright" style="width: 310px"><a href="http://www.wisnaes.com/wp-content/uploads/2009/03/reinstall.jpeg"><img class="size-full wp-image-74" title="Reinstallation" src="http://www.wisnaes.com/wp-content/uploads/2009/03/reinstall.jpeg" alt="My old harddisk and the necessary CD's." width="300" height="225" /></a><p class="wp-caption-text">My old harddisk and the necessary CD&#39;s.</p></div>
<p>But for my laptop I decided to use Kubuntu. I had heard a lot of good stuff about it and the new KDE looked great. There was also this thing of getting as close to the source as possible. Mint is great looking and has some extra features I would have loved. But as it is an offspring of Ubuntu, their releases are always behind and I wanted to be able to use all updates as they were released from the Ubuntu team. After communicating with people in the Kubuntu forum, I did what I consider to be a little bold move: I went for the Kubuntu 9.04 aplha6 release. This is a test version of Kubuntu that will be released in April this year. For Ubuntu and Kubuntu the first digit signifies the year. So for 2009 the first digit becomes 9. The two digits after the period is the month. So April is 04. The Ubuntu family has two major releases every year. One in April and one in October.  As someone in the forum pointed out, we are very close to the release for April and the other people testing it reported that it was already very stable.<span id="more-71"></span></p>
<p><strong>Partitioning the harddisk</strong></p>
<p>When you want to have two operating systems on your harddisk you have a few considerations to make. Do you want them to just live side by side with no interaction, or do you want to be able to use some data in both systems? How much space do you have to give to each? And how do you want to organize each one of them?</p>
<p>I also had the added problems of a couple of special partitions on my old harddisk. The old one looked like this:</p>
<ol>
<li>fat16	86.26MB – a rescue partition set up by Dell</li>
<li>ntfs	88.66GB – the main system partition that contained WindowsXP Pro</li>
<li>fat32	3GB – the MediaDirect partition</li>
</ol>
<p>MediaDirect has it&#8217;s own button on my laptop, and when I press it, the laptop boots a special OS that works like a media center wher I can play DVD&#8217;s, watch pictures or listen to music.</p>
<p>I researched several forums to try to figure out wether to bring the rescue partition and MediaDirect over to the new harddisk. But eventually decided to scrap both. If my operating system needs rescue, it is better done from the install CD. And I will have two OS&#8217;es on the harddisk, so I did not want to take the chance of anything like that messing up the systems.<br />
The MediaDirect partition was actually a bigger concern. Basically what I am a little afraid of is what will happen if I press the button and there is no MediaDirect partition? One of the forums mentioned a talk with Dell support where they said that the button would be dead without this partition. So that is what I am hoping for. But have not dared to try yet&#8230;</p>
<p style="text-align: center;"><a href="http://farm1.static.flickr.com/139/326630024_834bf085af.jpg?v=0"><img class="aligncenter" style="margin-top: 5px; margin-bottom: 5px;" title="Hard Disk" src="http://farm1.static.flickr.com/139/326630024_834bf085af.jpg?v=0" alt="" width="500" height="333" /></a></p>
<p style="text-align: center;">Another choice I made was to separate data and the operating systems. And as some of my work will generate a lot of data (video editing) from WindowsXP, I decided that the biggest partition would be a data partition formatted with ntfs. Here is the formatting I finally went for:</p>
<ol>
<li>Primary -	ntfs -	WindowsXP – 30GB</li>
<li>Primary -	ntfs -	Data – 230GB</li>
<li>Primary -	ext3 -	Kubuntu – 15GB</li>
<li>Extended</li>
<li>Logical -	ext3 -	/home – 20GB</li>
<li>Logical -	linux-swap &#8211; swap – 4GB</li>
</ol>
<p>For the actual partitioning I used a live CD version of gparted.</p>
<p>I wanted to put the whole Documents and Setting plus the Program Files folder on the Data partition. That got me into another big round of research.</p>
<p><strong>Preparing a special WindowsXP boot CD</strong></p>
<p>To get Documents and Settings and the Program Files folder onto the Data partition, it turned out I had to modify the WindowsXP setup CD. I could have done it by making a floppy disk with the setup in a textfile and boot off that one. But I do not have a floppy drive, so I had to go for the whole CD setup.</p>
<p>The first step was to copy all files from the CD that I got together with my laptop over too my harddisk. As I now had moved everything in My Documents on the old harddisk over to a USB disk, I had a lot of space to do this.</p>
<p>I also needed to copy the bootfile from the CD. To do this I used a small program called ISOBuster. It is recommended that you write down the name of the original CD and use the same for your new one.</p>
<p>To get things the way I wanted, I had to do what is called an Unattended install with the setup for it in a small textfile. This file had to be called winnt.sif and should be put in the i386 folder on the CD. On some webpages it says that you need to use a batch file to start the process, but in my case it was enough to just place the file in the right folder. There was a file like that already there, but the content was only two lines and just to be sure, I included them in my file.</p>
<p>Here is what I put in the file:</p>
<blockquote><p>[Data]<br />
AutoPartition=0<br />
MsDosInitiated=0<br />
UnattendedInstall=Yes</p>
<p>[Unattended]<br />
UnattendMode=ProvideDefault<br />
OemPreinstall=No<br />
TargetPath=\WINDOWS<br />
FileSystem=*<br />
Hibernation = No<br />
OemSkipEula=Yes<br />
Repartition=No<br />
UnattendSwitch=&#8221;yes&#8221;<br />
WaitForReboot=&#8221;No&#8221;<br />
ProgramFilesDir=&#8221;D:\Program Files&#8221;<br />
CommonProgramFilesDir=&#8221;D:\Program Files\Common Files&#8221;</p>
<p>[GuiUnattended]<br />
AdminPassword=secret<br />
EncryptedAdminPassword=No<br />
OEMSkipRegional=1<br />
TimeZone=65<br />
ProfilesDir=&#8221;D:\Documents and Settings\&#8221;</p>
<p>[Components]<br />
Msnexplr=Off<br />
Zonegames=Off<br />
msmsgs=Off<br />
Fax=On</p>
<p>[Shell]<br />
DefaultStartPanelOff = Yes<br />
DefaultThemesOff = Yes</p>
<p>[UserData]<br />
ProductKey=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX<br />
FullName=&#8221;Svein Wisnaes&#8221;<br />
OrgName=&#8221;My org&#8221;<br />
ComputerName=Trainer</p>
<p>[Display]<br />
BitsPerPel=32<br />
Xresolution=1280<br />
YResolution=800<br />
Vrefresh=60</p>
<p>[TapiLocation]<br />
Dialing=Tone</p>
<p>[RegionalSettings]<br />
LanguageGroup=1<br />
SystemLocale=00000409<br />
UserLocale=00000414<br />
InputLocale=0414:00000414</p>
<p>[Identification]<br />
JoinWorkgroup=WORKGROUP</p>
<p>[Networking]<br />
InstallDefaultComponents=Yes</p></blockquote>
<p>If you want to do this yourself, you can use this as a starting point. There were a couple of things that did not work as expected. First of all, I had one character in the license wrong. But as I used the mode UnattendMode=ProvideDefault, the settings in this file are only used as default answers and I am allowed to correct them during install.</p>
<p>One question I had before installing was what letter my Data partition would get. As you have to include it in the path where you want Documents and Settings and the Program Files folder, it was important to know. I could not find this anywhere on the internet, so I took a chance on the first available letter, D, and hoped the DVD drive would stay out of the way <img src='http://www.wisnaes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>This turned out to be correct, so that part of the winnt.sif was correct. But I got some of the timezone wrong. And the screen resolution did not matter, as the driver for my graphics card was not included on the CD. But again – I could correct anything that needed correction during the installation.</p>
<p>I also used the opportunity to avoid installing some programs as well as setting the theme to the classic Windows 2000 look. I prefer this when working with video editing.</p>
<p><strong>WindowsXP Installation</strong></p>
<p>The installation itself was pretty straightforward. After installing Windows XP, I added the drivers from the Dell driver CD. Windows XP actually occupies very little of the 30GB space as the folders that tend to grow are located on the Data partition. So I might eventually be able to decrease the WindowsXP partition and increase the Data partition. But time will show.</p>
<p>Since this, I have now transferred all the files from my old Documents and Settings to the new Data partition. I still have to sort things, and this time I will go through everything. The previous times I have changed computers or harddisks, I have usually copied the whole thing over and I now have files from a long time back that could have been deleted. Time to clean!</p>
<p>I also made another decision. The new WindowsXP installation will not have any chat programs installed at all. And my mailprogram here is Thunderbird Portable. As far as possible, I will use portable version of programs to avoid littering the filesystem too much.</p>
<p><strong>Kubuntu installation</strong></p>
<p>Then the time had come to install Kubuntu. As I had already done the partitioning, I chose manual partition. I then had to choose what to put where, and go on with the install. Just before the installation really starts, I was given a summary page with an Advanced button on the bottom, right side. I clicked it because I was thinking of putting the bootloader on the Kubuntu partition instead of the MBR. But as far as I could see, I did not have that choice. I could only choose sda (the whole disk). So this presumably meant that it went on the MBR. The reason why I wanted this was that I was hoping it would mean that the MediaDirect button would then boot Kubuntu if pressed when the laptop is off.</p>
<div class="wp-caption aligncenter" style="width: 550px"><a href="https://wiki.kubuntu.org/JauntyJackalope/Beta/Kubuntu"><img title="Kubuntu desktop" src="http://kde.org/announcements/4.2/screenshots/desktop_thumb.png" alt="The new KDE 4.2.1 based Kubuntu desktop" width="540" height="337" /></a><p class="wp-caption-text">The new KDE 4.2.1 based Kubuntu desktop</p></div>
<p>The Kubuntu installation was a lot smoother than WindowsXP. Nicer graphics and no drivers to install after. I did try to activate the special nVidia drivers, but for some reason it did not work. As it is, the laptop works very well. It was easy to connect to the wireless network and the Data partition comes right up. As well as my connected USB disk. It even has detected the built-in webcam, but that part needs a little bit more finetuning to be ok.</p>
<p>I am slowly finding my way around Kubuntu. The Kubuntu forum is a great help with a lot of friendly people. You can ask any question and get a lot of helpful answers. I am really impressed by the positive tone in that forum.</p>
<p><strong>What is next?</strong></p>
<p>I have already installed Avid MediaComposer and Adobe Photoshop CS2 in WindowsXP. I might try to install Photoshop in Kubuntu under Wine, but not yet.</p>
<p>Kubuntu comes with OpenOffice installed and this has been my choice of office software for some time now. Some of the applications that come with Kubuntu are worth a special mention. Kopete is something like a nicer, Kubuntu version of Pidgin. I am already using it as I need it to stay in touch with customers, friends and family. Konqueror, the webbrowser in Kubuntu, looks nice. But I prefer using Firerfox so I have already installed this. I have also added the Foxmarks plugin as I do on all computers I use. This let me synchronize my bookmarks in all computers and OS&#8217;es. Works like a charm! Amarok is so far the best music player I have seen on Linux. I warned me the first time I used it that it needed some extra codecs to be able to play the music I had. The MP3 codec is not included as default in Kubuntu, but that is easily fixed. Just let Amarok take care of it!</p>
<p>In Kubuntu, the program that takes care of updating your system and install new software is called KpackageKit in version 9.04 . It seems this program still has some bugs, but in general it does it&#8217;s job. One of the first things to do after the installation of 9.04 alpha6 was to download updated files. There were already over 300 files that needed to be updated so I let it run over night because of the slow line here. Before the update I had some program crashes, and it seems the update has taken care of most of that. No crashes so far today.</p>
<p>Thunderbird has for a long time been my mailprogram of choice and I have already installed it in Kubuntu. But how do you make sure you do not make a mess with the two operating systems? The solution was to keep the mailprofile on the Data partition and point Thunderbird under Kubuntu to this folder. To do that I had to edit a settings file that is found in the /home/.mozilla-thunderbird folder. To see this folder, I had to switch on Show hidden files in the filemanager. The file to edit is called profiles.ini and it is as simple as changing this section:</p>
<blockquote><p>IsRelative=1<br />
Path=t633sbdp.default</p>
<p>Here what I put:</p>
<p>IsRelative=0<br />
Path=/media/Data/Portable Program Files/ThunderbirdPortable/Data/profile</p></blockquote>
<p>Everything comes up as normal and I read that you can even point it to a network folder so you can keep all your mail on a server.</p>
<p>There are several programs I still need to install. Skype being one of them. Little by little, Kubuntu will become my main workplatform.</p>
<p>Does this sound interesting? Would you do the same? Let me know what you think of my experiment.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=JaVbalGoWM4:XlDRZZ14qrE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=JaVbalGoWM4:XlDRZZ14qrE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=JaVbalGoWM4:XlDRZZ14qrE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=JaVbalGoWM4:XlDRZZ14qrE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=JaVbalGoWM4:XlDRZZ14qrE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=JaVbalGoWM4:XlDRZZ14qrE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=JaVbalGoWM4:XlDRZZ14qrE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=JaVbalGoWM4:XlDRZZ14qrE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/JaVbalGoWM4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2009/03/27/how-to-set-up-dual-boot/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2009/03/27/how-to-set-up-dual-boot/</feedburner:origLink></item>
		<item>
		<title>Test of new picture options</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/HK8H8FXqOpo/</link>
		<comments>http://www.wisnaes.com/2008/07/14/test-of-new-picture-options/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 20:28:56 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2008/07/14/test-of-new-picture-options/</guid>
		<description><![CDATA[I have just upgraded three WordPress based blogs to version 2.5.1 by using an excellent plug-in for automatic upgrades. While I do not consider it the final solution (I think this should be a part of the basic WordPress set-up), it is certainly a big...]]></description>
			<content:encoded><![CDATA[<p>I have just upgraded three WordPress based blogs to version 2.5.1 by using <a title="WordPress Automatic Upgrades" href="http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/" target="_blank">an excellent plug-in for automatic upgrades</a>. While I do not consider it the final solution (I think this should be a part of the basic WordPress set-up), it is certainly a big step in the right direction.</p>
<p><img style="margin: 0px 0px 5px 10px; border: 0px;" src="http://www.wisnaes.com/wp-content/images/Testofnewpictureoptions_F293/P6290142edited.jpg" border="0" alt="Evening visitor" width="250" height="333" align="right" /> One of the things that got my attention in the new version is that it should load any EXIF info into special fields so that it can be used by templates to post caption, credits etc. I am really curious how to get this working and it seems more of this is coming in version 2.6 that is close to being released.</p>
<p>Of course, by using Windows Live Writer, one more step and possible error source is added between the original picture and the web page you see now. I added several IPTC fields to the picture just to see how it turned out and if it came up as useful data.</p>
<p>Do you have any experience in using these new data fields? Leave a comment and tell about how you did it. I will add to this article as I find out more.</p>
<p>Update: First of all, there is a bug in Windows Live Writer that strips out all EXIF/IPTC info. So it does not help using it if you want to have caption to the pictures. Version 2.5 of WordPress was supposed to add a better way to handle pictures, but for me the picture</p>
<div id="attachment_68" class="wp-caption alignleft" style="width: 180px"><a href="http://www.wisnaes.com/wp-content/uploads/2008/07/resized_pa280423-edited.jpg"><img class="size-medium wp-image-68" title="resized_pa280423-edited" src="http://www.wisnaes.com/wp-content/uploads/2008/07/resized_pa280423-edited-221x300.jpg" alt="The blue hour at Karmøy, Norway. &lt;/b&gt;&lt;i&gt;(Photographer: Svein Wisnaes)&lt;/i&gt;" width="170" height="231" /></a><p class="wp-caption-text">The blue hour at Karmøy, Norway. (Photographer: Svein Wisnaes)</p></div>
<p>inserter/uploader never worked. But after upgrading to WordPress 2.6 things seem to work great. At least everything looks ok while I am in the editor. But for some reason the align tag does not work correct. So it ends up breaking the design.</p>
<p>There is also a nice and very tiny border around the picture that disappear on the way from the editor to the article that shows on the page, as well as some formatting I put on the caption. I wanted the Photographer to be in italics. It might be possible to fix this through the theme that is used. I will check if there is a more general fix for it.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=HK8H8FXqOpo:kryLuISXG-8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=HK8H8FXqOpo:kryLuISXG-8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=HK8H8FXqOpo:kryLuISXG-8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=HK8H8FXqOpo:kryLuISXG-8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=HK8H8FXqOpo:kryLuISXG-8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=HK8H8FXqOpo:kryLuISXG-8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=HK8H8FXqOpo:kryLuISXG-8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=HK8H8FXqOpo:kryLuISXG-8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/HK8H8FXqOpo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/07/14/test-of-new-picture-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2008/07/14/test-of-new-picture-options/</feedburner:origLink></item>
		<item>
		<title>No respect and no credit for photographers?</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/Glz14rpzQ7I/</link>
		<comments>http://www.wisnaes.com/2008/03/04/no-respect-and-no-credit-for-photographers/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 23:04:15 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Sitenews]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2008/03/04/no-respect-and-no-credit-for-photographers/</guid>
		<description><![CDATA[There is one part of the internet that for me looks like it has been totally ignored. And even this article is a good example of it. Take a look at my picture. I had to edit the whole thing in Photoshop to get the...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wisnaes.com/wp-content/images/Norespectandnocreditforphotographers_10BE4/Wavesmockup.jpg"><img style="margin: 5px 5px 1px; border-width: 0px;" src="http://www.wisnaes.com/wp-content/images/Norespectandnocreditforphotographers_10BE4/Wavesmockup_thumb.jpg" border="0" alt="Waves mockup" width="250" height="270" align="right" /></a> There is one part of the internet that for me looks like it has been totally ignored. And even this article is a good example of it. Take a look at my picture. I had to edit the whole thing in Photoshop to get the result I wanted.</p>
<p>I am using Windows Live Writer to publish this article to my Word Press powered blog. But neither Windows Live Writer, neither Word Press has any mechanism to add a copyright (or Creative Commons), the name of the photographer and a caption (the description) to each picture.</p>
<p>I would like to see the possibility to add this for each picture I use in my article. For me, this is a no brainer. The photographer deserves credit just as much as the article writer. So why is it not there?</p>
<p>The group of websites that actually uses some form of this best are the online newspapers. I guess that stems from the photographers there knowing a lot more about their rights. But we really need this on even small blogs today.</p>
<p>A very good source for illustrations for a blog today are the photosharing sites like Flickr. On Flickr, you can do a search only among the Creative Commons pictures to find something that you can use. Bust most of the CC marked pictures require that you give the photographer due credit and maybe also link back to both her/him and to the correct CC webpage. Today, there is no way to do this easily and I am trying to get some attention to this.</p>
<p>One way that has been suggested is to use the watermark feature in some editors to add the text inside the picture itself. But this means altering the picture and a lot of photographers do not want you to do that. Also, take a look at my picture above and think about placing the caption over the picture. First of all, it would look extremely odd. Second, it would hardly be readable. Sure, I could set the text color to white. But next picture might be a high key picture that requires me to set it to black.. No, forget about putting anything inside the picture. And by the way &#8211; why use a workaround that is clearly not meant for this? What we need is a real solution.</p>
<p>The first way to handle it would be to ask the creators of different WYSIWYG editors and off-line editors to add this functionality. It should not be too difficult. The second step would be to get it into the core of the different CMS&#8217;es like WordPress and Joomla. That is where it really belongs.</p>
<p>I want to add one more thing to the list. Microsoft has made available a nice plugin or addition to Windows XP. It is called <a title="Photo Info download" href="http://www.microsoft.com/windowsxp/using/digitalphotography/prophoto/photoinfo.mspx" target="_blank">Photo Info</a> and it allows you to add the required text to the IPTC fields of pictures. Most of the higher end photo editing programs can do the same, and as I do not like doing the same thing twice, I would love to see Windows Live Writer and WordPress being able to load the IPTC info into the correct fields for each picture when I publish them on my blog. I consider this to be the ultimate and most elegant solution, but for now I will settle for one that just let me enter and display the needed info in a nice manner.</p>
<p>There are several ways to display it, and here the template designers might come in with some styling. The name and copyright could be added under the picture as I have done. But I have also seen it displayed up along the right side of the picture. The caption could either be under or over. For my own blog, I would prefer something more or less the way I made the mockup in this article. I am not totally sure about the 5% grey behind the caption, but I need to make sure it is easy to separate it from the article itself.</p>
<p>How would you like to display photo credits and captions? Do you do it today? As far as I know, copyright laws in most countries requires us to put a credit for pictures we use. Why has this been omitted in most CMS systems?</p>
<p>UPDATE: I have now posted an idea on WordPress.org to try to gather support for this. <a title="Add vote to get photocredit into WordPress" href="http://wordpress.org/extend/ideas/topic.php?id=1218" target="_blank">Add your vote on the idea</a>! I have also put the idea into a forum for Windows Live Writer and someone replied that he could probably make something like this. Sounds like Windows Live Writer might be the first one to get something usable. This will of course be good news for more than WordPress users. You can <a title="Add support for photo credit in Windows Live Writer" href="http://groups.msn.com/WindowsLiveWriter/general.msnw?action=get_message&amp;mview=0&amp;ID_Message=6947&amp;all_topics=0" target="_blank">add your support for it here</a>.</p>
<p>UPDATE2: I tried to make an example of what it could look like in Windows Live Writer. <a title="WLW example for credit options" href="http://www.wisnaes.com/wp-content/images/Credit options.png" target="_blank">Take a look at it here.</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Glz14rpzQ7I:XJULJkbqezA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Glz14rpzQ7I:XJULJkbqezA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Glz14rpzQ7I:XJULJkbqezA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Glz14rpzQ7I:XJULJkbqezA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Glz14rpzQ7I:XJULJkbqezA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Glz14rpzQ7I:XJULJkbqezA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Glz14rpzQ7I:XJULJkbqezA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Glz14rpzQ7I:XJULJkbqezA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/Glz14rpzQ7I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/03/04/no-respect-and-no-credit-for-photographers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2008/03/04/no-respect-and-no-credit-for-photographers/</feedburner:origLink></item>
		<item>
		<title>Easy DVD authoring</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/8SkPRhBExZs/</link>
		<comments>http://www.wisnaes.com/2008/02/29/make-a-dvd-the-easy-way/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 23:50:46 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2008/02/29/make-a-dvd-the-easy-way/</guid>
		<description><![CDATA[Have you ever tried making a nice DVD? Then you know it can be a lot of work and a lot of details to take care of to make things work correctly. But - Sometimes you just have a bunch of video files that you want to put on a DVD. You could of course use one of the big authoring tools available. If you want to take the time, make sure all video is in an acceptable format, and not the least - spend the money on buying these tools.

Or you could head over to http://www.dvdflick.net/ and download DVDFlick. It is probably the easiest tool I have come across to make DVD's.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wisnaes.com/wp-content/images/EasyDVDauthoring_11C9E/DVDFlick.gif"><img style="border: 0px;" src="http://www.wisnaes.com/wp-content/images/EasyDVDauthoring_11C9E/DVDFlick_thumb.gif" border="0" alt="DVD Flick" width="240" height="235" align="right" /></a> Have you ever tried making a nice DVD? Then you know it can be a lot of work and a lot of details to take care of to make things work correctly. But &#8211; Sometimes you just have a bunch of video files that you want to put on a DVD. You could of course use one of the big authoring tools available. If you want to take the time, make sure all video is in an acceptable format, and not the least &#8211; spend the money on buying these tools.</p>
<p>Or you could head over to <a title="DVD flick" href="http://www.dvdflick.net/" target="_blank">http://www.dvdflick.net/</a> and download DVDFlick. It is probably the easiest tool I have come across to make DVD&#8217;s. From their own description:</p>
<blockquote><p>DVD Flick aims to be a simple but at the same time powerful DVD Authoring tool. It can take a number of video files stored on your computer and turn them into a DVD that will play back on your DVD player, Media Center or Home Cinema Set. You can add additional custom audio tracks as well as subtitles of your choice.</p></blockquote>
<p>And here is a short list of some features:</p>
<ul>
<li>Burn near any video file to DVD</li>
<li>Support for over 45 file formats</li>
<li>Support for over 60 video codecs</li>
<li>Support for over 40 audio codecs</li>
<li>Add your own subtitles</li>
<li>Easy to use interface</li>
<li>Burn your project to disc after encoding</li>
<li>Completely free without any adware, spyware or limitations</li>
</ul>
<p>I can really recommend this program. And for the price of it, you can hardly go wrong &#8211; it is free. But if you like it and become a user, you should consider donating something. These programmers that make software and then give it out for free really deserve our support.</p>
<p>The interface is very easy. You add movies to a list and then you create the DVD. But before you start creating, make sure you have gone through the project settings and set the target size, target format etc. You can also decide to make an ISO-file instead of burning direct to DVD.</p>
<p>For each video that you add to the list, you can click on edit and adjust a number of settings. One thing to look out for here is the aspect ration. Check that it is set correct. This is also where you can add extra video sources, audio tracks and subtitles.</p>
<p>If you are new to making DVD&#8217;s, there is a nice tutorial online that you can get to by clicking on the guide button. It is a very easy step-by-step guide that should answer most questions.</p>
<p>I only have one thing to complain about. My main video editing program is Avid MediaComposer, and I have had some reports of problems with the Avid DV codec. So if you are using any of the Avid editing programs, you might want to make sure you are exporting with a more generic codec. But of course, try it out once with a couple of small videos. I have sent a mail to the author to tell him about the problem, so it might get solved in the near future.</p>
<p>Have you tried this program? Did you experience any problems? Let us know how it worked for you by leaving a comment. Is this the solution to all DVD authoring problems?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=8SkPRhBExZs:7pANb5V1J1Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=8SkPRhBExZs:7pANb5V1J1Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=8SkPRhBExZs:7pANb5V1J1Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=8SkPRhBExZs:7pANb5V1J1Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=8SkPRhBExZs:7pANb5V1J1Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=8SkPRhBExZs:7pANb5V1J1Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=8SkPRhBExZs:7pANb5V1J1Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=8SkPRhBExZs:7pANb5V1J1Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/8SkPRhBExZs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/02/29/make-a-dvd-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2008/02/29/make-a-dvd-the-easy-way/</feedburner:origLink></item>
		<item>
		<title>Testing Windows Live Writer 2008</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/bklcIBRSBR8/</link>
		<comments>http://www.wisnaes.com/2008/02/28/testing-windows-live-writer-2008/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 17:22:50 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Sitenews]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2008/02/28/testing-windows-live-writer-2008/</guid>
		<description><![CDATA[I have been looking for an easier way to write blog posts for the few blogs I have. So far I have been looking at a number of different blog editors and every time I have ended up using the online interface. Some time ago,...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wisnaes.com/wp-content/images/TestingWindowsLiveWriter2008_C5A1/WindowsLiveWriter.gif"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="211" alt="Windows Live Writer" src="http://www.wisnaes.com/wp-content/images/TestingWindowsLiveWriter2008_C5A1/WindowsLiveWriter_thumb.gif" width="240" align="right" border="0" /></a> I have been looking for an easier way to write blog posts for the few blogs I have. So far I have been looking at a number of different blog editors and every time I have ended up using the online interface.</p>
<p>Some time ago, I tested Windows Live Writer and could not even get it to run properly. Yesterday, I upgraded my MSN Messenger and had the opportunity to install Live Writer at the same time. So I thought &quot;Why not try it again&quot;? Maybe this time it will work.</p>
<p>Well, the installation was easy enough and it started fine. After giving it the log-in to my first blog, Live Writer discovered that it was a WordPress blog and it was ready to go.</p>
<p>Writing feels like writing in a word processor. I like this feeling and I also like being able to save drafts on my laptop. Now I can work on posts even if I am on an airplane with no connection to the internet. Of course, I could do this before by just using any wordprocessor, but I like this feeling of having a dedicated tool for the job. I hope it is easy to switch between different blogs so I can manage all of them from the same interface.</p>
<p>I have installed WYSIWYG editors on all my blogs. I do not like using codes when I write. I feel it interrupts the natural flow of writing. If Live Writer works, I can keep the WYSIWYG plug-in out of WordPress. One less thing to think about to update and install. Now I just wish there was a way to use Live Writer as a Live Comment System&#8230; </p>
<p>Do you know of any system for managing comments where you do not have to log in on your website?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=bklcIBRSBR8:iwWzwhs33Vw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=bklcIBRSBR8:iwWzwhs33Vw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=bklcIBRSBR8:iwWzwhs33Vw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=bklcIBRSBR8:iwWzwhs33Vw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=bklcIBRSBR8:iwWzwhs33Vw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=bklcIBRSBR8:iwWzwhs33Vw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=bklcIBRSBR8:iwWzwhs33Vw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=bklcIBRSBR8:iwWzwhs33Vw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/bklcIBRSBR8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/02/28/testing-windows-live-writer-2008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2008/02/28/testing-windows-live-writer-2008/</feedburner:origLink></item>
		<item>
		<title>A home or small office server</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/e3VYU2FTuqI/</link>
		<comments>http://www.wisnaes.com/2008/01/16/a-home-or-small-office-server/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 03:12:16 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2008/01/16/a-home-or-small-office-server/</guid>
		<description><![CDATA[I have for a long time told people they need to set up some kind of secure storage at home to take care of backup of pictures. And I am trying to reseach what is going on in the home server area at the moment....]]></description>
			<content:encoded><![CDATA[<p><a title="Photographer: Zack Williams" target="_blank" href="http://www.flickr.com/photos/zdw/"><img width="180" height="240" align="right" style="margin: 5px;" alt="Server Rack in the Laundry Room by Zack Williams" src="http://www.wisnaes.com/wp-content/images/65675213_de819df88d_m.jpg" /></a> I have for a long time told people they need to set up some kind of secure storage at home to take care of backup of pictures. And I am trying to reseach what is going on in the home server area at the moment. I have come across a few projects and think they are promising. So I decided to put together a kind of wish-list for my perfect server. None of these ideas are new, but I felt it was interesting to list all of them together.</p>
<p>This is all about security for the data. First I list everything that I think is really essential. Everything else should be and add-in except for file and printer sharing.</p>
<p><strong>RAID-1</strong></p>
<p>Whether it is soft or hardware based (I really prefer hardware based, so I like support for Highpoint, 3ware and Promise drivers at least&#8230;), a home server needs to have a solid system for securing files. Why RAID-1? Well, a single point of failure will always be the RAID control mechanism, either as software or hardware. If you use RAID-1, you can just take one drive out of the server and mount it on a different PC and you have access to all your data. If you use RAID-5 or RAID-6, you are not sure to be able to recover your raid if the controller goes&#8230; RAID-1 is not as efficient as RAID-5 or RAID-6 in terms of storage space, but in my opinion, the security is higher.</p>
<p>The system drive should also be on a RAID-1 setup so it is not lost because of harddrive failure. The whole OS including programs, not any user data or backup data, should fit on a relatively small drive so there is no cost excuse to skip running a RAID-1 for it.</p>
<p><strong>File system</strong></p>
<p>Based on maksimum security, there should go a lot of thought into what filesystem that should be used for the data drives. FAT32 would be a good candidate if it had been a bit more robust and allowed for bigger filesizes. But with a maximum of 2GB files, it is totally out of the question since many people would like to store backups of DVD&#8217;s on a server like this. A good solution might be to to use ext-2 or ext-3 and provide Windows and OSX drivers to be able to read the drives if there should be a major crisis.</p>
<p><strong>Backup</strong></p>
<p>Even if we have a secure way of storing data on the server, we still need a good backup system. And I really prefer a centrally managed system. There should only be a small agent installed on each PC (Windows, OSX or Linux/BSD) and then the rest should be done from the server &#8211; setting up what to backup, when and how often. There system MUST be able to backup files that are in use and to control bandwith use so it can run in the background even if you are working on the system.</p>
<p>There should be a wide range of options on where to store the backups. The backups of the pc&#8217;s in the network could be stored or cached on the server. But there must also be a way to wite to an different medium e.g. DVD+R or tape. Or some other kind of attached storage. Because of this it would be smart to have the backup program divide all backup files into chunks of 2GB or less.</p>
<p><strong>Health monitoring of critical components in the network.</strong></p>
<p>There are protocols to monitor hardware today. Especially harddrives that are S.M.A.R.T. enabled. So why not do this centrally? Use the same agent that do the backup control to continually monitor the harddrive, fans, CPU of the pc it is running on and send any critical messages immediately to the server. There you can have a program that send alerts by e-mail, sms, make a call through an IP-Phone and play a recorded message etc. This should not be complicated to set up. And it would be a good thing to send status for each PC on a regular basis so the server builds a statistics that can be reviewed.</p>
<p><strong>File sharing</strong></p>
<p>This is a given. Each user needs to have their own home folder where they can store documents and folders where more people have access so pictures and other things can be shared.</p>
<p>IMPORTANT: Actually, there should also be some sort of version control on this. I have no idea if this is possible in any of the filesystems out there, but pictures, music and video all share one thing &#8211; you do not want to destroy the original. So a way to mark files as originals and then block all modifications would be ok. I can see one reason to modify the originals &#8211; add metadata. So this part is a bit of a challenge and I have not seen anything about this on the internet at all.</p>
<p><strong>Printer sharing</strong></p>
<p>This is also a given. Most people can not afford to have one or more printers for each computer in the house. There should be an easy way to get the driver for the printer from the server when you install it on a local pc.</p>
<p>One function that I use a lot is printing to PDF. This could be a central function as well. Yes, I know there are good, local alternatives, but it would be nice to collect all &quot;printer&quot; functions at a central point.</p>
<p><strong>User control</strong></p>
<p>This add one more to the given list. I would like to set up both users and groups and have an easy way of adding users to groups. I like using groups instead of user to control access to functions. The server need to be able to run really headless. No monitor, no keyboard and no mouse.</p>
<p><strong>Communication with a UPS</strong></p>
<p>A UPS is essential in a setup like this and it is equally important that the server communicates with the UPS so it knows when the power goes down and can shut down the server in a controlled manner.</p>
<p><strong>Anti-virus</strong></p>
<p>There should definitely be some software for this running on the server as well as malware detection. It is important to go for a software that is updated very often and that have a live scanner that do not bog down the server.</p>
<p><strong>Firewall</strong></p>
<p>Yes, the server need to be protected as in beeing hardened so it can withstand an attack. BUT &#8211; I do not think the server itself should be a firewall for any other component in the network. This is a task better done by a separate box as I think it is too dangerous to attach the box with the data you are trying to protect directly to the internet.</p>
<p><strong>Caching DNS and DHCP server</strong></p>
<p>It should be possible, but all internet routers today have DNS and DHCP built in. Still, a caching DNS might be useful and it should come with Open DNS as a predefined choice as the main DNS. The server need to be able to switch to IPv6 as soon as it is available without any reconfiguration.</p>
<p><strong>Dynamic DNS client</strong></p>
<p>Also present in a lot of routers, but can be a good idea to add.</p>
<p><strong>Network Time Server</strong></p>
<p>To make sure all things are timestamped correctly in the network, the server should have a network time server. This one should have two different ways of keeping time. One is the internet time servers and the other should be the possibility to connect a GPS and read the time from the GPS system. The last one is often used in bigger networks.</p>
<p><strong>Server-to-server communication through firewalls and NAT</strong></p>
<p>I absolutely see the need to have and additional server in another house and have the possibility to let the two servers communicate. This could be done through VPN, but the setup has to be very easy AND extremely secure. So using certificates that are at least 2048 bit or preferrably more with strong encryption on the traffic is a must.</p>
<p><strong>VPN</strong></p>
<p>Yes, it would be nice to have a way to use VPN to access the box from the outside of the home network. But it has to be real easy, and it should not be based on passwords. Use a certificate based system as this should be much less vulnerable to attack. Locally, access is best done through a HTML interface. And that brings me to:</p>
<p><strong>Control of the server</strong></p>
<p>As already said, the main functionality should be through an HTML interface. But for admin purposes, it might be necessary to have SSH and FTP as well. As I guess mySQL will run on the box, myPHPAdmin should also be available.</p>
<p><strong>Automatic updates</strong></p>
<p>There are no ways around this one. It is extremely important that the whole system is built to allow automatic updates from day one. All add-ins should also allow for this so there need to be some kind of guidelines on how to package them. The only alternative would be a kind of one-click updates. The server send the admin an e-mail about a new update. You log on and click the update button.</p>
<p><strong>Add-in: Mail</strong></p>
<p>This one is almost a part of the base system for me, but I realise that a lot of people are very satisfied using their normal mail client.</p>
<p>POP3, IMAP and SMTP server with webmail system. It should also have the possibility to act as a POP3 and IMAP client for the users that do not have their own domain. This is a part of the server that would be nice to access from the outside of the house when you are travelling.</p>
<p><strong>Add-in: Calendar</strong></p>
<p>This also comes close to the base system list. Having a shared calendar system with calendars for all the people in the house can be a major advantage. Especially if the calendars can use Google calendar or another internet based calendar to display busy/free times. Scheduling time in a busy family can be a good reason to install this add-in. It should also be possible to subscribe to calendars on the internet so things like football schedules, school holidays and other things can be easily added.</p>
<p><strong>Add-in: Address book</strong></p>
<p>The third of the &quot;almost base system&quot; add-ins. Beeing able to share important addresses would also be a major advantage. It is a must for me that any addressbook as a minimum can sync completely with Outlook and that I will not loose ANY of the information I have stored there when I sync.</p>
<p>I love any system that can take some of the work of keeping addresses updated away from me. I use Plaxo and as long as you do not pester your friends with invites and upload your whole addressbook there, I think it is a good service. I would love to see a serverbased sync with Plaxo so I don&#8217;t have to run the client on my PC. This would also mean that I would have correct addresses even when I use programs that do not sync with Plaxo as long as that program sync with the home server.</p>
<p>It is of course extremely important that you are able to control what addresses that are shared and what part of the info in an address that is shared. I use the comments on addresses in Outlook a lot and the info there is not always something that should be shared in a network although it would be a good thing to have it on the server so only I can see it.</p>
<p><strong>Add-in: To-do list</strong></p>
<p>This goes well together with the previous things and I am pretty sure there are programs developed that already cover this. But it is important that there also exist free sync systems for all major software packages (Outlook, Thunderbird, Opera etc.)</p>
<p><strong>Add-in: Fax</strong></p>
<p>Another type of printer function might be sending of faxes. The use of fax is diminishing by the day, but there are still companies that would like to have it. So why not add this as a printerservice?</p>
<p>Reception of faxes should also be an easy one with central management. It should be possible to add the e-mail addresses of each person in the house and then log on to the server, pick the right recipient for a fax and click the deliver button. It should then be sent as an attachment to the right persons e-mail.</p>
<p><strong>Add-in: VOIP central</strong></p>
<p>There is a beautiful box out there called Fritzbox. It is a ADSL2 modem, router, WiFi AP and VOIP router at the same time. I would love to have Asterisk added to the server and be able to do some of the things you can do with the Fritzbox. I have no idea if it is possible to use a standard modem or ISDN card as an interface to the normal phone system, but there should be a way to route the normal phone into this and use that line for local calls and emergency calls.</p>
<p>Then it should be possible to use something like VOIPDiscount to call international. There are now good IP handsets out there from Grandstream etc. so with a home PBX, you could have phones all over the house. Just plug them into the switch. And make sure you buy a switch with enough ports <img src='http://www.wisnaes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  As the use of a server like this grows, it would be nice to be able connect to friends and family and set up your own small telephone network where you can call for free using this.</p>
<p><strong>Add-in: Squeeze server</strong></p>
<p>A server to serv all your MP3&#8242;s. I love the Squeeze box idea and the fact that you can stream audio without having to use a PC to play it back.</p>
<p><strong>Add-in: *AMP server</strong></p>
<p>I guess all of these will be running anyway, so it might be an idea to have a way to add php scripts. I develop websites and would really love to have a Joomla and WordPress system running locally. BUT &#8211; the directories for these things need to be on the data drives so they are backed up regularly. Maybe there should even be an automated setup where I only need to place the latest distribution of each system in a special folder and then I could go to the web interface and click on &quot;Add new Joomla site&quot; or &quot;Add new WordPress site&quot; and the server took care of setting up the database, user and install the script. Could be a cool thing. A little like Fantastico, but using the standard distributed packages so whenever there is an update from the developers, you can just replace the package.</p>
<p><strong>Add-in: Web site backup server</strong></p>
<p>As I work with web sites, I would love to have an efficient way to use the home server to regularly make backups of each domain so I do not have to think about it or run a separate PC to do it. But only as an add-in. Most people do not want this functionality.</p>
<p><strong>Add-in: Wiki server</strong></p>
<p>Making an in-house manual for different things can be a good idea. Just wish there were a way to just scan the manual of the new TV and say &quot;Make Wiki&quot;&#8230;</p>
<p><strong>Add-in: Podcast client &quot;server&quot;</strong></p>
<p>The people in our family have different taste. And we all love music. I like podcasts, but the others find it too difficult to mess with. But all of us use MP3 players. So my thoughts go like this: What if I had a system where they could subscribe to the podcasts on the server, then the server downloaded the podcasts automatically and put it in a folder where the Squeeze server could stream them locally? Also, there should be a way to just plug in the MP3 players, the server recognize them and load the right podcasts on them. The big feature here would be a function that would allow me to tell the server to make sure tha at any time, only the last 2 or 4 podcasts or whatever I decide are on my MP3 player. This way I will be sure it do not fill up. So I just need to set up a USB hub where we plug in the players whenever we want to update them. MP3 player central <img src='http://www.wisnaes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>Add-in: BitTorrent client</strong></p>
<p>More and more things are distributed as BitTorrents. So it only makes sense to have a BitTorrent client available as an add-in. Not all people will care about this, but I know a lot will. I think many TV series in the future will be distributed this way. Also podcasts/vidcasts are being distributed through the BitTorrent protocol.</p>
<p><strong>Keep the base system clean</strong></p>
<p>There are things that I absolutely would like to keep away from this server. Home-automation, weather station, anonymous ftp server, Media Center are all examples of this. It should not be the everything-in-one box. It should be a server with the focus on security for files. Get all the basic stuff covered before any thought is given to the add-in stuff. If anyone want to tinker with the system and ad the possibility to make coffe, it is fine by me <img src='http://www.wisnaes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  But do not add this into the base functions. Let people post it on the internet so anyone can add it if they want. But keep the base system clean.</p>
<p>What do you think? What is important for you in a server like this? I will add to this post as I get new input and ideas.</p>
<p><em>The picture is used under <a title="Creative Commons - Some Rights Reserved" target="_blank" href="http://creativecommons.org/licenses/by-sa/2.0/deed.en">Creative Commons &#8211; Some Rights Reserved</a> , Photographer: <a title="Photographer: Zack Williams" target="_blank" href="http://www.flickr.com/photos/zdw/">Zack Williams</a>.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=e3VYU2FTuqI:ymPcU84ZOA4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=e3VYU2FTuqI:ymPcU84ZOA4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=e3VYU2FTuqI:ymPcU84ZOA4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=e3VYU2FTuqI:ymPcU84ZOA4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=e3VYU2FTuqI:ymPcU84ZOA4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=e3VYU2FTuqI:ymPcU84ZOA4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=e3VYU2FTuqI:ymPcU84ZOA4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=e3VYU2FTuqI:ymPcU84ZOA4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/e3VYU2FTuqI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/01/16/a-home-or-small-office-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2008/01/16/a-home-or-small-office-server/</feedburner:origLink></item>
		<item>
		<title>6 Mega Pixels might be enough!</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/x0XT5bd68mk/</link>
		<comments>http://www.wisnaes.com/2008/01/10/61/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 21:23:50 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2008/01/10/61/</guid>
		<description><![CDATA[Are you concerned about megapixels? They may not be as important anymore as they were. Take a look at what Image Engineering has to say about the subject. Also, check what they say about diffraction, a subject that few people ever think about. Usually it...]]></description>
			<content:encoded><![CDATA[<p><img width="179" height="257" align="right" style="margin: 5px;" alt="Nummer_6.png" src="http://www.wisnaes.com/wp-content/images/Nummer_6.png" />Are you concerned about megapixels? They may not be as important anymore as they were. Take a look at what <a href="http://6mpixel.org/en/" target="_blank" title="Image Engineering web">Image Engineering</a> has to say about the subject. Also, check what they say about <a href="http://6mpixel.org/en/?page_id=14" target="_blank" title="Diffraction">diffraction</a>, a subject that few people ever think about. Usually it has been said that you should step down your aperture to get more field of depth and an overall sharper picture. But depending on the size of the pixels, type of camera and lense, when you reach a certain f-stop your picture will suffer from diffraction and will become worse! It makes for good reading if you are interested in some of the technology behind our digital world. So no need to get anything better than my 7.1 MegaPixel camera <img src='http://www.wisnaes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=x0XT5bd68mk:9XsPYcEKh68:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=x0XT5bd68mk:9XsPYcEKh68:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=x0XT5bd68mk:9XsPYcEKh68:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=x0XT5bd68mk:9XsPYcEKh68:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=x0XT5bd68mk:9XsPYcEKh68:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=x0XT5bd68mk:9XsPYcEKh68:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=x0XT5bd68mk:9XsPYcEKh68:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=x0XT5bd68mk:9XsPYcEKh68:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/x0XT5bd68mk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/01/10/61/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2008/01/10/61/</feedburner:origLink></item>
		<item>
		<title>Free Christmasgift from Divx!</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/gi1UGp8dW1s/</link>
		<comments>http://www.wisnaes.com/2007/12/15/free-christmasgift-from-divx/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 00:24:16 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/12/15/free-christmasgift-from-divx/</guid>
		<description><![CDATA[Edit: The holiday is over, and the free stuff has ended for this time. But the free version is still a keeper! We all love free stuff. Especially when it is something we otherwise would have to pay for. The fine people behind Divx has...]]></description>
			<content:encoded><![CDATA[<p>
<img width="285" height="136" align="right" style="margin: 5px;" alt="Divx.gif" src="http://www.wisnaes.com/wp-content/images/Divx.gif" /><font color="#ff0000"><br />
Edit: The holiday is over, and the free stuff has ended for this time. But the free version is still a keeper!</font></p>
<p>We all love free stuff. Especially when it is something we otherwise would have to pay for. The fine people behind Divx has decided to give out a gift this holiday season. It is unsure how long it will run, so <a title="Free Divx" target="_blank" href="http://www.divx.com/dff/index.php?version=win">hurry over there</a> and get your copy of a totally free Divx Pro.</p>
<p>What does this give you over the free version of Divx? Here is their own explanation:</p>
<p><font color="#870808">So, the primary reason to buy DivX Pro for Windows is to get full<br />
versions of the DivX Converter and the DivX Pro Codec, two things that<br />
let you easily create DivX videos. What are these two things, you ask,<br />
and why should you care? Read on, kind friend, read on&#8230;</font></p>
<h3><font color="#870808">DivX Converter</font></h3>
<p><font color="#870808">The DivX Converter is the official DivX video creation software application. It lets you:</font></p>
<ul>
<li><font color="#870808">Drag-and-drop nearly any video format to create a high-quality, highly compressed DivX video</font></li>
<li><font color="#870808">Merge and convert multiple videos into a single DivX file with an automatically generated menu</font></li>
<li><font color="#870808">Back<br />
up your home-made DVDs, compress a full movie to fit onto one regular<br />
CD (requires the optional $4.99 DivX Converter MPEG-2/DVD Plug-in)</font></li>
</ul>
<h3><font color="#870808">DivX Pro Codec</font></h3>
<p><font color="#870808"><br />
The DivX Pro Codec is the top of the food chain, codec-wise. It<br />
includes the most advanced version of the DivX video encoder so you can<br />
create the highest-quality DivX files in combination with DivX<br />
Converter or another third-party encoding application. DivX Pro gives<br />
you: </font>
<ul>
<li><font color="#870808">Higher performance, including multi-threaded support<br />
for better performance on all HyperThreaded, dual core and dual CPU<br />
(SMP) systems</font></li>
<li><font color="#870808">More encoding options, including six<br />
carefully optimized encoding modes that balance visual quality and<br />
performance for virtually any application</font>&nbsp;</li>
</ul>
<p>What are you waiting for?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=gi1UGp8dW1s:fPIXee7rO5k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=gi1UGp8dW1s:fPIXee7rO5k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=gi1UGp8dW1s:fPIXee7rO5k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=gi1UGp8dW1s:fPIXee7rO5k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=gi1UGp8dW1s:fPIXee7rO5k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=gi1UGp8dW1s:fPIXee7rO5k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=gi1UGp8dW1s:fPIXee7rO5k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=gi1UGp8dW1s:fPIXee7rO5k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/gi1UGp8dW1s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/12/15/free-christmasgift-from-divx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/12/15/free-christmasgift-from-divx/</feedburner:origLink></item>
		<item>
		<title>How to remove a white background with the Remove White plugin</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/Er8jU2XfQ68/</link>
		<comments>http://www.wisnaes.com/2007/10/14/how-to-remove-a-white-background-with-the-remove-white-plugin/#comments</comments>
		<pubDate>Sun, 14 Oct 2007 18:40:22 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials and tips]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/10/14/how-to-remove-a-white-background-with-the-remove-white-plugin/</guid>
		<description><![CDATA[If you use Photoshop to isolate objects from their white background, you might have heard of a small plugin called Remove White. I used it back in the days of Photoshop 5 and really loved the way you could lift out any object from the...]]></description>
			<content:encoded><![CDATA[<p><img width="350" height="344" align="right" src="http://www.wisnaes.com/wp-content/images/Remove_white.png" alt="Remove_white.png" style="margin: 5px;" />If you use Photoshop to isolate objects from their white background, you might have heard of a small plugin called Remove White.</p>
<p>I used it back in the days of Photoshop 5 and really loved the way you could lift out any object from the white background with a click. If any pixel was not completely black, it would be partially transparent. This meant that soft shadows could be lifted off as well, something I have not been able to do with any other method so far.</p>
<p>But this plug-in does not work with Photoshop CS2 and I have been trying to find a newer version for a long time. Until recently when I stumbled across a way to run older plugins on newer version of Photoshop.</p>
<p>First of all &#8211; the Remove White plugin is as far as I know, made by Mark McLaren and <a href="http://www.pspug.org/filters/filtersff.shtml" target="_blank" title="Download Remove White plug-in">you can find it here</a> (scroll down and click on Remove White under Mark McLaren). Unpack the filter and put it in your filter folder.</p>
<p>But since it is an older type filter, you need an extra file to make it work. You need to add msvcrt10.dll (<a href="http://www.dll-files.com/dllindex/dll-files.shtml?msvcrt10" target="_blank" title="Download the file from this page">click here to download it</a>) to the same folder as the Photoshop program. Do not add it to the system32 folder or anywhere else in the main Windows folder as it might interfere with how other programs work.</p>
<p>Reboot Photoshop, and it should start with no problems. You should now have a new category of plug-ins at the bottom of your filter list called Mac&#8217;s with a single filter called Remove White.</p>
<p>To apply this filter to an image, you first have to either duplicate the background layer and do it on the copy, or double-click on the background layer and turn it into a regular layer. If you want to apply this to just a portion of your image, you have to make a selection first, otherwise just choose the Remove White filter and you are done. You should now see the checkered background through the parts of your image that is not completely black.</p>
<p>To verify that the extraction is ok, make a new layer and fill it with white. Then place this layer under the image layer. You image should now look like it was before you removed the white background.</p>
<p>Most people do not like to have a transparent main object, so you need to make a quick mask of your object, fill it with white and place it under your main image layer. But you now have the option to exclude shadows so that the shadow will fall on whatever background you choose for your picture.</p>
<p>This is an effect that is simply not possible by using a mask or doing a selection based on color.</p>
<p>If you like this post, leave a comment and consider adding it to some of the social bookmarking sites.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Er8jU2XfQ68:ywQA2SMJDmY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Er8jU2XfQ68:ywQA2SMJDmY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Er8jU2XfQ68:ywQA2SMJDmY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Er8jU2XfQ68:ywQA2SMJDmY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Er8jU2XfQ68:ywQA2SMJDmY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Er8jU2XfQ68:ywQA2SMJDmY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Er8jU2XfQ68:ywQA2SMJDmY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Er8jU2XfQ68:ywQA2SMJDmY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/Er8jU2XfQ68" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/10/14/how-to-remove-a-white-background-with-the-remove-white-plugin/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/10/14/how-to-remove-a-white-background-with-the-remove-white-plugin/</feedburner:origLink></item>
		<item>
		<title>Is your SMTP server blocked?</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/Z7VgOnfMqLE/</link>
		<comments>http://www.wisnaes.com/2007/09/15/is-your-smtp-server-blocked/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 10:40:33 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/09/15/is-your-smtp-server-blocked/</guid>
		<description><![CDATA[It is now the rule rather than the exception that port 25, the normal port for outgoing mail (SMTP) is blocked. This creates big problems for users like me that moves around a lot. I have to find out what SMTP is available in the...]]></description>
			<content:encoded><![CDATA[<p><img width="143" height="59" align="right" style="margin: 5px;" alt="GMail_logo.gif" src="http://www.wisnaes.com/wp-content/images/GMail_logo.gif" />It is now the rule rather than the exception that port 25, the normal port for outgoing mail (SMTP) is blocked. This creates big problems for users like me that moves around a lot. I have to find out what SMTP is available in the network where I am connecting. And if that one is only available to people that work in the company, I have to use a webmail solution.</p>
<p>But today I found a neat solution that will help a lot. If you have a GMail account, you are in luck. GMail has their SMTP servers on different ports than the usual 25. If you <a title="GMAIL SMTP setup" target="_blank" href="http://mail.google.com/support/bin/answer.py?hl=en&amp;answer=13287">check this link</a>, you can see that the ports are 465 or 587. I set this up in Thunderbird and had no problem bypassing the SMTP block in the network I was using at the time. Just remember to use SSL and authentication when you set it up.&nbsp;</p>
<p>There are a couple of things to be aware of. GMail rewrites the from-address of your mail to your GMail address as well as the reply-to address. According to&nbsp; <a title="GMail as SMTP" target="_blank" href="http://lifehacker.com/software/email-apps/how-to-use-gmail-as-your-smtp-server-111166.php">Lifehacker</a> it is possible to go to the settings of your GMail account and change the default address to change this. In addition, GMail stores all outgoing mail (and thus indexes it for it&#8217;s own use&#8230;). This probably does not appeal to everyone, but for many people is a minor issue.</p>
<p>If you really need to get that mail out and don&#8217;t have any other way of doing it, GMail might just save the day for you.&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Z7VgOnfMqLE:39iobCtTdgw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Z7VgOnfMqLE:39iobCtTdgw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Z7VgOnfMqLE:39iobCtTdgw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Z7VgOnfMqLE:39iobCtTdgw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Z7VgOnfMqLE:39iobCtTdgw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Z7VgOnfMqLE:39iobCtTdgw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Z7VgOnfMqLE:39iobCtTdgw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Z7VgOnfMqLE:39iobCtTdgw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/Z7VgOnfMqLE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/09/15/is-your-smtp-server-blocked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/09/15/is-your-smtp-server-blocked/</feedburner:origLink></item>
		<item>
		<title>Welcome to the Google show!</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/6gnRzcveLaw/</link>
		<comments>http://www.wisnaes.com/2007/08/10/welcome-to-the-google-show/#comments</comments>
		<pubDate>Fri, 10 Aug 2007 14:04:51 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/08/10/welcome-to-the-google-show/</guid>
		<description><![CDATA[Google has realised that video is a great way of communicating. The issue they tackle in this short video on YouTube is privacy. There has been a lot of rumors about what kind of information Google stores about us when we search. And I guess...]]></description>
			<content:encoded><![CDATA[<p>Google has realised that video is a great way of communicating. The issue they tackle in this short video on YouTube is privacy. </p>
<p>There has been a lot of rumors about what kind of information Google stores about us when we search. And I guess the biggest sceptics will just call this video a smoke screen. But it makes sense and is exactly what most websites store anyway. </p>
<p>The difference now is that Google will start to anonymise their logs a bit when they are 18 months old. Maybe you heard this already, but here is a video explaining this, made by Google. Not only is it good information, but also a good example of how to communicate in the simplest way and get your message across.</p>
<p>&nbsp;</p>
<p align="center"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/kLgJYBRzUXY" /><param name="wmode" value="transparent" /><embed width="425" height="350" src="http://www.youtube.com/v/kLgJYBRzUXY" type="application/x-shockwave-flash" wmode="transparent" /></object></p>
<p>&nbsp;</p>
<p>&nbsp;I love the combination of internet and video and I will be looking for more examples that can serve as ideas for anyone that want to put video online. There will also be some articles in the future about how to get maximum quality on your video. Watch this space!</p>
<p>Do you have any examples of great online video communication? Make a comment with a link!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=6gnRzcveLaw:JOklrODinZI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=6gnRzcveLaw:JOklrODinZI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=6gnRzcveLaw:JOklrODinZI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=6gnRzcveLaw:JOklrODinZI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=6gnRzcveLaw:JOklrODinZI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=6gnRzcveLaw:JOklrODinZI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=6gnRzcveLaw:JOklrODinZI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=6gnRzcveLaw:JOklrODinZI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/6gnRzcveLaw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/08/10/welcome-to-the-google-show/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/08/10/welcome-to-the-google-show/</feedburner:origLink></item>
		<item>
		<title>RSS made simple</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/ueC7zgTLQ18/</link>
		<comments>http://www.wisnaes.com/2007/08/07/rss-made-simple/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 02:33:45 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/08/07/rss-made-simple/</guid>
		<description><![CDATA[Do you try to keep a finger on the pulse of your favorite blogs and websites? Do you spend a lot of time clicking your way around to the same websites every day? Then RSS is the right thing for you. No idea what I...]]></description>
			<content:encoded><![CDATA[<p>Do you try to keep a finger on the pulse of your favorite blogs and websites? Do you spend a lot of time clicking your way around to the same websites every day? Then RSS is the right thing for you. No idea what I am talking about? Well, I was going to write something very clever about this and then I stumbled across someone that had done it already. Lee LeFever from <a href="http://www.commoncraft.com/" target="_blank" title="Common Craft">Common Craft</a> did it in a very cool way. So here is that video. Enjoy both the content and the style!</p>
<p align="center">
<p><object width="480" height="291" id="showplayer" allowfullscreen="true" data="http://www.blip.tv/scripts/flash/showplayer.swf?autostart=false&amp;enablejs=true&amp;feedurl=http%3A%2F%2Fthecommoncraftshow%2Eblip%2Etv%2Frss&amp;file=http%3A%2F%2Fwww%2Eblip%2Etv%2Frss%2Fflash%2F209879&amp;showplayerpath=http%3A%2F%2Fwww%2Eblip%2Etv%2Fscripts%2Fflash%2Fshowplayer%2Eswf" type="application/x-shockwave-flash"><param value="http://www.blip.tv/scripts/flash/showplayer.swf?autostart=false&amp;enablejs=true&amp;feedurl=http%3A%2F%2Fthecommoncraftshow%2Eblip%2Etv%2Frss&amp;file=http%3A%2F%2Fwww%2Eblip%2Etv%2Frss%2Fflash%2F209879&amp;showplayerpath=http%3A%2F%2Fwww%2Eblip%2Etv%2Fscripts%2Fflash%2Fshowplayer%2Eswf" name="movie" /><param value="best" name="quality" /></object></p>
<p>&nbsp;My choice of rss reader at the moment is <a href="http://www.curiostudio.com/" target="_blank" title="GreatNews rss reader">GreatNews</a> , but I am happy to try out new ones whenever I come across them. I think that a tool like this is invaluable for people that work in the tv and film business as it allows us to stay on top of what is happening in our fields of interest. You find the links to add this blog in the right column or in the address bar of your web browser.</p>
<p>What is your favorite rss reader?</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=ueC7zgTLQ18:2wNVQ06R-R4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=ueC7zgTLQ18:2wNVQ06R-R4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=ueC7zgTLQ18:2wNVQ06R-R4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=ueC7zgTLQ18:2wNVQ06R-R4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=ueC7zgTLQ18:2wNVQ06R-R4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=ueC7zgTLQ18:2wNVQ06R-R4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=ueC7zgTLQ18:2wNVQ06R-R4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=ueC7zgTLQ18:2wNVQ06R-R4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/ueC7zgTLQ18" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/08/07/rss-made-simple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/08/07/rss-made-simple/</feedburner:origLink></item>
		<item>
		<title>Track this camera!</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/5EHIOOI_CPw/</link>
		<comments>http://www.wisnaes.com/2007/08/01/track-this-camera/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 19:00:25 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/08/01/track-this-camera/</guid>
		<description><![CDATA[When you want to embed animation and graphics into moving images in a believeable way, you have two main choices. Either use a computer controlled camera rig, or buy horribly expensive software. Until Andersson Technologies came along. Their software, SynthEyes, will set you back only...]]></description>
			<content:encoded><![CDATA[<p><img width="117" height="100" align="right" style="margin: 5px;" alt="synlg100.gif" src="http://www.wisnaes.com/wp-content/images/synlg100.gif" /><br />
When you want to embed animation and graphics into moving images in a believeable way, you have two main choices. Either use a computer controlled camera rig, or buy horribly expensive software. Until Andersson Technologies came along.</p>
<p>Their software, <a title="SynthEyes tracking software" target="_blank" href="http://www.ssontech.com/">SynthEyes</a>, will set you back only USD 399 and runs on both Mac and Windows. Not too long ago they released a new version with many improvements. One of the improvements is a stabilizer that promises to do a correct stabilization of your footage. According to their website:</p>
<blockquote><p>The hallmark of incorrect stabilization is that, though the point of interest remains stable, the corners of the image appear to be doing some very strange things, moving in and out. This is the result of 2-D stabilization, or 3-D stabilization with an incorrect field of view.</p></blockquote>
<p></p>
<p>They then explain why</p>
<blockquote><p>The underlying problem is that 2-D stabilization changes the image in a way that no real camera can. When you shift an image, it is not the same as pointing a real camera in a different direction</p></blockquote>
<p>and explaines more about how they solve it.</p>
<p>The software has been used in a long list of movies, commercials and tv-programs all over the world. If you need to place a building into footage shot from a helicopter or any other moving images, I think you should have a closer look at this. You do not need to get a mortgage to buy it! </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=5EHIOOI_CPw:CUdltx7c6XY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=5EHIOOI_CPw:CUdltx7c6XY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=5EHIOOI_CPw:CUdltx7c6XY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=5EHIOOI_CPw:CUdltx7c6XY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=5EHIOOI_CPw:CUdltx7c6XY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=5EHIOOI_CPw:CUdltx7c6XY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=5EHIOOI_CPw:CUdltx7c6XY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=5EHIOOI_CPw:CUdltx7c6XY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/5EHIOOI_CPw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/08/01/track-this-camera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/08/01/track-this-camera/</feedburner:origLink></item>
		<item>
		<title>Bandwith theft</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/_sDSIJg9FWc/</link>
		<comments>http://www.wisnaes.com/2007/02/02/bandwith-theft/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 17:21:54 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Sitenews]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2007/02/02/bandwith-theft/</guid>
		<description><![CDATA[My first thought was to contact the author of the site. But this is an Arabic site and I do neither speak the language nor write it. Then I remembered an article I read at Eirikso.com about this and thought I would try something similar just to see if it was detected.]]></description>
			<content:encoded><![CDATA[<p><img align="right" title="Before" alt="Before" src="http://www.wisnaes.com/wp-content/images/Hotlink1.jpg" />It is never too late to learn something new.</p>
<p>I have not been paying too much attention to my logs lately, but reading an article online on web security made me take a look. And I discovered som incoming links that were very unfamiliar. So I decided to take a look and it turned out to be a hotlinked picture from an article about RSS Owl (a splashscreen that I had permission to use).</p>
<p>My first thought was to contact the author of the site. But this is an Arabic site and I do neither speak the language nor write it. Then I remembered an article I read at <a title="Bandwith thief at Eirikso.com" href="http://www.eirikso.com/2006/06/19/how-to-ridicule-a-bandwidth-thief/">Eirikso.com</a> about this and thought I would try something similar just to see if it was detected.</p>
<p><img align="right" title="After" alt="After" src="http://www.wisnaes.com/wp-content/images/Hotlink2.jpg" />I used a picture of George W. Bush and added a text about supporting him and USA. Then replaced the image. If the picture is still up, you can view it <a title="Hotlinking image" target="_blank" href="http://www.arabsgate.com/software/internet_news_tools/index.html">here</a>.</p>
<p>So I will try to make an effort checking logs a little more often. Not that stealing bandwith this way means a lot, but I have to admit that the kid inside me got a little kick out of placing something like this on an Arabic website&#8230;</p>
<p>Update: Found another one linking to another picture. This one had not even bothered to use the size tags on the picture, so I used the same picture as in the former one, totally breaking the layout of the site. You can view the result <a target="_blank" title="Bandwith theft 2" href="http://onehandshow.exteen.com/20060629/nod32">here</a> if it is still up.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=_sDSIJg9FWc:djY5AosYse0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=_sDSIJg9FWc:djY5AosYse0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=_sDSIJg9FWc:djY5AosYse0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=_sDSIJg9FWc:djY5AosYse0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=_sDSIJg9FWc:djY5AosYse0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=_sDSIJg9FWc:djY5AosYse0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=_sDSIJg9FWc:djY5AosYse0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=_sDSIJg9FWc:djY5AosYse0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/_sDSIJg9FWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/02/02/bandwith-theft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2007/02/02/bandwith-theft/</feedburner:origLink></item>
		<item>
		<title>NOT lost in translation</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/i-wKyH7adOU/</link>
		<comments>http://www.wisnaes.com/2006/03/02/not-lost-in-translation/#comments</comments>
		<pubDate>Thu, 02 Mar 2006 18:45:05 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2006/02/13/not-lost-in-translation/</guid>
		<description><![CDATA[I sometimes need to make the content in a video available in other languages. Or the content is in a different language than what my customer use. Because dubbing is not used for anything else than programs for kids in Norway, I need to subtitle...]]></description>
			<content:encoded><![CDATA[<p>I sometimes need to make the content in a video available in other languages. Or the content is in a different language than what my customer use. Because dubbing is not used for anything else than programs for kids in Norway, I need to subtitle the program. None of the editing systems I know have subtitling built in. They all have some kind of character generator, but to do anything more than a few seconds of subtitling in this is just a waste of time and money.</p>
<p>Unfortunately, subtitling software cost a lot and is usually operated by a specialist. But that all changes with <a href="http://www.belle-nuit.com/subtitler/">Belle Nuit Subtitler</a> . This program, costing USD 120 for one license, can be used for making subtitles that you edit onto your video in most major editing systems, or you can include it on your DVD. If you add it to your DVD, the viewer can choose to see the subtitles or not. And choose what language to see if there are multiple translations available.</p>
<p><img src="http://www.wisnaes.com/wp-content/images/Subtitler1.gif" align=right alt="Belle Nuit Subtitler main window" />Using the software is pretty straight forward. I am a little disappointed that entering the text first and do the spotting afterwords does not work very well. But according to Matthias Buercher, the intended workflow is to do the spotting one by one, entering the titles either by copying from an open text document or by translating directly. And this workflow works very well.</p>
<p>During the spotting, the keyboard can be used for most of the important things and the most used shortcuts are similar to Avids editing systems. This means using JKL to play the video, I and O or E and R to mark in and out. Pressing Q and W bring the cursor to the in and out point and ESC switches between the video player and the text area.</p>
<p>The style of the text is adjusted in the top of the main window. Font, border, shadow, box behind text and placement in the frame can be adjusted there. I think the quality of the text Belle Nuit Subtitler output is excellent. And getting it into the Avid editing system was very easy.</p>
<p>First I exported the titles by selecting all in the text area and the choose File>Export . The titles are then exported as TIFF with alpha. The timing of the titles are exported as a CMX 3600 EDL and both titles and the EDL are then imported into the Avid system.</p>
<p><img src="http://www.wisnaes.com/wp-content/images/Subtitler2.gif" align=right alt="Belle Nuit Subtitler main window" />The program has a built in function called the Avid helper that essentially is a small macro the replace the Offline Media in the timeline with the correct subtitles. Or you can do it manually.</p>
<p>I have not had the chance yet to try adding titles to a DVD, but will get back here with some comments after I have tried it.</p>
<p>I can really recommend Belle Nuit Subtitler to anyone looking for a cheap and easy way to get prefessionally looking subtitles on video or DVD.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=i-wKyH7adOU:MPMrTEynSUo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=i-wKyH7adOU:MPMrTEynSUo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=i-wKyH7adOU:MPMrTEynSUo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=i-wKyH7adOU:MPMrTEynSUo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=i-wKyH7adOU:MPMrTEynSUo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=i-wKyH7adOU:MPMrTEynSUo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=i-wKyH7adOU:MPMrTEynSUo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=i-wKyH7adOU:MPMrTEynSUo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/i-wKyH7adOU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2006/03/02/not-lost-in-translation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2006/03/02/not-lost-in-translation/</feedburner:origLink></item>
		<item>
		<title>Write stuff</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/oeCFNL2a3CM/</link>
		<comments>http://www.wisnaes.com/2006/02/27/write-stuff/#comments</comments>
		<pubDate>Mon, 27 Feb 2006 16:21:01 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2006/02/27/write-stuff/</guid>
		<description><![CDATA[Sometimes you get big, positive surprises. I got one last week when I stumbled across a program I had never heard about before. Making TV programs, you need to plan your production and write a script. There are a few programs out there that do...]]></description>
			<content:encoded><![CDATA[<p><img border="0" align="right" alt="Celtx logo" src="http://www.wisnaes.com/wp-content/images/celtx-logo-bigl.png" />Sometimes you get big, positive surprises. I got one last week when I stumbled across a program I had never heard about before.</p>
<p>Making TV programs, you need to plan your production and write a script. There are a few programs out there that do this, but they are any good at all, they cost money. The program I found last week is the first Open Source program of this kind that I have heard about.</p>
<p>Celtx, which can be found on <a href="http://www.celtx.com/">http://www.celtx.com/</a> is a pre-production tool that is built on the same code enginge as the Mozilla products.</p>
<p><img border="0" align="right" alt="Script" src="http://www.wisnaes.com/wp-content/images/script350.png" />It has story development tools, script writing and a calendar for the project schedule. You can add video and audio clips to the scripts and print customized reports. And on top of all this, a special server has been set up online that allows users of Celtx to share their production planning with other members of their team.</p>
<p>The features are good, the layout is nice. Of course, the calendar is a straight port of Sunbird, no need to change anything that is already working!</p>
<p>The users have already made a contribution to the project in the form of a portable version of the program. Some users, including myself, have asked for a version that can be put on a USB flash drive so you can bring it with you in your pocket. One of the users took that challenge and based on work already done for the Mozilla products, he came up with a portable Celtx. After contacting the team behind Celtx, I understood they are thinking about making an official portable version. Open Source works!</p>
<p><img border="0" align="right" alt="Schedule" src="http://www.wisnaes.com/wp-content/images/schedule350.png" /></p>
<p>I really like this product and it will become a permanent part of my software collection. Now I am just hoping they will implement something to make it work for planning multicamera recordings as well. Keeping my fingers crossed&#8230;</p>
<p>If you like this idea, you can download it and give it a try. They are at version 0.9.5.1 , so it is still a very young product. Join their forum, add requests for new features. This is how open source programs are developed, and it is the perfect chance to get the tool you always wanted!</p>
<p>UPDATE: <a href="http://www.hivolda.no/index.php?lang=eng">Volda University College</a> (Norway) is now installing Celtx on all PC&#8217;s in their media education. They are teaching journalism for newspapers, radio, TV and have a separate education for documentary production and animation.</p>
<p>The <a href="http://media.celtx.com/">Celtx blog</a> made a <a href="http://media.celtx.com/2006/02/new_norwegian_friends_1.html">comment</a> about this article.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=oeCFNL2a3CM:_FLsDArnqMc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=oeCFNL2a3CM:_FLsDArnqMc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=oeCFNL2a3CM:_FLsDArnqMc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=oeCFNL2a3CM:_FLsDArnqMc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=oeCFNL2a3CM:_FLsDArnqMc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=oeCFNL2a3CM:_FLsDArnqMc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=oeCFNL2a3CM:_FLsDArnqMc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=oeCFNL2a3CM:_FLsDArnqMc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/oeCFNL2a3CM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2006/02/27/write-stuff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2006/02/27/write-stuff/</feedburner:origLink></item>
		<item>
		<title>Truly portable</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/Cwkd96YzovY/</link>
		<comments>http://www.wisnaes.com/2006/02/27/truly-portable/#comments</comments>
		<pubDate>Mon, 27 Feb 2006 13:47:34 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2006/02/27/truly-portable/</guid>
		<description><![CDATA[I like carrying programs and data with me. I love my laptop. But recently, I have found that the really portable thing is a 1GB USB memory drive. So I got myself a 1GB Flash Voyager. The reason I got it was to move data....]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.wisnaes.com/wp-content/images/T2flash_voyager.gif" align="right" alt="Flash Voyager" />I like carrying programs and data with me. I love my laptop. But recently, I have found that the really portable thing is a 1GB USB memory drive. So I got myself a 1GB Flash Voyager. </p>
<p>The reason I got it was to move data. But I found a few programs that did not need to be installed, just double-click on them to run them. I added them to the Flash Voyager and started to search for more programs like this. I am definitely not the first one that has this idea! Several websites are dedicated to this.</p>
<p>One of them is <a href="http://www.portablefreeware.com/">PortableFreeware</a> . On the frontpage, you find the latest updates. But if you click on <strong>All</strong> in the top menu, you will find categories with a lot of programs. At the moment this site only caters for Windows users.</p>
<p>The first program you should get is <a href="http://www.pegtop.net/start/">PStart portable</a>. This gives you a &#8220;Startmenu&#8221; in your systray (at the bottom of your screen, next to the clock). After that, it is up to you to add the programs you find interesting.</p>
<p>Another site for you to check out is <a href="http://www.tinyapps.org/">TinyApps.org</a> . Here you also find programs for OSX.</p>
<p>As with everything else that has to do with computer, it is very important to make a backup. And Microsoft has made available an application that do exactly that. It is called <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=94991901-bfc4-485e-bcae-c9df0accdaae&#038;DisplayLang=en">Microsoft USB Flash Drive Manager</a> .</p>
<p>If you know any other good resources for this type of programs, or if you know any good programs that should get a mention, just leave a comment!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Cwkd96YzovY:AINZqrmmlGA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Cwkd96YzovY:AINZqrmmlGA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Cwkd96YzovY:AINZqrmmlGA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Cwkd96YzovY:AINZqrmmlGA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Cwkd96YzovY:AINZqrmmlGA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=Cwkd96YzovY:AINZqrmmlGA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Cwkd96YzovY:AINZqrmmlGA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=Cwkd96YzovY:AINZqrmmlGA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/Cwkd96YzovY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2006/02/27/truly-portable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2006/02/27/truly-portable/</feedburner:origLink></item>
		<item>
		<title>All about change – in size</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/aV2ZcLCusuo/</link>
		<comments>http://www.wisnaes.com/2005/11/17/all-about-change-in-size/#comments</comments>
		<pubDate>Thu, 17 Nov 2005 00:05:10 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=35</guid>
		<description><![CDATA[When preparing images for web or for TV it can be quite nice to have a tool that is easy to use and delivers great results. It does not hurt if the program is small and on top of everything is free. This is exactly...]]></description>
			<content:encoded><![CDATA[<p><img width="350" vspace="5" hspace="5" height="188" border="0" align="right" src="http://www.wisnaes.com/wp-content/images/resized_resize.jpg" alt="Resize.exe" title="Resize.exe" />When preparing images for web or for TV it can be quite nice to have a tool that is easy to use and delivers great results. It does not hurt if the program is small and on top of everything is free.</p>
<p>This is exactly what Resize.exe is. The program is made by Peter Bone and you can download it from his website, <a title="Download Resize.exe" target="_self" href="http://www.geocities.com/peter_bone_uk/resize.html">http://www.geocities.com/peter_bone_uk/resize.html</a> . Another great thing about the program is that it does not require any installation. So you can put it on your USB drive and bring it with you all the time.</p>
<p>Peter Bone has a few other programs also available for download on his website.&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=aV2ZcLCusuo:miz34vJZI0I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=aV2ZcLCusuo:miz34vJZI0I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=aV2ZcLCusuo:miz34vJZI0I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=aV2ZcLCusuo:miz34vJZI0I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=aV2ZcLCusuo:miz34vJZI0I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=aV2ZcLCusuo:miz34vJZI0I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=aV2ZcLCusuo:miz34vJZI0I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=aV2ZcLCusuo:miz34vJZI0I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/aV2ZcLCusuo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2005/11/17/all-about-change-in-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2005/11/17/all-about-change-in-size/</feedburner:origLink></item>
		<item>
		<title>Stick a label on it</title>
		<link>http://feedproxy.google.com/~r/Wisnaes/~3/GVI9Cs5oT8I/</link>
		<comments>http://www.wisnaes.com/2005/11/10/stick-a-label-on-it/#comments</comments>
		<pubDate>Thu, 10 Nov 2005 11:47:45 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=13</guid>
		<description><![CDATA[When I train people in video editing I try to get everyone to understand the importance of labeling tapes with unique names. This way you avoid the searching for &#34;Tape 01&#34; when you are going to batch capture your sequence. I promised my students in...]]></description>
			<content:encoded><![CDATA[<p>When I train people in video editing I try to get everyone to understand the importance of labeling tapes with unique names. This way you avoid the searching for &quot;Tape 01&quot; when you are going to batch capture your sequence.</p>
<p><img width="300" vspace="5" hspace="5" height="225" border="0" align="right" title="Label your tape" alt="Label your tape" src="http://www.wisnaes.com/wp-content/images/Etiketter.jpg" />I promised my students in Norway to find someone that can supply labels like this, so here it is:</p>
<div align="left">Bj&oslash;rn Aurmo</div>
<div align="left">ELLCO Etikett Trykk AS</div>
<div align="left">Pb 14</div>
<div align="left">1438 SKYTTA</div>
<div align="left">Phone: +47 6706 2043</div>
<div align="left"><a href="http://www.ellco.no/" target="_blank" title="ELLCO Etikett Trykk AS">http://www.ellco.no/</a></div>
<div align="left">&nbsp;</div>
<div align="left">The point is to have one label that has the name of the person or company plus address in addition to a number that starts with a letter or two. And then two smaller labels with the number only. You place the big label on the front of the cover, one of the smaller at the end of it and one on the cassette.</div>
<div align="left">&nbsp;</div>
<div align="left">When you capture, this number is what you use as tapename. Put these labels on as soon as you buy the tapes. No need to wait until you are going to use them.</div>
<div align="left">&nbsp;</div>
<div align="left">Another benefit of this is that it is easy to use this number in a tapedatabase for identification.</div>
<div align="left">&nbsp;</div>
<div align="left">Here is the quote I got from the company:</div>
<div align="left">&nbsp;</div>
<div align="left">
<div><span class="082125911-18042005"><font>500 stk size: 40 x 22  mm kr 1300,-&nbsp; plus mva<br /> </font></span></div>
<div><span class="082125911-18042005"><font>500 x 2 sets size: 24 x  12 mm kr 1400,-&nbsp; plus mva</font></span> </div>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Wisnaes?a=GVI9Cs5oT8I:hOPnmWWa8g0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=GVI9Cs5oT8I:hOPnmWWa8g0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=GVI9Cs5oT8I:hOPnmWWa8g0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=GVI9Cs5oT8I:hOPnmWWa8g0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=GVI9Cs5oT8I:hOPnmWWa8g0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Wisnaes?i=GVI9Cs5oT8I:hOPnmWWa8g0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=GVI9Cs5oT8I:hOPnmWWa8g0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Wisnaes?a=GVI9Cs5oT8I:hOPnmWWa8g0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Wisnaes?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Wisnaes/~4/GVI9Cs5oT8I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2005/11/10/stick-a-label-on-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.wisnaes.com/2005/11/10/stick-a-label-on-it/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.867 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-25 17:27:48 -->
