<?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-tools on S Anand</title>
    <link>https://www.s-anand.net/blog/tag/web-tools/</link>
    <description>Recent content in web-tools on S Anand</description>
    <generator>Hugo -- 0.164.0</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 27 Aug 2012 14:04:23 +0000</lastBuildDate>
    <atom:link href="https://www.s-anand.net/blog/tag/web-tools/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Colour spaces</title>
      <link>https://www.s-anand.net/blog/colour-spaces/</link>
      <pubDate>Mon, 27 Aug 2012 14:04:23 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/colour-spaces/</guid>
      <description>&lt;p&gt;In reality, a colour is a combination of light waves with frequencies between 400-700THz, just like sound is a combination of sound waves with frequencies from 20-20000Hz. Just like mixing various pure notes produces a new sound, mixing various pure colours (like from a rainbow) produces new colours (like white, which isn’t on the rainbow.)&lt;/p&gt;
&lt;p&gt;Our eyes aren’t like our ears, though. They have 3 sensors that are triggered differently by different frequencies. The sensors roughly peak around red, green and blue. Roughly.&lt;/p&gt;
&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;http://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Cones_SMJ2_E.svg/300px-Cones_SMJ2_E.svg.png&#34;&gt;&lt;/p&gt;
&lt;p&gt;It turns out that it’s possible to recreate &lt;strong&gt;most&lt;/strong&gt; (not all) colours using a combination of just red, green and blue by mimicking these three sensors to the right level. That’s why TVs and monitors have red, blue and green cells, and we represent colours using &lt;a href=&#34;http://en.wikipedia.org/wiki/Web_colors#Hex_triplet&#34;&gt;hex triplets&lt;/a&gt; for RRGGBB – like #00ff00 (green).&lt;/p&gt;
&lt;p&gt;There are a number of problems with this from a computational perspective. Conceptually, we think of (R, G, B) as a 3-dimensional cube. That’d mean that 100% red is about as bright as 100% green or blue. Unfortunately, green is a lot brighter than red, which is a lot brighter than blue. Our 3 sensors are not equally sensitive.&lt;/p&gt;
&lt;p&gt;You’d also think that a colour that’s numerically mid-way between 2 colours should &lt;strong&gt;appear&lt;/strong&gt; to be mid-way. Far from it.&lt;/p&gt;
&lt;p&gt;This means that if you’re picking colours using the RGB model, you’re using something very far from the intuitive human way of perceiving colours.&lt;/p&gt;
&lt;p&gt;Which is all very nice, but I’m usually in a rush. So what do I do?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I go to the Microsoft Office &lt;a href=&#34;http://office.microsoft.com/en-us/infopath-help/apply-a-color-scheme-HP001230316.aspx?CTT=1&#34;&gt;colour themes&lt;/a&gt; and use a colour picker to pick one. (I &lt;a href=&#34;https://github.com/sanand0/less/blob/master/color_themes.less&#34;&gt;extracted them&lt;/a&gt; to make life easier.) These are generally good on the eye.&lt;/li&gt;
&lt;li&gt;Failing that, I pick something from &lt;a href=&#34;http://kuler.adobe.com/&#34;&gt;http://kuler.adobe.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Or I go to &lt;a href=&#34;http://colorbrewer2.org/&#34;&gt;http://colorbrewer2.org/&lt;/a&gt; and pick a set of colours&lt;/li&gt;
&lt;li&gt;If I absolutely have to do things programmatically, I use the &lt;a href=&#34;http://tristen.ca/hcl-picker/&#34;&gt;HCL&lt;/a&gt; &lt;a href=&#34;http://vis4.net/blog/posts/avoid-equidistant-hsv-colors/&#34;&gt;colour scheme&lt;/a&gt;. The good part is it’s perceptually uniform. The bad part is: not every interpolation is a valid colour.&lt;/li&gt;
&lt;/ol&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;&lt;a href=&#34;http://isomorphismes.tumblr.com&#34;&gt;isomorphismes&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;13 Mar 2013 5:20 pm&lt;/em&gt;:
What colours can&amp;rsquo;t be created by convex combinations of {R, G, B}? I mean within the visible spectrum.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Markdress</title>
      <link>https://www.s-anand.net/blog/markdress/</link>
      <pubDate>Sat, 03 Dec 2011 18:05:26 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/markdress/</guid>
      <description>&lt;p&gt;This year, I’ve converted the bulk of my content into &lt;a href=&#34;http://daringfireball.net/projects/markdown/&#34;&gt;Markdown&lt;/a&gt; – a simple way of formatting text files in a way that can be rendered into HTML.&lt;/p&gt;
