<?xml version="1.0" encoding="iso-8859-1"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Nevermind.dk</title>
    <link>http://nevermind.dk</link>
    <description>NeverMind.dk...Lotus Domino, Life...</description>
    <item>
      <title>Creating a folder from a view design, easy right?</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/creating-a-folder-from-a-view-design-easy-right</link>
      <description>You would think that it would be possible to create a folder from a certain view design in LotusScript, right?. 

Creating a folder in LS is very easy: 

  Setdb=session.Currentdatabase
 db.Enablefolder("MyNewFolder")

But where does the design come from? The default view? 

I haven't checked, but it is very clear that there should of course have been another parameter in the
"EnableFolder" call indicating which view the folder should be created from to make it any useful.

Fortunately there is an undocumented call to fix the problem. From version 5.03 a hidden formula function exists:

@UpdateViewDesign("foldertarget";"viewsource")

So by calling:

Dim session As New NotesSession
Dim db As NotesDatabase

Setdb=session.Currentdatabase
db.Enablefolder("MyNewFolder")
Evaluate(|@UpdateViewDesign("MyNewFolder";"SourceView")|)       

the folder is "created" from a sourceview.</description>
      <pubDate>Sun, 27 Jun 2010 22:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/creating-a-folder-from-a-view-design-easy-right</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-06-27T22:00:00Z</dc:date>
    </item>
    <item>
      <title>Nice when your kids still think your are a hero</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/nice-when-your-kids-still-think-your-are-a-hero</link>
      <description>Yesterday I was ranked by my young sons (age 6 and 7) to be the best guitarist in the world! 
 
This is their ranking:

1. Me (Dad)
2. Eddie Van Halen (Van Halen)
3. Tim Christensen (Dizzy Miss Lizzy) 

That warms my heart :-)  

I few strokes ....and anyone else would question this ranking I am sure ....   :-)</description>
      <pubDate>Sun, 30 May 2010 22:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/nice-when-your-kids-still-think-your-are-a-hero</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-05-30T22:00:00Z</dc:date>
    </item>
    <item>
      <title>SMTP Server: Listener failure: bindsock is missing</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/smtp-server-listener-failure-bindsock-is-missing</link>
      <description>Suddenly my Domino server wasn't receiving mail anymore.

 I had upgraded from Centos 5.4 to version 5.5 via Webmin. It all went well.

This morning I found out to my surprise, I was not receiving mail anymore, so I looked in the Log database.     
...</description>
      <pubDate>Wed, 19 May 2010 22:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/smtp-server-listener-failure-bindsock-is-missing</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-05-19T22:00:00Z</dc:date>
    </item>
    <item>
      <title>Those where the days, when RNext, Garnet was coming out soon and everything look shiny and bright</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/those-where-the-days-when-rnext-garnet-was-coming-out-soon-and-everything-look-shiny-and-bright</link>
      <description />
      <pubDate>Sat, 01 May 2010 22:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/those-where-the-days-when-rnext-garnet-was-coming-out-soon-and-everything-look-shiny-and-bright</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-05-01T22:00:00Z</dc:date>
    </item>
    <item>
      <title>8.5.2 - loosing my working sets completely</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/852---loosing-my-working-sets-completely</link>
      <description>I have installed the 8.5.2  Beta on 3 computers. All 3 went well, but when I opened the designer yesterday one of them, the working set just looked like this.   ...</description>
      <pubDate>Thu, 22 Apr 2010 22:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/852---loosing-my-working-sets-completely</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-04-22T22:00:00Z</dc:date>
    </item>
    <item>
      <title>Annoying Windows bug,feature,limit : Directory name is too long  - and the fix.</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/annoying-windows-bugfeaturelimit--directory-name-is-too-long---and-the-fix</link>
      <description>One day I discovered that some program had created a very deep directory structure on my disc, recursively. 

The same 3 folders beneath one of the folders. I  then tried to deleted it in the Explorer, but I would get an error "File name is too long". I could not delete any folders.

The problem is that the Explorer has short limit on how long a file/directory name can be, 256 I think. 
I tried using DEL from a command prompt, but I would get the same error. 

I was of course afraid of the structure of the NTFS file system somehow was messed up</description>
      <pubDate>Thu, 22 Apr 2010 22:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/annoying-windows-bugfeaturelimit--directory-name-is-too-long---and-the-fix</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-04-22T22:00:00Z</dc:date>
    </item>
    <item>
      <title>Calling the Domino C-API from an XPage or a Java agent</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/calling-the-domino-c-api-from-an-xpage-or-a-java-agent</link>
      <description>Would it not be great to call the Domino C-API  from an XPage or a Java agent? 
Well you can and this is how to.</description>
      <pubDate>Sat, 20 Mar 2010 23:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/calling-the-domino-c-api-from-an-xpage-or-a-java-agent</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-03-20T23:00:00Z</dc:date>
    </item>
    <item>
      <title>Do you love music? Love geeky stuff? check out the Pat Metheny - Orchestrion ...just way too cool!</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/do-you-love-music-love-geeky-stuff-check-out-the-pat-metheny---orchestrion-just-way-too-cool</link>
      <description>Legendary guitarist Pat Metheny has done something übergeek , and way too cool 

"The Orchestrion"

It is like a mechanical orchestra he can control .....you have got to see this</description>
      <pubDate>Thu, 18 Feb 2010 23:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/do-you-love-music-love-geeky-stuff-check-out-the-pat-metheny---orchestrion-just-way-too-cool</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-02-18T23:00:00Z</dc:date>
    </item>
    <item>
      <title>Quickr...They must been smoking crack</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/quickrthey-must-been-smoking-crack</link>
      <description>I had never touched the inside of Quickr (or Quickplace) until last week. 

First Impression: Wauw, the people who created this beast, must really have been smoking crack or something....

This is really one ugly poorly documented MFKR.

Beauty on the outside, but the inside....</description>
      <pubDate>Tue, 16 Feb 2010 23:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/quickrthey-must-been-smoking-crack</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-02-16T23:00:00Z</dc:date>
    </item>
    <item>
      <title>I think we have all worked with these types..</title>
      <link>http://nevermind.dk/nevermind/blog.nsf/subject/i-think-we-have-all-worked-with-these-types</link>
      <description>Nevertheless quite striking and funny :-)

http://www.infoworld.com/d/adventures-in-it/it-personality-types-8-profiles-in-geekdom-313?page=0,0</description>
      <pubDate>Sun, 10 Jan 2010 23:00:00 GMT</pubDate>
      <guid>http://nevermind.dk/nevermind/blog.nsf/subject/i-think-we-have-all-worked-with-these-types</guid>
      <dc:creator>Jesper B. Kiær</dc:creator>
      <dc:date>2010-01-10T23:00:00Z</dc:date>
    </item>
  </channel>
</rss>

