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

<?xml-stylesheet type="text/xsl" href="/templates/2k11/rss.xsl" media="screen" ?>
<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 firefox)</title>
    <link>http://daniel-lange.com/</link>
    <description>agrep -pB IT /dev/life</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.6.0 - http://www.s9y.org/</generator>
    <pubDate>Wed, 19 Jul 2023 23:14:21 GMT</pubDate>

    <image>
    <url>//daniel-lange.com/uploads/Avatar_Blog_144_234.png</url>
    <title>RSS: Daniel Lange's blog - agrep -pB IT /dev/life</title>
    <link>http://daniel-lange.com/</link>
    <width>144</width>
    <height>234</height>
</image>

<item>
    <title>Xfce4 opening links in Chromium despite Firefox having been set as the default browser</title>
    <link>http://daniel-lange.com/archives/184-Xfce4-opening-links-in-Chromium-despite-Firefox-having-been-set-as-the-default-browser.html</link>
            <category>Debian</category>
    
    <comments>http://daniel-lange.com/archives/184-Xfce4-opening-links-in-Chromium-despite-Firefox-having-been-set-as-the-default-browser.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=184</wfw:comment>

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

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;Installing a laptop with the shiny new Debian Bookworm release finds a few interesting things broken that I probably had fixed in the past already on the old laptop.&lt;/p&gt;

&lt;p&gt;One, that was increadibly unintuitive to fix, was lots of applications (like xfce4-terminal or Telegram) opening links in Chromium despite Firefox being set as the preferred webbrowser &lt;em&gt;everywhere&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;update-alternatives --config x-www-browser&lt;/code&gt; was pointing at Firefox already, of course.&lt;br /&gt;
The Xfce4 preferred application from settings was Firefox, of course.&lt;br /&gt;
&lt;code&gt;xdg-mime query default text/html&lt;/code&gt; delivered &lt;code&gt;firefox-esr.desktop&lt;/code&gt;, of course.&lt;/p&gt;

&lt;p&gt;Still nearly every link opens in &amp;#9608;&amp;#9608;&amp;#9608;&amp;#9608;&amp;#9608;&amp;#9608;&amp;#9608; Chromium...&lt;/p&gt;

&lt;p&gt;As usually the answer is out there. In this case in a &lt;a href=&quot;https://bugzilla.xfce.org/show_bug.cgi?id=10314&quot;&gt;xfce4-terminal bug report from 2015&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The friendly &quot;runkharr&quot; has debugged the issue and provides the fix as well.
As usually, all very easy once you know where to look. And why to hate GTK again a bit more:&lt;/p&gt;

&lt;p&gt;The GTK function &lt;code&gt;gtk_show_uri()&lt;/code&gt; uses glib&#039;s &lt;code&gt;g_app_info_launch_default_for_uri()&lt;/code&gt; and that - of course - cannot respect the usual mimetype setting.&lt;/p&gt;

&lt;p&gt;So quoting &quot;runkharr&quot; verbatim:&lt;/p&gt;

&lt;pre&gt;
1. Create a file `exo-launch.desktop´ in your `~/.local/share/applications´ directory with something like the following content:

    [Desktop Entry]
    Name=Exo Launcher
    Type=Application
    Icon=gtk-open
    Categories=Desktop;
    Comment=A try to force &#039;xfce4-terminal&#039; to use the preferred application(s)
    GenericName=Exo Launcher
    Exec=exo-open %u
    MimeType=text/html;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;application/x-mimearchive;
    Terminal=false
    OnlyShowIn=XFCE;

2. Create (if not already existing) a local `defaults.list´ file, again in your `~/.local/share/applications´ directory. This file must start with a &quot;group header&quot; of

    [Default Applications]

