Feeds:
Posts
Comments

Posts Tagged ‘Technology’

After retiring 15 years ago from professional software development, I had a clear picture of what source control should provide for a commercial development team:

  • Prevention of simultaneous edits – avoiding the chaos when two developers unknowingly work on identical code
  • Real-time visibility into who’s currently working on what files
  • Version metadata embedded in code files – a lifesaver when you find a piece of code and need to know what version it is
  • A comprehensive audit trail showing who modified which files and when
  • Automatic version incrementing for every modification
  • A single authoritative codebase representing the current production state
  • The ability to roll back to any previous version

When a business opportunity pulled me out of retirement and back into managing a development team, I naturally asked about source control. The universal response? “We use Git.”

(more…)

Read Full Post »

When I began the project I am currently working on (more details will be provided next month – probably), it was initially intended as a small test to determine the capabilities of AI.  Over the last six months it has turned into something that we might take further. 

But I hit a problem. As a little hobby project I chose the database I really really like – CouchBD.  CouchDB is elegant, simple yet very functional and efficient. Close to the perfect database management system (DBMS).  But to take it further I need to involve other developers and it turs out that CouchDB skills are few and far between. Truly it is the Betamax of DBMSs.

(more…)

Read Full Post »

My previous blog post outlines my success in converting a data structure definition from one format to another. Both ChatGTP and Gemini had a really good stab at it. The result was mainly accurate and extra information had been added for me. ChatGTP managed to make a mistake on the second attempt at the task, and when I asked it why, it used a completely made-up (and incorrect) rule about SQL Databases as an excuse. So Turing Test passed!

I gave it another task. Convert a routine from using the SQLite3 data base management system, to the higher performance MySQL. This is a straightforward, if tedious task. How did it do?

(more…)

Read Full Post »