Mike Cowlishaw elected to the Royal Academy of Engineering

classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

Mike Cowlishaw elected to the Royal Academy of Engineering

mcbrides
Hey you guys...

At last week's AGM, Mike Cowlishaw was elected a Fellow of the Royal
Academy of Engineering. This Academy is comparable with the US NAE and
election is fiercely competitive. No more than two or three of the 49 so
chosen come from the IT-related world.

Congratulations, Mike. They got a good man.

--

/--------------------\
| Jerry McBride      |
| [hidden email] |
\--------------------/


--

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: Mike Cowlishaw elected to the Royal Academy of Engineering

Steve Hermes
Three cheer's, Let's all raise a toast to this long overdue honor.

----- Original Message -----
From: Jerry McBride <[hidden email]>
To: <[hidden email]>
Cc: <[hidden email]>
Sent: Wednesday, July 28, 1999 3:13 PM
Subject: Mike Cowlishaw elected to the Royal Academy of Engineering


> Hey you guys...
>
> At last week's AGM, Mike Cowlishaw was elected a Fellow of the Royal
> Academy of Engineering. This Academy is comparable with the US NAE and
> election is fiercely competitive. No more than two or three of the 49 so
> chosen come from the IT-related world.
>
> Congratulations, Mike. They got a good man.
>
> --
>
> /--------------------\
> | Jerry McBride      |
> | [hidden email] |
> \--------------------/
>
>
> --
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~
> To unsubscribe from this mailing list ( ibm-netrexx ), please send a note
to
> [hidden email]
> with the following message in the body of the note
> unsubscribe ibm-netrexx <e-mail address>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Simple question...

Andrew Jelly
                                                      Hi, All!

    How write in NetRexx analog of next Java code?

//
 Object o = p.getContent();
 if (o instanceof String) {
//     ^^^^^^^^^^^^ ?
     System.out.println("This is a String");

i.e. 'instanceof' statement.

--
Andrew Jelly, system programmer            ICQ UIN:14642637
Baltic Transport Systems.                  http://www.baltics.ru/~andrew/
flame.org CA Fingerprint: 10:72:7F:7B:EB:3E:1E:C6:52:AC:A0:D4:0E:B4:BB:29
 

Reply | Threaded
Open this post in threaded view
|

Re: Simple question...

K.-P. Kirchdoerfer
Max Marsiglietti answered it two years ago

On Thu, 29 Jul 1999 18:30:33 +0400, Andrew Jelly wrote:

>                                                      Hi, All!
>
>    How write in NetRexx analog of next Java code?
>
>//
> Object o = p.getContent();
> if (o instanceof String) {
>//     ^^^^^^^^^^^^ ?
>     System.out.println("This is a String");
>
>i.e. 'instanceof' statement.

/*Quote*/
> In Java one would use the instanceof clause like
>
> if (component instanceof Button)

In NetRexx you do that this way:

  if component <= Button then -- etc
/end of qoute*/

Your example goes then like this
/**/
o = Object p.getContent();
if o <= String
then say "This is a String"
/**/

regards kp
--
K.P.Kirchdoerfer                      Voice:   +49 431 15479
24116 Kiel                            E-Mail: [hidden email]

The Mission Is Terminated (TG 1982)



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: Simple question...

Mike Cowlishaw-2
In reply to this post by Andrew Jelly


> Your example goes then like this
> /**/
> o = Object p.getContent();
> if o <= String
> then say "This is a String"
> /**/

Or even  (to be economic):

   if p.getContent <= String then say "This is a String"

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mike Cowlishaw, IBM Fellow
mailto:[hidden email]  --  http://www2.hursley.ibm.com


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>

Reply | Threaded
Open this post in threaded view
|

Re: Mike Cowlishaw elected to the Royal Academy of Engineering

K.-P. Kirchdoerfer
In reply to this post by mcbrides
On Wed, 28 Jul 1999 17:13:25 -0400, Jerry McBride wrote:

Thanks for the info, Jerry.

>At last week's AGM, Mike Cowlishaw was elected a Fellow of the Royal
>Academy of Engineering. This Academy is comparable with the US NAE and
>election is fiercely competitive. No more than two or three of the 49 so
>chosen come from the IT-related world.
>
>Congratulations, Mike. They got a good man.

He deserves what he got. Hopefully the other way round for the Royal
Academy :)

Herzlichen Glückwunsch, Mike.

kp
--
K.P.Kirchdoerfer                      Voice:   +49 431 15479
24116 Kiel                            E-Mail: [hidden email]..de

The Mission Is Terminated (TG 1982)



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>