Thursday, September 27, 2007
Tuesday, September 25, 2007
Why did Jose leave Chelsea?
Chelsea have issued a statement saying Jose Mourinho's departure from the club was by mutual consent.
But we still don't know whether "the sepcial one" walked or was sacked. What do you think?
Mourinho had been with the club for three years. He won two league titles, two Carling cups and one FA cup.
But it seems a series of rows between him and chairman Roman Abramovich proved too much. Chelsea's director of football, Avram Grant, will take over for now along with assistant manager Steve Clarke.
He is the special one :-)
But we still don't know whether "the sepcial one" walked or was sacked. What do you think?
Mourinho had been with the club for three years. He won two league titles, two Carling cups and one FA cup.
But it seems a series of rows between him and chairman Roman Abramovich proved too much. Chelsea's director of football, Avram Grant, will take over for now along with assistant manager Steve Clarke.
He is the special one :-)
Tuesday, September 18, 2007
Notes/Domino Best Practices: Master Checklist
here you can see on some IBM's articles about Lotus Notes/Domino Perfomance
Notes/Domino Best Practices: Performance
Notes/Domino Best Practices: Sizing
Notes/Domino Best Practices: Domino Web Access
Notes/Domino Best Practices: Upgrade and Migration
Notes/Domino Best Practices: Transaction Logging
Notes/Domino Best Practices: Administration
Notes/Domino Best Practices: Security
Notes/Domino Best Practices: Calendaring & Scheduling
Everybody should read these articles.
Notes/Domino Best Practices: Performance
Notes/Domino Best Practices: Sizing
Notes/Domino Best Practices: Domino Web Access
Notes/Domino Best Practices: Upgrade and Migration
Notes/Domino Best Practices: Transaction Logging
Notes/Domino Best Practices: Administration
Notes/Domino Best Practices: Security
Notes/Domino Best Practices: Calendaring & Scheduling
Everybody should read these articles.
Monday, September 17, 2007
blog about Lotus Notes R8
Just read some articles from blog which write Chris Reckling and Ted Stanton. Very impressive.
http://www-10.lotus.com/ldd/insidelotusblog.nsf/
http://www-10.lotus.com/ldd/insidelotusblog.nsf/
Thursday, September 06, 2007
how will be right to hide fields
Usually, developers Lotus Notes, write the hidden formula directly in every paragraph... But I recommend to write all hidden formulas in one field. So, this special field will contain all fields which you need to hide. So in paragraph you will need only write something like this:
hiddenFld = "NameOfField".
Of course, you can use the same idea for validations all necessary fields.
Just try it and I think you will like it :)
hiddenFld = "NameOfField".
Of course, you can use the same idea for validations all necessary fields.
Just try it and I think you will like it :)
Wednesday, September 05, 2007
Starcraft 2
Just looked on second version of my favorite game... "starcraft:broodwar" .
It looks great ! You can see it too :)
and one more
It looks great ! You can see it too :)
and one more
Monday, September 03, 2007
fun logos for Lotus Notes
especially I like logo with Kenny. But you will need to see some movies about South Park (this is my favorite animation.
"They killed Kenny... bastard !"
Like Kenny, Notes has been pronounced dead many times. Like Kenny, Notes is always around in the next episode.
all logos you will see here
"They killed Kenny... bastard !"
Like Kenny, Notes has been pronounced dead many times. Like Kenny, Notes is always around in the next episode.
all logos you will see here
Enable or Disable agent without Lotus Notes Designer
You can hide/show button with this formula for [Role] which you want
agentName := "AgentName";
@if( @IsAgentEnabled(agentName) = "0"; @Command([AgentEnableDisable]; agentName; "1");
""
This code will enable anget.
You could do this in lotusscript but why would you if there are @functions available?
If you add buttons that also display the agent's lastrun time this could be used to view a status of all relevant agents.
originally from http://www.notesninjas.com/
agentName := "AgentName";
@if( @IsAgentEnabled(agentName) = "0"; @Command([AgentEnableDisable]; agentName; "1");
""
This code will enable anget.
You could do this in lotusscript but why would you if there are @functions available?
If you add buttons that also display the agent's lastrun time this could be used to view a status of all relevant agents.
originally from http://www.notesninjas.com/
Enable agent
When creating templates for users, they need to sign the agents. This is the easiest way of getting the agent enabled.
In the [Admin] read only set up area put in a button with code:
agentName:="AgentName";
@if( @IsAgentEnabled(ag)="0"; @Command( [AgentEnableDisable] ; ag ; "1");
""
This will enable it, you can even have a form with saveoptions="0" which displays the status of each relevant agent in computed for display fields when composed.
You could do this in lotusscript but why would you if there are @functions available?
If you add buttons that also display the agent's lastrun time this could be used to view a status of all relevant agents.
In the [Admin] read only set up area put in a button with code:
agentName:="AgentName";
@if( @IsAgentEnabled(ag)="0"; @Command( [AgentEnableDisable] ; ag ; "1");
""
This will enable it, you can even have a form with saveoptions="0" which displays the status of each relevant agent in computed for display fields when composed.
You could do this in lotusscript but why would you if there are @functions available?
If you add buttons that also display the agent's lastrun time this could be used to view a status of all relevant agents.
Subscribe to:
Posts (Atom)