Re: Question

2024-02-08 Thread Henri Kuiper
Using python 3.11 'in production' (the IBM version)
STC's running flask applications in a 'virtual environment'

Looking to exploit the 'overlay fileSystem' soon to not have to have the
'bin/activate' in the startup process :)

will share some 'findings' at my SHARE Orlando session coming March :)




[image: __tpx__]
[image: photo] <http://mainframesociety.com>

Henri Kuiper
Chief Technology Officer, CTO

[image: linkedin] <https://www.linkedin.com/in/wizardofzos/>

* P * +31 (0) 6392 19574 <+31+(0)+6392+19574>   * W * mainframesociety.com

* E * he...@mainframesociety.com *M *Book a Google Meet
<https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ3PJqcEmZGUpw6THFN12mJnnHRF003i3ALwXg4iXYwXzAAuVtCBVrJVR-2acuNbL77aSHfceHX_>



On Thu, 8 Feb 2024 at 21:48, Ed Jaffe  wrote:

> On 2/6/2024 10:47 AM, Ed Jaffe wrote:
> > : >python
> > Python 3.11.4 (heads/pyz_dev-3.11.ziip:39640ccf4b, Jul 15 2023,
> > 05:46:13) [Clang 14.0.0 ] on zos
> > Type "help", "copyright", "credits" or "license" for more information.
> > >>>
>
> Just to be clear, we are running FMID HAMB3B0 "IBM Open Enterprise SDK
> for Python".
>
>
> --
> Phoenix Software International
> Edward E. Jaffe
> 831 Parkview Drive North
> El Segundo, CA 90245
> https://www.phoenixsoftware.com/
>
>
>
> 
> This e-mail message, including any attachments, appended messages and the
> information contained therein, is for the sole use of the intended
> recipient(s). If you are not an intended recipient or have otherwise
> received this email message in error, any use, dissemination, distribution,
> review, storage or copying of this e-mail message and the information
> contained therein is strictly prohibited. If you are not an intended
> recipient, please contact the sender by reply e-mail and destroy all copies
> of this email message and do not otherwise utilize or retain this email
> message or any or all of the information contained therein. Although this
> email message and any attachments or appended messages are believed to be
> free of any virus or other defect that might affect any computer system
> into
> which it is received and opened, it is the responsibility of the recipient
> to ensure that it is virus free and no responsibility is accepted by the
> sender for any loss or damage arising in any way from its opening or use.
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Opinion

2024-01-15 Thread Henri Kuiper
All I can say is, if you have multiple devices, go for a monitor that also
acts as a KVM-switch... I've a DELL Dell C3422WE at "only" 34" but the
ability to switch between the laptop and the desktop is a-ma-zing :)

you got me pondering on a 49" now thanks :)

[image: __tpx__]
[image: photo] <http://mainframesociety.com>

Henri Kuiper
Chief Technology Officer, CTO

[image: linkedin] <https://www.linkedin.com/in/wizardofzos/>

* P * +31 (0) 6392 19574 <+31+(0)+6392+19574>   * W * mainframesociety.com

* E * he...@mainframesociety.com *M *Book a Google Meet
<https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ3PJqcEmZGUpw6THFN12mJnnHRF003i3ALwXg4iXYwXzAAuVtCBVrJVR-2acuNbL77aSHfceHX_>



On Mon, 15 Jan 2024 at 19:10, Lionel B. Dyck  wrote:

> I use two 34" curved monitors side by side 
>
>
> Lionel B. Dyck <><
> Github: https://github.com/lbdyck
>
> “Worry more about your character than your reputation. Character is what
> you are, reputation merely what others think you are.”   - - - John Wooden
>
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf
> Of Bill Hitefield
> Sent: Monday, January 15, 2024 11:38 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Opinion
>
> Steve,
>
> I have not used that specific monitor, but I do use a curved monitor. Love
> it! For me, much better than a flat monitor. I was hooked after I tried the
> first one (a Samsung).
>
> Bill Hitefield
>
> > -Original Message-
> > From: IBM Mainframe Discussion List  On
> > Behalf Of Steve Beaver
> > Sent: Monday, January 15, 2024 12:33 PM
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Subject: Opinion
> >
> > Does anyone have an opinion on
> >
> >
> >
> > LG - 49" IPS LED Curved UltraWide Dual QHD 144Hz FreeSync and G-SYNC
> > Compatible Monitor with HDR (HDMI, DisplayPort, USB) - Black
> >
> >
> >
> >
> >
> > Steve Beaver
> >
> >
> >
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions, send
> > email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email
> to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: CEE3512S / CSV034I

