<?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>privacy on S Anand</title>
    <link>https://www.s-anand.net/blog/tag/privacy/</link>
    <description>Recent content in privacy on S Anand</description>
    <generator>Hugo -- 0.164.0</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 19 Mar 2026 15:40:25 +0530</lastBuildDate>
    <atom:link href="https://www.s-anand.net/blog/tag/privacy/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>SearXNG and Vane</title>
      <link>https://www.s-anand.net/blog/searxng-and-vane/</link>
      <pubDate>Thu, 19 Mar 2026 15:40:25 +0530</pubDate>
      <guid>https://www.s-anand.net/blog/searxng-and-vane/</guid>
      <description>&lt;p&gt;While exploring &lt;a href=&#34;https://claude.ai/share/a7ae0d69-8c56-49a2-b6f2-1e3f4cd32937&#34;&gt;resonant computing tools&lt;/a&gt;, I discovered &lt;a href=&#34;https://searxng.org/&#34;&gt;SearXNG&lt;/a&gt;, a self-hostable metasearch engine, which aggregates results from multiple search engines.&lt;/p&gt;
&lt;p&gt;&lt;img alt=&#34;Searching for &amp;ldquo;Wikipedia&amp;rdquo; shows a Google-like results page.&#34; loading=&#34;lazy&#34; src=&#34;https://upload.wikimedia.org/wikipedia/commons/0/0a/SearXNG_Results_Page.png&#34;&gt;&lt;/p&gt;
&lt;p&gt;It lets you search using APIs without needing to buy API keys and without being tracked. Pretty useful for research, people discovery, etc. when combined with LLMs.&lt;/p&gt;
&lt;p&gt;Setting it up for API use seems easy (thought &lt;a href=&#34;https://gemini.google.com/share/33e8ed8dbc40&#34;&gt;Gemini got it wrong twice&lt;/a&gt;):&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;cat &lt;span class=&#34;s&#34;&gt;&amp;lt;&amp;lt;EOF &amp;gt; settings.yml
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;use_default_settings: true
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;server:
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;  secret_key: &amp;#34;local_dummy_secret_key_987654321&amp;#34;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;search:
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;  formats:
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;    - html
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;    - json
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s&#34;&gt;EOF&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker run -d &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -p 8080:8080 &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  --name searxng &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -v &lt;span class=&#34;s2&#34;&gt;&amp;#34;&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;$(&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;pwd&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;)&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;/settings.yml:/etc/searxng/settings.yml&amp;#34;&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -e &lt;span class=&#34;s2&#34;&gt;&amp;#34;SEARXNG_BASE_URL=http://localhost:8080/&amp;#34;&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  -e &lt;span class=&#34;s2&#34;&gt;&amp;#34;SEARXNG_SERVER_LIMITER=false&amp;#34;&lt;/span&gt; &lt;span class=&#34;se&#34;&gt;\
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  searxng/searxng
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Now, you can run:&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;curl -s &lt;span class=&#34;s2&#34;&gt;&amp;#34;http://localhost:8080/search?q=best+sci-fi+books&amp;amp;format=json&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&amp;hellip; which returns a JSON like this:&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-jsonc&#34; data-lang=&#34;jsonc&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;nt&#34;&gt;&amp;#34;query&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;best sci-fi books&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;nt&#34;&gt;&amp;#34;number_of_results&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;0&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;nt&#34;&gt;&amp;#34;results&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;template&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;default.html&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;url&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://www.goodreads.com/list/show/19341.Best_Science_Fiction&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;title&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;Best Science Fiction (3733 books) - Goodreads&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;content&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;Other SF Lists of Note: ...&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;publishedDate&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;kc&#34;&gt;null&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;thumbnail&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://imgs.search.brave.com/...&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;engine&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;brave&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;parsed_url&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;https&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;www.goodreads.com&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;/list/show/19341.Best_Science_Fiction&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;img_src&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://imgs.search.brave.com/...&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;priority&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;engines&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;startpage&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;duckduckgo&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;brave&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;positions&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;2&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;1&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;score&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;mf&#34;&gt;7.5&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;      &lt;span class=&#34;nt&#34;&gt;&amp;#34;category&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;general&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;},&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;c1&#34;&gt;/// ...
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;nt&#34;&gt;&amp;#34;suggestions&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s2&#34;&gt;&amp;#34;top 10 best sci-fi books of all time&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;c1&#34;&gt;// ...
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;nt&#34;&gt;&amp;#34;unresponsive_engines&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;google&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;access denied&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;wikidata&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;timeout&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;There are many &lt;a href=&#34;https://searx.space/&#34;&gt;public SearXNG instances&lt;/a&gt;. Google seems to be blocked on many of these, but Brave, DuckDuckGo, and others seem to work fine.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;That leads me to &lt;a href=&#34;https://github.com/ItzCrazyKns/Vane&#34;&gt;Vane&lt;/a&gt; which is a self-hostable Perplexity clone! A hosted version is available at &lt;a href=&#34;https://perplexica.io/&#34;&gt;Perplexica.io&lt;/a&gt;.&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-docker&#34; data-lang=&#34;docker&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker run -d -p 3000:3000 -v vane-data:/home/vane/data --name vane itzcrazykns1337/vane:latest&lt;span class=&#34;err&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;I tried a few questions and compared with Perplexity / Gemini using &lt;a href=&#34;https://developers.openai.com/api/docs/models/gpt-5-nano&#34;&gt;GPT-5 nano&lt;/a&gt; &amp;ndash; a &lt;em&gt;really&lt;/em&gt; cheap model.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;🟢 &lt;strong&gt;It solves multi-hop queries&lt;/strong&gt;. Which company acquired the data visualization firm Gramener in late 2023, and what is the current public stock ticker and market capitalization of that acquiring company?
&lt;ul&gt;
&lt;li&gt;A: The data-visualization firm Gramener was acquired in November 2023 by Straive. Straive is a private company owned by BPEA EQT, part of the EQT group. Because Straive is privately held, it does not have a public stock ticker, and its market capitalization is not publicly disclosed.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;🟢 &lt;strong&gt;It catches wrong questions&lt;/strong&gt;. Summarize the findings of the April 2025 paper &amp;lsquo;Agile Methodologies in High-Latency LLM Architectures&amp;rsquo; by Dr. Aris Thorne.
&lt;ul&gt;
&lt;li&gt;A: Hmm, sorry I could not find any relevant information on this topic. Would you like me to search again or ask something else?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;🔴 &lt;strong&gt;It doesn&amp;rsquo;t get the latest data&lt;/strong&gt;. Summarize the latest blog post on my website s-anand.net.
&lt;ul&gt;
&lt;li&gt;A: I can do that. To ensure accuracy, I’ll need to fetch the latest post from s-anand.net and summarize it with key takeaways and insights. Would you like me to fetch the latest post directly from the site now, or you provide the post URL or paste the content here?&lt;/li&gt;
&lt;li&gt;Q: Fetch the latest post directly and give me a 1 para summary&lt;/li&gt;
&lt;li&gt;A: The latest post on s-anand.net is &amp;ldquo;Education Blog embeddings map,&amp;rdquo; published on Tue, 17 Mar 2026&amp;hellip;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Though Vane got the last question wrong, Perplexity and Gemini got it wrong as well! So I guess it&amp;rsquo;s a good, comparable alternative.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Gemini Enterprise Business</title>
      <link>https://www.s-anand.net/blog/gemini-enterprise-business/</link>
      <pubDate>Thu, 19 Feb 2026 10:35:09 +0800</pubDate>
      <guid>https://www.s-anand.net/blog/gemini-enterprise-business/</guid>
      <description>&lt;!-- https://gemini.google.com/u/2/app/6b03ad8fde0c15b5 --&gt;
&lt;p&gt;I got an email from Google Cloud on my work account &amp;ldquo;excited to introduce you to &lt;a href=&#34;https://cloud.google.com/gemini-enterprise&#34;&gt;Gemini Enterprise&lt;/a&gt;&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;Once I signed up, it said, &amp;ldquo;you have 30 days to try &lt;a href=&#34;https://business.gemini.google/&#34;&gt;Gemini Enterprise – Business edition&lt;/a&gt; at no cost.&amp;rdquo; After that, it costs US $21/user/month, which I can &lt;a href=&#34;https://business.gemini.google/settings/general&#34;&gt;subscribe to here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The main differences from Gemini Pro (consumer accounts) seem to be:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Data Privacy. Google won&amp;rsquo;t read or use your data to train. (In Pro, you need to turn it off explicitly. Here, it&amp;rsquo;s the default.)&lt;/li&gt;
&lt;li&gt;Admin Controls. Admins can turn off connectors, manage users, retention policies, etc.&lt;/li&gt;
&lt;li&gt;Copyright Indemnification. If AI infringes copyright and you get sued, Google will find the case.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;But if you&amp;rsquo;re using Gemini via your Google Workspace account (i.e. your work account already has Pro subscription), then it makes no difference - it&amp;rsquo;s all the same.&lt;/p&gt;
&lt;p&gt;So I have no clue why Google&amp;rsquo;s mailed me to buy the same product I already have.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Google Browser Sync</title>
      <link>https://www.s-anand.net/blog/google-browser-sync/</link>
      <pubDate>Thu, 08 Jun 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/google-browser-sync/</guid>
      <description>&lt;p&gt;Using the &lt;a href=&#34;http://www.google.com/tools/firefox/browsersync/index.html&#34;&gt;Google Browser Sync&lt;/a&gt; extension for Firefox, you can access your bookmarks, tabs, history, saved passwords and cookies from any machine. You can browse from office, go back home, and continue browsing where you left off. Gina Trapani of Lifehacker says &lt;a href=&#34;http://www.lifehacker.com/software/google/google-sync-update-not-all-that-evil-179318.php&#34;&gt;Google Browser Sync is not a privacy risk&lt;/a&gt; after all.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Finding subversives using Amazon wishlists</title>
      <link>https://www.s-anand.net/blog/finding-subversives-using-amazon-wishlists/</link>
      <pubDate>Wed, 11 Jan 2006 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/finding-subversives-using-amazon-wishlists/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.applefritter.com/bannedbooks&#34;&gt;Finding subversives using Amazon wishlists&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>RFID and GPS</title>
      <link>https://www.s-anand.net/blog/rfid-and-gps/</link>
      <pubDate>Thu, 17 Feb 2005 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/rfid-and-gps/</guid>
      <description>&lt;p&gt;It&amp;rsquo;s incredible what RFID and GPS are being used to track:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=05/02/15/201217&amp;amp;tid=158&amp;amp;tid=219&#34;&gt;cars&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/12/30/1623208&amp;amp;tid=158&amp;amp;tid=126&#34;&gt;trucks&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/11/15/1250231&amp;amp;tid=158&amp;amp;tid=103&amp;amp;tid=1&#34;&gt;drug bottles&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/10/22/0229221&amp;amp;tid=158&amp;amp;tid=103&amp;amp;tid=1&#34;&gt;passports&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/10/08/1636231&amp;amp;tid=103&amp;amp;tid=158&#34;&gt;driver&amp;rsquo;s licenses&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/08/08/1711239&amp;amp;tid=158&amp;amp;tid=17&#34;&gt;ID cards&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/02/12/166232&amp;amp;tid=158&amp;amp;tid=187&amp;amp;tid=17&#34;&gt;loyalty cards&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/07/02/0559208&amp;amp;tid=193&amp;amp;tid=158&#34;&gt;luggage&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://science.slashdot.org/article.pl?sid=04/04/12/1745241&amp;amp;tid=158&amp;amp;tid=126&amp;amp;tid=14&#34;&gt;rifles&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/01/09/1828225&amp;amp;tid=158&amp;amp;tid=98&amp;amp;tid=17&#34;&gt;casino chips&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/10/30/1735225&amp;amp;tid=158&amp;amp;tid=126&#34;&gt;shopping carts&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/09/30/189208&amp;amp;tid=126&amp;amp;tid=158&#34;&gt;soda cans&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/09/29/0253254&amp;amp;tid=158&amp;amp;tid=126&#34;&gt;newspapers&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/08/22/0327247&amp;amp;tid=158&amp;amp;tid=99&#34;&gt;razor blades&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/03/12/0156247&amp;amp;tid=158&#34;&gt;clothing&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/10/05/2029251&amp;amp;tid=158&amp;amp;tid=192&amp;amp;tid=126&amp;amp;tid=17&#34;&gt;books&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=03/01/21/2332252&amp;amp;tid=158&amp;amp;tid=17&#34;&gt;tyres&lt;/a&gt;, etc.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What&amp;rsquo;s even more interesting (scary?) is when it&amp;rsquo;s used to track&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/09/16/0015213&amp;amp;tid=158&#34;&gt;kids&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=05/02/10/1649202&amp;amp;tid=158&#34;&gt;students&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/12/11/1622256&amp;amp;tid=158&amp;amp;tid=215&amp;amp;tid=17&#34;&gt;teens&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/09/05/1730239&amp;amp;tid=158&amp;amp;tid=103&#34;&gt;girlfriends&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=02/08/15/1159249&amp;amp;tid=158&#34;&gt;employees&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=04/10/13/2223249&amp;amp;tid=158&amp;amp;tid=126&#34;&gt;patients&lt;/a&gt; and&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://yro.slashdot.org/article.pl?sid=05/02/16/1827211&amp;amp;tid=123&amp;amp;tid=158&#34;&gt;criminals&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&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;S Anand&lt;/strong&gt; &lt;em&gt;17 Feb 2005 12:00 pm&lt;/em&gt;:
I use a domain hosting service that uses hidden frames to point to my Geocities site. Know of any better (cheaper) ones?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;TOPFRAME&lt;/strong&gt; &lt;em&gt;17 Feb 2005 12:00 pm&lt;/em&gt;:
why do you have to keep the URL at &amp;ldquo;&lt;a href=&#34;http://www.s-anand.net&#34;&gt;http://www.s-anand.net&lt;/a&gt;&amp;rdquo; when I follow a link from your page? It&amp;rsquo;s very irritating actually.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Gmail is not bad</title>
      <link>https://www.s-anand.net/blog/gmail-is-not-bad/</link>
      <pubDate>Tue, 20 Apr 2004 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/gmail-is-not-bad/</guid>
      <description>&lt;p&gt;O&amp;rsquo;Reilly on why &lt;a href=&#34;http://www.oreillynet.com/pub/wlg/4707&#34;&gt;Gmail is not bad&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Gmail is bad</title>
      <link>https://www.s-anand.net/blog/gmail-is-bad/</link>
      <pubDate>Tue, 06 Apr 2004 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/gmail-is-bad/</guid>
      <description>&lt;p&gt;A different perspective on &lt;a href=&#34;http://www.google-watch.org/email.html&#34;&gt;Google mail&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Netizens do not value privacy all that much</title>
      <link>https://www.s-anand.net/blog/netizens-do-not-value-privacy-all-that-much/</link>
      <pubDate>Mon, 30 Sep 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/netizens-do-not-value-privacy-all-that-much/</guid>
      <description>&lt;p&gt;Forbes: &lt;a href=&#34;http://www.forbes.com/forbes/2002/1014/042.html&#34;&gt;netizens don&amp;rsquo;t value privacy all that much&lt;/a&gt;. The average surfer that I meet does not know about privacy, and does not worry too much when explained either.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>How to disappear</title>
      <link>https://www.s-anand.net/blog/how-to-disappear/</link>
      <pubDate>Thu, 27 Jun 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/how-to-disappear/</guid>
      <description>&lt;p&gt;Wired tells you &lt;a href=&#34;http://www.wired.com/wired/archive/10.07/start.html?pg=14&#34;&gt;how to disappear&lt;/a&gt;. Online and offline.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Steal data by recording LED lights</title>
      <link>https://www.s-anand.net/blog/steal-data-by-recording-led-lights/</link>
      <pubDate>Fri, 08 Mar 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/steal-data-by-recording-led-lights/</guid>
      <description>&lt;p&gt;Who&amp;rsquo;d have thought that you could &lt;a href=&#34;http://www.cnn.com/2002/TECH/ptech/03/07/led.snooping.reut/index.html&#34;&gt;steal data by recording LED lights&lt;/a&gt;!&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Spyware</title>
      <link>https://www.s-anand.net/blog/spyware/</link>
      <pubDate>Mon, 11 Feb 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/spyware/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.simplythebest.net/info/spyware.html&#34;&gt;Spyware&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Early hits of Sep 11 attack</title>
      <link>https://www.s-anand.net/blog/early-hits-of-sep-11-attack/</link>
      <pubDate>Tue, 25 Sep 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/early-hits-of-sep-11-attack/</guid>
      <description>&lt;p&gt;Unfortunate, but among the &lt;a href=&#34;http://www.theregister.co.uk/content/57/21836.html&#34;&gt;early hits&lt;/a&gt; of the attack are &lt;a href=&#34;http://www.eff.org/alerts/20010921_eff_wiretap_alert.html&#34;&gt;privacy and free speech&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>PC World best of the Web</title>
      <link>https://www.s-anand.net/blog/pc-world-best-of-the-web/</link>
      <pubDate>Sat, 07 Jul 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/pc-world-best-of-the-web/</guid>
      <description>&lt;p&gt;PC World&amp;rsquo;s &lt;a href=&#34;http://www.idg.net/ic_635284_1793_1-1681.html&#34;&gt;Best of the Web&lt;/a&gt; uncovers gems like &lt;a href=&#34;http://www.safeweb.com/&#34;&gt;Safeweb&lt;/a&gt; (like Anomymizer.com but free), &lt;a href=&#34;http://www.megapixel.net/html/issueindex.html&#34;&gt;MegaPixel&lt;/a&gt; (digital cameras), &lt;a href=&#34;http://www.betanews.com/&#34;&gt;Betanews&lt;/a&gt;, &lt;a href=&#34;http://www.artistdirect.com/&#34;&gt;ArtistDirect&lt;/a&gt; (music search) and &lt;a href=&#34;http://www.multimedialibrary.com/&#34;&gt;Multimedia Library&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Hacking is unavoidable</title>
      <link>https://www.s-anand.net/blog/hacking-is-unavoidable/</link>
      <pubDate>Mon, 02 Apr 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/hacking-is-unavoidable/</guid>
      <description>&lt;p&gt;After seeing &lt;a href=&#34;http://www.zdnet.com/zdnn/stories/news/0,4586,5079958,00.html&#34;&gt;how costly it is to detect hacking&lt;/a&gt;, and the fact that anything you say can be &lt;a href=&#34;http://news.cnet.com/news/0-1005-200-5148422.html&#34;&gt;logged against you&lt;/a&gt;, one wonders if being online is worth it. If you&amp;rsquo;ve got a permanent Internet connection, keep it switched off.&lt;/p&gt;
</description>
    </item>
  </channel>
</rss>
