Re: [backstage] A few interesting bits...

2008-08-29 Thread Brian Butterworth
True.

http://twitter.com/jemimakiss

is one of the best twitters around...

2008/8/28 Ian Forrester [EMAIL PROTECTED]

  We have friends in interesting places...


 Ian Forrester

 This e-mail is: [x] private; [] ask first; [] bloggable

 Senior Producer, BBC Backstage
 Room 1044, BBC Manchester BH, Oxford Road, M60 1SJ
 email: [EMAIL PROTECTED]
 work: +44 (0)2080083965
 mob: +44 (0)7711913293


  --
 *From:* [EMAIL PROTECTED] [mailto:
 [EMAIL PROTECTED] *On Behalf Of *Brian Butterworth
 *Sent:* 27 August 2008 13:44
 *To:* backstage@lists.bbc.co.uk
 *Subject:* [backstage] A few interesting bits...


 http://blogs.guardian.co.uk/digitalcontent/2008/08/new_music_tools_from_bbc_backs.html
  - mention of Chris' rather brilliant Now Playing

  ---

 Brian Butterworth

 http://www.ukfree.tv - independent digital television and switchover
 advice, since 2002




-- 

Brian Butterworth

http://www.ukfree.tv - independent digital television and switchover advice,
since 2002


Re: [backstage] A few interesting bits...

2008-08-29 Thread Spiros Denaxas
Also very active on del.icio.us:

http://delicious.com/jemimakiss

Well worth adding her to your network.

Spiros

On Fri, Aug 29, 2008 at 11:08 AM, Brian Butterworth
[EMAIL PROTECTED] wrote:
 True.

 http://twitter.com/jemimakiss

 is one of the best twitters around...

 2008/8/28 Ian Forrester [EMAIL PROTECTED]

 We have friends in interesting places...


 Ian Forrester

 This e-mail is: [x] private; [] ask first; [] bloggable

 Senior Producer, BBC Backstage
 Room 1044, BBC Manchester BH, Oxford Road, M60 1SJ
 email: [EMAIL PROTECTED]
 work: +44 (0)2080083965
 mob: +44 (0)7711913293



 
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Brian Butterworth
 Sent: 27 August 2008 13:44
 To: backstage@lists.bbc.co.uk
 Subject: [backstage] A few interesting bits...


 http://blogs.guardian.co.uk/digitalcontent/2008/08/new_music_tools_from_bbc_backs.html
  - mention of Chris' rather brilliant Now Playing

  ---

 Brian Butterworth

 http://www.ukfree.tv - independent digital television and switchover
 advice, since 2002



 --

 Brian Butterworth

 http://www.ukfree.tv - independent digital television and switchover advice,
 since 2002

-
Sent via the backstage.bbc.co.uk discussion group.  To unsubscribe, please 
visit http://backstage.bbc.co.uk/archives/2005/01/mailing_list.html.  
Unofficial list archive: http://www.mail-archive.com/backstage@lists.bbc.co.uk/


RE: [backstage] Ubiquity

2008-08-29 Thread Ian Forrester
Its funny you ask about ubiquity. We've been chatting about it a little on the 
internal list. Very interesting stuff, I'm sure there could be some amazing 
some thing which could be done with iplayer, audiomusic, etc 

Go play

Ian Forrester

This e-mail is: [x] private; [] ask first; [] bloggable

Senior Producer, BBC Backstage
Room 1044, BBC Manchester BH, Oxford Road, M60 1SJ
email: [EMAIL PROTECTED]
work: +44 (0)2080083965
mob: +44 (0)7711913293
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Hannen
Sent: 28 August 2008 21:48
To: backstage@lists.bbc.co.uk
Subject: [backstage] Ubiquity

Has anyone been playing with Ubiquity?  It is kind of a command-line for 
Firefox, a bit like Quicksilver for the mac...  It only works on Firefox 3, but 
looks really interesting ..

http://labs.mozilla.com/2008/08/introducing-ubiquity/

A get-bbcnews verb would be a wonderful thing - someone has already made a 
Google News one here:
http://cokeeffe.wordpress.com/get-news-for-ubiquity/

Which uses this code:
CmdUtils.CreateCommand({
name: get-news,
takes: {news title: noun_arb_text},
preview: function( pblock, theShout ) {
pblock.innerHTML = Will search for news titles containing:  + theShout.text; 
},
execute: function( directObject ) {
var url = http://news.google.com/news?q={QUERY};
var query = directObject.text;
var urlString = url.replace({QUERY}, query); 
Utils.openUrlInBrowser(urlString);
}
})

from Tom
-
Sent via the backstage.bbc.co.uk discussion group.  To unsubscribe, please 
visit http://backstage.bbc.co.uk/archives/2005/01/mailing_list.html.  
Unofficial list archive: http://www.mail-archive.com/backstage@lists.bbc.co.uk/

-
Sent via the backstage.bbc.co.uk discussion group.  To unsubscribe, please 
visit http://backstage.bbc.co.uk/archives/2005/01/mailing_list.html.  
Unofficial list archive: http://www.mail-archive.com/backstage@lists.bbc.co.uk/


Re: [backstage] Ubiquity

2008-08-29 Thread Sam Mbale
I like ubiquity, I think a lot of cool apps can be developed. I'm just
waiting to see how ubiquity will interact with Google Apps, not just Gmail.

On Fri, Aug 29, 2008 at 1:42 PM, Brian Butterworth [EMAIL PROTECTED]wrote:

 Looks interesting, I had a look the other day when it popped up on
 betanews.com

 It seems a long way from doing what is claims it should do , given that it
 seems to be able to search google and translate stuff.



 2008/8/28 Tom Hannen [EMAIL PROTECTED]

 Has anyone been playing with Ubiquity?  It is kind of a command-line
 for Firefox, a bit like Quicksilver for the mac...  It only works on
 Firefox 3, but looks really interesting ..

 http://labs.mozilla.com/2008/08/introducing-ubiquity/

 A get-bbcnews verb would be a wonderful thing - someone has already
 made a Google News one here:
 http://cokeeffe.wordpress.com/get-news-for-ubiquity/

 Which uses this code:
 CmdUtils.CreateCommand({
 name: get-news,
 takes: {news title: noun_arb_text},
 preview: function( pblock, theShout ) {
 pblock.innerHTML = Will search for news titles containing:  +
 theShout.text;
 },
 execute: function( directObject ) {
 var url = 
 http://news.google.com/news?q={QUERY}http://news.google.com/news?q=%7BQUERY%7D
 
 var query = directObject.text;
 var urlString = url.replace({QUERY}, query);
 Utils.openUrlInBrowser(urlString);
 }
 })

 from Tom
 -
 Sent via the backstage.bbc.co.uk discussion group.  To unsubscribe,
 please visit
 http://backstage.bbc.co.uk/archives/2005/01/mailing_list.html.
  Unofficial list archive:
 http://www.mail-archive.com/backstage@lists.bbc.co.uk/




 --


 Brian Butterworth

 http://www.ukfree.tv - independent digital television and switchover
 advice, since 2002




-- 
Sam Mbale
Mpelembe Network
http://www.mpelembe.net


Re: [backstage] Ubiquity

2008-08-29 Thread Brian Butterworth
There is always the '*accelerators*' in IE8...

http://www.betanews.com/article/Deeper_inside_IE8_Beta_2/1219941173



2008/8/29 Sam Mbale [EMAIL PROTECTED]

 I like ubiquity, I think a lot of cool apps can be developed. I'm just
 waiting to see how ubiquity will interact with Google Apps, not just Gmail.


 On Fri, Aug 29, 2008 at 1:42 PM, Brian Butterworth [EMAIL PROTECTED]wrote:

 Looks interesting, I had a look the other day when it popped up on
 betanews.com

 It seems a long way from doing what is claims it should do , given that it
 seems to be able to search google and translate stuff.



 2008/8/28 Tom Hannen [EMAIL PROTECTED]

 Has anyone been playing with Ubiquity?  It is kind of a command-line
 for Firefox, a bit like Quicksilver for the mac...  It only works on
 Firefox 3, but looks really interesting ..

 http://labs.mozilla.com/2008/08/introducing-ubiquity/

 A get-bbcnews verb would be a wonderful thing - someone has already
 made a Google News one here:
 http://cokeeffe.wordpress.com/get-news-for-ubiquity/

 Which uses this code:
 CmdUtils.CreateCommand({
 name: get-news,
 takes: {news title: noun_arb_text},
 preview: function( pblock, theShout ) {
 pblock.innerHTML = Will search for news titles containing:  +
 theShout.text;
 },
 execute: function( directObject ) {
 var url = 
 http://news.google.com/news?q={QUERY}http://news.google.com/news?q=%7BQUERY%7D
 
 var query = directObject.text;
 var urlString = url.replace({QUERY}, query);
 Utils.openUrlInBrowser(urlString);
 }
 })

 from Tom
 -
 Sent via the backstage.bbc.co.uk discussion group.  To unsubscribe,
 please visit
 http://backstage.bbc.co.uk/archives/2005/01/mailing_list.html.
  Unofficial list archive:
 http://www.mail-archive.com/backstage@lists.bbc.co.uk/




 --


 Brian Butterworth

 http://www.ukfree.tv - independent digital television and switchover
 advice, since 2002




 --
 Sam Mbale
 Mpelembe Network
 http://www.mpelembe.net




-- 

Brian Butterworth

http://www.ukfree.tv - independent digital television and switchover advice,
since 2002