2023-11-12 Thread Henri Kuiper
Denis,

Confirming the STC running the Python code did not have enough
"ASSIZEMAX". Easy fix, happy customer :)
For those looking to do JWT signage, and running into same problems, I'll
paste pieces of relevant python here... to feed future 'SRCHFOR'-actions :)


*Bash actions to create the key-files*

> # Create privkey
> openssl ecparam -name secp256k1  -genkey -noout -out privkey
>
> # Extract pubkey
> openssl pkey -in privkey -pubout -out pubkey
>


*Python-code to use them*

> import jwt
> from time import time
>
> with open('privkey') as p:
>privkey = p.read()
>
> payload = {"some": "data", "in": "our", "awesome": "payload"), 'exp':
> time() + 30}
> datoken = jwt.encode(payload, privkey, algorithm='ES256K').encode('utf-8')
> print(f"TOKEN -==> {datoken}")
>
>
> with open('pubkey', 'r') as pubkeyfile:
>   pubkey = pubkeyfile.read()
>   try:
> payload2 = jwt.decode(datoken, pubkey, algorithms=['ES256K'],
> options={'require':['exp','some','in','awesome']})
>   except Exception as e:
> print("Not signed with requried privkey")
>
> print(payload2)
>

Now to find the proper route to get those docs changed :)

Met vriendelijke groeten,

*Henri Kuiper*
*zdevops*

On Sat, Nov 11, 2023 at 9:04 PM Henri Kuiper 
wrote:

> Nice!
>
> thanks... I will give that a try.
>
>
> Met vriendelijke groeten,
>
> *Henri Kuiper*
>
> *zdevops*
>
>
> On Fri, Nov 10, 2023 at 7:39 AM Denis <
> 01664d8ede6c-dmarc-requ...@listserv.ua.edu> wrote:
>
>>  Hi Henri,
>> if you google the reason code you find other entries that point to not
>> enough region size. So try increasing the region size?
>> Denis.
>>
>> On Thursday, November 9, 2023 at 10:31:52 PM GMT+1, Henri Kuiper <
>> henrikui...@zdevops.com> wrote:
>>
>>  Heya Fellow Mainframers,
>>
>> I'm trying to do some 'normal ES256K' JWT token signage with python...
>>
>> on my 'test SYSPLEX' this works like a charm.yet one hop over I get
>> the
>> following
>>
>> CEE3512S An HFS load of module
>> /.../site-packages/cryptography/hazmat/bindings/_openssl.abi3.so
>> failed. The system return code was 000157; the reason code was
>> 0BDF019B.
>>
>> MSGTXT: CSV034I PGMF FETCH FAILED FOR THE REQUESTED MODULE. RETURN CODE
>> 14,
>> REASON CODE 26110021 PATHNAME =
>> /../site-packages/cryptography/hazmat/bindings/_openssl.abi3.so
>>
>> I've checked all the obvious stuff : perms, openssl versions,
>> module/package versions for cryptography, python version etc. and they're
>> all the same...
>>
>> . Does anyone have another idea where to look?...
>>
>> Thanks!
>>
>> *Henri Kuiper*
>> *zdevops*
>>
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>>
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>>
>>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: CEE3512S / CSV034I

2023-11-11 Thread Henri Kuiper
Yes!

seen the other reply too (thanks again Denis!) I'll verify and get in touch
with the 'documentation peeps' fo-sho :)

fingeres crossed this will workwith the larger REGION though :)


On Sat, Nov 11, 2023 at 2:40 PM Peter Relson  wrote:

