<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wisnaes.com - Visual communication &#187; Webtips</title>
	<atom:link href="http://www.wisnaes.com/category/webtips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wisnaes.com</link>
	<description>Tips and ideas for people that work with visual media.</description>
	<lastBuildDate>Thu, 17 Feb 2011 03:20:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Category drop-down in mod_k2_tools sorted reverse</title>
		<link>http://www.wisnaes.com/2010/07/25/category-drop-down-in-mod_k2_tools-sorted-reverse/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></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>2</slash:comments>
		</item>
		<item>
		<title>Test of new picture options</title>
		<link>http://www.wisnaes.com/2008/07/14/test-of-new-picture-options/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/07/14/test-of-new-picture-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No respect and no credit for photographers?</title>
		<link>http://www.wisnaes.com/2008/03/04/no-respect-and-no-credit-for-photographers/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></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>
		</item>
		<item>
		<title>Easy DVD authoring</title>
		<link>http://www.wisnaes.com/2008/02/29/make-a-dvd-the-easy-way/</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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></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>
		</item>
		<item>
		<title>6 Mega Pixels might be enough!</title>
		<link>http://www.wisnaes.com/2008/01/10/61/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2008/01/10/61/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Christmasgift from Divx!</title>
		<link>http://www.wisnaes.com/2007/12/15/free-christmasgift-from-divx/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/12/15/free-christmasgift-from-divx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove a white background with the Remove White plugin</title>
		<link>http://www.wisnaes.com/2007/10/14/how-to-remove-a-white-background-with-the-remove-white-plugin/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></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>24</slash:comments>
		</item>
		<item>
		<title>Is your SMTP server blocked?</title>
		<link>http://www.wisnaes.com/2007/09/15/is-your-smtp-server-blocked/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/09/15/is-your-smtp-server-blocked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to the Google show!</title>
		<link>http://www.wisnaes.com/2007/08/10/welcome-to-the-google-show/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2007/08/10/welcome-to-the-google-show/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Truly portable</title>
		<link>http://www.wisnaes.com/2006/02/27/truly-portable/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2006/02/27/truly-portable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All about change &#8211; in size</title>
		<link>http://www.wisnaes.com/2005/11/17/all-about-change-in-size/</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...]]></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>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2005/11/17/all-about-change-in-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where are they now?</title>
		<link>http://www.wisnaes.com/2005/09/21/where-are-they-now/</link>
		<comments>http://www.wisnaes.com/2005/09/21/where-are-they-now/#comments</comments>
		<pubDate>Wed, 21 Sep 2005 21:58:58 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/2005/09/21/where-are-they-now/</guid>
		<description><![CDATA[I have followed Avid Technology and their products for some years. And sometimes I wonder where some of the people that used to be central in the company are now....]]></description>
			<content:encoded><![CDATA[<p><img width="199" vspace="0" hspace="5" height="250" border="0" align="right" src="http://www.wisnaes.com/wp-content/images/Avidceo.gif" alt="Screenshot" title="Screenshot" />I have followed Avid Technology and their products for some years. And sometimes I wonder where some of the people that used to be central in the company are now. After some searches I found an article in <a href="http://boston.bizjournals.com/boston/stories/2004/03/15/story8.html?page=1" target="_blank" title="Avid's CEO farm">Boston Business Journal</a> that was quite enlightening.</p>
<p>It seems like some of the former executives and middle management of Avid still keep in touch and meet regularly. The article have some interesting comments on the development of Avid and where some of the people are today. </p>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2005/09/21/where-are-they-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avid in your ear</title>
		<link>http://www.wisnaes.com/2005/09/21/avid-in-your-ear/</link>
		<comments>http://www.wisnaes.com/2005/09/21/avid-in-your-ear/#comments</comments>
		<pubDate>Wed, 21 Sep 2005 03:34:33 +0000</pubDate>
		<dc:creator>Svein</dc:creator>
				<category><![CDATA[Webtips]]></category>

		<guid isPermaLink="false">http://www.wisnaes.com/?p=22</guid>
		<description><![CDATA[Put the radiostation in your pocket. Or at least the programme. Listen to the radioprogramme when you want. A radiostation for each of us. By anyone of us. There are...]]></description>
			<content:encoded><![CDATA[<p>Put the radiostation in your pocket. Or at least the programme. Listen to the radioprogramme when you want. A radiostation for each of us. By anyone of us. There are noe ends to the smart ways to describe podcasting. But to make it simple &#8211; it is all about a new systematical and automated way of distributing an audiofile. Or blogging with audio instead of writing. </p>
<p><img width="300" vspace="0" hspace="5" height="225" border="0" align="right" title="Avid podcast on mp3 player" alt="Avid podcast on mp3 player" src="http://www.wisnaes.com/wp-content/images/podcast.jpg" />The term podcasting was as far as I know coined by Adam Curry, a former VJ at MTV. He started to record his ramblings and send them out as attachments to RSS2.0 feeds. His podcast is called&nbsp; <a title="Adam Currys blog" target="_blank" href="http://www.curry.com/">Adam Currys Daily Cource Code</a>, and at <a title="Go to iPodder.org" target="_blank" href="http://www.ipodder.org/">iPodder.org</a> you will find a lot about the podcast &quot;reader&quot; he made. There you will find a good explanation of the history behind podcasting. You could also take a look at what <a title="Wikipedia about blogging" target="_blank" href="http://en.wikipedia.org/wiki/Podcasting">Wikipedia</a> has to say about it. The idea is that the software running on your computer will download the programme and you put it on your iPod or any other player that can play the file. Then you listen to it whenever you have time. Out jogging or on the train to work.</p>
<p>There are still not as many podcasts as there are blogs on the net. But the number is really growing. Just take a look at&nbsp; <a title="Go and search for podcasts" target="_blank" href="http://www.podcast.net/">Podcast.net</a> . And this is where I stumbled upon one of the new podcasts in my list. Avid Technology!</p>
<p>Avids podcast started in August and has so far produced 2 issues, but hopefully more will come. The podcast is hosted by J.C. Bouvier, Avid Marketing Programs Project Manager and contains interviews and news about different Avid products. No big surprises, but well worth to listen to&nbsp;<img border="0" src="http://www.wisnaes.com/wp-content/plugins/Wysi-Wordpress/plugins/emotions/images/smile.gif" alt="emoticon" title="emoticon" /> . You find the link to their page in the sidebar on this page. </p>
<p><a href="https://plus.google.com/107257551033066634962?rel=author" rel="author"> -Svein</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.wisnaes.com/2005/09/21/avid-in-your-ear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