3. Insert the following three lines somewhere below this `[Default Applications]´ group header [..]:

    x-scheme-handler/http=exo-launch.desktop;
    x-scheme-handler/https=exo-launch.desktop;
    x-scheme-handler/ftp=exo-launch.desktop;
&lt;/pre&gt;

&lt;p&gt;And ... links open in Firefox again. Thank you &quot;runkharr&quot;!&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Tue, 27 Jun 2023 13:55:00 +0000</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/184-guid.html</guid>
    <category>browser</category>
<category>chrome</category>
<category>defaults</category>
<category>firefox</category>
<category>xfce</category>

</item>
<item>
    <title>Firefox asking to be made the default browser again and again</title>
    <link>http://daniel-lange.com/archives/148-Firefox-asking-to-be-made-the-default-browser-again-and-again.html</link>
            <category>Linux</category>
    
    <comments>http://daniel-lange.com/archives/148-Firefox-asking-to-be-made-the-default-browser-again-and-again.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=148</wfw:comment>

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

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;Firefox on Linux can develop the habit to (rather randomly) ask again and again to be made the default browser. E.g. when started from Thunderbird by clicking a link it asks but when starting from a shell all is fine.&lt;/p&gt;

&lt;p&gt;The reason to this is often two (or more) &lt;code&gt;.desktop&lt;/code&gt; entries competing with each other.&lt;/p&gt;

&lt;p&gt;So, walkthrough: (&lt;a href=&quot;#label_10&quot;&gt;GOTO 10&lt;/a&gt; in case you are sure to have all the basics right)&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;update-alternatives &lt;span style=&quot;color: #660033;&quot;&gt;--display&lt;/span&gt; x-www-browser&lt;br /&gt;update-alternatives &lt;span style=&quot;color: #660033;&quot;&gt;--display&lt;/span&gt; gnome-www-browser&lt;/div&gt;

&lt;p&gt;should both show firefox for you. If not&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;update-alternatives &lt;span style=&quot;color: #660033;&quot;&gt;--config&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;&lt;/span&gt;entry&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/div&gt;

&lt;p&gt;the entry to fix the preference on &lt;code&gt;/usr/bin/firefox&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Check (where available)&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;exo-preferred-applications&lt;/div&gt;

&lt;p&gt;that the &quot;Internet Browser&quot; is &quot;Firefox&quot;.&lt;/p&gt;

&lt;p&gt;Check (where available)&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;xfce4-mime-settings&lt;/div&gt;

&lt;p&gt;that anything containing &quot;html&quot; points to Firefox (or is left at a non-user set default).&lt;/p&gt;

&lt;p&gt;Check (where available)&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;xdg-settings get default-web-browser&lt;/div&gt;

&lt;p&gt;that you get &lt;code&gt;firefox.desktop&lt;/code&gt;. If not run&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;xdg-settings check default-web-browser firefox.desktop&lt;/div&gt;

&lt;p&gt;If you are running Gnome, check&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;xdg-settings get default-url-scheme-handler http&lt;/div&gt;

&lt;p&gt;and the same for &lt;code&gt;https&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a name=&quot;label_10&quot;&gt;LABEL 10&lt;/a&gt;:&lt;/p&gt;

&lt;p&gt;Run&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;sensible-editor ~&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;.config&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;mimeapps.list&lt;/div&gt;

&lt;p&gt;and remove all entries that contain something like &lt;code&gt;userapp-Firefox-&amp;lt;random&amp;gt;.desktop&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Run&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;find&lt;/span&gt; ~&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;.local&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;share&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;applications &lt;span style=&quot;color: #660033;&quot;&gt;-iname&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;userapp-firefox*.desktop&amp;quot;&lt;/span&gt;&lt;/div&gt;

&lt;p&gt;and delete these files or move them away.&lt;/p&gt;

&lt;p&gt;Done.&lt;/p&gt;

&lt;p&gt;Once you have it working again consider &lt;em&gt;disabling&lt;/em&gt; the option for  Firefox to check whether it is the default browser. Because it will otherwise create those pesky &lt;code&gt;userapp-Firefox-&amp;lt;random&amp;gt;.desktop&lt;/code&gt; files again.&lt;/p&gt;

&lt;p&gt;Configuring Linux is easy, innit?&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sat, 03 Nov 2018 08:55:00 +0000</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/148-guid.html</guid>
    <category>bug</category>
<category>chrome</category>
<category>config</category>
<category>debian</category>
<category>firefox</category>
<category>gnome</category>
<category>thunderbird</category>
<category>ubuntu</category>
<category>xfce</category>

</item>
<item>
    <title>Mozilla Firefox and Thunderbird Menu font sizes</title>
    <link>http://daniel-lange.com/archives/120-Mozilla-Firefox-and-Thunderbird-Menu-font-sizes.html</link>
            <category>Open Source</category>
    
    <comments>http://daniel-lange.com/archives/120-Mozilla-Firefox-and-Thunderbird-Menu-font-sizes.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=120</wfw:comment>

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

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;The font size Mozilla chose for Firefox and Thunderbird menus looks awfully large on Netbook screens. It wastes space and is visually at odds with reasonably sized content. And for some weird reason you can set the content font and size via the menu but not the font and size for the drop-down menus themselves.&lt;/p&gt;

&lt;p&gt;As the &quot;Theme Font &amp;amp; Size Changer&quot; Add-On doesn&#039;t work reliably and phones home way too often (showing a nag screen), I dug back into how to do this &quot;manually&quot;. Probably a decade after I fixed this the first time...&lt;/p&gt;

&lt;p&gt;You need to create the file &lt;code&gt;~/.mozilla/firefox/*/chrome/userChrome.css&lt;/code&gt;  with * being your profile directory (&amp;lt;random_number&amp;gt;.default usually) and you most probably have to create the &lt;code&gt;chrome&lt;/code&gt; directory first.&lt;/p&gt;

&lt;p&gt;The same for Thunderbird resides in &lt;code&gt;~/.thunderbird/*/chrome/userChrome.css&lt;/code&gt;. Here again the &lt;code&gt;chrome&lt;/code&gt; directory will most probably need to be created first.&lt;/p&gt;

&lt;div class=&quot;javascript geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #006600; font-style: italic;&quot;&gt;/* Global UI font */&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #339933;&quot;&gt;*&lt;/span&gt; &lt;span style=&quot;color: #009900;&quot;&gt;&amp;#123;&lt;/span&gt; font&lt;span style=&quot;color: #339933;&quot;&gt;-&lt;/span&gt;size&lt;span style=&quot;color: #339933;&quot;&gt;:&lt;/span&gt; 10pt &lt;span style=&quot;color: #339933;&quot;&gt;!&lt;/span&gt;important&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;&amp;#160; font&lt;span style=&quot;color: #339933;&quot;&gt;-&lt;/span&gt;family&lt;span style=&quot;color: #339933;&quot;&gt;:&lt;/span&gt; Ubuntu &lt;span style=&quot;color: #339933;&quot;&gt;!&lt;/span&gt;important&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#125;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;

&lt;p&gt;needs to go into these files for Firefox or Thunderbird respectively. The curly braces are important. So copy &amp;amp; paste correctly. Symlinks or hardlinks are fine if those files do not need to differ between your web browser and your email client.&lt;/p&gt;

&lt;p&gt;Restart Firefox and/or Thunderbird to see the effect.&lt;/p&gt;

&lt;p&gt;Obviously you can choose any other font and font size in the snippet above to suit your taste and requirements.&lt;/p&gt;

&lt;p&gt;If you are massively space-confined and don&#039;t mind a quite ugly UI, check out the &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/littlefox-for-firefox/&quot;&gt;Littlefox Add-on&lt;/a&gt;. Ugly but optimal use of the minimal screen estate with very small screens.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 04 Sep 2016 11:37:57 +0000</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/120-guid.html</guid>
    <category>browser</category>
<category>client</category>
<category>design</category>
<category>email</category>
<category>firefox</category>
<category>font</category>
<category>linux</category>
<category>mozilla</category>
<category>screen</category>
<category>size</category>
<category>thunderbird</category>
<category>ui</category>

</item>
<item>
    <title>SyncPlaces, SortPlaces ... preserving these and other excellent Firefox add-ons</title>
    <link>http://daniel-lange.com/archives/71-SyncPlaces,-SortPlaces-...-preserving-these-and-other-excellent-Firefox-add-ons.html</link>
            <category>Internet</category>
    
    <comments>http://daniel-lange.com/archives/71-SyncPlaces,-SortPlaces-...-preserving-these-and-other-excellent-Firefox-add-ons.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=71</wfw:comment>

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

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;A few days ago I was re-installing a laptop of mine. Downloading the default add-ons for Firefox came to a stall as I could not find SyncPlaces, which I&#039;ve been using for a few years to synchronize my bookmarks between the systems I use. As I knew the author, Andy Halford, has a &lt;a href=&quot;http://www.andyhalford.com/&quot; title=&quot;Andy Halford&#039;s homepage&quot;&gt;homepage&lt;/a&gt; I surfed there and found...&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&quot;&lt;strong&gt;So long Mozilla and thanks for all the fish&lt;/strong&gt;&lt;/p&gt;
  
  &lt;p&gt;If you are here looking for any of my extensions (SyncPlaces, SortPlaces, CheckPlaces or SearchPlaces) then I&#039;m sad to inform you that these are no longer available.&lt;/p&gt;
  
  &lt;p&gt;Unfortunately I do not have the time or the motivation to continue to support these in light of the close-minded, short-sighted and increasingly inflexible organisation that Mozilla has become. Apparently spending 1000&#039;s of hours promoting their products and providing my extensions to the general public to fill the gaps in their product, and repair bookmarks destroyed by Firefox Sync, counts for little and does not deserve any flexibility or support from them. Apparently add-on developers are second-class citizens to them whatever they may say. Surprising given that these are the main USP of Firefox, and developers are providing their time and efforts for free. My decision was taken after a series of problems the last one being the final straw.&quot;&lt;br /&gt;
  &lt;em&gt;Andy Halford, 17.06.12&lt;/em&gt; &lt;a href=&quot;http://daniel-lange.com/uploads/entries/120707_Screenshot_Homepage_AndyHalford.png&quot; title=&quot;Screenshot of Andy Halford&#039;s homepage on 07.07.12&quot;&gt;screenshot&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I was unable to find any details what caused this rant and the serious decision to remove his excellent add-ons from the Internet.
There are a &lt;a href=&quot;http://forums.mozillazine.org/viewtopic.php?f=38&amp;amp;t=2492681&quot; title=&quot;Mozillazine thread: Need alternate Add-Ons for CheckPlaces and SortPlaces!&quot;&gt;few discussions&lt;/a&gt; on the Mozillazine forums but nothing enlightening so far.
&lt;a href=&quot;http://www.andyhalford.com/&quot; title=&quot;Andy Halford&#039;s homepage&quot;&gt;Andy&#039;s personal homepage&lt;/a&gt;, &lt;a href=&quot;http://thehalfords.co.uk&quot; title=&quot;Andy Halford&#039;s family homepage&quot;&gt;family homepage&lt;/a&gt; and the &lt;a href=&quot;http://totalvalidator.com/&quot; title=&quot;TotalValidator product homepage&quot;&gt;TotalValidator product&lt;/a&gt; he and his wife offer are all still online, he just pulled all his popular Firefox add-ons.&lt;/p&gt;

&lt;p&gt;Andy states on his homepage&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&quot;I will not be answering any further emails on this matter, I suggest that you direct any questions to Mozilla themselves and ask them why they were happier for me to leave than to use a little common sense.&quot; [ib.]&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I still tried to contact him and asked for an interview but he has not come back to me so far. I&#039;ve sent a second email with the URL of this blog post.&lt;/p&gt;

&lt;p&gt;The SyncPlaces plug-in is still prominently featured on Wikipedia&#039;s &lt;a href=&quot;http://en.wikipedia.org/wiki/Comparison_of_browser_synchronizers&quot; title=&quot;Wikipedia entry: Comparison of browser synchronizers&quot;&gt;Comparison of browser synchronizers&lt;/a&gt; at press time.&lt;/p&gt;

&lt;p&gt;Now this is a mess. With some ungraciously licensed closed source software, you&#039;re probably used to plan migrations once license terms run out or you have to upgrade to the &lt;em&gt;much improved&lt;/em&gt; successor product because &quot;extended support&quot; for your perfectly fine current version gets ridiculously expensive.&lt;/p&gt;

&lt;p&gt;But with open source you have more rights and e.g. the security to use the product as long as you wish. &lt;em&gt;If&lt;/em&gt; you have kept a copy of the code (and the license file). Because in this case the Mozilla Firefox installer .xpi&#039;s are hard to come by. Mozilla has a &lt;a href=&quot;https://addons.mozilla.org/&quot; title=&quot;Mozilla add-ons repository&quot;&gt;centralized add-on repository&lt;/a&gt; and once the files are pulled from there, they quickly vanish off the net. Now don&#039;t get me wrong, these plug-ins are now unmaintained software, so you will have to migrate at some point in time, but not necessarily now. You have some time for planning and evaluation of alternatives.&lt;/p&gt;
 &lt;a class=&quot;block_level&quot; href=&quot;http://daniel-lange.com/archives/71-SyncPlaces,-SortPlaces-...-preserving-these-and-other-excellent-Firefox-add-ons.html#extended&quot;&gt;Continue reading &quot;SyncPlaces, SortPlaces ... preserving these and other excellent Firefox add-ons&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 08 Jul 2012 03:45:00 +0000</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/71-guid.html</guid>
    <category>addon</category>
<category>bookmarks</category>
<category>firefox</category>
<category>mozilla</category>
<category>opensource</category>
<category>plugin</category>
<category>updated</category>

</item>
<item>
    <title>Kubuntu 9.10 (karmic) 64bit firefox java plugin</title>
    <link>http://daniel-lange.com/archives/51-Kubuntu-9.10-karmic-64bit-firefox-java-plugin.html</link>
            <category>Linux</category>
    
    <comments>http://daniel-lange.com/archives/51-Kubuntu-9.10-karmic-64bit-firefox-java-plugin.html#comments</comments>
    <wfw:comment>http://daniel-lange.com/wfwcomment.php?cid=51</wfw:comment>

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

    <author>nospam@example.com (Daniel Lange)</author>
    <content:encoded>
    &lt;p&gt;For some unknown reason the (K)Ubuntu developers did not update the Java plugin for firefox after jaunty (yet?).&lt;/p&gt;

&lt;p&gt;The version that Karmic (9.10) pulls out of the multiverse repository is still jaunty&#039;s (9.04).&lt;/p&gt;

&lt;p&gt;So when you try:&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;apt-get install&lt;/span&gt; sun-java6-plugin&lt;/div&gt;

&lt;p&gt;you&#039;ll get something like&lt;/p&gt;

&lt;blockquote&gt;
&lt;pre&gt;&lt;code&gt;   Reading package lists... Done
   Building dependency tree
   Reading state information... Done
   Some packages could not be installed. This may mean that you have
   requested an impossible situation or if you are using the unstable
   distribution that some required packages have not yet been created
   or been moved out of Incoming.
   The following information may help to resolve the situation:
   
   The following packages have unmet dependencies:
     sun-java6-plugin: Depends: sun-java6-bin (= 6-15-1) but 6-16-0ubuntu1.9.04 is to be installed
   E: Broken packages
&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Duh.&lt;/p&gt;

&lt;p&gt;Actually if you have the Java Runtime Environment (JRE, package name &lt;code&gt;sun-java6-jre&lt;/code&gt;) installed all files needed are already present.&lt;br /&gt;
Just not put in the right place on the filesystem.&lt;/p&gt;

&lt;p&gt;So, run:&lt;/p&gt;

&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sudo&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;apt-get install&lt;/span&gt; sun-java6-jre &amp;#160; &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# install JRE if needed&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;sudo&lt;/span&gt; &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;ln&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-s&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;lib&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;jvm&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;java-&lt;span style=&quot;color: #000000;&quot;&gt;6&lt;/span&gt;-sun&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;jre&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;lib&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;amd64&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;libnpjp2.so &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;usr&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;lib&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;mozilla&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;plugins&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;&lt;/div&gt;

&lt;p&gt;This will install the JRE (if it&#039;s not already installed) and will symlink the firefox plugin for java in place so that it&#039;ll be found after a browser restart.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sun, 06 Dec 2009 17:00:00 +0000</pubDate>
    <guid isPermaLink="false">http://daniel-lange.com/archives/51-guid.html</guid>
    <category>64bit</category>
<category>firefox</category>
<category>java</category>
<category>karmic</category>
<category>kubuntu</category>
<category>mozilla</category>
<category>plugin</category>
<category>ubuntu</category>

</item>
<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/XingEnlargeUserImages.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;Updates&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;16.11.2011 And again the URLs changed. This time appending a pattern like &lt;b&gt;,4.57x75&lt;/b&gt;.jpg. The linked script again was updated. If &lt;a href=&quot;http://scriptish.org/&quot; title=&quot;Scriptish - a Greasemonkey fork&quot;&gt;Scriptish&lt;/a&gt; and the &lt;a href=&quot;https://github.com/greasemonkey/greasemonkey/issues/1442&quot; title=&quot;Link to issue description and commits&quot;&gt;auto-updating in Greasemonkey&lt;/a&gt; mature, I&#039;ll add auto-updating to the script file via the @updateURL parameter.&lt;/p&gt;

&lt;p&gt;13.05.2012 The Xing layout is still changing as they Ajaxify the site more and more. Currently the &lt;a href=&quot;http://userscripts.org/scripts/show/121015&quot; title=&quot;Xing XE Greasemonkey Script&quot;&gt;Xing XE&lt;/a&gt; is probably the best working enhancement to see Xing pictures in a recognisable size.&lt;/p&gt;
 
    </content:encoded>

    <pubDate>Sat, 05 Apr 2008 21:45:37 +0000</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 22:30:00 +0000</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>