> As Denis G suggested, you do not have sufficient storage for the system to
> acquire for holding the module you have asked to load. At a minimum you
> need a larger region size. If you have an aberrant program (such as one
> that does a getmain for the entire available region prior to loading this
> executable), you will have to change the program.
>
> Please submit feedback on CSV034I to ask to document the return code 14
> reason code 26110021 combination since that is a case that you can actually
> do something yourself about and does not need to be reported to IBM Support.
>
> Peter Relson
> z/OS Core Technology Design
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: CEE3512S / CSV034I

2023-11-11 Thread Henri Kuiper
Nice!

thanks... I will give that a try.


Met vriendelijke groeten,

*Henri Kuiper*

*zdevops*


On Fri, Nov 10, 2023 at 7:39 AM Denis <
01664d8ede6c-dmarc-requ...@listserv.ua.edu> wrote:

>  Hi Henri,
> if you google the reason code you find other entries that point to not
> enough region size. So try increasing the region size?
> Denis.
>
> On Thursday, November 9, 2023 at 10:31:52 PM GMT+1, Henri Kuiper <
> henrikui...@zdevops.com> wrote:
>
>  Heya Fellow Mainframers,
>
> I'm trying to do some 'normal ES256K' JWT token signage with python...
>
> on my 'test SYSPLEX' this works like a charm.yet one hop over I get the
> following
>
> CEE3512S An HFS load of module
> /.../site-packages/cryptography/hazmat/bindings/_openssl.abi3.so
> failed. The system return code was 000157; the reason code was
> 0BDF019B.
>
> MSGTXT: CSV034I PGMF FETCH FAILED FOR THE REQUESTED MODULE. RETURN CODE 14,
> REASON CODE 26110021 PATHNAME =
> /../site-packages/cryptography/hazmat/bindings/_openssl.abi3.so
>
> I've checked all the obvious stuff : perms, openssl versions,
> module/package versions for cryptography, python version etc. and they're
> all the same...
>
> . Does anyone have another idea where to look?...
>
> Thanks!
>
> *Henri Kuiper*
> *zdevops*
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


CEE3512S / CSV034I

2023-11-09 Thread Henri Kuiper
Heya Fellow Mainframers,

I'm trying to do some 'normal ES256K' JWT token signage with python...

on my 'test SYSPLEX' this works like a charm.yet one hop over I get the
following

CEE3512S An HFS load of module
/.../site-packages/cryptography/hazmat/bindings/_openssl.abi3.so
failed. The system return code was 000157; the reason code was
0BDF019B.

MSGTXT: CSV034I PGMF FETCH FAILED FOR THE REQUESTED MODULE. RETURN CODE 14,
REASON CODE 26110021 PATHNAME =
/../site-packages/cryptography/hazmat/bindings/_openssl.abi3.so

I've checked all the obvious stuff : perms, openssl versions,
module/package versions for cryptography, python version etc. and they're
all the same...

. Does anyone have another idea where to look?...

Thanks!

*Henri Kuiper*
*zdevops*

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: New Mainframe Community

2020-06-26 Thread Henri Kuiper
I was referring to the generic average. Not to anything anyone wrote here. 

I already regret replying. 

/EOT


