Отправляет email-рассылки с помощью сервиса Sendsay

Бюллетень "Lotus Notes CodeStore"

  Все выпуски  

"Unable to find valid target platform" When upgrading to a Standard Fix Pack


Рассылку ведет: Программист на Lotus NotesLotus CoderВыпуск No 415 от 2010-11-17
рассылка о программировании на Lotus Notes/Domino
Обсуждения на форумах, блогах. Примеры программного кода на LotusScript,@formula, Java

рассылка:выпускархивлентаблогсайт

Бюллетень "Lotus Notes CodeStore" Выпуск 13 от 21.04.2008

comp.soft.prog.lotuscodesrore

CodeStore. Примеры кодов

Еще примеры:
Больше кодов на сайтах:

Форумы.Свежи темы и обсуждения

Интересные темы:
Список форумов:

Tips. Советы

Patrick Kwinten's customer wants to put geotargeting on a Domino application. But Patrick doesn't know of a Domino solution. If you know of a Domino-based GeoTargeting solution, he'd like to hear from you.

Read | Permalink
Paul Farris was in with Full Admin rights when he got a message claiming he wasn't authorized to sign a database. The fix was simple, if slightly annoying.

Read | Permalink


EXPORT RICH TEXT TO WORD
Let us know how we can assist you with your migration.
  • Do you have Rich Text Fields that need to be exported?
  • Do you wish to combine main documents with their response documents and put them or store them together?
  • Do you wish for metadata to be combined with your documents?
  • Do you have multi-value fields?
  • Do you wish to enhance and clean up the data while exporting?
Email sales@integra4notes.com today.

Download our 15 day trial by registering on the Integra for Notes website.

Louis Richardson takes on the difficult, or merely confusing, question of the differences between Connections and Quickr. He provides a five-point list of things to keep in mind when making your choice.

Read | Permalink

A system I'm working on needs to generate and store unique codes that will be distributed to its users. Any user can then enter one of these codes to obtain a discount at the basket.

Because the codes are there for anybody's taking they need to be random enough that users who shouldn't have one shouldn't be able to go guessing them.

The codes will be handed out ad-hoc to users who will take the code and enter it at the basket. Nothing ties the code to any given user though.

The code I've come up with to generate the codes (read "pasted and modified off Google") is like this:

private readonly Random _rng = new Random();
private const string _chars = "ABCDEFGHJKLMNPQRSTWXY3456789"; public static string Generate(int size)
{ char[] buffer = new char[size]; for (int i = 0; i < size; i++) { buffer[i] = _chars[_rng.Next(_chars.Length)]; } return new string(buffer);
}

It generates codes like this:

TWEXB8GE, WHJ55459, AEJA6XP5, D4J3RXJK, NRMALE8H, WMJGQAKY, YAQQKKX7

Notice that I've left out confusingly-similar characters combinations such as I and 1, Z and 2. Going further I could probably miss out S and 5 as well as 8 and B?

The issue I have is one of compromise. How do I balance uniqueness and "security" with ease of entry for the end user?

A string that's 8 characters long might not look too hard to guess, but is in fact fairly unique.

If the set of characters used has 28 members and the string is 8 characters long then the chance of guessing a code is one in 28^8 or 28 to the power or 8 or  28*28*28*28*28*28*28*28 or 377,801,998,336.

Assuming my maths is right?

Here's how some other combinations stack up:

Possible Characters Code Length Permutations
28 12 232,218,265,089,212,416
28 8

377,801,998,336

28 6 481,890,304
28 4 614,656
10 10

10,000,000,000

10 3

1,000

Maybe a code 8 characters long is too much. Probably 6 would suffice. What would you opt for?

Click here to post a response

Just a little test. This is a normal blog entry (written in Windows Live Writer) that I'll tweak in the background once it's published to add a survey to it.

All being well you should see a survey on this page  -assuming you've opened the page proper, rather than just looking at the homepage, which is a view and so won't work.

Click here to post a response

Fredrik Malmborg looks at why IBM Lotus allows in-place upgrades instead of insisting data be migrated to a new version. He includes a link to an article explaining the benefits of doing migrations instead of in-place upgrades (featuring another mail system).

