<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>
	<channel>
		<title>Conceited Forums: Forum: Plug-in &#38; Script Support/Requests - Recent Topics</title>
		<link>http://conceitedsoftware.com/forums/forum/linkinus-plugin-support-requests</link>
		<description>We have a very active and passionate community and our forums is the place to get tips and chat with other users about all our products. Join today and meet some great people!  Note: if you have a feature to request or a bug to report, make sure you use &lt;a href="http://conceitedsoftware.com/submit-ticket"&gt;this contact form&lt;/a&gt;.</description>
		<language>en-US</language>
		<pubDate>Wed, 10 Mar 2010 08:37:05 +0000</pubDate>
		<generator>bbpress 1.0-alpha-4</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://conceitedsoftware.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://conceitedsoftware.com/forums/rss/forum/linkinus-plugin-support-requests/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>rev on "Request: Spotify now playing plugin"</title>
			<link>http://conceitedsoftware.com/forums/topic/request-spotify-now-playing-plugin#post-681</link>
			<pubDate>Wed, 20 Jan 2010 02:51:57 +0000</pubDate>
			<dc:creator>rev</dc:creator>
			<guid isPermaLink="false">681@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Wondering if someone could do this, please? :)&#60;/p&#62;
&#60;p&#62;For those that don't know it yet, Spotify is a great music app, has over 3.5 million tracks online, and it's quite popular now, with over 1 million users.&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>djones on "Radium now playing plugin"</title>
			<link>http://conceitedsoftware.com/forums/topic/radium-now-playing-plugin#post-592</link>
			<pubDate>Wed, 14 Oct 2009 14:42:01 +0000</pubDate>
			<dc:creator>djones</dc:creator>
			<guid isPermaLink="false">592@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;For those that have Radium. Here is a script that will display currently playing and station name. Invoke in Linkinus /radium&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://newelementdesigns.com/radium.zip&#34; rel=&#34;nofollow&#34;&#62;http://newelementdesigns.com/radium.zip&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Zippo on "A different weather script - great for Canadians"</title>
			<link>http://conceitedsoftware.com/forums/topic/a-different-weather-script-great-for-canadians#post-371</link>
			<pubDate>Fri, 26 Jun 2009 13:58:48 +0000</pubDate>
			<dc:creator>Zippo</dc:creator>
			<guid isPermaLink="false">371@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;I was never able to get the included weather script to work for me, so I (with the help of some people on the Apple forums) wrote this one:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;on linkinuscmd(WebAddress)&#60;br /&#62;
	set WebAddress to &#34;http://mobile.theweathernetwork.com/weather/canf0253&#34;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;	&#60;code&#62;do shell script &#34;/usr/bin/curl &#34; &#38;#38; WebAddress &#38;#38; &#34; &#124; /usr/bin/textutil -stdin -convert txt -stdout&#34; -- get source and strip HTML&#60;br /&#62;
	tell the result -- get the various elements&#60;br /&#62;
		set City to paragraph 5&#60;br /&#62;
		set WeatherWarning to paragraph 8&#60;br /&#62;
		if (count WeatherWarning) &#38;gt; 1 then -- there is a weather warning&#60;br /&#62;
			set CurrentWeather to paragraph 11&#60;br /&#62;
			set Temperature to paragraph 12&#60;br /&#62;
			set FeelsLike to paragraph 13&#60;br /&#62;
			set WeatherWarning to &#34;- There is currently a &#34; &#38;#38; WeatherWarning &#38;#38; &#34; in effect.&#34;&#60;br /&#62;
		else&#60;br /&#62;
			set CurrentWeather to paragraph 9&#60;br /&#62;
			set Temperature to paragraph 10&#60;br /&#62;
			set FeelsLike to paragraph 11&#60;br /&#62;
		end if&#60;br /&#62;
	end tell&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;	&#60;code&#62;set City to text 1 thru -4 of City -- strip off extra space&#60;br /&#62;
	set Temperature to text 1 thru -3 of Temperature -- strip off the ending degree and C characters&#60;br /&#62;
	if FeelsLike contains &#34;wind&#34; then -- not a valid wind chill or humidity index&#60;br /&#62;
		set FeelsLike to &#34;&#34;&#60;br /&#62;
	else&#60;br /&#62;
		set FeelsLike to text 13 thru -2 of FeelsLike -- strip off everything but numbers&#60;br /&#62;
		set FeelsLike to &#34; and feels like &#34; &#38;#38; FeelsLike &#38;#38; &#34;°C&#34;&#60;br /&#62;
	end if&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;	&#60;code&#62;return &#34;The current temperature in St. John's, NL is &#34; &#38;#38; Temperature &#38;#38; &#34;°C&#34; &#38;#38; FeelsLike &#38;#38; &#34;, and the weather condition for right now is &#34; &#38;#38; CurrentWeather &#38;#38; WeatherWarning&#60;br /&#62;