> On 26 Jun 2020, at 19:30, Seymour J Metz  wrote:
> 
> Not all change is progress, nor does an ad hominem argument bolster your 
> case. Neither does constructing straw dummies. "New is bad.  Different is 
> bad." is a free construct of your imagination, unrelated to anything that 
> anybody here wrote.
> 
> Are their objections valid? I don't know, but misrepresenting them won't 
> convince anybody that they're wrong.
> 
> 
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
> 
> 
> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
> Henri Kuiper [henrikui...@zdevops.com]
> Sent: Friday, June 26, 2020 12:57 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: New Mainframe Community
> 
> Wow. What a lot of pushback.
> 
> This is (IMHO) precisely what’s wrong with the (generic average)  mainframe 
> community. New is bad.  Different is bad.
> 
> Dudes (m/f) : it’s not the 80s anymore.
> 
> That being said : here’s a little “why” for the existence of the thing : 
> https://secure-web.cisco.com/1XvN1_V6ok1sJNlFaq7Z343XlW_wRn1pLUP1SgDYhckTcNv1FTRNKBGu8BhJjyQFtzWCCdxOEkvQnVbzjpkqyIRWBMVMKO5NSI-_UQmV1T4GP85WyNx0I4tfXKY1GyyBAr7-13umt61eWdwZnJ4bmDSMkvpmk0_byLSjeOa645E40X2BFl2gbfYLVB5tGPd17bav80BvBMpmwbZflaSxkwRKCxNL5XcRfUQPMhpXZWZmUKY1zXMYL7_BESm8M2UUp15dsc7B9m8yYh98BuxkEmTbrJsw_AtpWxwk9--8dv2iecdL4nxNDhXzCt6cDHOu1q85TVJ2MqEpSo446EYbJAKC4r5vEuKvLDlI1DJ2XnTNZopVXqx9eofDzOzd8aDo1iWe_YjyhkhxGMZSC3vWLVdzgWUvbc1ciqLqZXVnjecO_3YH03XnqCv8Bk5um6Tm4/https%3A%2F%2Fzdevops.tumblr.com%2Fpost%2F620908065704853504%2Fmainframe-community-mattermost
> 
> That being said I’d say “traditional”  peeps like some of the reactions I 
> read here should probably not even try to see what it is.
> 
> There’s no punch cards. No bus But an easy, modern, new (young) blood 
> friendly environment where about 100 peeps are having some fun discussing 
> mainframe things.
> 
> No hard feelings.
> 
> And a happy weekend !
> 
> 
> 
> Sent from my wireless iPhone
> 
>> On 17 Jun 2020, at 01:12, Peter Bishop  wrote:
>> 
>> Hi Carmen,
>> 
>> "there's no such thing as a dumb question" comes to mind.  No need for any 
>> corner for you.  I also learned a bit of history and now know why that site 
>> Kolosu mentioned looks like so much rubbish now...
>> 
>> cheers,
>> Peter
>> 
>>>> On 16/06/2020 10:31 pm, Carmen Vitullo wrote:
>>> Kolusu, reached out to me personally and I replied to the wrong message and 
>>> my response went to this forum, so I need more coffee.
>>> thanks for the kind words and now that my response is 'out there' I have to 
>>> apologize to Mark for naming names. As a novice it's sometimes frustrating 
>>> when the company you support does not pay for Q support from IBM and has 
>>> been so terrible to loose all their MF staff.
>>> I've been lucky to be able to move on and learn more about design and build 
>>> and supporting my environment.
>>> back to my corner
>>> 
>>> 
>>> 
>>> 
>>> - Original Message -
>>> 
>>> From: "Lionel B Dyck" 
>>> To: IBM-MAIN@LISTSERV.UA.EDU
>>> Sent: Tuesday, June 16, 2020 7:24:06 AM
>>> Subject: Re: New Mainframe Community
>>> 
>>> Carmen - never put yourself down. While you may not be 'as smart' as some, 
>>> I'm sure you are 'smarter' than some as well. We each bring to the table 
>>> (forum/life) our own skills and capabilities which complement rather than 
>>> replace those of others.
>>> 
>>> Flames should be reserved for fires and stars, not for shaming others.
>>> 
>>> Lionel B. Dyck <
>>> Website: 
>>> https://secure-web.cisco.com/1yULUSmjcKu0JnI82-5pjv0k_Bny1yocXQ9O03xc8h1NKHop6zLYzmNDxJ6z8LbrWzqNKRE7ptnw5iOhkRQ2c8tlxUmxWlMCHga0Sh61wLJ5v7tIB3FPgl7P0FZbnO2IGRvYoNImo91L3m4-Nh3nMPatReD2DgXqFRZJCuAAK6hvnhfK5RfaTyvdaxOGJO4RNHceQLytnjeMBaKC3SMbn2yACSsavfpWOzE1mSGe1rcML2-AvSd1pjmNwBoxRVhoiZXC_c1-RH3PG1QbOpmEwn9xD8ZhTQaJ1YoOVwo7jPVe_TeQVImE1vLNSIANkZwdjnp353SoqsOUka5CLnJ_BuoPXfoyGBoGe5KoPrn38nbp4M74Ba6OX1BKixY7lwHU1zSwreweMWT2oGDOfwBaNk9UcVYlwTboFQ37Nebqh99zBGO-q35f0ruDBXMtYAayr/https%3A%2F%2Fwww.lbdsoftware.com
>>> 
>>> "Worry more about your character than your reputation. Character is what 
>>> you are, reputation merely what others think you are." - John Wooden
>>> 
>>> -Original Message-
>>> From: IBM Mainframe 

