Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Deflector shields just came on, Captain.


devel / comp.lang.cobol / Some COBOL-related observations...

SubjectAuthor
* Some COBOL-related observations...pete dashwood
`* Re: Some COBOL-related observations...docdwarf
 +- Re: Some COBOL-related observations...pete dashwood
 `* Re: Some COBOL-related observations...Randy Hudson
  +* Re: Some COBOL-related observations...Joe
  |+* Re: Some COBOL-related observations...Randy Hudson
  ||`- Re: Some COBOL-related observations...Joe
  |`* Re: Some COBOL-related observations...pete dashwood
  | `- Re: Some COBOL-related observations...pete dashwood
  +- Re: Some COBOL-related observations...docdwarf
  `- Re: Some COBOL-related observations...pete dashwood

1
Some COBOL-related observations...

<ivb3saFolqnU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=232&group=comp.lang.cobol#232

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: dashwood@enternet.co.nz (pete dashwood)
Newsgroups: comp.lang.cobol
Subject: Some COBOL-related observations...
Date: Sun, 14 Nov 2021 13:34:19 +1300
Lines: 129
Message-ID: <ivb3saFolqnU1@mid.individual.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net KA+XsWRbObvSPAvYVjJoVAUqoFs5cSdFytokCDWYsTZ1OYVxWV
Cancel-Lock: sha1:YngwZy25zDymgvnY6YKfMQrC2JY=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.0
Content-Language: en-US
 by: pete dashwood - Sun, 14 Nov 2021 00:34 UTC

I am currently working on the PRIMA Web Site to make it reflect a change
in direction of the business.
(https://primacomputing.co.nz)

We had a run of bad luck where our ISP died then, after I managed to get
everything transferred to a new host, a short time after the site was
settling down, that ISP sold out to a different one and that has meant a
few trivial but annoying changes.

I wrote the site originally in ASP.NET and it has proven to be excellent
for web development. The later versions of Visual Studio allow me to
develop pages with a design surface just like Win Forms or WPF and it is
very easy to wire them to the C# code-behind that drives all the events,
then FTP them to the server with Filezilla.
Everything runs as compiled code on the server and it is much more
secure than interpreting client side scripts.

It allows me to retain a "hand-made" look and feel which may not be as
slick as a templated WordPress site, but which makes us a little
different from most of the sites out there.

Anyway, recently I put the final touches and end-point processes into
the PRIMA Tools. It has taken me 13 years... :-)

The last processes for PowerCOBOL to Dot.NET are integrated and I am
satisfied with the testing.

