<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>web-browsers on S Anand</title>
    <link>https://www.s-anand.net/blog/tag/web-browsers/</link>
    <description>Recent content in web-browsers on S Anand</description>
    <generator>Hugo -- 0.164.0</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 07 Apr 2025 05:22:31 +0000</lastBuildDate>
    <atom:link href="https://www.s-anand.net/blog/tag/web-browsers/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How to Organize Browser Workspaces with LLMs and Data</title>
      <link>https://www.s-anand.net/blog/how-to-organize-browser-workspaces-with-llms-and-data/</link>
      <pubDate>Mon, 07 Apr 2025 04:44:36 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/how-to-organize-browser-workspaces-with-llms-and-data/</guid>
      <description>&lt;p&gt;Here&amp;rsquo;s an example of how I am using LLMs to solve a day-to-day workflow problem.&lt;/p&gt;
&lt;p&gt;Every day, I interact with a barrage of websites: emails, news, social media, and work tools across multiple devices. &lt;a href=&#34;https://learn.microsoft.com/en-us/deployedge/microsoft-edge-workspaces&#34;&gt;Microsoft Edge’s workspaces&lt;/a&gt; syncs groups of websites across devices. I&amp;rsquo;ve never tried it, started today, and wondered: &lt;strong&gt;how should I organize my workspaces?&lt;/strong&gt;&lt;/p&gt;
&lt;div class=&#34;video-embed&#34;&gt;&lt;iframe src=&#34;https://www.youtube.com/embed/1kJ59DzjNOU&#34; title=&#34;YouTube video&#34; loading=&#34;lazy&#34; allow=&#34;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture&#34; allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;p&gt;Rather than think (thinking is outdated), I used LLMs.&lt;/p&gt;
&lt;h3 id=&#34;extract-browsing-history&#34;&gt;Extract Browsing History&lt;/h3&gt;
&lt;p&gt;Edge stores website history in a &lt;a href=&#34;https://www.google.com/search?q=Where+is+the+Edge+browser+history+stored+on+Windows+and+Linux%3F&#34;&gt;SQLite database&lt;/a&gt;. But the file is locked by the browser by default. So I spent a fair bit of time figure out how to read it despite it being unlocked. Here are some options:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;datasette .config/microsoft-edge/Default/History --nolock
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;sqlite3 &lt;span class=&#34;s1&#34;&gt;&amp;#39;file:.config/microsoft-edge/Default/History?mode=ro&amp;amp;nolock=1&amp;#39;&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;SELECT url FROM urls&amp;#39;&lt;/span&gt; &amp;gt; urls.txt
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;(&lt;a href=&#34;https://duckdb.org/&#34;&gt;DuckDB&lt;/a&gt; cannot read locked SQLite files - else I&amp;rsquo;d use that.)&lt;/p&gt;
&lt;p&gt;Then comes extracting the hostnames from the URLs. I used &lt;a href=&#34;https://github.com/simonw/llm-cmd&#34;&gt;&lt;code&gt;llm cmd&lt;/code&gt;&lt;/a&gt; to ask Gemini 2.5 Pro:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;llm cmd &lt;span class=&#34;s1&#34;&gt;&amp;#39;Extract just the hostnames from urls.txt which has a list of URLs, one per line. Only pick the https:// URLs. Save into hostnames.txt&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;I expanded the response &lt;code&gt;awk -F/ &#39;/^https:\/\//{print $3}&#39; urls.txt&lt;/code&gt; into:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;awk -F/ &lt;span class=&#34;s1&#34;&gt;&amp;#39;/^https:\/\//{print $3}&amp;#39;&lt;/span&gt; urls.txt &lt;span class=&#34;p&#34;&gt;|&lt;/span&gt; sort &lt;span class=&#34;p&#34;&gt;|&lt;/span&gt; uniq -c &lt;span class=&#34;p&#34;&gt;|&lt;/span&gt; sort -k 1n &amp;gt; hostnames.txt
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;That gave me ~1,400 hostnames.&lt;/p&gt;
&lt;h2 id=&#34;cluster-with-llms&#34;&gt;Cluster with LLMs&lt;/h2&gt;
&lt;p&gt;I passed these to O1 Pro and Gemini 2.5 Pro:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Here are the sites I visit, with rough frequency. On Microsoft Edge, I can create workspaces. Based on this browsing behavior, what kinds of workspaces might I create? Give me multiple options.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Both gave a similar set of strategies, which I&amp;rsquo;ve implemented as:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Main&lt;/strong&gt;: email, calendar, tasks, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Work&lt;/strong&gt;: work related sites (drive, expenses, HR platform, etc.)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Chill&lt;/strong&gt;: YouTube, Minesweeper, Netflix, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Read&lt;/strong&gt;: blogs, articles, stuff I need to catch-up on&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Code&lt;/strong&gt;: GitHub, StackOverflow, CodePen, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Chores&lt;/strong&gt;: government services, shopping, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;AI&lt;/strong&gt;: ChatGPT, Gemini, Perplexity, etc.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I was surprised how &lt;strong&gt;similar&lt;/strong&gt; a strategy both models converted to. Either these models &lt;strong&gt;really&lt;/strong&gt; think alike, or my browsing pattern is a fairly common one. (My guess is the latter.)&lt;/p&gt;
&lt;h3 id=&#34;write-with-llms&#34;&gt;Write with LLMs&lt;/h3&gt;
&lt;p&gt;After setting up my groups, I needed to write this post. Instead of slow typing, I stepped out and &lt;a href=&#34;https://chatgpt.com/share/67f36093-e810-800c-a9d0-de9bfb7ecf86&#34;&gt;talked with ChatGPT&lt;/a&gt;. (Talking to a machine in the office felt strange, so I changed my space.) I explained my whole process, and in about eight minutes, the first draft was done. Normally, writing takes much longer, but the voice chat made it quick and smooth.&lt;/p&gt;
&lt;p&gt;The editing after that was manual and took 20 minutes.&lt;/p&gt;
&lt;h3 id=&#34;things-i-learnt&#34;&gt;Things I learnt&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Simple Patterns&lt;/strong&gt;: My browsing history shows clear patterns. AI helped me find groups I couldn&amp;rsquo;t see before&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Small Fixes - Big Wins&lt;/strong&gt;: A small challenge (opening a locked file) taught me a bunch of new useful stuff&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Voice Made It Easy&lt;/strong&gt;: Talking with ChatGPT made writing fast and easy. It shows that speaking to a machine can save time&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    <item>
      <title>Google Chrome screenshots</title>
      <link>https://www.s-anand.net/blog/google-chrome-screenshots/</link>
      <pubDate>Tue, 02 Sep 2008 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/google-chrome-screenshots/</guid>
      <description>&lt;p&gt;I went to the &lt;a href=&#34;http://www.google.com/chrome&#34;&gt;Google Chrome&lt;/a&gt; site.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-1_2822929746_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-1_2822929746_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Clicking on the &amp;ldquo;Accept and Install&amp;rdquo; button&amp;hellip;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-2_2822094501_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-2_2822094501_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;hellip; automatically launched the downloader in Firefox&amp;hellip;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-3_2822930042_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-3_2822930042_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;hellip; and (after a fairly short while) started installing the application directly. This may be the most painless install I&amp;rsquo;ve done in a while.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-4_2822094883_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-4_2822094883_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I clicked on &amp;ldquo;Customise the settings&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-5_2822930598_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-5_2822930598_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is what it looks like.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-6_2822095325_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-6_2822095325_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And that&amp;rsquo;s it! It installs, and launches in just a few seconds. First impressions: the startup and rendering are really fast.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-7_2822095593_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-7_2822095593_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The address bar doubles up as a search bar. Very sensible.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-8_2822931146_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-8_2822931146_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Several nice &lt;a href=&#34;http://tools.google.com/chrome/intl/en-GB/features.html&#34;&gt;features&lt;/a&gt;: incognito mode, application shortcuts, and developer tools.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-9_2822095935_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-9_2822095935_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Javascript console has Javascript autocompletion! Watch out, Firebug.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-10_2822096083_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-10_2822096083_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-11_2822931444_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-11_2822931444_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-12_2822096215_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-12_2822096215_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The &amp;ldquo;Use DNS pre-fetching&amp;rdquo; looks interesting. My browsing certainly seems faster. Might be faster than Opera, even.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-13_2822096303_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-13_2822096303_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The &amp;ldquo;Show suggestions for navigation errors&amp;rdquo; feature.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-14_2822931820_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-14_2822931820_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;There&amp;rsquo;s a task manager&amp;hellip;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-16_2822096869_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-16_2822096869_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;hellip; that shows how much memory each site uses.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-17_2822096977_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-17_2822096977_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But not all is good. This jQuery animation on my site leaves trails behind.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-15_2822096585_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-15_2822096585_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And the text box resizing is good, but feels a bit&amp;hellip; wrong, somehow.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-18_2822097085_o-png.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-google-chrome-18_2822097085_o-png.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Plus: I can re-import history, bookmarks, etc. from Firefox at any point, so I don&amp;rsquo;t have to worry about using this as a secondary browser.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update (8am UK, 3rd Sep)&lt;/strong&gt;: Chrome.exe isn&amp;rsquo;t installed in your &amp;ldquo;Program Files&amp;rdquo; folder. It&amp;rsquo;s in your &amp;ldquo;Documents and Settings&amp;rdquo; folder, under &amp;ldquo;Local Settings\Application Data\Google\Chrome\Application&amp;rdquo;. (That&amp;rsquo;s on Windows XP. Not sure about Vista.)&lt;/p&gt;
&lt;p&gt;There&amp;rsquo;s a Themes folder, so I imagine more themes should be on their way.&lt;/p&gt;
&lt;p&gt;There doesn&amp;rsquo;t seem to be an about:config option. But there are a whole lot of others:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;about:cache&lt;/li&gt;
&lt;li&gt;about:dns&lt;/li&gt;
&lt;li&gt;about:histograms&lt;/li&gt;
&lt;li&gt;about:memory&lt;/li&gt;
&lt;li&gt;about:plugins&lt;/li&gt;
&lt;li&gt;about:stats&lt;/li&gt;
&lt;li&gt;about:version&lt;/li&gt;
&lt;li&gt;about:crash&lt;/li&gt;
&lt;li&gt;about:internets&lt;/li&gt;
&lt;li&gt;about:network&lt;/li&gt;
&lt;li&gt;about:blank&lt;/li&gt;
&lt;li&gt;about:shorthang&lt;/li&gt;
&lt;li&gt;about:hang&lt;/li&gt;
&lt;li&gt;about:objects&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&amp;rsquo;m not entirely sure if the last two work. Based on &lt;a href=&#34;http://ejohn.org/blog/google-chrome-process-manager/&#34;&gt;comments at John Resig&amp;rsquo;s blog&lt;/a&gt;. Go through the &lt;a href=&#34;http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/&#34;&gt;code&lt;/a&gt; to see if you can find more.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;comments&#34;&gt;Comments&lt;/h2&gt;
&lt;!-- wp-comments-start --&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Sumit Dhar&lt;/strong&gt; &lt;em&gt;11 Sep 2008 1:47 am&lt;/em&gt;:
Have found an interesting use for &amp;ldquo;Incognito&amp;rdquo; mode. Both my wife and I use the same laptop to access Gmail. Not wanting to use a second browser, invariably one has to logout to allow the other to access mail.&lt;br&gt;
&lt;br&gt;
With Chrome&amp;rsquo;s Incognito mode, it uses a different directory to store the cookies. This allows two or more people to login to their Gmail accounts in different tabs.&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
D.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;S Anand&lt;/strong&gt; &lt;em&gt;12 Sep 2008 1:19 am&lt;/em&gt;:
But do sessions persist? I thought that once you switch to incognito mode, your cookies would no longer be sent to the server, and that you would need to at least log in. So while one person can stay logged in, the other would still need to log in. Is that right?&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>AllPeers</title>
      <link>https://www.s-anand.net/blog/allpeers/</link>
      <pubDate>Wed, 04 Jan 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/allpeers/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m awaiting &lt;a href=&#34;http://www.allpeers.com/&#34;&gt;AllPeers&lt;/a&gt;. It&amp;rsquo;s a &lt;a href=&#34;http://www.techcrunch.com/2006/01/03/allpeers-is-the-firefox-killer-app/&#34;&gt;Firefox bittorrent extension&lt;/a&gt; that makes it easy to share files among peers.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Opera 7 beta</title>
      <link>https://www.s-anand.net/blog/opera-7-beta/</link>
      <pubDate>Thu, 14 Nov 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/opera-7-beta/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.opera.com/news/&#34;&gt;Opera 7 Beta is out&lt;/a&gt;. It sports a new look, which one tires of quite soon. But it&amp;rsquo;s as fast as ever, and has better standards compliance. &lt;a href=&#34;http://www.tamizhan.com/index.php?itemid=248&#34;&gt;via Anand&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Mozilla 1.2 beta</title>
      <link>https://www.s-anand.net/blog/mozilla-1-2-beta/</link>
      <pubDate>Sun, 20 Oct 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/mozilla-1-2-beta/</guid>
      <description>&lt;p&gt;I downloaded &lt;a href=&#34;http://www.mozilla.org&#34;&gt;Mozilla 1.2 beta&lt;/a&gt;. It loads fast. It runs fast. It hasn&amp;rsquo;t crashed. It&amp;rsquo;s tab feature is great. It&amp;rsquo;s Type Ahead Find feature is fabulous. It&amp;rsquo;s &lt;a href=&#34;http://www.mozdev.org&#34;&gt;add-ons&lt;/a&gt; are great. I think I&amp;rsquo;m going to switch browsers again! (My only crib, though, is that I can&amp;rsquo;t customize keyboard shortcuts. Or I don&amp;rsquo;t know how yet.)&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.s-anand.net/blog/assets/flickr-mozilla-screenshot_24685623_o-gif.webp&#34;&gt;&lt;img alt=&#34;Mozilla screenshot&#34; loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/flickr-mozilla-screenshot_24685623_o-gif.webp&#34;&gt;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Netscape 7.01</title>
      <link>https://www.s-anand.net/blog/netscape-7-01/</link>
      <pubDate>Thu, 23 May 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/netscape-7-01/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://channels.netscape.com/ns/browsers/7/&#34;&gt;Netscape 7.01&lt;/a&gt; is out. Preview release, mind. No, I haven&amp;rsquo;t tested it yet. Awaiting reviews. (24 May: &lt;a href=&#34;http://www.zdnet.com/anchordesk/stories/story/0,10738,2867381,00.html&#34;&gt;No reason&lt;/a&gt; to switch)&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Move away from IE</title>
      <link>https://www.s-anand.net/blog/move-away-from-ie/</link>
      <pubDate>Tue, 12 Mar 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/move-away-from-ie/</guid>
      <description>&lt;p&gt;AOL, and hence its 30 million subscribers, could &lt;a href=&#34;http://www.newsforge.com/article.pl?sid=02/03/08/1957252&amp;amp;mode=thread&#34;&gt;move away from IE&lt;/a&gt; towards Mozilla. That&amp;rsquo;s big.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Opera 6 Beta</title>
      <link>https://www.s-anand.net/blog/opera-6-beta/</link>
      <pubDate>Tue, 13 Nov 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/opera-6-beta/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.opera.com/pressreleases/20011113.html&#34;&gt;Opera 6 Beta&lt;/a&gt; is out.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>IE6 preview</title>
      <link>https://www.s-anand.net/blog/ie6-preview/</link>
      <pubDate>Sat, 07 Jul 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/ie6-preview/</guid>
      <description>&lt;p&gt;The public preview of &lt;a href=&#34;http://www.microsoft.com/windows/ie/preview/default.asp&#34;&gt;IE 6&lt;/a&gt; is out. The revolutionary feature is smart tags. I think the image toolbar is a pretty neat idea too.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Internet Explorer 6 preview</title>
      <link>https://www.s-anand.net/blog/internet-explorer-6-preview/</link>
      <pubDate>Sun, 01 Apr 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/internet-explorer-6-preview/</guid>
      <description>&lt;p&gt;The preview release of &lt;a href=&#34;http://www.microsoft.com/windows/ie/preview/&#34;&gt;Internet Explorer 6&lt;/a&gt; is out.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Internet Explorer 6 sneak preview</title>
      <link>https://www.s-anand.net/blog/internet-explorer-6-sneak-preview/</link>
      <pubDate>Sat, 03 Feb 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/internet-explorer-6-sneak-preview/</guid>
      <description>&lt;p&gt;A &lt;a href=&#34;http://news.cnet.com/news/0-1005-200-4638824.html?tag=tp_pr&#34;&gt;sneak preview of MS IE6&lt;/a&gt;. What is worrying is that Microsoft may not release IE6 as a standalone application. They&amp;rsquo;re planning to bundle it with their next OS: Whister.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Internet TV</title>
      <link>https://www.s-anand.net/blog/internet-tv/</link>
      <pubDate>Mon, 29 Jan 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/internet-tv/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.zerotv.com/&#34;&gt;zeroTV&lt;/a&gt;: good TV-like entertainment for free. World Bank&amp;rsquo;s &lt;a href=&#34;http://www.worldbank.org/wbi/B-SPAN/&#34;&gt;B-SPAN&lt;/a&gt; has World Bank seminars online. Yeah, the computer is becoming the TV.&lt;/p&gt;
</description>
    </item>
  </channel>
</rss>