Re: New Mainframe Community

2020-06-26 Thread Henri Kuiper
Wow. What a lot of pushback. 

This is (IMHO) precisely what’s wrong with the (generic average)  mainframe 
community. New is bad.  Different is bad. 

Dudes (m/f) : it’s not the 80s anymore. 

That being said : here’s a little “why” for the existence of the thing : 
https://zdevops.tumblr.com/post/620908065704853504/mainframe-community-mattermost

That being said I’d say “traditional”  peeps like some of the reactions I read 
here should probably not even try to see what it is. 

There’s no punch cards. No bus But an easy, modern, new (young) blood 
friendly environment where about 100 peeps are having some fun discussing 
mainframe things. 

No hard feelings. 

And a happy weekend !



Sent from my wireless iPhone

> On 17 Jun 2020, at 01:12, Peter Bishop  wrote:
> 
> Hi Carmen,
> 
> "there's no such thing as a dumb question" comes to mind.  No need for any 
> corner for you.  I also learned a bit of history and now know why that site 
> Kolosu mentioned looks like so much rubbish now...
> 
> cheers,
> Peter
> 
>> On 16/06/2020 10:31 pm, Carmen Vitullo wrote:
>> Kolusu, reached out to me personally and I replied to the wrong message and 
>> my response went to this forum, so I need more coffee.
>> thanks for the kind words and now that my response is 'out there' I have to 
>> apologize to Mark for naming names. As a novice it's sometimes frustrating 
>> when the company you support does not pay for Q support from IBM and has 
>> been so terrible to loose all their MF staff.
>> I've been lucky to be able to move on and learn more about design and build 
>> and supporting my environment.
>> back to my corner
>> 
>> 
>> 
>> 
>> - Original Message -
>> 
>> From: "Lionel B Dyck" 
>> To: IBM-MAIN@LISTSERV.UA.EDU
>> Sent: Tuesday, June 16, 2020 7:24:06 AM
>> Subject: Re: New Mainframe Community
>> 
>> Carmen - never put yourself down. While you may not be 'as smart' as some, 
>> I'm sure you are 'smarter' than some as well. We each bring to the table 
>> (forum/life) our own skills and capabilities which complement rather than 
>> replace those of others.
>> 
>> Flames should be reserved for fires and stars, not for shaming others.
>> 
>> Lionel B. Dyck <
>> Website: https://www.lbdsoftware.com
>> 
>> "Worry more about your character than your reputation. Character is what you 
>> are, reputation merely what others think you are." - John Wooden
>> 
>> -Original Message-
>> From: IBM Mainframe Discussion List  On Behalf Of 
>> Carmen Vitullo
>> Sent: Tuesday, June 16, 2020 7:17 AM
>> To: IBM-MAIN@LISTSERV.UA.EDU
>> Subject: Re: New Mainframe Community
>> 
>> Kolusu, thank you for the history lesson, I personally would never 
>> 'advertise' (suggest) this site if I knew how low some folks will go to sell 
>> answers, I know of a couple of industries that do this, ask.com, I think was 
>> the first site I ever came across that you could ask a question and for a 
>> nominal price get an answer.
>> As I mentioned, being a novice myself at one time, I needed help with a 
>> SYSPLEX issue, I asked here, well, IBM-MAIN, and no one paid attention, at 
>> the time the hot topic for MVS folks was Windows related, I pointed that out 
>> that this was a MAINFRAME forum and was immediately shamed and flamed by 
>> Mark Zelden + others , that was the only reason why I came across that other 
>> site .
>> I've been a SYSPROG since 1993 came up from operations, I'm not as smart as 
>> most here but I do try and provide help when I can, and continue to read the 
>> Q+A here.
>> again thanks for reaching out to me and not shaming me more on the forum
>> 
>> Carmen Vitullo
>> 
>> - Original Message -
>> 
>> From: "Sri h Kolusu" 
>> To: IBM-MAIN@LISTSERV.UA.EDU
>> Sent: Monday, June 15, 2020 1:01:41 PM
>> Subject: Re: New Mainframe Community
>> 
>>> well then - they miss out on me, I've got free answers, and I know a
>>> lot of folks - beginners mostly that received good help.
>> I was a member of those sites and provided numerous answers (skolusu) and 
>> quit when they started forcing ads.
>> 
>>> I have much more work to do than research other sites.
>> I only pointed out because you are promoting a sham site. Nothing against 
>> you.
>> 
>> 
>> Thanks,
>> Kolusu
>> 
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>> 
>> 
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>> 
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>> 
>> 
>> --
>> For 

