Hello

Image Welcome to my personal blog, a space for code and ideas which I’ll add to when I can.

Setting up Microsoft SQL Server on a Mac

In this blog, I share how I set up a SQL Server on my Mac using Docker, and created a streamlined environment for practicing T-SQL with Visual Studio Code and the AdventureWorks database. Introduction If like me you’re learning T-SQL, and would like to practice this at home on your Mac, you’ll need to set up a SQL server. As this is Microsoft software, designed for Windows computers, a few extra steps are necessary for Mac users. Here I show how I accomplished this using Docker. I also show how I set up the AdventureWorks database, used in Microsoft’s DP-080 T-SQL course, and queried this using Visual Studio Code. ...

March 10, 2025 6 min

Prompt sensitivity revisited: quantization and open source models

In this follow up Python post I reproduce the ‘prompt sensitivity’ issue I identified last year, in an OpenAI model, in an open source model running locally. I also discover that the quantization process, which shrinks models and can make them easier to run locally, is apparently responsible for this quirky behaviour. Because the closed-source model I used in my earlier blog, text-davinci-003, is no longer available this blog opens up a path for further, reproducible, exploration of this issue. ...

October 25, 2024 13 min

Sentiment analysis with the OpenAI API - Part 3: OpenAI updates, API key management

In this Python post, I outline some changes to the OpenAI API, and models available, relevant to the first two blogs in this series. I also discuss secure API key management. ...

February 11, 2024 5 min

Sentiment analysis with the OpenAI API - Part 2

In this follow up Python post, I document experiments with OpenAI’s text-davinci-003 and GPT-3.5-turbo endpoints, including an unexpected model response to a small prompt change. ...

September 10, 2023 14 min

Sentiment analysis with the OpenAI API - Part 1

In this Python post, I share my experience of accessing an IMDb review dataset from Hugging Face, and describe my setup for accessing the OpenAI API for sentiment analysis. ...

September 10, 2023 9 min

Open HESA financial data 3: comparing top 5 Scottish universities

Finally, in this R post I use the prepared HESA financial data to reproduce, and analyse, the 2020-21 “surplus/deficit for the year” figures for the top five Scottish universities. ...

November 20, 2022 10 min

Open HESA financial data 2: data manipulation

Building on Part 1, in this R post I perform data manipulation to prepare 2020-21 university financial data for analysis and visualisation in Part 3. ...

November 20, 2022 8 min

Open HESA financial data 1: importing and inspecting data

In this series, using R, I explore 2020-21 financial data from the top 5 Scottish universities, downloaded from the HESA website, focusing here on data inspection. ...

November 20, 2022 10 min