Amen
Posts by JJCasswell
Rest in Peace Alex Jeffrey Pretti🙏🏾 The VA ICU Nurses send him off right 💔
It’s LLunchtiMe! This is an intro article I’ve written on using LLM evals with Inspect to format recipes.
generativeai.pub/learning-llm...
Screenshot of a flutter keyboard app
Screenshot of a flutter keyboard app
Feeling the flutter vibe? A one hour hackathon to vibe code a piano game in Flutter @flutterfriends.dev #FlutterVibesOnly
First overseas software conference - the excellent @flutterfriends.dev Check out the amazing e-ink badge! Looking forward to the badge hack sessions.
This is a new low @britishairwayteam.bsky.social - not letting us choose a seat at check-in? What does distinguish you from a budget airline these days? (It’s not price!)
Good use of AI here to fight drive offs. More people should look at cheapestpetrol.uk for a better deal!
'I'm using technology to fight against drive-off fuel thefts' www.bbc.com/news/article...
I need to borrow an electric van from basically anywhere in the U.K. tomorrow (Tuesday 26th) and return it Sept 2nd.
Big ask, but rental companies messed me around after my e-van repairs got delayed.
It’s for Zero Carbon Adventures and @protect.earth and I can pay a few hundred quid.
They have a good selection of models in a variety of sizes so obtaining weights is as simple as a pull command.
Great article! I particularly liked the full derivation at the bottom!
A little Sunday afternoon project mapping the movement of the sun - totally overkill but fun nevertheless!
youtu.be/QbSEylQXLCc
As always UAT is enlightening- getting my partner to test the scheduling app I created for her threw up a ton of issues and insights as she used it a different was to what I envisaged. Back to the desktop to make some changes!
Deploying a new project to dev today so my beta testers (ie friends and family) can get stuck in!
Great trip to the future of food exhibit at London’s science museum yesterday. Plent of food for thought (yes I went there) but my word it starts darkly before offering some hope!
www.sciencemuseum.org.uk/see-and-do/f...
Happy Yorkshire Day to those who celebrate and trouble at mill to those who don’t!
What a result! Back to back winners! Been a great journey to watch - congratulations Lionesses! #ENG
Using LLM agents and MCP to examine code - here’s an article I wrote about a demo of this.
medium.com/@j-casswell/...
#insert into the migration operations list
class Migration(migrations.Migration):
dependencies = [
('your_app', 'previous_migration'),
]
operations = [
migrations.RunPython(clean_data),
migrations.AlterField(
#original migration code
),
]
#create your clean-up function
def clean_data(apps, schema_editor):
YourModel = apps.get_model('your_app', 'YourModel')
for obj in YourModel.objects.all():
if not obj.your_field.isdigit():
obj.your_field = 0 # Or any default integer value
obj.save()
Nice little django trick I've just discovered - custom code to perform data clean up as part of a migration:
This is a really scary article! I like the idea of having to supply your editing history though and the teacher who now has essays written in class gives me hope.
Nice! A pi 5?
Great news to start the weekend - there might be something in this science thing!
Nice! Think it was the radio stations that made this game! What hardware are you playing it on?
Great thread - will check out some of these later!
Have you looked into the open recipe format?
Been playing with the Open Recipe Format - puts recipes in a format readable by humans and machines. Then you can manipulate easily like this simple viewer that lets you scroll independently the ingredients and method!
Wrote an article following my experiments with federated learning using flower ai and scikit learn. Check it out!
j-casswell.medium.com/creating-a-w...
Been writing an article. Have had worse temporary workspaces.