Re: DFSMShsm questions

2020-05-27 Thread Henri Kuiper
Lionel,
It's been a long time since I was spaceman...

Do recall that I used to direct HSMBACKUPS to the correct Library (I did my
fair share of ATL migrations lol) via the ACS constructs...based on name a
Dataclass, based on the dataclass a storgrp

link the (tape) storgrp to the correct set of volumes/ATL and presto

Met vriendelijke groeten,

*Henri Kuiper*
*zdevops B.V.*

*Keeping the "z" in Enterprise IT*

[image: Inline image 1] <http://nl.linkedin.com/in/wizardofzos>



*T* +31 6 392 1957 4
henrikui...@zdevops.com
http://zdevops.com
@henrikuiper: <https://twitter.com/intent/tweet?text=@henrikuiper:>@zdevops:
<https://twitter.com/intent/tweet?text=@zdevops:>

U kunt vanaf dit adres ook mail van mij ontvangen vanuit mijn rol als
Technical Coordinator van de GSE. Meer informatie op http://gsenl.org


On Wed, May 27, 2020 at 7:54 PM Lionel B Dyck  wrote:

> I can spell HSM and am learning more about it - I have these questions that
> I haven't found the answer to in the pubs (yet).
>
>
>
> 1.  How can I change the default unit for HBACKDS datasets from tape to
> disk?
> 2.  I have 2 virtual tape libraries - how do I force HSM to only use
> the
> tapes in one of them (it is currently using the 1st libraries tapes)?
>
>
>
> Thank you - answers would be ideal (and then I can move on to other
> projects) or  a pointer to pub/chapter would also be appreciated.
>
>
>
> Y'all be safe, healthy, and blessed.
>
>
>
>
>
> Lionel B. Dyck <
> Website:  <https://www.lbdsoftware.com> https://www.lbdsoftware.com
>
> "Worry more about your character than your reputation.  Character is what
> you are, reputation merely what others think you are." - John Wooden
>
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: WTO

2019-11-22 Thread Henri Kuiper
Maybe a bit late. But a plain WTO via an echo to /dev/console not an option?

Sent from my wireless iPhone

