wordpress
Tech - Web Development

How to Delete a WordPress Theme

Nothing is ever straight forward. This is a fact!  Naturally, this also applies to when you want to delete a WordPress Theme. The thing is it’s actually quite simple to remove a Theme from WordPress. The problem as always is that the option seems to be hidden from everyone. Ok, no […]
CARLa

CARLa to list RACF Global Access Table Profiles

The following CARLa script will list the RACF Global Access Table (GAT) profiles: n i=base s c=general and s=base c=GLOBAL sortlist class(key,pas) searchkey(key,nondispl) key(key,pas,12), memlst(header,0,sort) The result of the above CARLa script should look like: Class Profile key Members GLOBAL DATASET &RACUID.**/ALTER SYS1.HELP/READ  
CARLa

CARLa to report on the number of users connected to each RACF group

The following CARLa will report on all RACF groups and the number of  users connected to them: newlist type=RACF select c=group s=base sortlist key(‘Group’,8) owner supgroup aclcnt The result of the above CARLa script should look like: Group    Owner    SupGroup Perms #AUX     #RMF     #RMF         2 #LUXBRG  #RMF     #RMF         0 #RMF     SYS1     SYS1       […]