Skip to content

Instantly share code, notes, and snippets.

Gaffer Privacy Policy

Last updated: 2026-06-01

Gaffer is an unofficial Fantasy Premier League (FPL) companion app. This policy explains what data the app uses and how.

The short version

Gaffer has no backend and no user accounts. We do not collect, store, or transmit your personal data to us. Everything the app needs stays on your device or is read directly from the public FPL API.

What's stored on your device

@powerbiferrytales
powerbiferrytales / AutoPopulateMeasureDescriptionsFromOpenAI.csx
Last active June 25, 2025 09:09 — forked from dgosbell/AutoPopulateMeasureDescriptionsFromOpenAI.csx
This is a script for tabular editor that will loop through all the measures in a model and get ChatGPT to write a description of the calculation.
#r "System.Net.Http"
using System.Net.Http;
using System.Text;
using Newtonsoft.Json.Linq;
// You need to signin to https://platform.openai.com/ and create an API key for your profile then paste that key
// into the apiKey constant below
const string apiKey = "<YOUR API KEY HERE>";
const string uri = "https://api.openai.com/v1/chat/completions"; // Correct endpoint for GPT-4
const string question = "Explain the following calculation in a few sentences in simple business terms without using DAX function names:\n\n";