Any computer programmers in the house?

Hello everyone! I’m a senior software developer for a small firm in NY. I first learned how to program using BASIC on the C64. Since then I have learned VB6, C/C++, Java, C#, VB .NET, VBScript, HTML, JavaScript (jQuery), CSS, SQL, Assembly (x86 & 6502).

What languages / technologies does anyone else know?

2 Likes

Hello!! I work for an R1 University in New York. I first learned how to program BASIC on a Tandy 8088. Since then, VB, C, C++, Java, C#, PeopleCode, COBOL, PERL, T-SQL, PL/SQL, ECMAScript,… Working full-stack, so non-languages like CSS, HTML. Sysadmin work too, so VBScript, PowerShell, Shell Languages. I teach C++, C#, and other classes like Systems Administration and Database Management on the side.

1 Like

I used GW BASIC, Microsoft BASIC, Q BASIC, COBOL, C, C++ and some pascal…

I started with a Sinclair ZX81, BASIC and machine code (with only 1KB RAM to play with, machine code was more efficient).
I then moved onto a VIC=20, a Memotech MTX500 (as seen in Weird Science with Kelly LeBrock), BASIC and Z80 assembler. At school we had PETs and that was BASIC, CESIL and machine code (CESIL was a British school programming language, to teach programming fundamentals “Computer Education in Schools Introductory Language”).
I did some DEC DCL and Fortran working for an oil exploration company during the summer between school and college.
College was PETs again, then they introduced IBM PC clones and BASICA and in the second year, COBOL on a Prime Mini.

On my first day of college, we had to write a simple program to calculate the minimum number of coins to provide as change - to see how much we knew about programming. I had the task finished in about 10 minutes, so for the remaining hour, I punched in some machine code, split the screen into multiple windows, used an 8x8 character matrix in the top window to show the input amount and drew piles of coins in the bottom window. All that on an 80x25 text screen.
The lecturer looked at what I had done and exclaimed, “wow, I didn’t know you could do that with a computer!” Boy, I was the one who was supposed to be there to learn! But that pretty much summed up my college degree, running rings around the teaching staff…
I did some work for Upjohn Pharmaceuticals one day a week, whilst a college and learnt RPGII/III on an IBM System/36 and System/38.

My first job was maintaining a BASIC financial reporting system, written by FORTRAN programmers and maintained by COBOL programmers - and neither had ever read a BASIC manual, no FOR…NEXT loops, no WHILE…WEND, just :
30 A=1
40 do something
50 A=A+1: IF A<=50 THEN GO TO 40
Euch!
Then a lot of COBOL (DEC VAX/VMS, ICL and IBM mainframes) and then Lightspeed Pascal and C on a Mac, 4th Dimension, Excel macros (v1 of Excel, no VBA), Lotus 1-2-3 macros, C, C++, 8086 assembler, QuickBasic, Visual Basic 3 - 6, dBase, FoxPro, VBA, Access, Forte, SQL (various dialects), Java/J++ (I actually reported a bug in J++ 1.0 that never got fixed*), HTML/CSS, PowerShell, Bash, C#, Perl, Python and probably a bunch more I’ve forgotten.

Nowadays, I’m mostly system administration with a bit of scripting thrown in.

  • I found out that “x += z;” or x=x+z; didn’t work properly, if z was negative. This is fairly fundamental.
    So, for example x = 3 and z = 1: x+=z comes out as 4, which is correct.
    But x = 3 and z = -1: x+=z comes out as 4, whereas in mathematics it should come out as 2.
    “+ +” = +
    “- -” = +
    “+ -” = -
    “- +” = -
    But Microsoft never got around to correcting it.
2 Likes

Showing my age, that reminded me of programs with stacked value tests and what we called the “bucket at the bottom”
IF A<0 catch out-of-range value that blows everything up
It was the difference between novice programmers and the battle-scarred: if you “couldn’t possibly get here”, then you put in an error routine for when the impossible happened. :blush:

1 Like

Back in the day before I was a sysadmin, Basic, Dbase, and I did a few years as a Cobol programmer.

1 Like

I bought my first computer in 1980, a Kaypro, and $2k at minimum wage was a lot of money back then. Set it on the floor and turned it on, and there was a flashing c prompt. Start of a love affair. So obviously, first language was basic, first job was assembly language, favorite job was in C/C++. In any week now, as I’m only working part-time, I am usually programming in Swift, Obj-c, C#, javascript, node-js, kotlin, and java. Primarily for phones and VR.

It’s who I am, it’s what I do :slight_smile: My DH says he can’t tell the difference from when I’m working and when I’m playing.

Least favorite language: Lisp. No contest.