Read | Permalink
Dmytro Pastovenskyi has posted some code to show why he thinks it's better to use Object in JavaScript instead of Switch.

Read | Permalink

Asking if you guys are Domino Developers might seem a daft question, but I've always been curious to know exactly who my readers are. So, this is the first in a series of questions to help me discover who you guys are.

It might also offer an insight in to how many Domino developers are looking/moving to other skills.

So, now that the new surveys feature has bedded in, here the first question proper.

There is a survey running with this blog post. Please visit this site to in order to vote.

Click here to post a response

Еще советы:
Смотри советы на сайтах:

Блоги. Что обсуждают и пишут

Author: Patrick Kwinten
Tags: quote block responding
Idea:
I like the blockquote function available in Wordpress.
 
I guess for writing emails a standard blockquote function can be very usefull for the Notes client.

Author: Thomas Hampel
Tags: smartupgrade upgrade deployment
Idea:
Today SmartUpgrade can only be used for Notes clients, but servers can not be upgraded nor patched from a central console
 
To manage large Domino environments it would be useful to have a Domino application on a central server, from which the Admin can control:
- which server in the environment will receive which SW upgrade or FixPack
- when to apply the upgrade/patch/fixpack
This way it would be possible to automate and simplify server upgrades even in a complex environment.
 
Note : this idea was proposed in a different place some years back. Now I'd like to see if Admin's are interested in a tool like that, and (if yes) request IBM / Lotus to build it.

Author: Johan Koopman
Tags: performance notes_client notes
Idea:
Sometimes end users experience a slow down of the Lotus Notes client.
Compacting the Lotus Notes application files and Workspace improves the efficiency of Lotus Notes.
Also removing the Lotus Notes Cashfile (Cash.ndk) helps to improve the performance
 
In my opinion this should not be an end user task. Therefor I propose the following idea:
 
1) a button (called e.g. performance booster) that does all thes tasks automatically.
or
2) a scheduled automated way that performes these tasks automatically.
 
 

Upon request I have developed two web banners that can be used to help promote OpenNTF: These banners have also been added to the OpenNTF marketing material ...
Author: Jason Levine
Tags: todo comment activities
Idea:
The ToDo list in the Activities application offers a great place to mange task assigned to other people in the "Created by Me" section.
 
Clicking on a task expands the description however to view any related commnents, we are force to selcet >More Actions > Show in Activity and navigate away from the ToDo list.
 
A collapsible section for the comments under each task is essential to providing better work flow.
 
Currently, it is tedious to verify the status of multiple tasks due to lack of vivisibility to the related comments in the ToDo list context.
 
 

Author: Knud Højslet
Tags: view
Idea:
 In views, that have sort on demand columns, it is often annoying to users, that the view might open sorted on a column other than the categorized one.
Could we get an additional on-open option to "Restore as designed", thereby reverting to categorization and sorting as designed originally.

In his keynote at DNUG today Kevin Cavanaugh, Vice President, Messaging and Collaboration, demonstrated the new web site for XPages developers XPages.info and emphasized the strategic importance of XPages for Lotus. Sorry for the bad quality of ...
Author: Stijn Vermeulen
Tags: ms office word macro
Idea:
Currently there is no support for VBA Macro's from MS Word. Even the most simple macro's will not work. Please add this in the new releases :-)

Еще записи:
Интересные блоги специалистов:

Статьи и Документация

Installation of a Standard Edition fix pack fails with a platform error.
Table of Contents Previous Page Next Page Lotus Notes of the Windows Installer technology, which allows an administrator to standardize custom installations by distributing preconfigured installation packages. The administrator manipulates the configuration by means of a transform ...
The Utility subdirectory in the Notes install kit contains a single zip file (NotesCustomizationKit10.zip) in which the following individual Notes install customization tools reside: addToKit.exe enables you to add signed features to the install kit trimUpdateSite.zip enables you to ...
Learn how to build a multi-locale solution for your Web site with IBM Workplace Web Content Management.
Notes 8.5.1 and greater can be installed or upgraded on Windows and Citrix platforms in conjunction with a customized data directory specification. This new functionality is documented ...
Также почитатай:
Найти документацию можно на сайтах:

В избранное