The Apple Lisa is probably a great example of tech that was too soon, it was ahead of it’s day and failed to be successful. It did pave the way for the release of the Apple Macintosh however. The Computer History Museum have obtained the source for the Lisa from Apple and you can download it from CHM’s site here.
No, AI models will not replace programmers any time soon
This month’s “Communications of the ACM” magazine (01/2023) published a rather alarmist article titled ‘The End of Programming’. While it is a well written article, it bets heavily on the future usefulness of AI models like ChatGPT to generate working code, replacing the need for programmers to write code by hand. ChatGPT is currently getting a lot of attention in the media and online right now, with people finding out that not only can you ask questions on any topic and get a believable answer, you can also ask it a more practical question like “show me C code to read lines of a file”.
Finding out that ChatGPT can be used to ‘generate’ code is prompting questions online from new developers posting questions like ‘should I start a career in software development when programmers are likely going to be replaced by ChatGPT?’
The tl;dr answer: ChatGPT is not replacing developers any time soon.
While development and improvement of these types of AI model is going to continue, it’s worth keeping in mind that these models are only as good as the material they are trained on, which also means they’re limited by the correctness or usefulness of the material used for training. This also means they are subject to the age old problem of ‘garbage in, garbage out’. What’s not being discussed enough is that these current models do not understand the content they generate. They also have no understanding of whether any of generated content is correct, either factually correct for text, or syntactically correct for code snippets. Unlike these ML trained models, as humans we use our existing knowledge and experience to infer other missing details from what we read or hear. We’re also good at using our existing knowledge to assess how correct or realistic new information is based on what we already know to be true. AI models currently do not have this level of understanding, although research has been attempting to replicate ‘understanding’ and ability to make decisions based on existing facts for years (Google ‘expert systems’ for more info).
I’ve seen developers recently attempting to answer questions on Stack Overflow, Reddit and other sites using ChatGPT, with and without success based on whether the topic of the subject was within the scope of materials the model was trained with.
The current problem with text generation from models is that the models lack context. The current models don’t understand context, and so can attempt to generate a response based on identifying key words from the input prompt, but that doesn’t always result in an answer the same way as if a human would answer the same question. Model also don’t understand intent. A question can be asked in a number of similar but different way, and to another human you may be able to infer the intent or purpose of the question, but to a current general purpose trained ML models, that’s currently not possible.
In its current form, ChatGPT is trained on materials currently available online, websites with both static articles and reference materials, as well as question and answer discussion sites. The limitation with this approach is that if I ask a very specific question like ‘show me example code for building a REST api with Spring Boot’, there are plenty of examples online and assuming the model was trained on at least some of these, then the resulting answer could incorporate some of this material. The answer isn’t likely to be better than anything you could have found yourself online if you just Googled the same question. There could be some benefit from a generated answer as a conglomeration of text from various sources, but that can also mean that the combined text ends up being syntactic gibberish (the model doesn’t currently know if what it’s returning to you is syntactically correct).
It’s clear that there is promise in this area to be used to aid and support developers, but as a complete replacement for all custom software development work in it’s current form, this seems highly unlikely, or not at least within the next 10 years, and possibly even longer.
linbpq install on Lubuntu 22.04
I’m setting up a test install of linbpq on Linbuntu 22.04. This is just a test install to play with the config.
Since linbpq is a 32 bit app, you need to add i386 32bit library support:
sudo dpkg --add-architecture i386 sudo apt-get update
./linbpq ./linbpq: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory
To fix, install:
$ sudo apt-get install libasound2
Next error
./linbpq: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
To fix this on I installed 32bit gcc:
$sudo apt-get install gcc:i386
At this point I was able to create a simple bpq32.cfg file to test telnet access, and I’m up an running:
SIMPLE LOCATOR=YOURLOCATOR ; Node locator NODECALL=YOURCALL-5 ; Node callsign NODEALIAS=YOURALIAS ; Node alias (6 characters max) LINMAIL ; Enable BBS LINCHAT ; Enable CHAT BBS=1 PORT PORTNUM=2 ID=Telnet Server DRIVER=Telnet CONFIG CMS=1 LOGGING=1 DisconnectOnClose=1 TCPPORT=8010 ;FBBPORT=8011 6300 HTTPPORT=9123 CMDPORT 63000 LOGINPROMPT=user: PASSWORDPROMPT=password: MAXSESSIONS=10 CTEXT=BPQ32 Telnet Server\nPress ? For list of commands \n\n USER=testuser,changepasswordhere,testuser,””,SYSOP ENDPORT APPLICATION 1,BBS,,YOURCALL-7,YOURBBSALIAS,255 APPLICATION 2,CHAT,,YOURCALL-8,YOURCHATALIAS,255
React app using create-react-app: webpack and CSS opacity 1% issue
This seems like such an obscure and weirdly random issue, but I’ve come across this issue 3 times now in the past few years.
I’m working on my React frontend app for Sudoku puzzles (which is related to many other past personal projects, which I’ve posted about here).
I have a nested set of grids representing the cells of the puzzle. To support ‘pencil marks’ when working on solving a puzzle, each cell has an overlaid 3×3 grid that displays the grid of current pencil marks. To display this I’m using an opacity of 40% to display them slightly greyed out. See the top left cell here with opacity:40%

Running locally this works as expected. When built and deployed and loaded from a remote server however, the logic for clicking and entering pencil marks works exactly the same, but nothing is displaying in the grid – here I’ve entered a pencil mark of 1 in row 2, col 1:

The HTML clearly shows a value of 1 but nothing is being displayed. If you look at the CSS on the right you’ll see opacity:1%, which is why the value is not visible, but that’s a difficult difference to find when comparing local vs deployed.
This is a known issue with create-react-app based React apps and a specific webpack plugin that optimizes CSS, discussed here.
Instead of using a % value for the opacity, change it to a decimal fraction of 1 instead, so instead of 40% use 0.4.