end linkinuscmd&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This polls the Canadian Weather Network's mobile website (for simplicity) and then returns a line similar to the following: &#34;The current temperature in St. John's, NL is 21°C, and the weather condition for right now is A few clouds&#34;.&#60;/p&#62;
&#60;p&#62;If there's a humidex or wind chill in effect, it'll add that too.&#60;br /&#62;
Example: &#34;The current temperature in Tokyo is 24°C and feels like 32°C, and the weather condition for right now is A few clouds&#34;.&#60;/p&#62;
&#60;p&#62;The only thing you'd need to do in order to customize it to your own city or town, is change the city code in web address at the top of the script to your own. (you can find this out by going to the site and clicking the Edit button, then find your own city/town and copy the address.&#60;/p&#62;
&#60;p&#62;Enjoy!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pawz on "Watch a specific channel with Growl notifications"</title>
			<link>http://conceitedsoftware.com/forums/topic/watch-a-specific-channel-with-growl-notifications#post-171</link>
			<pubDate>Sat, 14 Feb 2009 07:39:59 +0000</pubDate>
			<dc:creator>pawz</dc:creator>
			<guid isPermaLink="false">171@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;It would be really handy to mark a specific channel as &#34;watched&#34;, and display all traffic from that channel only via Growl notifications. Ideally this would be part of the core rather than a plugin, but I'd be happy to be able to do it any way.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jinha on "Notice"</title>
			<link>http://conceitedsoftware.com/forums/topic/notice#post-237</link>
			<pubDate>Wed, 27 May 2009 11:56:07 +0000</pubDate>
			<dc:creator>Jinha</dc:creator>
			<guid isPermaLink="false">237@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;there isn't script or function in Linkinus which allows to notice someone, we must type &#34;/notice $nick $message&#34;.&#60;/p&#62;
&#60;p&#62;I would like to be able to click on nickname (sidebar), then to choose &#34;notice&#34; in contextual menu, and type message in text form then &#34;send&#34; to this nickname.&#60;/p&#62;
&#60;p&#62;I don't know if it's clear (sorry for my poor english).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tricon on "Friends List"</title>
			<link>http://conceitedsoftware.com/forums/topic/friends-list#post-163</link>
			<pubDate>Tue, 27 Jan 2009 19:07:29 +0000</pubDate>
			<dc:creator>Tricon</dc:creator>
			<guid isPermaLink="false">163@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;Not all servers support NOTIFY or WATCH or NICKSERV BUDDY. Is there a Linkinus script in existence that will WHO for &#34;buddies&#34; on an interval?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>belthesar on "Modifications to the default Linkinus iTunes script."</title>
			<link>http://conceitedsoftware.com/forums/topic/modifications-to-the-default-linkinus-itunes-script#post-76</link>
			<pubDate>Fri, 07 Nov 2008 06:41:09 +0000</pubDate>
			<dc:creator>belthesar</dc:creator>
			<guid isPermaLink="false">76@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;Hey all.  I've been working on adding a lot of functionality to the Linkinus iTunes script.  In addition to just being able to display what track you're playing, my version of the script will launch iTunes if it is not running, can change to the next or previous track, stop pause and start playback, and set the rating of the track.  Output of the script (which displays whenever you type /itunes or rate a track) can be supressed by adding &#34;silent&#34; to the end of the command.  Full help for all features of the script can be accessed by typing &#34;/itunes help&#34;.  &#60;/p&#62;
&#60;p&#62;The script is available at &#60;a href=&#34;http://drop.io/belthesar&#34; rel=&#34;nofollow&#34;&#62;http://drop.io/belthesar&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iBook on "Vuze Applescript"</title>
			<link>http://conceitedsoftware.com/forums/topic/vuze-applescript#post-134</link>
			<pubDate>Sun, 14 Dec 2008 16:14:53 +0000</pubDate>
			<dc:creator>iBook</dc:creator>
			<guid isPermaLink="false">134@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;I would say that it is possible, but i believe that would be a lie without another process watching over vuze. iTunes has an applescript api, vuze is multiplatform in such a way that they did not want to include anything like the api itunes has. 
Sorry :/
Clayton&#60;/p&#62;
	&#60;p id=&#34;twitter_update_list&#34;&#62;
	&#60;script type=&#34;text/javascript&#34; src=&#34;http://twitter.com/javascripts/blogger.js&#34;&#62;&#60;/script&#62;
	&#60;script type=&#34;text/javascript&#34; src=&#34;http://twitter.com/statuses/user_timeline/iBook.json?callback=twitterCallback2&#38;count=1&#34;&#62;&#60;/script&#62;&#60;/code&#62;&#60;/small&#62;&#60;/p&#62;&#60;br/&#62;</description>
		</item>
		<item>
			<title>eggy on "Community Scripts Archive"</title>
			<link>http://conceitedsoftware.com/forums/topic/community-scripts-archive#post-61</link>
			<pubDate>Sat, 25 Oct 2008 02:21:55 +0000</pubDate>
			<dc:creator>eggy</dc:creator>
			<guid isPermaLink="false">61@http://conceitedsoftware.com/forums/</guid>
			<description>&#60;p&#62;Does the community scripts repository still exist? 
If so, what's the command to fetch them, I've forgotten its been a while.&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
