Reflections on Building Sustainable Open Tools
and Knowledge for Healthcare


















I keep seeing the
same few simple(ish) things
holding otherwise great repositories back


(or any online repository hosting)


If you don’t have a readme, you could be taking hours of each persons’ time
README.md is a special file GitHub will display
# vidigi (Visual Interactive Dynamics and Integrated Graphical Insights)
Welcome to vidigi - a package for visualising real or simulated pathways.
https://github.com/hsma-programme/vidigi/vidigi_video.mp4
## Getting started
Head to the [documentation](https://hsma-tools.github.io/vidigi/vidigi_docs/)
to find out how to create an animated version of your model.
You can install vidigi from PyPi with the command `pip install vidigi`.



Allowed to use AI? Rope it in!
(this is Quartodoc)
(this is Quartodoc)
I will not be reading your code if it’s written like this…
df=pd.read_csv("sales.csv").dropna(subset=["price","quantity"]).assign(total=lambda d:d["price"]*d["quantity"]).query("total>1000").groupby(["region","category"],as_index=False).agg({"total":"sum","quantity":"mean"}).sort_values("total",ascending=False).rename(columns={"total":"total_sales","quantity":"avg_quantity"}).reset_index(drop=True).head(10)But I will if it looks like this
df = (
pd.read_csv("sales.csv")
.dropna(subset=["price", "quantity"])
.assign(total=lambda d: d["price"] * d["quantity"])
.query("total>1000")
.groupby(["region", "category"], as_index=False)
.agg({"total": "sum", "quantity": "mean"})
.sort_values("total", ascending=False)
.rename(columns={"total": "total_sales", "quantity": "avg_quantity"})
.reset_index(drop=True)
.head(10)
)
Remember our plea from the start?




Became vidigi

You don’t always know what will be worth sharing and reusing when you start
But these steps



















Submit a project code-free via the form or read advanced instructions in the README

Add Me On LinkedIn - Sammi Rosser
Follow Me On GitHub - Bergam0t
Watch other talks @ sammirosser.com
Email me - hi@sammirosser.com
Check out HSMA - hsma.co.uk
Slack chat mockups generated from chatmockup.com
Images generated with DALL-E3 or ChatGPT-5
Cheers icons created by Konkapp - Flaticon
Hex stickers built on Canva (all images used via Canva Pro subscription)
The STARS project team for their work on reusability
Pub image from Shaun of the Dead (Universal Pictures).
Huge thanks to Dr Dan Chalk and all of our HSMAs
And many thanks to the NIHR/PenARC for funding us!