> On 19 Nov 2019, at 18:52, scott Ford  wrote:
> 
> Bruce, Peter, all:
> 
> A big thanks . its much appreciated by this older t-rex.
> 
> Scott
> 
>> On Tue, Nov 19, 2019 at 3:10 AM Bruce Hewson 
>> wrote:
>> 
>> Hello Scott,
>> 
>> How I do it.
>> 
>> in  CSECT copy list form from CONSTANTs section to DSECT working section
>> Update message text
>> run WTO execute form
>> 
>> in DSECT
>> WTO list form map
>> 
>> in Constants
>> WTO_text WTO list form with text
>> WTO_length = * - WTO_text
>> 
>> DESCT maps onto your own STORAGE area, thus copying the constant LIST form
>> over the DSECT map makes the code reentrant.
>> 
>> 
>> 
>> 
>> 
>>> On Mon, 18 Nov 2019 08:55:45 -0500, scott Ford  wrote:
>>> 
>>> Peter,
>>> 
>> 
>>> I have to add displays ( WTOs ). I dont have complaints again IBM, rarely,
>>> best people I ever worked with, my issue is howtos. Working examples which
>>> I can refer to and understand
>>> (prototype) before I start writing code. When to use the execute form of
>>> the macro vs list, also let me add I was never an applications program, i
>> 
>> 
>> 
>> Regards
>> Bruce
>> 
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>> 
> 
> 
> -- 
> 
> 
> 
> *IDMWORKS *
> 
> Scott Ford
> 
> z/OS Dev.
> 
> 
> 
> 
> “By elevating a friend or Collegue you elevate yourself, by demeaning a
> friend or collegue you demean yourself”
> 
> 
> 
> www.idmworks.com
> 
> scott.f...@idmworks.com
> 
> Blog: www.idmworks.com/blog
> 
> 
> 
> 
> 
> *The information contained in this email message and any attachment may be
> privileged, confidential, proprietary or otherwise protected from
> disclosure. If the reader of this message is not the intended recipient,
> you are hereby notified that any dissemination, distribution, copying or
> use of this message and any attachment is strictly prohibited. If you have
> received this message in error, please notify us immediately by replying to
> the message and permanently delete it from your computer and destroy any
> printout thereof.*
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: git with it

2019-11-05 Thread Henri Kuiper
Just to clarify : the link to the repo wil "404" until release time. Watch 
@ispfgit on twitter for the moment that happens. 

Sent from my wireless iPhone

> On 5 Nov 2019, at 12:42, Lionel B Dyck  wrote:
> 
> The countdown continues towards an epic announcement that will rock the z/OS
> development world down to the bit level. Be prepared as you'll have to wait
> for the announcement at GSE UK this Thursday at 11:15. Be prepared to git
> it.  Or go to   https://zigi.rocks to be a preview. #git
> #ispf #zos #zdevops #awesome #epic #gseconf
> 
> 
> 
> Lionel B. Dyck <
> Website:   http://www.lbdsoftware.com
> 
> "Worry more about your character than your reputation.  Character is what
> you are, reputation merely what others think you are." - John Wooden
> 
> 
> 
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: git with it

2019-11-05 Thread Henri Kuiper
;)

Sent from my wireless iPhone

> On 5 Nov 2019, at 13:03, David Crayford  wrote:
> 
> WOW! That looks awsome! Thanks Lionel :)
> 
>> On 2019-11-05 8:42 PM, Lionel B Dyck wrote:
>> The countdown continues towards an epic announcement that will rock the z/OS
>> development world down to the bit level. Be prepared as you'll have to wait
>> for the announcement at GSE UK this Thursday at 11:15. Be prepared to git
>> it.  Or go to   https://zigi.rocks to be a preview. #git
>> #ispf #zos #zdevops #awesome #epic #gseconf
>> 
>>  
>> Lionel B. Dyck <
>> Website:   http://www.lbdsoftware.com
>> 
>> "Worry more about your character than your reputation.  Character is what
>> you are, reputation merely what others think you are." - John Wooden
>> 
>>  
>> 
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: REXX/SDSF ISFLOG ' failure'

2012-08-23 Thread Henri Kuiper
Just found the answer. Most docs specify 1.11 as minimal but it seems
ISFLOG was only added in 1.12

http://publib.boulder.ibm.com/infocenter/ieduasst/stgv1r0/topic/com.ibm.iea.zos/zos/1.13/Application-Middleware-Workload_Enablement/zOS_V1R13_SDSF_REXX-Operlog-Support.pdf

 .. SDSF/REXX was introduced in SDSF V1R9 and the ISFLOG command was
added in SDSF V1R12 to read or allocate syslog. .

