<?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>Marc Abramowitz &#187; Yahoo</title>
	<atom:link href="http://marc-abramowitz.com/archives/category/computers/web/yahoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://marc-abramowitz.com</link>
	<description>Rocking the blogosphere</description>
	<lastBuildDate>Fri, 19 Feb 2010 06:01:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Yod.el</title>
		<link>http://marc-abramowitz.com/archives/2007/08/19/yodel/</link>
		<comments>http://marc-abramowitz.com/archives/2007/08/19/yodel/#comments</comments>
		<pubDate>Sun, 19 Aug 2007 19:03:09 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/08/19/yodel/</guid>
		<description><![CDATA[Yod.el (love the name!) is a Yahoo! Messenger client for Emacs.
http://marti.textdriven.com/yodel/
I tried it and it works well, but somehow doing IM in Emacs seems clunky. This may seem blasphemous to some, but perhaps some things are best not done in Emacs.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://marti.textdriven.com/yodel/">Yod.el</a> (love the name!) is a <a href="http://messenger.yahoo.com/">Yahoo! Messenger</a> client for Emacs.</p>
<p><a href="http://marti.textdriven.com/yodel/">http://marti.textdriven.com/yodel/</a></p>
<p>I tried it and it works well, but somehow doing IM in Emacs seems clunky. This may seem blasphemous to some, but perhaps some things are best <em>not</em> done in Emacs.</p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/08/19/yodel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Last day at Yahoo</title>
		<link>http://marc-abramowitz.com/archives/2007/08/03/last-day-at-yahoo/</link>
		<comments>http://marc-abramowitz.com/archives/2007/08/03/last-day-at-yahoo/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 15:08:28 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/08/03/last-day-at-yahoo/</guid>
		<description><![CDATA[After 5 years and two great teams (Yahoo! Personals and the Tiger Team), I&#8217;m moving on from Yahoo. The feeling is hard to describe. Naturally in 5 years, you get really comfortable with a place and you get to know a lot of people. In the last week, though, it&#8217;s been particularly striking to me [...]]]></description>
			<content:encoded><![CDATA[<p>After 5 years and two great teams (Yahoo! Personals and the Tiger Team), I&#8217;m moving on from <a href="http://www.yahoo.com/">Yahoo</a>. The feeling is hard to describe. Naturally in 5 years, you get really comfortable with a place and you get to know a lot of people. In the last week, though, it&#8217;s been particularly striking to me to realize how many people have had an impact on me and vice-versa. Five years. Five years of triumphs, celebrations, hard work, stressful times, learning, video games (Halo 1!), and friendships.</p>
<p>OK, there are some things I won&#8217;t miss. Like trying to park my car in the morning and gcc 2.95. But then there are a lot of other things and people that I will miss.</p>
<p>Where am I going? After a brief vacation (this weekend!), I will start at <a href="http://vmware.com/">VMware</a> on Monday. You&#8217;ll be hearing about that shortly&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/08/03/last-day-at-yahoo/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Accessing the Yahoo Web Search API from MzScheme</title>
		<link>http://marc-abramowitz.com/archives/2007/06/14/accessing-the-yahoo-web-search-api-from-mzscheme/</link>
		<comments>http://marc-abramowitz.com/archives/2007/06/14/accessing-the-yahoo-web-search-api-from-mzscheme/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 00:12:50 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Lisp]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scheme]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/06/14/accessing-the-yahoo-web-search-api-from-mzscheme/</guid>
		<description><![CDATA[A bit of Scheme code that I was dorking around with a long time ago and never got around to posting. This probably only works in MzScheme since it uses implementation-specific APIs to do HTTP.
Here&#8217;s an example of using it:

marc@tbird:~/projects/scheme$ mzscheme
Welcome to MzScheme version 352, Copyright (c) 2004-2006 PLT Scheme Inc.
> (load "yahoo-web-search.scm")
> (for-each-result
  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://svn.marc.abramowitz.info/projects/scheme/yahoo-web-search.scm">A bit of Scheme code</a> that I was dorking around with a long time ago and never got around to posting. This probably only works in <a href="http://www.plt-scheme.org/software/mzscheme/">MzScheme</a> since it uses implementation-specific APIs to do HTTP.</p>
<p>Here&#8217;s an example of using it:</p>
<pre>
marc@tbird:~/projects/scheme$ mzscheme
Welcome to MzScheme version 352, Copyright (c) 2004-2006 PLT Scheme Inc.
> (load "yahoo-web-search.scm")
> (for-each-result
        (lambda(x)
                (let ((result (result->struct x)))
                        (printf "~s~n" (result-url result))))
        "query=coroutines")
"http://en.wikipedia.org/wiki/Coroutine"
"http://msdn.microsoft.com/msdnmag/issues/03/09/CoroutinesinNET/default.aspx"
"http://www.sidhe.org/~dan/blog/archives/000178.html"
"http://lua-users.org/wiki/CoroutinesTutorial"
"http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/300019"
"http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html"
"http://www.python.org/dev/peps/pep-0342/"
"http://www.softpanorama.org/Scripting/pipes.shtml"
"http://c2.com/cgi-bin/wiki?CoRoutine"
"http://cs.hubfs.net/forums/ShowThread.aspx?PostID=676"
(#<void> #<void> #<void> #<void> #<void> #<void> #<void> #<void> #<void> #<void>)
</pre>
<p>I&#8217;m no Scheme expert so this code is probably not particularly smart or readable, but maybe it will inspire somebody&#8230;</p>
<p><iframe src="http://rcm.amazon.com/e/cm?t=marcsepinion-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=0262560992&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/06/14/accessing-the-yahoo-web-search-api-from-mzscheme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unique software development gig</title>
		<link>http://marc-abramowitz.com/archives/2007/04/17/unique-software-development-gig/</link>
		<comments>http://marc-abramowitz.com/archives/2007/04/17/unique-software-development-gig/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 23:10:04 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/04/17/unique-software-development-gig/</guid>
		<description><![CDATA[In case, the 5 of you that read my blog are looking for a software engineering gig, we&#8217;ve got several positions available in my group. This is a unique opportunity in that you&#8217;d be working with a &#8220;Tiger Team&#8221; of guys who work on projects all over the company.
If you&#8217;re interested, please email your resume [...]]]></description>
			<content:encoded><![CDATA[<p>In case, the 5 of you that read my blog are looking for a software engineering gig, we&#8217;ve got several positions available in my group. This is a unique opportunity in that you&#8217;d be working with a &#8220;Tiger Team&#8221; of guys who work on projects all over the company.</p>
<p>If you&#8217;re interested, please email your resume to <a href="mailto:%6D%73%61%62%72%61%6D%6F%40%79%61%68%6F%6F%2E%63%6F%6D"><span id="emob-zfnoenzb@lnubb.pbz-52">msabramo {at} yahoo(.)com</span><script type="text/javascript">
    var mailNode = document.getElementById('emob-zfnoenzb@lnubb.pbz-52');
    var linkNode = document.createElement('a');
    linkNode.setAttribute('href', "mailto:%6D%73%61%62%72%61%6D%6F%40%79%61%68%6F%6F%2E%63%6F%6D");
    tNode = document.createTextNode("msabramo {at} yahoo(.)com");
    linkNode.appendChild(tNode);
    linkNode.setAttribute('id', "emob-zfnoenzb@lnubb.pbz-52");
    mailNode.parentNode.replaceChild(linkNode, mailNode);
</script></a></p>
<p><span id="more-1411"></span></p>
<h3>Software Engineer &#8211; Flex Force</h3>
<h4>Description</h4>
<p>The Flex Force team at Yahoo is dedicated to providing highly skilled engineers to a variety of projects. We act as an internal &#8220;consulting&#8221; team, providing short to medium term resourcing to dedicated product engineering teams that have critical or time sensitive problems. In the past we&#8217;ve contributed to highly visible products such as Yahoo! Mail and anti-spam, Yahoo! Messenger, Yahoo! Photos, Overture, Yahoo! Search and others.The ideal candidate is a technically strong engineer who likes a dynamic environment and assignments that change every 3-8 months. As a member of the team you will get wide exposure to a variety of Yahoo&#8217;s products. Due to the rapidly changing team environment, strong communications and teamwork skills are a must.</p>
<h4>Skills/Qualifications</h4>
<h5>Required:</h5>
<ul>
<li>MS/BS in Computer Science (or equivalent experience).</li>
<li>5-7+ years industry experience building scalable systems in C/C++ on a Unix platform</li>
<li>A proven track-record of technical leadership, including responsibility for design or architecture</li>
<li>Good development-process skills: structured design documentation, build processes, coding styles, testing frameworks, etc.</li>
<li>Demonstrated ability to identify and take opportunities for code re-use</li>
<li>Interest and demonstrated ability to work in complex team environments, with evolving team membership</li>
</ul>
<h5>Preferred:</h5>
<ul>
<li>Experience working in a consulting firm or relevant experience within an internal staffing pool</li>
<li>Experience w/ building highly available clustered applications</li>
<li>Experience w/ relational databases, particularly Oracle and MySQL</li>
<li>Experience w/ web-scripting languages including Perl or PHP</li>
<li>Experience with agile methods, such as test-driven development</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/04/17/unique-software-development-gig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New del.icio.us Firefox extension</title>
		<link>http://marc-abramowitz.com/archives/2007/04/06/new-delicious-firefox-extension-2/</link>
		<comments>http://marc-abramowitz.com/archives/2007/04/06/new-delicious-firefox-extension-2/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 17:06:44 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/04/06/new-delicious-firefox-extension-2/</guid>
		<description><![CDATA[ Glad to see stuff like this, since I worked on this new version of the Del.icio.us Firefox extension.
 http://www.techcrunch.com/2007/04/05/if-you-dont-use-delicious-you-will-now/
The above link has 1411 diggs and counting &#8211; pretty cool.
]]></description>
			<content:encoded><![CDATA[<p> Glad to see stuff like this, since I worked on this <a href="http://blog.del.icio.us/blog/2007/04/making_firefox_.html">new version of the Del.icio.us Firefox extension</a>.</p>
<p><a href=" http://www.techcrunch.com/2007/04/05/if-you-dont-use-delicious-you-will-now/"> http://www.techcrunch.com/2007/04/05/if-you-dont-use-delicious-you-will-now/</a></p>
<p>The above link has 1411 diggs and counting &#8211; pretty cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/04/06/new-delicious-firefox-extension-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo! digs Panama</title>
		<link>http://marc-abramowitz.com/archives/2007/04/05/yahoo-digs-panama/</link>
		<comments>http://marc-abramowitz.com/archives/2007/04/05/yahoo-digs-panama/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 06:04:07 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/04/05/yahoo-digs-panama/</guid>
		<description><![CDATA[Nice to see some good news for a change.
 Forbes.com: Yahoo! Digs Panama
]]></description>
			<content:encoded><![CDATA[<p>Nice to see some good news for a change.</p>
<p><a href="http://www.forbes.com/2007/04/05/yahoo-panama-update-markets-equity-cx_rs_0405markets18.html?partner=yahootix"> Forbes.com: Yahoo! Digs Panama</a></p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/04/05/yahoo-digs-panama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common Lisp libraries for Yahoo! APIs</title>
		<link>http://marc-abramowitz.com/archives/2007/03/03/common-lisp-libraries-for-yahoo-apis/</link>
		<comments>http://marc-abramowitz.com/archives/2007/03/03/common-lisp-libraries-for-yahoo-apis/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 00:20:06 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Common Lisp]]></category>
		<category><![CDATA[Lisp]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/03/03/common-lisp-libraries-for-yahoo-apis/</guid>
		<description><![CDATA[I was reading some essays about Common Lisp and came across a few interesting libraries for accessing some of Yahoo&#8217;s Web Services APIs:

cl-delicious: for accessing the del.icio.us API
cl-yahoo: for accessing the Yahoo! Search API
Clickr &#8211; for accessing the Flickr API

In the case of cl-delicious, it was a little harder to install (into SBCL on my [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading some essays about <a href="http://en.wikipedia.org/wiki/Common_Lisp">Common Lisp</a> and came across a few interesting libraries for accessing some of <a href="http://developer.yahoo.com/">Yahoo&#8217;s Web Services APIs</a>:</p>
<ul>
<li><a href="http://www.cliki.net/cl-delicious">cl-delicious</a>: for accessing the <a href="http://del.icio.us/help/api/">del.icio.us API</a></li>
<li><a href="http://www.cliki.net/cl-yahoo">cl-yahoo</a>: for accessing the <a href="http://developer.yahoo.com/search/">Yahoo! Search API</a></li>
<li><a href="http://schani.wordpress.com/2006/07/20/lisping-flickr/">Clickr</a> &#8211; for accessing the <a href="http://www.flickr.com/services/api/">Flickr API</a></li>
</ul>
<p>In the case of cl-delicious, it was a little harder to install (into <a href="http://sbcl.sourceforge.net/">SBCL</a> on my Ubuntu Edgy system), as the <a href="http://jarrodkoehler.com/cl-delicious/">author&#8217;s site</a> has a bzipped file instead of the gzipped file that <a href="http://www.cliki.net/ASDF-Install">ASDF-Install</a> expects.</p>
<pre>
~/.sbcl/site$ wget http://jarrodkoehler.com/cl-delicious/cl-delicious-0.1.tar.bz2
~/.sbcl/site$ tar -xjf cl-delicious-0.1.tar.bz2
~/.sbcl/site$ cd ../systems
~/.sbcl/systems$ ln -s ~/.sbcl/site/cl-delicious/cl-delicious.asd .
</pre>
<p>Now, at this point, I was running the current <a href="http://sbcl.sourceforge.net/">SBCL</a> version from the Ubuntu Edgy repository and this version of SBCL seems to have a slight problem with the <code>cl-delicious.asd</code> file so I had to do:</p>
<pre>
~/.sbcl/systems$ vim cl-delicious.asd .     # Remove the line with LICENSE
</pre>
<p>It seems that upgrading to the release version of SBCL from the <a href="http://sbcl.sourceforge.net/">SBCL web site</a> (1.0.2 as of this writing) also solves the problem and is perhaps a preferable solution.</p>
<p>and then</p>
<pre>
~/.sbcl/systems$ sbcl
</pre>
<p>or if you prefer, fire up Emacs and <a href="http://common-lisp.net/project/slime/">SLIME</a>.</p>
<p>and then</p>
<pre>
CL-USER> (asdf:operate 'asdf:load-op 'cl-delicious)
...(a bazillion messages about loading and registering)...
</pre>
<p>and now you&#8217;re ready to do stuff, as shown in the <a href="http://jarrodkoehler.com/cl-delicious/">cl-delicious page</a>:</p>
<pre>
CL-USER&gt; (in-package :cl-delicious)
#&lt;PACKAGE "CL-DELICIOUS"&gt;
CL-USER&gt; (defparameter *du*
           (make-instance 'delicious-user
                          :username "user"
                          :password "password"))
*DU*
CL-DELICIOUS&gt; (recent-posts *du* :count "2")
(#S(POST
    :HREF "http://www.cs.indiana.edu/dfried_celebration.html"
    <img src='http://marc-abramowitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ESCRIPTION "Daniel P Friedman: A Celebration"
    :EXTENDED NIL
    :HASH "9821f03f10279cad407aa8b2e5c2bef1"
    :OTHERS NIL
    :TAG "programming video"
    :TIME "2007-02-22T23:06:22Z")
 #S(POST
    :HREF "http://www.math.gatech.edu/~cain/textbooks/onlinebooks.html"
    <img src='http://marc-abramowitz.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ESCRIPTION "Online texts"
    :EXTENDED NIL
    :HASH "79b0c74c3d2941dbd57ac922b471e781"
    :OTHERS NIL
    :TAG "math books"
    :TIME "2007-02-22T20:50:26Z"))
</pre>
<p>It was easier to install cl-yahoo.</p>
<pre>
CL-USER&gt; (asdf-install:install 'cl-yahoo)
</pre>
<p>However, I ran into problems getting Web search to work:</p>
<pre>
CL-USER&gt; (asdf:oos 'asdf:load-op :cl-yahoo)
NIL
CL-USER&gt; (use-package :cl-yahoo)
T
CL-USER&gt; (ysearch :web :query "lisp" :type 'any :results 2)

XML parser encountered eof before end of entity.
   [Condition of type S-XML:XML-PARSER-ERROR]                                                                                  

Restarts:
 0: [ABORT] Return to SLIME's top level.
 1: [TERMINATE-THREAD] Terminate this thread (#<THREAD "repl-thread" {CC416A9}>)                                               

Backtrace:
  0: (S-XML::RESOLVE-ENTITY
      #&lt;SB-SYS:FD-STREAM for "a constant string" {B477469}> &gt;
      "invalid value: uri - http://api.search.yahoo.com/WebSearchService/V1/webSearch?"
      #&lt;HASH-TABLE :TEST EQUAL :COUNT 6 {B47C031}&gt;
      "appid=cl-yahoo&#038;query=lisp&#038;type=any&#038;results=2&#038;start=3&#038;adult_ok=1&lt;/Message&gt;^M
     </Error>^M
     &lt;!-- ws02.search.scd.yahoo.com uncompressed Sat Mar  3 16:16:03 PST 2007 -->                                         &gt;
     ")
  1: (S-XML::PARSE-TEXT
      #&lt;SB-SYS:FD-STREAM for "a constant string" {B477469}&gt;
...
</pre>
<p>I guess I&#8217;ll email the author about that.</p>
<p><iframe src="http://rcm.amazon.com/e/cm?t=marcsepinion-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=1590592395&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/03/03/common-lisp-libraries-for-yahoo-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New version of Del.icio.us Firefox extension</title>
		<link>http://marc-abramowitz.com/archives/2007/02/23/new-version-of-delicious-firefox-extension/</link>
		<comments>http://marc-abramowitz.com/archives/2007/02/23/new-version-of-delicious-firefox-extension/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 22:44:05 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/02/23/new-version-of-delicious-firefox-extension/</guid>
		<description><![CDATA[If you tried Yahoo&#8217;s Del\.icio\.us Firefox extension in the past and didn&#8217;t like the fact that it eliminated the notion of local bookmarks, it&#8217;s time to take another look. Don&#8217;t take my word for it, as I work on it, but check out this post from Yahoo! Cool thing of the Day.
And a few choice [...]]]></description>
			<content:encoded><![CDATA[<p>If you tried <a href="https://addons.mozilla.org/firefox/3615/">Yahoo&#8217;s Del\.icio\.us Firefox extension</a> in the past and didn&#8217;t like the fact that it eliminated the notion of local bookmarks, it&#8217;s time to take another look. Don&#8217;t take my word for it, as I work on it, but check out this <a href="http://ycoolthing.com/archives/278/deliciously-updated">post from Yahoo! Cool thing of the Day</a>.</p>
<p>And a few choice quotes:</p>
<p>&#8220;Del.icio.us changed my life. Download the extension right away, get organized and share! Feel the difference.&#8221;<br />
<a href="http://getfirefox.biz/delicious-changed-my-life.html">http://getfirefox.biz/delicious-changed-my-life.html</a></p>
<p>&#8220;I am slowly becoming a more frequent user of del.icio.us. &#8230; the recent update they rolled out appears to be borderline brilliant&#8221;<br />
<a href="http://www.pointy-stick.com/blog/2007/02/23/upgraded-delicious-firefox-extension/">http://www.pointy-stick.com/blog/2007/02/23/upgraded-delicious-firefox-extension/</a></p>
<p>&#8220;New and improved del.icio.us extension for Firefox&#8221;<br />
<a href="http://www.fortysomething.ca/mt/etc/archives/006372.php">http://www.fortysomething.ca/mt/etc/archives/006372.php</a></p>
<p>&#8220;Your del.icio.us bookmarks and tags are now accessible from the Firefox bookmarks toolbar as well as the menu bar.&#8221;<br />
<a href="http://labnol.blogspot.com/2007/02/delicious-bookmarks-firefox-extension.html">http://labnol.blogspot.com/2007/02/delicious-bookmarks-firefox-extension.html</a> </p>
<p>&#8220;Alright, it’s now official: I decided to switch from Yahoo! MyWeb to Del.icio.us. This new Firefox extension is just so sweet.&#8221;<br />
<a href="http://insideyahoo.net/2007/02/24/switching-to-delicious/">http://insideyahoo.net/2007/02/24/switching-to-delicious/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/02/23/new-version-of-delicious-firefox-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo Search Sidebar 1.2</title>
		<link>http://marc-abramowitz.com/archives/2007/02/21/yahoo-search-sidebar-12/</link>
		<comments>http://marc-abramowitz.com/archives/2007/02/21/yahoo-search-sidebar-12/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 17:41:21 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[My projects]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/02/21/yahoo-search-sidebar-12/</guid>
		<description><![CDATA[I updated my Yahoo Search Sidebar Firefox extension to version 1.2. The only changes are that it works with Firefox 2.0 and I eliminated a bunch of global JavaScript symbols, which is a good Firefox extension development practice for preventing extension conflicts.

This Firefox extension adds a &#34;Yahoo! Search&#34; item in Firefox&#39;s View &#124; Sidebar
menu &#40;Alt+Y [...]]]></description>
			<content:encoded><![CDATA[<p>I updated my <a href="http://marc.abramowitz.info/my-software/yahoo-search-sidebar-for-firefox/">Yahoo Search Sidebar Firefox extension</a> to version 1.2. The only changes are that it works with Firefox 2.0 and I eliminated a bunch of global JavaScript symbols, which is a good Firefox extension development practice for preventing extension conflicts.</p>
<p>
This Firefox extension adds a &#34;<strong>Yahoo! Search</strong>&#34; item in Firefox&#39;s View | Sidebar<br />
menu &#40;Alt+Y is the shortcut key&#41; that opens a sidebar tailored for Web searching with <a href="http://search.yahoo.com/">Yahoo! Search</a>.
</p>
<p>
<img src="http://marc.abramowitz.info/images/yahoo/yahoo_search_sidebar_screenshot_512x384.jpg" />
</p>
<p><a href="http://marc.abramowitz.info/my-software/yahoo-search-sidebar-for-firefox/">More info at the Yahoo Search Sidebar page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/02/21/yahoo-search-sidebar-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! Briefcase Widget</title>
		<link>http://marc-abramowitz.com/archives/2007/02/18/yahoo-briefcase-widget/</link>
		<comments>http://marc-abramowitz.com/archives/2007/02/18/yahoo-briefcase-widget/#comments</comments>
		<pubDate>Sun, 18 Feb 2007 20:37:41 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[My projects]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://marc.abramowitz.info/archives/2007/02/18/yahoo-briefcase-widget/</guid>
		<description><![CDATA[I finally posted my Yahoo! Briefcase Widget, which I did with my colleague, Tony Wong, for a Hack Day like thing some time ago.

&#160;&#160;

This Yahoo! Widget Engine widget allows convenient viewing of the contents of your Yahoo! Briefcase with a Windows Explorer/OS X Finder like interface as well as upload and download capabilities.
]]></description>
			<content:encoded><![CDATA[<p>I finally posted my <a href="http://marc.abramowitz.info/my-software/yahoo-widget-engine/yahoo-briefcase-widget/">Yahoo! Briefcase Widget</a>, which I did with my colleague, Tony Wong, for a <a href="http://developer.yahoo.net/hackday/">Hack Day</a> like thing some time ago.</p>
<p><a href="http://marc.abramowitz.info/my-software/yahoo-widget-engine/yahoo-briefcase-widget/"><br />
<img src="http://marc.abramowitz.info/wp-content/yahoo_briefcase_widget_icon.png" width="204" height="178" alt="Yahoo! Briefcase Widget icon" border="0" />&nbsp;&nbsp;<br />
<img src="http://marc.abramowitz.info/wp-content/yahoo_briefcase_widget_winxp.png" width="452" height="297" alt="Yahoo! Briefcase Widget WinXP Explorer style view" border="0" /></a></p>
<p>This <a href="http://widgets.yahoo.com/">Yahoo! Widget Engine</a> widget allows convenient viewing of the contents of your <a href="http://briefcase.yahoo.com/">Yahoo! Briefcase</a> with a Windows Explorer/OS X Finder like interface as well as upload and download capabilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://marc-abramowitz.com/archives/2007/02/18/yahoo-briefcase-widget/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