The onset of Covid affected the demand for migration (or maybe our niche
was closing anyway... I'll never know) so the Company has had to be run
on its reserves to keep going.

I decided that if we are to encourage any remaining people to move their
standard COBOL from indexed files into RDB, or their PowerCOBOL GUI
applications into .NET, it is counter-productive to sell them the tools
and help them learn how to use them. Much quicker and cheaper for
everybody, if we just do it for them.

So I am moving PRIMA to be a service company where you have a shopping
list of what you need and I am writing an online calculator that will
give you a "ballpark quote" based on what you want done.

This arose after there was a recent pricing enquiry here and the OP
really didn't get that the price will vary depending on a number of
factors and quantities. I gave him a fairly accurate ball-park but, in
fact, it could have been less expensive if some other factors had been
added in. Hence, an algorithm that will work like a calculator on the
web page and give people a good idea of what THEIR specific cost is
likely to be if they go with our solution.

I've also taken a bit of time to reflect on the tool development and I
have a few observations that might be of consideration to those of you
developing applications in COBOL. The following is opinion, based on
experience, so it is arguable:

1. Go with a modular design.
The overall design should have 3 tier design if it is for the Network.
Presentation Layer, Business Logic Layer, and Database Access Layer.
(Our tools generate all of the code for these layers, salvaging the
COBOL Business Logic from your legacy, creating the DAL Layer and (for
PowerCOBOL...) converting the Presentation layer to .NET Forms.
Each of these functions will be on the new shopping list...

If you are doing Batch Processing in COBOL and simply moving to a
modern RDBMS, it is very tempting to integrate everything into
monolithic application programs, then go through and simply change all
the indexed IO to be Embedded SQL... My advice: DON'T DO IT! I've
covered it here: https://primacomputing/PRIMAMetro/RDBandSQL3.aspx
(Again, we can offer you a service where we analyze all your existing
COPY books and design an optimized Relational Database, along with a DAL
Layer to handle it (if required). We can also do the code conversion of
your Legacy so that it uses the DAL Layer.

BOTTOM LINE: Small is beautiful. Isolate functionality into components
and use layered collections of these components. This has minimal
disruption when it needs maintenance, and it is much quicker and easier
to locate problem code.

Objected Oriented Programming (in COBOL or any other OO language)
facilitates this approach.

2. Be careful with TABBED controls in your software.
(There are a number of "COBOL PlugIns" that provide a GUI facility. We
deal mostly with PowerCOBOL from Fujitsu.)

It is very easy to let tabbed functionality get out of control. You
design a new function; add a new TAB... all well and good but don't let
it go too far...

One of our tools has more than 10 TABs in it and some of these are for
functionality that is no longer used. You'd think it would be pretty
easy to simply cut out the unnecessary ones... I worked out it would
take me 1 - 2 days to do this properly. Who has days available for
"cosmetics"...? (as we are no longer selling the tools, I immediately
picked up 1 - 2 days.... :-))

3. I have been doing quite a bit of COBOL manipulation using Visual
Studio Code. It has many of the advantages of VS (like Intellisense and
Bookmarks...) and I think it does make COBOL coding easier. It's a free
tool and it will deal with ANY Version of COBOL that is at least COBOL
'85 compliant. (I should think it would be very good for GNU COBOL...,
but I'm sure Eclipse is also good.)

4. Back in the 1990s I suggested that COBOL people should expand their
toolbox. Sadly, there was an attitude that "Everything I want to do, I
can do in COBOL..." (I always thought it showed limited aspiration as to
what you want to do...). A recent browse of COBOL jobs showed that COBOL
alone is not really enough to get you employed. There are still
mainframe jobs and knowledge of that environment is good, but they will
be much more interested if you have network knowledge as well.I saw ads
for PHP, Java and COBOL, C# and COBOL, and Windows scripting that were
marked as "desirable".

I would recommend that if you are still interested in expanding your
skill set, take a look at Rust and JavaScript. I have only had limited
exposure to Rust but it really impressed me. On my list for when I get
time... :-)

I'd be interested to hear what people are actually doing, in terms of
COBOL, if there are still people writing COBOL every day.. Why not post
a summarized response? And, of course, any comments on the opinions
expressed above would be acknowledged and/or discussed.

Cheers,

Pete.

--
I used to write *COBOL*; now I can do *anything*...

Re: Some COBOL-related observations...

<smpngj$i2a$1@reader1.panix.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=233&group=comp.lang.cobol#233

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!panix!.POSTED.panix1.panix.com!not-for-mail
From: docdwarf@panix.com
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Sun, 14 Nov 2021 01:07:31 -0000 (UTC)
Organization: Public Access Networks Corp.
Message-ID: <smpngj$i2a$1@reader1.panix.com>
References: <ivb3saFolqnU1@mid.individual.net>
Injection-Date: Sun, 14 Nov 2021 01:07:31 -0000 (UTC)
Injection-Info: reader1.panix.com; posting-host="panix1.panix.com:166.84.1.1";
logging-data="18506"; mail-complaints-to="abuse@panix.com"
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: docdwarf@panix.com - Sun, 14 Nov 2021 01:07 UTC

In article <ivb3saFolqnU1@mid.individual.net>,
pete dashwood <dashwood@enternet.co.nz> wrote:

[snip]

>A recent browse of COBOL jobs showed that COBOL
>alone is not really enough to get you employed. There are still
>mainframe jobs and knowledge of that environment is good, but they will
>be much more interested if you have network knowledge as well.I saw ads
>for PHP, Java and COBOL, C# and COBOL, and Windows scripting that were
>marked as "desirable".

Every so often I'll get an email from someone asking for The Usual
Suspects (for an IBM shop that's five-to-seven years' of COBOL, VSAM,
CICS, DB2, FileAid and the like). I have two 'kepboard macros' that I use
to respond to such folks:

1) 'Sounds interesting. What kind of rate are they offering?'

.... and if a response comes - and they rarely do - the hourly rates
offered are the same ones I used to see in 1985. This triggers the net
keyboard macro:

2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
kind of rate are they offering almost forty years later?'

DD

Re: Some COBOL-related observations...

<ivdn2gF983sU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=234&group=comp.lang.cobol#234

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: dashwood@enternet.co.nz (pete dashwood)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 15 Nov 2021 13:14:13 +1300
Lines: 40
Message-ID: <ivdn2gF983sU1@mid.individual.net>
References: <ivb3saFolqnU1@mid.individual.net>
<smpngj$i2a$1@reader1.panix.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net oWi8rOIyOKTJ8BQeC4j/uA0k9vSJu9oU0Fih20OkKseNJBLXZr
Cancel-Lock: sha1:KYNYMSpwn9JMznUqIv4N1KyRU0Q=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.0
Content-Language: en-US
In-Reply-To: <smpngj$i2a$1@reader1.panix.com>
 by: pete dashwood - Mon, 15 Nov 2021 00:14 UTC

On 14/11/2021 14:07, docdwarf@panix.com wrote:
> In article <ivb3saFolqnU1@mid.individual.net>,
> pete dashwood <dashwood@enternet.co.nz> wrote:
>
> [snip]
>
>> A recent browse of COBOL jobs showed that COBOL
>> alone is not really enough to get you employed. There are still
>> mainframe jobs and knowledge of that environment is good, but they will
>> be much more interested if you have network knowledge as well.I saw ads
>> for PHP, Java and COBOL, C# and COBOL, and Windows scripting that were
>> marked as "desirable".
>
> Every so often I'll get an email from someone asking for The Usual
> Suspects (for an IBM shop that's five-to-seven years' of COBOL, VSAM,
> CICS, DB2, FileAid and the like). I have two 'kepboard macros' that I use
> to respond to such folks:
>
> 1) 'Sounds interesting. What kind of rate are they offering?'
>
> ... and if a response comes - and they rarely do - the hourly rates
> offered are the same ones I used to see in 1985. This triggers the net
> keyboard macro:
>
> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
> kind of rate are they offering almost forty years later?'
>
> DD
>

Hi Doc,

that is amazing (and pretty disappointing...).

It seems that COBOL skill continues to be undervalued as it always was.

Pete.

--
I used to write *COBOL*; now I can do *anything*...

Re: Some COBOL-related observations...

<smtr24$1en$1@reader1.panix.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=235&group=comp.lang.cobol#235

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!panix!.POSTED.panix2.panix.com!not-for-mail
From: ime@panix.com (Randy Hudson)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 15 Nov 2021 14:32:36 -0000 (UTC)
Organization: Public Access Networks Corp.
Message-ID: <smtr24$1en$1@reader1.panix.com>
References: <ivb3saFolqnU1@mid.individual.net> <smpngj$i2a$1@reader1.panix.com>
Injection-Date: Mon, 15 Nov 2021 14:32:36 -0000 (UTC)
Injection-Info: reader1.panix.com; posting-host="panix2.panix.com:166.84.1.2";
logging-data="1495"; mail-complaints-to="abuse@panix.com"
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: Randy Hudson - Mon, 15 Nov 2021 14:32 UTC

In article <smpngj$i2a$1@reader1.panix.com>, <docdwarf@panix.com> wrote:

> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
> kind of rate are they offering almost forty years later?'

Presumably one warranted by the productivity of a programmer using the
language.

As the productivity (as measured by those paying for the production) of
COBOL programming diminishes relative to the productivity of python / go /
C# / whatever, the rates offered also languish. To improve rates for those
skilled in a particular tool, improve the productivity of the programmers
using the tool.

Re: Some COBOL-related observations...

<tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=236&group=comp.lang.cobol#236

  copy link   Newsgroups: comp.lang.cobol
From: none@nowhere.whereo (Joe)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 15 Nov 2021 16:34:32 +0000
Reply-To: none@nowhere.whereo
Message-ID: <tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>
References: <ivb3saFolqnU1@mid.individual.net> <smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com>
User-Agent: ForteAgent/8.00.32.1272
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Organization: KPN B.V.
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.mixmin.net!feed.abavia.com!abe002.abavia.com!abp001.abavia.com!news.kpn.nl!not-for-mail
Lines: 26
Injection-Date: Mon, 15 Nov 2021 17:34:34 +0100
Injection-Info: news.kpn.nl; mail-complaints-to="abuse@kpn.com"
 by: Joe - Mon, 15 Nov 2021 16:34 UTC

On Mon, 15 Nov 2021 14:32:36 -0000 (UTC), ime@panix.com (Randy Hudson) wrote:

>In article <smpngj$i2a$1@reader1.panix.com>, <docdwarf@panix.com> wrote:
>
>> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
>> kind of rate are they offering almost forty years later?'
>
>Presumably one warranted by the productivity of a programmer using the
>language.
>
>As the productivity (as measured by those paying for the production) of
>COBOL programming diminishes relative to the productivity of python / go /
>C# / whatever, the rates offered also languish. To improve rates for those
>skilled in a particular tool, improve the productivity of the programmers
>using the tool.

Do you have anything to support this claim? Additionally, are you talking about modules or systems? Are you taking TCO into
consideration?

My experience differs depending on the requirement. There appears to be a tendency for developing MVP's, something a halfway decent
Cobol developer doesn't consider to be a viable deliverable. MVP's are fine for throw-away systems, not for core bussiness
applications. "The old stuff" or "legacy" is disguised by management and architects even though operationally it is cheap and has a
low incidence rate. It's just not sexy.

FYI: My scope encompasses many languages and technical platforms.

Re: Some COBOL-related observations...

<smu29m$fi$1@reader1.panix.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=237&group=comp.lang.cobol#237

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!panix!.POSTED.panix1.panix.com!not-for-mail
From: docdwarf@panix.com
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 15 Nov 2021 16:36:06 -0000 (UTC)
Organization: Public Access Networks Corp.
Message-ID: <smu29m$fi$1@reader1.panix.com>
References: <ivb3saFolqnU1@mid.individual.net> <smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com>
Injection-Date: Mon, 15 Nov 2021 16:36:06 -0000 (UTC)
Injection-Info: reader1.panix.com; posting-host="panix1.panix.com:166.84.1.1";
logging-data="498"; mail-complaints-to="abuse@panix.com"
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: docdwarf@panix.com - Mon, 15 Nov 2021 16:36 UTC

In article <smtr24$1en$1@reader1.panix.com>,
Randy Hudson <ime@panix.com> wrote:
>In article <smpngj$i2a$1@reader1.panix.com>, <docdwarf@panix.com> wrote:
>
>> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
>> kind of rate are they offering almost forty years later?'
>
>Presumably one warranted by the productivity of a programmer using the
>language.

Hey, good joke! How does one measure the productivity of 'learning where
to hit the machine'?

>As the productivity (as measured by those paying for the production) of
>COBOL programming diminishes relative to the productivity of python / go /
>C# / whatever, the rates offered also languish. To improve rates for those
>skilled in a particular tool, improve the productivity of the programmers
>using the tool.

Decisions about COBOL and the platforms on which it runs are, nowadays,
not made by considering productivity - in my experience, of course - but
are instead made by someone hollering 'DO SOMETHING NOW!' when a
meetingful of Corporate Equals explodes into that 'you still have a
MAINFRAME?' laughter designed to shrivel one's sensitive regions as does
sitting on a winter-chilled Albany bus-bench.

DD

Re: Some COBOL-related observations...

<smu574$iee$1@reader1.panix.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=238&group=comp.lang.cobol#238

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!panix!.POSTED.panix2.panix.com!not-for-mail
From: ime@panix.com (Randy Hudson)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 15 Nov 2021 17:25:56 -0000 (UTC)
Organization: Public Access Networks Corp.
Message-ID: <smu574$iee$1@reader1.panix.com>
References: <ivb3saFolqnU1@mid.individual.net> <smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com> <tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>
Injection-Date: Mon, 15 Nov 2021 17:25:56 -0000 (UTC)
Injection-Info: reader1.panix.com; posting-host="panix2.panix.com:166.84.1.2";
logging-data="18894"; mail-complaints-to="abuse@panix.com"
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: Randy Hudson - Mon, 15 Nov 2021 17:25 UTC

In article <tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>,
Joe <none@nowhere.whereo> wrote:

> On Mon, 15 Nov 2021 14:32:36 -0000 (UTC), ime@panix.com (Randy Hudson) wrote:
>
>> In article <smpngj$i2a$1@reader1.panix.com>, <docdwarf@panix.com> wrote:
>>
>>> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
>>> kind of rate are they offering almost forty years later?'
>>
>> Presumably one warranted by the productivity of a programmer using the
>> language.
>>
>> As the productivity (as measured by those paying for the production) of
>> COBOL programming diminishes relative to the productivity of python / go /
>> C# / whatever, the rates offered also languish. To improve rates for those
>> skilled in a particular tool, improve the productivity of the programmers
>> using the tool.
>
> Do you have anything to support this claim?

The claim that rates track perceived productivity of the worker using the
tools of his choice? No; it's probably just a fantasy, and rates are chosen
by throwing 20-sided dice.

> Additionally, are you talking about modules or systems? Are you taking TCO into
> consideration?

"as measured by those paying..."

TCO is unknown at the time the rates are determined, though of course
attempts are made to estimate it closely.

> My experience differs depending on the requirement. There appears to be a
> tendency for developing MVP's, something a halfway decent Cobol developer
> doesn't consider to be a viable deliverable. MVP's are fine for
> throw-away systems, not for core bussiness applications. "The old stuff"
> or "legacy" is disguised by management and architects even though
> operationally it is cheap and has a low incidence rate. It's just not
> sexy.

End-user experience is easier for non-technical executives to themselves
observe than "back-end" performance. That may lead to mispricing those
deliverables, not because of sexiness, but because their effectiveness is
easier to evaluate.

> FYI: My scope encompasses many languages and technical platforms.

Probably more than mine; the last time I was paid for programming, I was
writing in BAL.

Re: Some COBOL-related observations...

<h9o7pghjl0043c9adl50ime90tpq1aijmv@4ax.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=239&group=comp.lang.cobol#239

  copy link   Newsgroups: comp.lang.cobol
From: none@nowhere.whereo (Joe)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Tue, 16 Nov 2021 16:50:42 +0000
Reply-To: none@nowhere.whereo
Message-ID: <h9o7pghjl0043c9adl50ime90tpq1aijmv@4ax.com>
References: <ivb3saFolqnU1@mid.individual.net> <smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com> <tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com> <smu574$iee$1@reader1.panix.com>
User-Agent: ForteAgent/8.00.32.1272
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Organization: KPN B.V.
Path: i2pn2.org!i2pn.org!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!feed.abavia.com!abe002.abavia.com!abp001.abavia.com!news.kpn.nl!not-for-mail
Lines: 11
Injection-Date: Tue, 16 Nov 2021 17:50:43 +0100
Injection-Info: news.kpn.nl; mail-complaints-to="abuse@kpn.com"
 by: Joe - Tue, 16 Nov 2021 16:50 UTC

On Mon, 15 Nov 2021 17:25:56 -0000 (UTC), ime@panix.com (Randy Hudson) wrote:

>In article <tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>,
> Joe <none@nowhere.whereo> wrote:
>> FYI: My scope encompasses many languages and technical platforms.
>
>Probably more than mine; the last time I was paid for programming, I was
>writing in BAL.

Nice one ;-) Haven't done that for a while....

Re: Some COBOL-related observations...

<j010gtFucinU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=241&group=comp.lang.cobol#241

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: dashwood@enternet.co.nz (pete dashwood)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 22 Nov 2021 20:51:55 +1300
Lines: 36
Message-ID: <j010gtFucinU1@mid.individual.net>
References: <ivb3saFolqnU1@mid.individual.net>
<smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net s4SNpfvKVgfd1goZrOrIqgF478NI9w6AgV6yzoT1w6MG3bDd00
Cancel-Lock: sha1:qfGo8w3bYS+pG+dR5zVuir101OI=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.0
Content-Language: en-US
In-Reply-To: <smtr24$1en$1@reader1.panix.com>
 by: pete dashwood - Mon, 22 Nov 2021 07:51 UTC

On 16/11/2021 03:32, Randy Hudson wrote:
> In article <smpngj$i2a$1@reader1.panix.com>, <docdwarf@panix.com> wrote:
>
>> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
>> kind of rate are they offering almost forty years later?'
>
> Presumably one warranted by the productivity of a programmer using the
> language.
>
> As the productivity (as measured by those paying for the production) of
> COBOL programming diminishes relative to the productivity of python / go /
> C# / whatever, the rates offered also languish. To improve rates for those
> skilled in a particular tool, improve the productivity of the programmers
> using the tool.
>
That sounds reasonable and you make a fair point.