Thanks for your help!

On Wed, Aug 22, 2012 at 3:43 PM, Lizette Koehler stars...@mindspring.comwrote:

 Is there any dependence on the JES Activation level?

 Lizette

 
  I know the doc states that it will, I just can't seem to recall why it
 doesn't.  Possibly
  just ptf's.
 
  -Original Message-
  From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
 Behalf
  Of Henri Kuiper
  Sent: Wednesday, August 22, 2012 8:23 AM
  To: IBM-MAIN@LISTSERV.UA.EDU
  Subject: Re: REXX/SDSF ISFLOG ' failure'
 
  Bill,
 
  Thanks for your reply.
  Weird, because the docs state it should be at level 1.11 ;(
 
  See http://ibmmainframeforum.com/viewtopic.php?f=31t=6352 too.
 
  Someone there states it's working under z/OS 1.11
 

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Auditors Don't Know Squat!

2012-08-13 Thread Henri Kuiper
They (auditors) are right.
Apply immediately !

(no I kid.)

There are no valid arguments to convey such people to adopt another
mindset. As one of my great mentors once told me :

Never argue with an idiot, they drag you down to their level then beat you
with experience


Good luck there!



(If you need someone to help you out writing a sane 'maintanance strategy'
to keep idiots like this at bay, let me know :))

On Wed, Aug 8, 2012 at 11:16 PM, Scott Ford scott_j_f...@yahoo.com wrote:

 Amen bro I am a mainframe believer for long time

 Scott ford
 www.identityforge.com

 On Aug 8, 2012, at 12:19 AM, Thomas Kern tlk_sysp...@yahoo.com wrote:

  On 8/7/2012 21:20, Robert A. Rosenberg wrote:
  At 10:17 + on 08/07/2012, Pearce, Colin E wrote about Re: Auditors
 Don't Know Squat!:
 
  Ask the Auditors if they will help you fill out all the APARs and
 collect the supporting
  documents
 
  IMO: Any Auditor who wants to tell me how to do my job (as opposed to
 just critiquing how
  I do it) is not qualified to do so UNLESS he can do my job in the first
 place.
 
  The worst part about all of these auditors, is that most of us who are
 being edged out of
  jobs because of declining mainframe usage can be better auditors than
 all of those that
  have visited me in my 36 years of mainframe work, BUT our bosses and the
 auditors' bosses
  just don't think mainframe dinosaurs know anything about computing, data
 integrity,
  information security.
 
  Some one who has never touched anything more than a windows workstation
 always knows more
  than we do.
 
  /Tom Kern
 
  --
  For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: test posting

2012-08-13 Thread Henri Kuiper
This one did :)

On Mon, Aug 6, 2012 at 6:41 PM, Jousma, David david.jou...@53.com wrote:

 My last two posts have not yet made it to the list.   Just wondering why...
 This e-mail transmission contains information that is confidential and may
 be privileged.
 It is intended only for the addressee(s) named above. If you receive this
 e-mail in error,
 please do not read, copy or disseminate it in any manner.  If you are not
 the intended
 recipient, any disclosure, copying, distribution or use of the contents of
 this information
 is prohibited. Please reply to the message immediately by informing the
 sender that the
 message was misdirected. After replying, please erase it from your
 computer system. Your
 assistance in correcting this error is appreciated.




 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: X86 server

2012-08-13 Thread Henri Kuiper
Jake,

What x86 server are you referring to? Are you talking about the x68blades
in a zBX-frame connected to the mainframe?
Or are you hinting at running z/OS from x86 hardware?

If the latter is the case : feel free to contact me. You can take a sneak
peak at http://zdevops.com
We do z/OS virtualizations on x86 hardware :).

Cheers


Henri


On Mon, Aug 13, 2012 at 1:27 PM, Jake anderson justmainfra...@gmail.comwrote:

 Dear All,

 Could someone provide more information on X86 server ? I am just curious to
 know if this server is a mimic of Z.OS ? If it is so Migrating from Z/OS to
 X86 will be a good idea ?

 Jake

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN