<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Daniel Lange's blog (Entries tagged as greasemonkey)</title>
    <link>http://daniel-lange.com/</link>
    <description>Life, IT, Managers, Cars...</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.5.3 - http://www.s9y.org/</generator>
    <pubDate>Thu, 01 May 2008 23:15:23 GMT</pubDate>

    <image>
        <url>http://daniel-lange.com/templates/bulletproof/img/s9y_banner_small.png</url>
        <title>RSS: Daniel Lange's blog - Life, IT, Managers, Cars...</title>
        <link>http://daniel-lange.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Updated Greasemonkey script for Xing</title>
    <link>http://daniel-lange.com/archives/26-Updated-Greasemonkey-script-for-Xing.html</link>
            <category>Private</category>
    
    <comments>http://daniel-lange.com/archives/26-Updated-Greasemonkey-script-for-Xing.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=26</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=26</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;Xing has just updated it&#039;s image-thumbnails naming &amp;quot;algorithm&amp;quot; once again:&lt;/p&gt;

&lt;p&gt;You&#039;ll now find thumbnails named &lt;font face=&quot;courier new,courier,monospace&quot;&gt;/2f1127fe2.3144098_s2&lt;b&gt;,2&lt;/b&gt;.jpg&lt;/font&gt;, so including another component like &amp;lt;comma&amp;gt;&amp;lt;digit&amp;gt; added to the name. Thus the Greasemonkey script linked from my article &lt;a title=&quot;Daniel&#039;s blog: Greasemonkey to enlarge Xing pictures&quot; href=&quot;http://daniel-lange.com/archives/24-Greasemonkey-to-enlarge-Xing-pictures.html&quot;&gt;Greasemonkey to enlarge Xing pictures&lt;/a&gt; needs to have it&#039;s main regex amended:&lt;/p&gt;

&lt;p&gt;Change \_s(1|2|3)?\. to read \_s(1|2|3)?(,\d)?\. in three places in the script.&lt;/p&gt;

&lt;p&gt;Or download an updated version &lt;a title=&quot;Updated Greasemonkey script to enlarge Xing pictures&quot; href=&quot;http://daniel-lange.com/software/openbcuserimagesmouseove.user.js&quot;&gt;here&lt;/a&gt;. I hope &amp;quot;louis&amp;quot; will update the version hosted at userscripts.org, too.&lt;/p&gt;

&lt;h2&gt;Update&lt;/h2&gt;

&lt;p&gt;02.05.2008 As Xing adds multi-digit numbers to the thumbnails now (like /7553bd445.4550412_s2&lt;b&gt;,10&lt;/b&gt;.jpg), you need to replace \d with \d+ in the above regex. The linked Greasemonkey script is updated.&lt;/p&gt;

&lt;p /&gt;
 
    </content:encoded>

    <pubDate>Sat, 05 Apr 2008 23:45:37 +0200</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/26-guid.html</guid>
    <category>firefox</category>
<category>greasemonkey</category>
<category>script</category>
<category>updated</category>
<category>xing</category>

</item>
<item>
    <title>Greasemonkey to enlarge Xing pictures</title>
    <link>http://daniel-lange.com/archives/24-Greasemonkey-to-enlarge-Xing-pictures.html</link>
            <category>Private</category>
    
    <comments>http://daniel-lange.com/archives/24-Greasemonkey-to-enlarge-Xing-pictures.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=24</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://daniel-lange.com/rss.php?version=2.0&amp;type=comments&amp;cid=24</wfw:commentRss>
    

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;I use &lt;a title=&quot;Xing social networking site&quot; target=&quot;_blank&quot; href=&quot;http://www.xing.com/&quot;&gt;Xing&lt;/a&gt; to manage some of my business contacts and even some friends have profiles there as well.&lt;/p&gt;

&lt;p&gt;The default size of contact&#039;s pictures displayed on one&#039;s Xing homepage is 18x24px. On a higher dpi screens, you can thus barely recognize the person shown. As there are multiple sizes of all images available, it&#039;s pretty easy to just take (for example)&lt;font face=&quot;courier new,courier,monospace&quot;&gt; http://www.xing.com/img/users/d/f/1/f34814409.5648827_s1.jpg&lt;/font&gt;, remove the&lt;font face=&quot;courier new,courier,monospace&quot;&gt; _s1&lt;/font&gt; and see a 140x185px version of the picture.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://addons.mozilla.org/de/firefox/addon/748&quot; target=&quot;_blank&quot; title=&quot;Greasemonkey firefox extension&quot;&gt;Greasemonkey&lt;/a&gt;, a Firefox extension to run user specified scripts on selected pages that you visit, can automate this with a nice script from user louis to download &lt;a href=&quot;http://userscripts.org/scripts/show/6173&quot; target=&quot;_blank&quot; title=&quot;Greasemonkey script to show Xing images in large on mouse-over&quot;&gt;here&lt;/a&gt;. Or my updated version &lt;a title=&quot;Greasemonkey script to show Xing images in large on mouse-over (updated version)&quot; href=&quot;http://daniel-lange.com/software/openbcuserimagesmouseove.user.js&quot;&gt;here&lt;/a&gt;.*&lt;/p&gt;

&lt;p /&gt;

&lt;p align=&quot;baseline&quot; /&gt;

&lt;p&gt;&lt;img vspace=&quot;0&quot; hspace=&quot;0&quot; border=&quot;1&quot; align=&quot;absmiddle&quot; alt=&quot;Greasemonkey on Xing&quot; src=&quot;http://daniel-lange.com/uploads/entries/080227_Xing_Greasemonkey.png&quot; /&gt;&lt;/p&gt;

&lt;p&gt;
So, everytime I now hover my mouse over a tiny Xing thumbnail, it will show the &amp;quot;full resolution&amp;quot; version of the image. Simple, efficient.&lt;/p&gt;

&lt;h2&gt;Update&lt;/h2&gt;

&lt;p&gt;* Xing &lt;a title=&quot;Daniel&#039;s blog: Updated Greasemonkey script for Xing&quot; href=&quot;http://daniel-lange.com/archives/26-Updated-Greasemonkey-script-for-Xing.html&quot;&gt;changed it&#039;s image naming scheme a bit&lt;/a&gt;, so one needs an updated Greasemonkey script for all images to work again. Link inserted into the article text (&amp;quot;Or my updated version &lt;a title=&quot;Greasemonkey script to show Xing images in large on mouse-over (updated version)&quot; href=&quot;https://daniel-lange.com/software/openbcuserimagesmouseove.user.js&quot;&gt;here&lt;/a&gt;.&amp;quot;)&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Wed, 27 Feb 2008 23:30:00 +0100</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/24-guid.html</guid>
    <category>firefox</category>
<category>greasemonkey</category>
<category>script</category>
<category>updated</category>
<category>xing</category>

</item>

</channel>
</rss>