<?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>Geir-Tore Lindsve &#187; Apple</title>
	<atom:link href="http://lindsve.net/tag/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://lindsve.net</link>
	<description>Ramblings of a .NET developer</description>
	<lastBuildDate>Mon, 21 Jun 2010 19:24:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Chax 1.4.6b</title>
		<link>http://lindsve.net/2006/09/27/chax-146b/</link>
		<comments>http://lindsve.net/2006/09/27/chax-146b/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 12:15:46 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://lindsve.net/2006/09/27/chax-146b/</guid>
		<description><![CDATA[I have updated the Norwegian translation of the latest beta version of [Chax](http://www.ksuther.com/chax/) now, and sent it to Kent for submission in the final version of 1.4.6. If anyone would like to have it before 1.4.6, just drop me a &#8230; <a href="http://lindsve.net/2006/09/27/chax-146b/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have updated the Norwegian translation of the latest beta version of [Chax](http://www.ksuther.com/chax/) now, and sent it to Kent for submission in the final version of 1.4.6.</p>
<p>If anyone would like to have it before 1.4.6, just drop me a message and I&#8217;ll send it to you.</p>
<p>[tags]ichat, chax[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/09/27/chax-146b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fortune cookies</title>
		<link>http://lindsve.net/2006/08/25/fortune-cookies/</link>
		<comments>http://lindsve.net/2006/08/25/fortune-cookies/#comments</comments>
		<pubDate>Thu, 24 Aug 2006 23:14:45 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://lindsve.net/2006/08/25/fortune-cookies/</guid>
		<description><![CDATA[Applescript is a scripting language I haven&#8217;t played much with since I got my Powerbook. I actually haven&#8217;t found any use of it&#8230;until now I have created a small Applescript which uses the shell &#8220;utility&#8221; fortune to display some wisdom &#8230; <a href="http://lindsve.net/2006/08/25/fortune-cookies/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Applescript is a scripting language I haven&#8217;t played much with since I got my Powerbook. I actually haven&#8217;t found any use of it&#8230;until now <img src='http://lindsve.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>I have created a small Applescript which uses the shell &#8220;utility&#8221; fortune to display some wisdom in the everyday work. From the man page for fortune: Â«fortune &#8211; print a random, hopefully interesting, adageÂ». The following script lets the user loop through random quotes and smart little notes and gives the option to send it to the clipboard:</p>
<p>[code]<br />
repeat<br />
	set f_text to (do shell script "/usr/local/bin/fortune -s -n 80<br />
           /usr/local/share/fortunes/computers")<br />
	display dialog Â¬<br />
		f_text with icon 1 Â¬<br />
		with title Â¬<br />
		"Send Fortune to Clipboard?" buttons {"Cancel", "Next", "OK"} Â¬<br />
		default button "Next"<br />
	if button returned of result is "Cancel" then<br />
		display dialog "Cancel"<br />
		exit repeat<br />
	else if button returned of result is "Next" then<br />
	else<br />
		set the clipboard to f_text<br />
		exit repeat<br />
	end if<br />
end repeat<br />
[/code]<br />
*(set f_text to (do shell script &#8220;/usr/local/bin/fortune -s -n 80 /usr/local/share/fortunes/computers&#8221;) should be one the same line)*</p>
<p>As you can see, I have specified some options for the fortune command. The following bit specifies that the length of the fortunes should not be more than 80 characters:<br />
[code]<br />
-s -n 80<br />
[/code]</p>
<p>-s can be replaced for -l to specify a minimum length instead. The path which I set at the end is the path to computer related cookies.</p>
<p>It is also possible to use this Applescript to set new status/mood messages in iChat/Skype (and possibly other IM applications too, but I have only tested on these). To do this, replace the line which says &#8220;set the clipboard to f_text&#8221; to:<br />
[code]<br />
tell application "iChat"<br />
	set the status message to f_text<br />
end tell<br />
tell application "Skype"<br />
	send command "SET PROFILE MOOD_TEXT" &#038; f_text<br />
end tell<br />
[/code]</p>
<p>[tags]applescript, fortune, ichat, skype[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/08/25/fortune-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User permissions on Mac OS X</title>
		<link>http://lindsve.net/2006/04/20/user-permissions-on-mac-os-x/</link>
		<comments>http://lindsve.net/2006/04/20/user-permissions-on-mac-os-x/#comments</comments>
		<pubDate>Thu, 20 Apr 2006 08:54:20 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/04/20/user-permissions-on-mac-os-x/</guid>
		<description><![CDATA[The permission system in Mac OS X can at times be truly weird. Today, when I was going to update iScrobbler, I tried to do a plain replace of the application in the /Applications folder. My daily user is currently &#8230; <a href="http://lindsve.net/2006/04/20/user-permissions-on-mac-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The permission system in Mac OS X can at times be truly weird. Today, when I was going to update <a href="http://www.last.fm/forum/24/_/86393" title="iScrobbler">iScrobbler</a>, I tried to do a plain replace of the application in the /Applications folder. My daily user is currently set as an administrator account, so that should be quite easy. When I dragged the application to the folder, Finder asked me if I wanted to replace the existing application and I confirmed this. Then I was told that I didn&#8217;t have sufficient permissions to complete this task. Since the previous version was installed with my ordinary admin account, I didn&#8217;t think that much of it.</p>
<p>The weird issue here is that I was allowed to delete the existing app by dragging it to the Trash, and then copy the new one to the application folder. Since my current account was not allowed to replace it, why was I allowed to delete it?</p>
<p>[tags]macosx, permissions[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/04/20/user-permissions-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: TextMate</title>
		<link>http://lindsve.net/2006/04/18/review-textmate/</link>
		<comments>http://lindsve.net/2006/04/18/review-textmate/#comments</comments>
		<pubDate>Tue, 18 Apr 2006 17:09:08 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/04/18/review-textmate/</guid>
		<description><![CDATA[I&#8217;ve been using TextMate as my text editor of choice for quite a while now, but I haven&#8217;t quite been able to go in detail why. Today I came across this review though, and it states the excellence of this &#8230; <a href="http://lindsve.net/2006/04/18/review-textmate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://macromates.com">TextMate</a> as my text editor of choice for quite a while now, but I haven&#8217;t quite been able to go in detail why. Today I came across <a href="http://www.thinkvitamin.com/reviews/dev/textmate/">this review</a> though, and it states the excellence of this text editor quite well. The thing that really made me go over to it though was the <a href="http://macromates.com/blog/archives/2005/12/16/screencast/">screencasts</a> on the TextMate website.</p>
<blockquote><p>
	TextMate&rsquo;s rise to fame has been swift. It&rsquo;s been hailed as the best text editor for Mac OS X by developers the world over. We&rsquo;ll be contemplating why people love it and more importantly if it really deserves the praise.
</p></blockquote>
<p>If you&#8217;re on Mac OS X and do a lot of text editing (html, css, javascript, php, latex, plain tex, etc), I&#8217;ll recommend you to check out this editor.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/04/18/review-textmate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AppZapper offer at maczot.com</title>
		<link>http://lindsve.net/2006/04/03/appzapper-offer-at-maczotcom/</link>
		<comments>http://lindsve.net/2006/04/03/appzapper-offer-at-maczotcom/#comments</comments>
		<pubDate>Mon, 03 Apr 2006 12:27:22 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/04/03/appzapper-offer-at-maczotcom/</guid>
		<description><![CDATA[AppZapper is a great little app to use for deleting applications from your mac, which I purchased a license for a couple of months ago. From their website: AppZapper is for people who want to confidently try new apps while &#8230; <a href="http://lindsve.net/2006/04/03/appzapper-offer-at-maczotcom/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://appzapper.com">AppZapper</a> is a great little app to use for deleting applications from your mac, which I purchased a license for a couple of months ago.</p>
<p>From their website:</p>
<blockquote><p>AppZapper is for people who want to confidently try new apps while knowing they can uninstall them easily. Drag one or more unwanted apps onto AppZapper and watch as it finds all the extra files and lets you delete them with a single click. A slick safety system remembers which apps you want to keep safe, and the log tracks all the files you&#8217;ve zapped. In one Zap you&#8217;ll understand it. In two you&#8217;ll fall in love. Within the five free Zaps, you&#8217;ll know you need to add AppZapper to your arsenal. Go ahead &mdash; try five free zaps and see AppZapper in action now.</p></blockquote>
<p>I highly recommend this useful goodie, and <a href="http://maczot.com/">macZOT.com</a> is currently running an offer for this utility. The price will go down $0.05 for each blog entry about it, so if you blog &#8211; read <a href="http://maczot.com/discuss/?p=35">this</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/04/03/appzapper-offer-at-maczotcom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chax 1.4.1b</title>
		<link>http://lindsve.net/2006/04/03/chax-141b/</link>
		<comments>http://lindsve.net/2006/04/03/chax-141b/#comments</comments>
		<pubDate>Mon, 03 Apr 2006 07:15:30 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/04/03/chax-141b/</guid>
		<description><![CDATA[Kent Sutherland has released a new beta of Chax today, which provides a couple of great new features. I have now updated the Norwegian localization for this release and it can be downloaded here.]]></description>
			<content:encoded><![CDATA[<p>Kent Sutherland has released a new beta of <a href="http://www.ksuther.com/chax/">Chax</a> today, which provides a couple of great new <a href="http://www.ksuther.com/weblog/?p=13">features</a>. I have now updated the Norwegian localization for this release and it can be downloaded <a id="p87" href="http://www.lindsve.net/uploads/2006/04/Chax1.4.1b.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/04/03/chax-141b/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Værmelding v1.7 Final</title>
		<link>http://lindsve.net/2006/04/03/v%c3%a6rmelding-v17-final/</link>
		<comments>http://lindsve.net/2006/04/03/v%c3%a6rmelding-v17-final/#comments</comments>
		<pubDate>Mon, 03 Apr 2006 05:25:35 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/04/03/v%c3%a6rmelding-v17-final/</guid>
		<description><![CDATA[I have now released the final 1.7 version of my Norwegian weather widget: Værmelding. Full changelog listed in the complete post Update: Oops, the 1.7 release was uploaded with my internal debug mode on. This is fixed in 1.7.1, which &#8230; <a href="http://lindsve.net/2006/04/03/v%c3%a6rmelding-v17-final/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have now released the final 1.7 version of my Norwegian weather widget: Værmelding.</p>
<p>Full changelog listed in the complete post</p>
<p>Update: Oops, the 1.7 release was uploaded with my internal debug mode on. This is fixed in 1.7.1, which is uploaded now.</p>
<p><span id="more-88"></span></p>
<p><strong>Full changelog</strong>:<br />
v1.7.1:<span style="font-size:12pt;"><br />
</span>
<ul>
<li>Fixed: 1.7 was released with my debug modus on</li>
</ul>
<p>v1.7:</p>
<p style="text-indent:15pt;">&#8226; Fixed: Widget stretching could go bananas sometimes. Set to fixed distance instead of calculated from the number of days in the forecast data (seems to be bound to four days anyway <img src='http://lindsve.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )</p>
<p>v1.7b5:</p>
<p style="text-indent:15pt;">&#8226; Altered the display/positioning of rain/snow in the forecasts</p>
<p>v1.7b4:</p>
<p style="text-indent:15pt;">&#8226; Added: Display of amount of rain/snow in the forecasts for the next few days.</p>
<p>v1.7b3:</p>
<p style="text-indent:15pt;">&#8226; Fixed: viewing forecasts late in the evening messed up the forecast for the next days</p>
<p>v1.7b2:</p>
<p style="text-indent:15pt;">&#8226; Support for ambiguous placenames. Shows a list of places to select from.<br />
&#8226; Checks placename on enter/return in search field<br />
&#8226; Further code cleanup</p>
<p>v1.7b1:</p>
<p style="text-indent:15pt;">&#8226; Changed site to collect data from. Was (Storm.no) &#8211; Is (http://www.aftenposten.no/vaer)<br />
&#8226; Changed from textual display of weather forecast to icon based<br />
&#8226; Cleaned up some code (more to do)<br />
&#8226; Support for longer forecasts.</p>
<p>Download from the <a href="http://www.lindsve.net/development/mac-os-x/">development page</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/04/03/v%c3%a6rmelding-v17-final/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iChat, MSN and Video</title>
		<link>http://lindsve.net/2006/03/30/ichat-msn-and-video/</link>
		<comments>http://lindsve.net/2006/03/30/ichat-msn-and-video/#comments</comments>
		<pubDate>Thu, 30 Mar 2006 06:27:39 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/03/30/ichat-msn-and-video/</guid>
		<description><![CDATA[Chax is a great plugin for iChat which provides several options for customizing the iChat interface and behavior, including the latest big improvements &#8211; tabbed chat windows and auto-resizing of the contact lists. As the Norwegian localizer for this plugin &#8230; <a href="http://lindsve.net/2006/03/30/ichat-msn-and-video/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ksuther.com/chax/">Chax</a> is a great plugin for <a href="http://www.apple.com/macosx/features/ichat/">iChat</a> which provides several options for customizing the iChat interface and behavior, including the latest big improvements &#8211; tabbed chat windows and auto-resizing of the contact lists. As the Norwegian localizer for this plugin it happens that I receive questions related to features and possible future improvements. Unfortunately, I&#8217;m not exactly the one whom to contact, but it do happen that I can provide some descent answers. This is an attempt of one <img src='http://lindsve.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>One question which have popped up more than once is the availability of video support between <a href="http://messenger.msn.com/">MSN</a> and iChat (via <a href="http://www.jabber.org/">Jabber</a>). As most Mac/iChat users know, iChat provides a great interface for video chat between iChat users (although it is not very tolerant when it comes to bandwidth issues, as far as I have seen). Although iChat has support for video, this support works only between iChat clients due to the way the video streams are sent.</p>
<p>There are some ongoing work in the Jabber community to come up with a way to send video streams between Jabber clients, but this does unfortunately not help that much (since both MSN and iChat uses their own approaches).</p>
<p>There are some other clients/networks which provides this functionality, but I haven&#8217;t tested them. The reason for this is that I do not want to have several clients running. Currently I have two, iChat and Skype, and I do not want more clients than this running.<br />
My best bet when it comes to hassle free videoconference between Mac and Windows users is to wait for <a href="http://www.skype.com">Skype</a> to finally launch their 2.0 version of the Skype client. This is <a href="http://forum.skype.com/viewtopic.php?t=41062&amp;postdays=0&amp;postorder=asc&amp;start=247">scheduled</a> to happen in this quarter (April-May-June), and I hope they make this happen.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/03/30/ichat-msn-and-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New beta: Værmelding widget</title>
		<link>http://lindsve.net/2006/03/24/new-beta-v%c3%a6rmelding-widget/</link>
		<comments>http://lindsve.net/2006/03/24/new-beta-v%c3%a6rmelding-widget/#comments</comments>
		<pubDate>Fri, 24 Mar 2006 08:31:23 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/03/24/new-beta-v%c3%a6rmelding-widget/</guid>
		<description><![CDATA[Jump in joy everyone, the widget has been updated afterall! I have now released a beta of a new release with a new source for the weather data. The are still some clean up to do, but I want to &#8230; <a href="http://lindsve.net/2006/03/24/new-beta-v%c3%a6rmelding-widget/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Jump in joy everyone, the widget has been updated afterall! I have now released a beta of a new release with a new source for the weather data. The are still some clean up to do, but I want to get this release out now in case there still are some fixing to do.</p>
<p><strong>Update</strong>: I have now merged all updates of the beta release to a single blog post.</p>
<p><strong>Changelog</strong>:<br />
v1.7b5:</p>
<ul>
<li>Altered the display/positioning of rain/snow in the forecasts</li>
</ul>
<p>v1.7b4:</p>
<ul>
<li>Added: Display of amount of rain/snow in the forecasts for the next few days.</li>
</ul>
<p>v1.7b3:</p>
<ul>
<li>Fixed: viewing forecasts late in the evening messed up the forecast for the next days</li>
</ul>
<p>v1.7b2:</p>
<ul>
<li>Support for ambiguous placenames. Shows a list of places to select from.</li>
<li>Checks placename on enter/return in search field</li>
<li>Further code cleanup</li>
</ul>
<p>v1.7b1:</p>
<ul>
<li>Changed site to collect data from. Was (Storm.no) &#8211; Is (http://www.aftenposten.no/vaer)</li>
<li>Changed from textual display of weather forecast to icon based</li>
<li>Cleaned up some code (more to do)</li>
<li>Support for longer forecasts.</li>
</ul>
<p>Download from the <a href="http://www.lindsve.net/development/mac-os-x/">development page</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/03/24/new-beta-v%c3%a6rmelding-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not discontinuing the widget afterall</title>
		<link>http://lindsve.net/2006/03/22/not-discontinuing-the-widget-afterall/</link>
		<comments>http://lindsve.net/2006/03/22/not-discontinuing-the-widget-afterall/#comments</comments>
		<pubDate>Wed, 22 Mar 2006 19:58:25 +0000</pubDate>
		<dc:creator>Geir-Tore</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.lindsve.net/2006/03/22/not-discontinuing-the-widget-afterall/</guid>
		<description><![CDATA[After some reconsideration and some nice feedback from forum users at Mac1.no, have I decided to continue the work on my weather widget, despite my earlier post. I have spent quite some time with it today, and the progress are &#8230; <a href="http://lindsve.net/2006/03/22/not-discontinuing-the-widget-afterall/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After some reconsideration and some nice feedback from forum users at <a href="http://www.mac1.no" target="_blank" title="Mac1.no">Mac1.no</a>, have I decided to continue the work on my weather widget, despite my earlier <a href="http://www.lindsve.net/2006/03/10/discontinued-widget/" target="_top" title="Mac1.no">post</a>.</p>
<p>I have spent quite some time with it today, and the progress are good. I&#8217;m done with the collection of data, but there are quite some graphical adjustments to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindsve.net/2006/03/22/not-discontinuing-the-widget-afterall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