For myself I am at least twice as productive in C# than I am in COBOL.

This has nothing to do with the language, but rather with the fact that
Visual Studio is MUCH more powerful than the Fujitsu IDEs for COBOL or
PowerCOBOL.

It is also undeniable that COBOL is more verbose than the other
languages and requires more writing. (Especially if you want it to be
maintainable...)

I tried using Visual Studio Code (another free version of VS, that can
support most dialects of COBOL), and it was definitely better. But I
didn't do prolonged trials with it because I stopped using COBOL
(almost) altogether and for the small amounts I do use it, the IDEs are
acceptable.

Pete.
--
I used to write *COBOL*; now I can do *anything*...

Re: Some COBOL-related observations...

<j010qeFue6eU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=242&group=comp.lang.cobol#242

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: dashwood@enternet.co.nz (pete dashwood)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Mon, 22 Nov 2021 20:57:00 +1300
Lines: 40
Message-ID: <j010qeFue6eU1@mid.individual.net>
References: <ivb3saFolqnU1@mid.individual.net>
<smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com>
<tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net wA+HOvnu3Abz+MNzxZQ1DgyB1R0XSPYh0Y1TcwmzKSQ9Swd3Ga
Cancel-Lock: sha1:fZQ/2fXb+7vacRzWhpycDy/VAHc=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.0
Content-Language: en-US
In-Reply-To: <tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>
 by: pete dashwood - Mon, 22 Nov 2021 07:57 UTC

On 16/11/2021 05:34, Joe wrote:
> On Mon, 15 Nov 2021 14:32:36 -0000 (UTC), ime@panix.com (Randy Hudson) wrote:
>
>> In article <smpngj$i2a$1@reader1.panix.com>, <docdwarf@panix.com> wrote:
>>
>>> 2) 'Hey, good joke! Seriously, I was billing that rate in 1985... what
>>> kind of rate are they offering almost forty years later?'
>>
>> Presumably one warranted by the productivity of a programmer using the
>> language.
>>
>> As the productivity (as measured by those paying for the production) of
>> COBOL programming diminishes relative to the productivity of python / go /
>> C# / whatever, the rates offered also languish. To improve rates for those
>> skilled in a particular tool, improve the productivity of the programmers
>> using the tool.
>
> Do you have anything to support this claim? Additionally, are you talking about modules or systems? Are you taking TCO into
> consideration?
>
> My experience differs depending on the requirement. There appears to be a tendency for developing MVP's, something a halfway decent
> Cobol developer doesn't consider to be a viable deliverable. MVP's are fine for throw-away systems, not for core bussiness
> applications. "The old stuff" or "legacy" is disguised by management and architects even though operationally it is cheap and has a
> low incidence rate. It's just not sexy.
>
> FYI: My scope encompasses many languages and technical platforms.
>

If you look at TCO, COBOL is way behind at the end of the field.

COBOL Compilers continue to be exorbitant with mandatory updates and
service chanrges also required.

C#, VB.NET, RUST, Java, and Python are all FREE! And support is
available with a mouse click from a a community of millions.

Pete.

--
I used to write *COBOL*; now I can do *anything*...

Re: Some COBOL-related observations...

<j02meaFa08aU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=243&group=comp.lang.cobol#243

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.szaf.org!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: dashwood@enternet.co.nz (pete dashwood)
Newsgroups: comp.lang.cobol
Subject: Re: Some COBOL-related observations...
Date: Tue, 23 Nov 2021 12:12:10 +1300
Lines: 116
Message-ID: <j02meaFa08aU1@mid.individual.net>
References: <ivb3saFolqnU1@mid.individual.net>
<smpngj$i2a$1@reader1.panix.com> <smtr24$1en$1@reader1.panix.com>
<tf25pg5pt7mo2arhlpdvc914jjb708dh7d@4ax.com>
<j010qeFue6eU1@mid.individual.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
X-Trace: individual.net ZqKjqqr/1fOhhOjD51Iq8Ad+WVlFaqouTOEguOpEer3SK/zUe4
Cancel-Lock: sha1:akeNxD72LcoF7wQD8Y5XBZ1WJtE=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Content-Language: en-US
In-Reply-To: <j010qeFue6eU1@mid.individual.net>
 by: pete dashwood - Mon, 22 Nov 2021 23:12 UTC

