<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="/rss20.xsl" media="screen"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://slate.blogspirit.com/musings/index.rss" rel="self" type="application/rss+xml" />
<title>Slate - musings</title>
<description>Rolling Ideas</description>
<link>http://slate.blogspirit.com/musings/</link>
<lastBuildDate>Thu, 12 Jul 2007 09:12:21 +0400</lastBuildDate>
<generator>blogSpirit.com</generator>
<copyright>All Rights Reserved</copyright>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/11/24/comments-stopped.html</guid>
<title>Comments Stopped</title>
<link>http://slate.blogspirit.com/archive/2005/11/24/comments-stopped.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<pubDate>Thu, 24 Nov 2005 17:25:00 +0400</pubDate>
<description>
&lt;p&gt;For quite sometime have been receiving a lot of comment-spam here. So had to close this now.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/11/18/the-current-hangout.html</guid>
<title>The current hangout</title>
<link>http://slate.blogspirit.com/archive/2005/11/18/the-current-hangout.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<pubDate>Fri, 18 Nov 2005 16:28:33 +0400</pubDate>
<description>
&lt;a href=&quot;http://www.flickr.com&quot;&gt;Flickr&lt;/a&gt; has been lately my current hangout. Some of the photos are really wonderful. You get to see the snaps from alot many people from alot many places. It never had been so easy to see far off &lt;a href=&quot;http://www.flickr.com/photos/risumiru/63857330/&quot;&gt;places&lt;/a&gt;, &lt;a href=&quot;http://www.flickr.com/photos/meriem/50293546/in/set-743495/&quot;&gt;people&lt;/a&gt; and &lt;a href=&quot;http://www.flickr.com/photos/meriem/33749498/in/set-748603/&quot;&gt;amazing monuments&lt;/a&gt;.
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/08/27/my-best-friend-s-wedding.html</guid>
<title>My Best Friend's Wedding</title>
<link>http://slate.blogspirit.com/archive/2005/08/27/my-best-friend-s-wedding.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<pubDate>Sat, 27 Aug 2005 16:10:00 +0400</pubDate>
<description>
Its Wedding bliss for my best friend &lt;a target=&quot;_blank&quot; href= &quot;http://zd.blogspirit.com&quot;&gt;Zaheed Dokadia&lt;/a&gt;, and here I am miles away from home. Though I will be reaching Bombay just 2 weeks later.&lt;br /&gt; &lt;br /&gt; ZD, as he is often called, has been a buddy for years now and we share the same profession (Lotus Notes Guyz ofcourse :).&lt;br /&gt; &lt;br /&gt; Congrats ZD and have a nice time. See you in Bombay soon.
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/06/07/making_code_work.html</guid>
<title>Making Code Work</title>
<link>http://slate.blogspirit.com/archive/2005/06/07/making_code_work.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Lotus</category>
<category>Musings</category>
<category>My Work</category>
<pubDate>Tue, 07 Jun 2005 20:12:59 +0400</pubDate>
<description>
Last so many days were spent on Code Review and Unit Testing for my current project application. I see Code Review as a very important &amp; fruitful exercise. It helps removing many bugs by just following code and those which may not come up in testing, as Test Cases are not always exhaustive for each and every condition. By doing a code review you can mentally test each programming constructs and paths.&lt;br /&gt;&lt;br /&gt;Testing brings to surface some very peculiar issues and which makes you hate LN (my project is still for R5). Lotus free form structure for storage is a boon as well as a bane. While it helps rapid development without the need to bother about relational constraints and data structure normalization, but this sometimes leads to issues when Data Integrity is of concern. The behavior of various NotesObjects and their methods which are based on the FT Index are unpredictable unlike RDBMS where you are assured of a consistent implementation. Index update delays or In-memory objects statuses can lead you to bang your head against the Screen figuring out the problem reasons.&lt;br /&gt;&lt;br /&gt;So here I have lot of my code using NotesView.getDocumentByKey methods to put basic referential integrity among related data. Yeah a RDBMS would have been a best option here, but as pointed out in the earlier post - &lt;a href=&quot;http://slate.blogspirit.com/archive/2005/05/29/code_works.html&quot; target=&quot;_blank&quot;&gt;Code Works&lt;/a&gt;, one of the objective was to reuse the in-place setup of Lotus Workflow/Notes and thus minimize investment costs.&lt;br /&gt;&lt;br /&gt;Now we have checks at various places to not allow data duplication if those records with matching keywords exist. This works in ideal situations, situations where after every document delete/update you give Notes sufficient time to update its Index or cache or whatever it is. But our test cases failed when we deleted document and immediately in the same session created new records. So our hidden views, used by getDocumentByKey are not getting immediately refreshed. Even closing all application windows won't work. So is this Indexing problem? Tweaking any View/DB property won't help. And when we restart Notes after deleting documents, the validation works. So is this Notes client cache problem? But these methods don't have any &quot;Nocache&quot; attribute. &lt;br /&gt;&lt;br /&gt;Trial and error and we used NotesDatabase.search for these checks instead of NotesView.getDocumentByKey and this works for any kind of monkey-usage of the application. And we had no problem here with View Index or cache or whatever it is. But theres issue of App. performance using this method. &lt;a href=&quot;http://lono.blogspirit.com&quot; target=&quot;_blank&quot;&gt;Ashish&lt;/a&gt; suggested of using NotesView.Refresh before invoking the getDocument methods. Now this method is suppose to update your NotesView objects with the datastore image during the same code process, so any further modifications/reference has access to the current document copies/count. But in my case I am performing a process, close &amp; restart my application and then deleting/updating some documents manually to create Test conditions and again running the code process to repeat the earlier action. This ideally means all my variables/objects are destroyed &amp; recreated - an if recreated then they are suppose to be representing the latest datastore state.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center&quot;&gt;&lt;a href=&quot;http://slate.blogspirit.com/images/medium_code1.jpg&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://slate.blogspirit.com/images/medium_code1.jpg&quot; alt=&quot;medium_code1.jpg&quot; style=&quot;border-width: 0; margin: 0.7em 0;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;But it worked. A combination of NotesView.refresh and NotesView.getDocumentbykey gives you the current state of data. So this was a case of in-memory objects getting cached for the session. But why can't we have application session which destroys all in-memory objects as soon as when application is out of scope without having to restart Notes or doing manual Object destroy.
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/05/29/code_works.html</guid>
<title>Code Works</title>
<link>http://slate.blogspirit.com/archive/2005/05/29/code_works.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<category>My Work</category>
<pubDate>Sun, 29 May 2005 10:42:33 +0400</pubDate>
<description>
This would be the first of many posts to come, which I intend to put on the blog about my current work assignments. (I hope I do keep this resolution.)&lt;br /&gt;&lt;br /&gt;For last 3 weeks I am involved in building an HRMS module which would enable a new online workflow in my organization. And of course the workflow and its related features will be built on Lotus Softwares. Though the complete solution is not pure Lotus and it involves an HR ERP built on Sybase/Powerbuilder as the main system. This Lotus based workflow is a subsystem which is tightly integrated with the Sybase backend. For the Lotus part we are using Lotus Workflow, Lotus Connectors and Notes.&lt;br /&gt;&lt;br /&gt;The functionalities which are on Lotus Software will be used by a user base of 4000, though the transactions will be handled for 15000 employees, which include a large number of those who don't have access to PC/Lotus.&lt;br /&gt;&lt;br /&gt;The objective of building this module on Lotus was to minimize the license requirements for Sybase and the organization can reuse their existing Lotus platform. Thus the users won't have direct connection with Sybase database.&lt;br /&gt;&lt;br /&gt;This workflow is governed by a complex and huge number of Rules and Parameters, based on the group to which the employee belongs too. The workflow and the functionality on the Lotus are based on these Rules/Parameters, which are generated and stored in Sybase.&lt;br /&gt;&lt;br /&gt;That's where the design challenge for this system is involved, but after 3 weeks of intense development the Application is taking shape and ready to be tested. Its really a Joy to see the code works.
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/04/26/the_acid_test.html</guid>
<title>The ACID Test</title>
<link>http://slate.blogspirit.com/archive/2005/04/26/the_acid_test.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<category>Technology</category>
<category>Web</category>
<pubDate>Tue, 26 Apr 2005 12:51:00 +0400</pubDate>
<description>
The &lt;a href=&quot;http://www.webstandards.org&quot; target=&quot;_blank&quot;&gt;Webstandards.org&lt;/a&gt; has released a new version of their web browser standard conformity test.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.webstandards.org/act/acid2/test.html&quot; target=&quot;_blank&quot;&gt;Acid2&lt;/a&gt; is a test page for web browsers published by &lt;a href=&quot;http://www.webstandards.org&quot; target=&quot;_blank&quot;&gt;The Web Standards Project (WaSP)&lt;/a&gt;. Using this test page the web browser vendors can ensure their product supports features that are part of the existing Web Standards. And the challenge is to render the ACID2 page correctly. If the browser supports the standard features, the smiley face will appear and if something is wrong the face will be distored.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The ACID2 desired result&lt;/strong&gt;&lt;br /&gt;&lt;img src=&quot;http://slate.blogspirit.com/images/Acid2.png&quot; alt=&quot;&quot; style=&quot;border-width: 0; margin: 0.7em 1.4em 0.7em 0;&quot; /&gt;&lt;br /&gt;&lt;BR&gt;&lt;br /&gt;&lt;div style=&quot;text-align: left; float: left&quot;&gt;&lt;br /&gt;&lt;strong&gt;Firefox 1.0.1 Result&lt;/strong&gt;&lt;br /&gt;&lt;img src=&quot;http://slate.blogspirit.com/images/FireFox1.0.1.PNG&quot; alt=&quot;&quot; style=&quot;border-width: 0;  margin: 0.7em 0 1.4em 0.7em;&quot; width=&quot;150px&quot; height=&quot;200px&quot; /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: right&quot;&gt;&lt;strong&gt;IE 6.0 Result&lt;/strong&gt;&lt;img src=&quot;http://slate.blogspirit.com/images/IE6.0.PNG&quot; alt=&quot;&quot; style=&quot;border-width: 0; margin: 0.7em 0;&quot; width=&quot;150px&quot; height=&quot;200px&quot; /&gt;&lt;/div&gt;
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/04/26/and_that_s_broadband.html</guid>
<title>And that's Broadband!</title>
<link>http://slate.blogspirit.com/archive/2005/04/26/and_that_s_broadband.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<category>Technology</category>
<category>Web</category>
<pubDate>Tue, 26 Apr 2005 11:14:04 +0400</pubDate>
<description>
In this e-age, the net conectivity is definitely coming out as a Standard of living factor. And it should no longer be a luxour for chosen few to receive GPBS speed for home net-usage.&lt;br /&gt;&lt;br /&gt;The news here is, the Hong Kong residents are having affordable 1GBPS broadband access.&lt;br /&gt;&lt;br /&gt;And now this makes people like us who are still in kbps and mbps look so poor :)&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.allheadlinenews.com/articles/1114485207&quot; target=&quot;_blank&quot;&gt;Read More&lt;/a&gt;
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/04/23/wow_-_the_ultimate_domino_case_study.html</guid>
<title>Wow - The ultimate Domino Case Study</title>
<link>http://slate.blogspirit.com/archive/2005/04/23/wow_-_the_ultimate_domino_case_study.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Collaboration</category>
<category>Musings</category>
<category>Web</category>
<pubDate>Sat, 23 Apr 2005 14:53:35 +0400</pubDate>
<description>
Got this info from Ed Brill. Someone happend to come across an &lt;a href=&quot;http://www.microsoft.com/BusinessSolutions/industrysolutions.aspx&quot; target=&quot;_blank&quot;&gt;M$ Site&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The fact that this web page seamlessly merge with ASP shows the Domino Advantage, and more over its done well with Release 4.6. But someone have to tell M$ to move to R6. &lt;br /&gt;&lt;br /&gt;Follow up this &lt;a href=&quot;http://www.edbrill.com/ebrill/edbrill.nsf/dx/a-surprising-domino-4.6.2-website?opendocument&quot; target=&quot;_blank&quot;&gt;post@EDBrill.com&lt;/a&gt;
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/04/06/news_news_and_news.html</guid>
<title>News, News, and News!</title>
<link>http://slate.blogspirit.com/archive/2005/04/06/news_news_and_news.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<pubDate>Wed, 06 Apr 2005 13:45:00 +0400</pubDate>
<description>
Google has doubled the GMail size to 2GB per mail box and has removed restriction on Attachment size. But then thers also Hitachi planning to make 1Tera Bytes (1000GB) Hard Disk as mainstream by 2007 for Personal Computers.&lt;br /&gt;&lt;br /&gt;I will be visiting my hometown Bombay from 28th April till 6th May. So thats a gr8 News :)
</description>
</item>
<item>
<guid isPermaLink="true">http://slate.blogspirit.com/archive/2005/02/14/hurray.html</guid>
<title>Hurray</title>
<link>http://slate.blogspirit.com/archive/2005/02/14/hurray.html</link>
<author>noreply@blogspirit.com (Subhan SATOPAY)</author>
<category>Musings</category>
<pubDate>Mon, 14 Feb 2005 15:25:00 +0400</pubDate>
<description>
I cleared my IBM DB2 exam!!! &lt;br /&gt;&lt;br /&gt;Nextstep....yet to decide, either Lotus R6 upgrade or IBM DB Business Intelligence exam.
</description>
</item>
</channel>
</rss>