&lt;p&gt;Not out of choice, really. It was the only solution if I wanted to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Edit files on my iPad / iPhone (I’ve started doing that a lot more recently)&lt;/li&gt;
&lt;li&gt;Allow the contents to be viewable as HTML as well as text, &lt;strong&gt;and&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Allow non techies to edit the file&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As a bonus, it’s already the format &lt;a href=&#34;https://github.com/&#34;&gt;Github&lt;/a&gt; and &lt;a href=&#34;https://bitbucket.org/&#34;&gt;Bitbucket&lt;/a&gt; use for markup.&lt;/p&gt;
&lt;p&gt;If you toss &lt;a href=&#34;http://www.dropbox.com/&#34;&gt;Dropbox&lt;/a&gt; into the mix, there’s a powerful solution there. You can share files via Dropbox as Markdown, and publish them as web pages. There are already a number of solutions that let you do this. &lt;a href=&#34;http://droppages.com/&#34;&gt;DropPages.com&lt;/a&gt; and &lt;a href=&#34;http://pancake.io/&#34;&gt;Pancake.io&lt;/a&gt; let you share Dropbox files as web pages. &lt;a href=&#34;http://calepin.co/&#34;&gt;Calepin.co&lt;/a&gt; lets you blog using Dropbox.&lt;/p&gt;
&lt;p&gt;My needs were a bit simpler, however. I sometimes publish Markdown files on Dropbox that I want to see in a formatted way – without having to create an account. Just to test things, or share temporarily.&lt;/p&gt;
&lt;p&gt;Enter &lt;a href=&#34;http://markdress.org/&#34;&gt;Markdress.org&lt;/a&gt;. My project for this morning.&lt;/p&gt;
&lt;p&gt;Just add any URL after markdress.org to render it as Markdown. For example, to render the file at &lt;a href=&#34;http://goo.gl/zTG1q&#34;&gt;http://goo.gl/zTG1q&lt;/a&gt;, visit &lt;a href=&#34;http://markdress.org/goo.gl/zTG1q&#34;&gt;http://markdress.org/goo.gl/zTG1q&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To test it out, create any text file in your Dropbox public folder, get the public link and append it to &lt;a href=&#34;http://markdress.org/&#34;&gt;http://markdress.org/&lt;/a&gt; without the http:// prefix.&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;Gee&lt;/strong&gt; &lt;em&gt;14 Jan 2012 12:38 am&lt;/em&gt;:
Great news. And all the best in your new ventures. Meanwhile, I made a simple bookmarklet for you: &lt;a href=&#34;https://gist.github.com/1609547&#34;&gt;https://gist.github.com/1609547&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://thejeshgn.com&#34;&gt;Thejesh GN&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;5 Dec 2011 6:47 am&lt;/em&gt;:
Check this
&lt;a href=&#34;http://markdoc.org&#34;&gt;http://markdoc.org&lt;/a&gt;
I have been using it locally for sometime. Its cool.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;4 Dec 2011 12:18 pm&lt;/em&gt;:
James, your suggestion on following URLs is spot-on! I&amp;rsquo;ll put this in (one of these days, when I get back to this&amp;hellip;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;6 Dec 2011 10:10 pm&lt;/em&gt;:
You need to have an empty line before a list. For example:
&lt;h1 id=&#34;test&#34;&gt;Test&lt;/h1&gt;
This is a list:
* one
* two
* three&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://osweb.dk&#34;&gt;Michael Lajlev&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;5 Dec 2011 2:12 pm&lt;/em&gt;:
I seem to struggle getting list items to work &lt;a href=&#34;http://markdress.org/dl.dropbox.com/u/623576/test.md&#34;&gt;http://markdress.org/dl.dropbox.com/u/623576/test.md&lt;/a&gt;
Any idea?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gee&lt;/strong&gt; &lt;em&gt;12 Jan 2012 9:14 pm&lt;/em&gt;:
Markdress is great. I have it running on my server. I would like to render files in a directory adjacent to, or inside the app folder, instead of entering a URL path each time. I would like to enter just &lt;code&gt;filename.txt&lt;/code&gt; and it would default back to (effectively) &lt;code&gt;/markdress/filename.txt&lt;/code&gt;
I looked over index.php and tried a few things but I can&amp;rsquo;t get relative files to render. Is this an enhancement you&amp;rsquo;ve considered? Thanks for the great tool.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;13 Jan 2012 12:51 am&lt;/em&gt;:
I personally use this sort of a variant, but havent gotten around to making the same changes on markdress. I will do that over the next few days, once I settle down.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://bootcamp.jfdi.asia/2011/12/03/the-bootcamp-blog-begins/&#34;&gt;The Bootcamp Blog Begins | JFDI–Innov8 2012 Bootcamp&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;3 Dec 2011 8:16 pm&lt;/em&gt; &lt;em&gt;(pingback)&lt;/em&gt;:
[&amp;hellip;] kind of people who can whip up something like Markdress in a [&amp;hellip;]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://blog.sublogic.com/&#34;&gt;James Manning&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;4 Dec 2011 9:08 am&lt;/em&gt;:
Awesome! Nicely done!
Not sure if it&amp;rsquo;s by design or not, but FWIW the example given seems to show that relative url&amp;rsquo;s aren&amp;rsquo;t handled correctly - the bottom of this page:
&lt;a href=&#34;http://daringfireball.net/projects/markdown/index.text&#34;&gt;http://daringfireball.net/projects/markdown/index.text&lt;/a&gt;
has this relative url:
[tfmenu]: /graphics/markdown/mt_textformat_menu.png
which gets faithfully rendered into:
That fails, of course, with the attempted get operation returning:
&lt;a href=&#34;http://markdress.org/graphics/markdown/mt&#34;&gt;http://markdress.org/graphics/markdown/mt&lt;/a&gt;_textformat_menu.png
Could not fetch http://graphics/markdown/mt_textformat_menu.png
FWIW, inserting a base tag in the head seems to work fine, like:
However, it would have to be the &amp;lsquo;real&amp;rsquo; url in the base - IOW, this doesn&amp;rsquo;t work:
On a related note, IMHO it seems like markdress should handle redirects and &amp;lsquo;pass through&amp;rsquo; as a redirect to the markdress version.
IOW, looking at this example request from the post:
&lt;a href=&#34;http://markdress.org/goo.gl/zTG1q&#34;&gt;http://markdress.org/goo.gl/zTG1q&lt;/a&gt;
When markdress requested the page and got back a redirect, instead of following it, it should have instead passed back a redirect to:
&lt;a href=&#34;http://markdress.org/daringfireball.net/projects/markdown/index.text&#34;&gt;http://markdress.org/daringfireball.net/projects/markdown/index.text&lt;/a&gt;
IMHO, that&amp;rsquo;s a better user experience as it&amp;rsquo;s more clear what&amp;rsquo;s getting served up (and it would reflect in the title as well). If/when caching was added (assuming it&amp;rsquo;s not there now), then you&amp;rsquo;d want to have the canonical url for targets anyway. :)
That behavior isn&amp;rsquo;t required to fix the relative-url issue, but since you&amp;rsquo;ll have to know what requests redirect to (the call may be implicitly following it now, so you don&amp;rsquo;t currently know?), then you&amp;rsquo;ll have the necessary info to do this piece as well. :)
Thanks again for marking markdress! It&amp;rsquo;s definitely going to be incredibly useful!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://jeffbyrn.es/&#34;&gt;Jeff Byrnes&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;6 Dec 2012 3:14 pm&lt;/em&gt;:
Markdress appears to have expired, any chance of its return?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;7 Dec 2012 3:53 am&lt;/em&gt;:
I didn&amp;rsquo;t think anyone was using it &amp;ndash; so I just let the domain expire.
Alternatives are at &lt;a href=&#34;https://github.com/sanand0/markdress#alternatives&#34;&gt;https://github.com/sanand0/markdress#alternatives&lt;/a&gt;. You could also host the code yourself.&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>Make backgrounds transparent</title>
      <link>https://www.s-anand.net/blog/make-backgrounds-transparent/</link>
      <pubDate>Wed, 28 Apr 2010 06:57:37 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/make-backgrounds-transparent/</guid>
      <description>&lt;p&gt;This is the simplest way that I’ve found to make the background colour of an image transparent.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;http://portableapps.com/apps/graphics_pictures/gimp_portable&#34;&gt;Download GIMP&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Open your image. I’ll pick this one:&lt;br&gt;
