<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Think Simple</title>
	<atom:link href="http://www.think-simple.in/feed" rel="self" type="application/rss+xml" />
	<link>http://www.think-simple.in</link>
	<description>Rants on Notes, Office, technology...</description>
	<lastBuildDate>Mon, 10 Nov 2008 18:33:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Open a document using its UNID &#8211; Formula ..</title>
		<link>http://www.think-simple.in/archives/18</link>
		<comments>http://www.think-simple.in/archives/18#comments</comments>
		<pubDate>Fri, 07 Nov 2008 10:30:47 +0000</pubDate>
		<dc:creator>Rakesh</dc:creator>
				<category><![CDATA[SnTT]]></category>
		<category><![CDATA[formula]]></category>
		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://www.think-simple.in/?p=18</guid>
		<description><![CDATA[My colleague recently had this request to open a document from a different db given its UNID and DB path (using only formula). Although simple, when you search the web you only see solutions that either use LS or extra &#8230; <a href="http://www.think-simple.in/archives/18">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My colleague recently had this request to open a document from a different db given its UNID and DB path (using only formula).</p>
<p>Although simple, when you search the web you only see <a href="http://www.notesninjas.com/A555F9/nn.nsf/ByAlias/OpenParent" target="_blank">solutions</a> that either use LS or extra view mechanism.</p>
<p>Here is a simpler solution:</p>
<p style="padding-left: 30px;"><span style="color: #3366ff;">msg:=&#8221;notes://&#8221;+server+&#8221;/&#8221; + DBReplicaID + &#8220;/0/&#8221; + docid + &#8220;?OpenDocument&#8221;;<br />
@URLOpen(msg)</span></p>
<p>This can be very useful when you need to open the parent document from a link in child document.</p>
<p>I don&#8217;t know of any shortcomings of this approach, let me know if you can think of any.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.think-simple.in/archives/18/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Magic (8) Ball</title>
		<link>http://www.think-simple.in/archives/4</link>
		<comments>http://www.think-simple.in/archives/4#comments</comments>
		<pubDate>Wed, 06 Aug 2008 16:48:53 +0000</pubDate>
		<dc:creator>Rakesh</dc:creator>
				<category><![CDATA[formula]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[Magic 8 ball]]></category>

		<guid isPermaLink="false">http://blog.rakeshmehta.com/?p=5</guid>
		<description><![CDATA[Here is a short formula I wrote a long time ago to simulate the Magic (8) Ball&#8230; I have added this as a separate button on my custom toolbar and play with every now and the hope you like it.. &#8230; <a href="http://www.think-simple.in/archives/4">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a short formula I wrote a long time ago to simulate the Magic (8) Ball&#8230;</p>
<p>I have added this as a separate button on my custom toolbar and play with every now and the</p>
<p>hope you like it..</p>
<p><span style="color: #0000ff;">REM {Formula to throw Magic 8 Ball predictions. EnJoy!};</span></p>
<p><span style="color: #0000ff;">opt:=&#8221;As I see it, yes&#8221;:&#8221;Ask again later&#8221;:&#8221;Better not tell you now&#8221;:&#8221;Cannot predict now&#8221;:&#8221;Concentrate and ask again&#8221;:&#8221;Don&#8217;t count on it&#8221;:&#8221;It is certain&#8221;:&#8221;It is decidedly so&#8221;:&#8221;Most likely&#8221;:&#8221;My reply is no&#8221;:&#8221;My sources say no&#8221;:&#8221;Outlook good&#8221;:&#8221;Outlook not so good&#8221;:&#8221;Reply hazy, try again&#8221;:&#8221;Signs point to yes&#8221;:&#8221;Very doubtful&#8221;:<br />
&#8220;Without a doubt&#8221;:&#8221;Yes&#8221;:&#8221;Yes &#8211; definitely&#8221;:&#8221;You may rely on it&#8221;;</span></p>
<p><span style="color: #0000ff;">rand:=@Round((19*@Random ) + 1);<br />
@Prompt([Ok];&#8221;Magic 8 Ball says &#8220;; opt[rand])</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.think-simple.in/archives/4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phantom documents</title>
		<link>http://www.think-simple.in/archives/8</link>
		<comments>http://www.think-simple.in/archives/8#comments</comments>
		<pubDate>Mon, 26 May 2008 00:27:40 +0000</pubDate>
		<dc:creator>Rakesh</dc:creator>
				<category><![CDATA[SnTT]]></category>
		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://blog.rakeshmehta.com/?p=6</guid>
		<description><![CDATA[We recently had a situation where there were a lot more documents in the db than visible.  This can happen when the document&#8217;s Readers field has a particular name/role not assigned to anybody. In our case though the db did &#8230; <a href="http://www.think-simple.in/archives/8">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We recently had a situation where there were a lot more documents in the db than visible.  This can happen when the document&#8217;s Readers field has a particular name/role not assigned to anybody. In our case though the db did not have any Readers controlled form. We had to recover /delete those documents (we later found out that a user had accidentally copied documents from another db(which was readers controlled) and pasted here).<br />
The simplest way to resolve this is to use the <a title="Full access administrator" href="http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/0682ffec112756fd85256f110049e50b?OpenDocument" target="_blank">Full access administrator</a> feature and read all documents, but, what if you do not have that luxury?</p>
<p>Here is how you recover those docs having just Manager access to the db.</p>
<ul>
<li>Create a new view in the db to show all docs (select @all)</li>
<li>Add a categorized column $Readers as the value. This would add categories for all the readers fields used in the db</li>
<li>Spot the categories without any documents and note the category name</li>
<li>If the category is a role, add it as part of the current db&#8217;s acl with access to yourself</li>
</ul>
<p>All documents would magically appear again to be processed /deleted.</p>
<p>This technique can be used to troubleshoot so many other Readers field issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.think-simple.in/archives/8/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Something New&#8230;</title>
		<link>http://www.think-simple.in/archives/5</link>
		<comments>http://www.think-simple.in/archives/5#comments</comments>
		<pubDate>Wed, 03 Jan 2007 10:50:57 +0000</pubDate>
		<dc:creator>Rakesh</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://blog.rakeshmehta.com/?p=1</guid>
		<description><![CDATA[Hello, and welcome to my blog! I&#8217;m not sure exactly what I&#8217;ll be writing about, but having started this blog for more than a year now, I am compelled to finally put some content in it. I am a developer &#8230; <a href="http://www.think-simple.in/archives/5">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello, and welcome to my blog! I&#8217;m not sure exactly what I&#8217;ll be writing about, but having started this blog for more than a year now, I am compelled to finally put some content in it.</p>
<p>I am a developer with expertise in Lotus notes/VBA/C# and interest in so many other platforms. I am mainly looking to write about Notes, and its interaction with other technologies.<br />
<span style="color: #993366;"><em> <strong>Watch this space . . . </strong></em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.think-simple.in/archives/5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