On 22/11/2021 20:57, pete dashwood wrote:
> On 16/11/2021 05:34, Joe wrote:
>> On Mon, 15 Nov 2021 14:32:36 -0000 (UTC), ime@panix.com (Randy Hudson)
>> wrote:
>>
>>> In article <smpngj$i2a$1@reader1.panix.com>,  <docdwarf@panix.com>
>>> wrote:
>>>
>>>> 2)  'Hey, good joke!  Seriously, I was billing that rate in 1985...
>>>> what
>>>> kind of rate are they offering almost forty years later?'
>>>
>>> Presumably one warranted by the productivity of a programmer using the
>>> language.
>>>
>>> As the productivity (as measured by those paying for the production) of
>>> COBOL programming diminishes relative to the productivity of python /
>>> go /
>>> C# / whatever, the rates offered also languish.  To improve rates for
>>> those
>>> skilled in a particular tool, improve the productivity of the
>>> programmers
>>> using the tool.
>>
>> Do you have anything to support this claim?  Additionally, are you
>> talking about modules or systems?  Are you taking TCO into
>> consideration?
>>
>> My experience differs depending on the requirement.  There appears to
>> be a tendency for developing MVP's, something a halfway decent
>> Cobol developer doesn't consider to be a viable deliverable.  MVP's
>> are fine for throw-away systems, not for core bussiness
>> applications.  "The old stuff" or "legacy" is disguised by management
>> and architects even though operationally it is cheap and has a
>> low incidence rate.  It's just not sexy.
>>
>> FYI: My scope encompasses many languages and technical platforms.
>>
>
> If you look at TCO, COBOL is way behind at the end of the field.
>
> COBOL Compilers continue to be exorbitant with mandatory updates and
> service chanrges also required.
>
> C#, VB.NET, RUST, Java, and Python are all FREE! And support is
> available with a mouse click from a a community of millions.
>
> Pete.
>
I just wanted to add something in response to:

>> MVP's
>> are fine for throw-away systems, not for core business
>> applications. "The old stuff" or "legacy" is disguised by management
>> and architects even though operationally it is cheap and has a
>> low incidence rate. It's just not sexy.

MVPs are NOT just for throwaway systems. They are the basis of an
evolving system that is responsive to changing user needs. Typically,
this will involve an Agile style of Project Management, where there are
iterations of development against user established priorities. (When I
do it, it is also timeboxed...)

This is far removed from the traditional COBOL Waterfall development and
that's why most COBOL people don't really understand it.

The overall concept is that a system evolves from the bare minimum
facilities into something that is very useful and forms a core business
solution. And this is driven by 2 factors:

1. Iteration.
2. Interaction.

The interaction ensures that end users are involved throughout the
process, and it is THEIR priorities which are addressed.

Progress is incremental and can be easily backed out if it is found to
be flawed.

If a system is completely designed and signed off before production of
it starts, it will not be timely. Users will get what they signed off 9
months ago... and you will hear the familiar delivery/acceptance phrase:
"It's great, but could we just have this ONE small change..."

With the MVP/Agile approach, instead of the IT Department resisting
changes and waving sign-offs at users, change is embraced and
implemented immediately. The attitude is different and users respond to it.

The "old stuff" or "legacy" has never been "cheap", operationally or in
any other way. The maintenance of existing systems has always been the
most expensive cost for traditional COBOL systems. The procedural nature
of the code (rather than encapsulated OO Classes) means there are knock
on and downstream errors that require more expensive regression testing
and investigation.

Legacy code is not "unpopular" because it isn't "sexy"; it is unpopular
because it is not responsive to the changing requirements of the
marketplace, and costs users large amounts to get change.
(This without even considering the emotional cost of having to go to IT,
cap in hand, and beg for new functionality... then be told: "We are
really busy right now... we'll look at it in 6 months...")

Management don't care whether a programming language is "sexy" or not;
that is something for programmers.

The focus SHOULD be on delivering useful functionality to the users, not
on what a programmer's career CV needs to have...

Modern DevOps using things like MVP and Agile style procedures, deliver
that, and the cost is way less than traditional mainframe procedural
development.

Pete.

--
I used to write *COBOL*; now I can do *anything*...

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor