Blogs

  • Browse Blogs
  • My Blog
  • My Updates

Tags Help

  • View as cloud  | list

Similar Blogs

photo

B's Blog

29 Entries |  Bob Seifert
Updated 
No Ratings 0     Comments 22
photo

Lotus Nut

69 Entries |  Chris Whisonant
Updated 
Ratings 5     Comments 97
photo

FlowerPower

35 Entries |  James T Kork
Updated 
No Ratings 0     Comments 20
photo

Smith's State...

13 Entries |  Peter Smith
Updated 
No Ratings 0     Comments 3
photo

TexasSwede

66 Entries |  Karl-Henry Martinsso...
Updated 
No Ratings 0     Comments 59

Dogear Bookmarks

Simon O'Doherty

Blog Authors:  Simon O'Doherty  

Main  | Next

Finally got my rejection letter. :(

Simon O'Doherty  |    |  Tags:  lotussphere  |  Comments (0)
Took a while to get it but another event trumped mine. :(  Oh the positive side it means I can relax now for the next two months. :D

Still plan to write the information up but I am not under a deadline to do so.

Triva question

Simon O'Doherty  |    |  Tags:  doclinks question  |  Comments (1)
Here is a good puzzle for people. When did the doclink first appear in Notes?

Xpages videos

Simon O'Doherty  |    |  Tags:  xpages  |  Comments (0)
The developers have put up a load of material on Xpages on the domino wiki. You even get to listen to some of the dulcet voices of the developers. ;)


Jack of Speed to play boom boom

Simon O'Doherty  |    |  Tags:  jack-of-speed music ireland  |  Comments (0)
Thought I'd let people know that Jack of Speed are going to be playing in the Boom Boom Room on November 8th. If your in Dublin check them out. One of the guys works in Level 2 support in Dublin.

Here is one of  their earlier vids. The fade in is intentional in case you think it doesn't sound good at the start.

Trick or Treat

Simon O'Doherty  |    |  Tags:  halloween  |  Comments (0)
Updated my avatar for the season. :) You can get your own along with brushes at the resource depot.

Doesn't look like windows to me

Simon O'Doherty  |    |  Tags:  objectdock customisations stardock  |  Comments (0)
I got bored with the start bar and the standard windows look so I gave my machine a make over!

image
Had to shrink it down a lot to show it. The bottom left is the running windows on the machine. The bottom right is my most used applications and some widgets (like weather, clock battery). What you can't see is on the left side there is a pop out which shows my system tray. I used Stardocks Object Desktop for this. For the workspace customisation I used the Panagenda MarvelClient. Finally for the theme of the notes client I used the Themes widget. Workspace image is from InterfaceLift.

Common regular expressions for Widgets

Simon O'Doherty  |    |  Tags:  widgets regex  |  Comments (0)
One of the most powerful features for Notes R8.0.1+ is Widgets. If you are not familar with widgets I recommend checking out the tutorial.

However to get the full reach of that feature you do need to know regular expressions. If your a developer that is all well and good, but for your average user it can look very cryptic.

So here are a few easy to remember commands.
\w = Alphanumeric character (A to Z, a to z, 0 to 9)
\W = Not an Alphanumeric character (everything not above)
\d = Numeric digit (0 to 9)
\D = Non-numeric character (not 0 to 9)
\s = Whitespace. This is a space, tab, newline.
\S = Not a whitespace.
. = Match any character.
{x,y} or {x} = repeat the match. x is minimum number of times, y is maximum number of times.
( ) = Grouping your match (more on that later).
[ ] = range of characters to match.
There are many more commands but just with this handful of commands you should be able to match pretty much everything.

So for example. Lets say you have a Part number as follows.
XYZ12345A1A7
There a number of ways to match this. So you need to break it down into the components. For the example we will define the part number as...
XYZ = three characters upper case.
12345 = Five digits
A1A7 = Four alphanumeric characters (case does not matter).
With this set up the following regular expression should match all combinations.
[A-Z]{3}\d{5}\w{4}
Once you know the commands it is very easy to read.
[A-Z]{3} = Match A to Z three times in a row.
\d{5} = the next five characters are numeric digits.
\w{4}  = the last four characters are alphanumeric characters.
Lastly lets talk about grouping. The regular expression above would match a part number and mark it as group 0. Now you may have to pass that part number onto a web site that requires "XYZ12345" to go into one field and "A1A7" to go into a second field. So you need to mark these as seperate groups. To do this you put the sections in brackets ( ).

So the final regular expression would be...
([A-Z]{3}\d{5})(\w{4})

and there you go! Simple when you know how! :D

So anyone see any Aliens hanging around?

Simon O'Doherty  |    |  Tags:  internet  |  Comments (0)
According to some medium there is supposed to be an influx of Aliens from 14-16th. The funny part of it is that bookies in the UK have suspended bets on Aliens landing.

Bookies suspend bets on alien landing

WORRIED bookmakers have stopped taking bets on aliens showing up on Earth.

It follows a flurry of bets amid internet buzz that a massive intergalactic spaceship will appear tomorrow.

Videos and messages on YouTube, blogs and UFO websites are buzzing with predictions that a vessel from the alien Federation Of Light will be visible in our skies for three days.

How not to do support.

Simon O'Doherty  |    |  Tags:  rant  |  Comments (1)
When you work in support (at least at level 2) you get the false impression that all support is alike.

Case in point that has driven me to insanity. I went to install Racedriver Grid on a new machine I got. However when I went to activate it I get the message that there has been two many activations and that I need to contact support at a certain email address.

So I email them and give them my order number and within a minute I get a form mail response which says that in the case of my activation key being locked out I should contact them by the same email address I just did.

T60 Battery issue

Simon O'Doherty  |    |  Tags:  t60 tipsntricks thinkpad  |  Comments (0)
For some reason my battery on my T60 dropped to 17% charge and wouldn't charge beyond it. I finally figured out how to fix it though for anyone else with the same issue.

1. Switch on the machine and let the battery drain completely.
2. Unplugged the battery and plugged in again (while machine was off).
3. Let it fully charge.

It is now back to normal. :)


IM with IBM employees

Simon O'Doherty  |    |  Tags:  sametime ibm im  |  Comments (0)
Chris has a nice blog entry on how to communicate with IBM employees via IM. Currently checking to see if this works. Ping me if it works. :) 

Abstract submitted

Simon O'Doherty  |    |  Tags:  lotussphere  |  Comments (0)
I had meant to post this sooner as I submitted this abstract some time ago. The Abstract is about debugging XPages applications. As support will have to do this anyway it is good to deflect potential PMRs and issues by documenting how to find and resolve common issues that come up. As well what to do if you need to engage supports help.

I think I have as much chance as anyone else. :/ The last time I submitted an abstract I got rejected and a developer ended up doing what I had planned to do. I have been to Lotusphere before though (2001) and it was pretty intense. So fingers crossed.

is offline blogging enabled in bleedyellow?

Simon O'Doherty  |    |  Tags:  blogging offline livewriter raven  |  Comments (0)
I'm trying to get offline blogging running for the bleed yellow site. I've enabled the MetaWeblog but it doesn't appear to be working for Raven or Livewriter:-/ 

Anyone any hints?

Consuming a web service in Domino 8.0.x

Simon O'Doherty  |    |  Tags:  webservices  |  Comments (0)
I got asked recently how to consume a webservice in Domino. For the most part it is pretty easy to do. I did a demo a long time ago and thought I'd share it. Not of the quality for CSA, so I will probably redo a new one for the wiki when I get a chance.

Appears that I can't upload SWF files to bleedyellow so I've uploaded the file to wikiupload.

http://www.wikiupload.com/download_page.php?id=62220


IBM LanguageWare: Launches New Development Environ...

Simon O'Doherty  |    |  Tags:  languageware  |  Comments (2)
Got this in my mail (I guess DJ got his agent done ;) ).
This week IBM LanguageWare announces the release of it's innovative NLP development environment, the LanguageWare Resource Workbench, delivered with a Demonstrator that contains a comprehensive set of language and domain models across English, Spanish, Portuguese, German, Arabic, and Japanese. The Workbench brings to the market a new and exciting way of building high-performance text analysis applications using LanguageWare's patented parsing technology and unique example-based visualization techniques. The Demonstrator gives customers a pre-built set of analyzers - spanning healthcare, law enforcement, finance, legal, and pharma domains - on which they can build their own LanguageWare UIMA Analyzers. Also provided is a set of instructional videos to help get customers up-and-running.

All this is provided FREE for evaluation and prototyping on Alphaworks at:
http://alphaworks.ibm.com/tech/lrw.

LanguageWare now also provides Domain Modelling and Integration Services to help our customers and partners successfully exploit our text analysis capabilities. Our consultants will work with customers to develop the necessary domain extraction models specifically tailored to their business requirements, and provide integration support for IBM products such as; IBM Content Analyzer, IBM Entity Analytics, IBM Global Name Recognition, IBM Lotus Notes, IBM Lotus Connections, IBM OmniFind, IBM InfoSphere Warehouse and others.


I have used this before to create an application that would understand the content and context of PMRs (Problem tickets). It is pretty cool and easy enough. It is also built into the notes client (as part of spell checker). It is not documented / supported to plug into it in Notes 8/8.0.x. I am not sure at this time if it is visible for 8.5 (but I will check).


Main  | Next
Skip to main content link. Accesskey S
IBM Lotus Connections Help Tools About

Tags

A tag is a keyword that is used to categorize an entry. To view the entries with a particular tag, click a tag name or enter a tag in the box.
The tag cloud indicates the frequency of tag use. Popular tags appear darkest. The slider control adjusts how many tags are displayed in the tag cloud.