&lt;a href=&#34;https://www.s-anand.net/blog/assets/killme1.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/killme1.webp&#34;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Optional: Select Image – Mode – RGB if it’s not RGB.&lt;/li&gt;
&lt;li&gt;Select Colors – Colors to Alpha…&lt;br&gt;
&lt;a href=&#34;https://www.s-anand.net/blog/assets/killme2.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/killme2.webp&#34;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Click on the white button next to “From” and select the eye-dropper.&lt;a href=&#34;https://www.s-anand.net/blog/assets/killme3.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/killme3.webp&#34;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Pick the green colour on the image, and click OK&lt;br&gt;
&lt;a href=&#34;https://www.s-anand.net/blog/assets/killme4.webp&#34;&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://www.s-anand.net/blog/assets/killme4.webp&#34;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The anti-aliasing is preserved as well.&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;Vinu&lt;/strong&gt; &lt;em&gt;28 Apr 2010 11:21 pm&lt;/em&gt;:
There is a tool in MS Office products (Word, Excel, PowerPoint) to set the transparent color as well, assuming of course that you plan to embed the image in a document&amp;hellip;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;29 Apr 2010 7:19 am&lt;/em&gt;:
Need to use the image in web pages, mostly. Would this MS Office tool still work?&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.s-anand.net/&#34;&gt;S Anand&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;29 Apr 2010 7:20 am&lt;/em&gt;:
True, Ravi. I need to automate this task, though. Tried ImageMagick at first, but gave up after a while.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vinu&lt;/strong&gt; &lt;em&gt;30 Apr 2010 5:51 pm&lt;/em&gt;:
Good question. If you use a drag and drop, WYSIWYG web page editor, then perhaps it will translate. I tested it between Powerpoint &amp;amp; Word and it worked.
Here&amp;rsquo;s the location of the control on PowerPoint 2007: on the Picture Tools /Format ribbon&amp;gt; Recolor (in the Adjust group, first from the left) drop down to &amp;ldquo;Set Transparent Color&amp;rsquo;.
Keyboard accelerator = Alt + J P E S.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://www.raviatluri.in&#34;&gt;Atluri&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;28 Apr 2010 3:59 pm&lt;/em&gt;:
This works well only for text and images with strong contrast against their background
text as an image is outdated ;)
and for images i would use blend-&amp;gt;merge-&amp;gt;eraser for edges!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;http://bit.ly/vipulrawal&#34;&gt;Vipul&lt;/a&gt;&lt;/strong&gt; &lt;em&gt;13 May 2010 5:31 am&lt;/em&gt;:
Remove background option in MS-PowerPoint 2010 works even better. In love with that feature. :)&lt;/li&gt;
&lt;/ul&gt;
&lt;!-- wp-comments-end --&gt;
</description>
    </item>
    <item>
      <title>15 things with RSS</title>
      <link>https://www.s-anand.net/blog/15-things-with-rss/</link>
      <pubDate>Thu, 23 Jun 2005 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/15-things-with-rss/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://timyang.com/comments.php?id=630_0_1_0_C&#34;&gt;15 things you can do with RSS&lt;/a&gt; &amp;ndash; like &lt;a href=&#34;http://rssmix.com/&#34;&gt;mix RSS scripts&lt;/a&gt;, &lt;a href=&#34;http://www.wotzwot.com/rssxl.php&#34;&gt;convert any page to RSS&lt;/a&gt;, etc.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Google hacks from BuzzToolBox</title>
      <link>https://www.s-anand.net/blog/google-hacks-from-buzztoolbox/</link>
      <pubDate>Mon, 10 Mar 2003 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/google-hacks-from-buzztoolbox/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.buzztoolbox.com/google/&#34;&gt;Google hacks on BuzzToolBox.com&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Audio blogging tools</title>
      <link>https://www.s-anand.net/blog/audio-blogging-tools/</link>
      <pubDate>Sat, 31 Aug 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/audio-blogging-tools/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.deadlybloodyserious.com/throat/&#34;&gt;Garth is working on audio-blogging tools&lt;/a&gt;. Given the amount of poetry I see among bloggers, this might unleash a host of blog-singers.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Convert pictures to ASCII</title>
      <link>https://www.s-anand.net/blog/convert-pictures-to-ascii/</link>
      <pubDate>Thu, 24 Jan 2002 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/convert-pictures-to-ascii/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://pic3html.vvv.tf/&#34;&gt;Convert pictures to ASCII&lt;/a&gt;. In colour. Quite impressive.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Picture search</title>
      <link>https://www.s-anand.net/blog/picture-search/</link>
      <pubDate>Wed, 12 Dec 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/picture-search/</guid>
      <description>&lt;p&gt;A versatile &lt;a href=&#34;http://www.picsearch.com/&#34;&gt;picture search&lt;/a&gt; tool.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Morse code translator</title>
      <link>https://www.s-anand.net/blog/morse-code-translator/</link>
      <pubDate>Tue, 11 Dec 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/morse-code-translator/</guid>
      <description>&lt;p&gt;.- - .-.. .- &amp;hellip; - a &lt;a href=&#34;http://www.cyberscout.org/roland/normal/train/sea/morse/morset.html&#34;&gt;morse code translator&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Google image search</title>
      <link>https://www.s-anand.net/blog/google-image-search/</link>
      <pubDate>Sat, 07 Jul 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/google-image-search/</guid>
      <description>&lt;p&gt;Google has an &lt;a href=&#34;http://images.google.com&#34;&gt;image search&lt;/a&gt; with 150 million images. (While on the topic of Google, try this search on &lt;a href=&#34;http://www.google.com/search?num=30&amp;amp;query=dead.long.live&#34;&gt;dead.long.live&lt;/a&gt;.)&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Agentland</title>
      <link>https://www.s-anand.net/blog/agentland/</link>
      <pubDate>Sun, 01 Apr 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/agentland/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.agentland.com/&#34;&gt;Agentland&lt;/a&gt; is a portal for online agents &amp;ndash; somewhat like &lt;a href=&#34;http://www.apps.com&#34;&gt;Apps.com&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Create PDF files online</title>
      <link>https://www.s-anand.net/blog/create-pdf-files-online/</link>
      <pubDate>Tue, 13 Mar 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/create-pdf-files-online/</guid>
      <description>&lt;p&gt;Adobe lets you &lt;a href=&#34;http://createpdf.adobe.com&#34;&gt;create PDF files on the Web&lt;/a&gt; without using any software.&lt;/p&gt;
</description>
    </item>
    <item>
      <title>Search engine with site preview</title>
      <link>https://www.s-anand.net/blog/search-engine-with-site-preview/</link>
      <pubDate>Fri, 23 Feb 2001 12:00:00 +0000</pubDate>
      <guid>https://www.s-anand.net/blog/search-engine-with-site-preview/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.room102.com&#34;&gt;Room102&lt;/a&gt; is a search engine that previews websites.&lt;/p&gt;
</description>
    </item>
  </channel>
</rss>
