Well, it’s what I made from the remains of the Sunday dinner duck, with the addition of some fancy mushrooms, home-made naruto and more.
There’s no helpful tip, or anything like that, with this post, so you really shouldn’t
It us what it is. Probably.
I just asked Google for the answer to this, and was annoyed to find that not only did there not seem to be an online answer, but there were an irritatingly large number of websites that posed the question, and then answered an entirely different one.
I gave up looking, and instead carried out a scientific experiment…
Here are some frozen little fishes…
Basically, I just heated the air fryer to its maximum, nominally 200°C, and threw the fishes in.
Five minutes seemed like a good guess for a cooking time. They were a bit underdone.
I set the timer for another five minutes, but pulled the fish out after four minutes, as I could hear some of them popping!
So, now you know…
Was this useful?
We keep an index book of recipes that we like, and rely on. It has several entries for Bechamel sauce, but only one of them can be the best.
There’s one in “The DIY Cook”, by Tim Hayward, and he’s really, really good, and so is his sauce…
There’s another, in Rick Stein’s “Secret France”, and do you know what? He’s really good as well, and the photography in his recent books is at pure genius level…
There are several other recipes…
But my favourite recipe for Bechamel Sauce is in an oldie but goodie, “Mediterranean Cooking” by Hilaire Walden. Fans, you are in luck. It’s still available, on Amazon, and it’s really cheap. This is so good that I haven’t bothered to see if Nigella does a good one. I bet she does, though…
So…
![]() |
| Loaf Story A Love Letter to Bread |
My earlier post, about a function that could send things to the Google AIY Raspberry Pi Assistant, and supposedly prevent more than one message being spoken at a time, was errmmm, wrong. That’s a technical term, that we programmers use.
I wrote a test program for my Pi cluster, whereby each of the sixteen cores would announce its hostname and rank. It’s not all that often you get the opportunity to use the word cacophony, but…
Basically, several processes could all think the Assistant was not busy, and they all sent messages in the time it took for the first message to start being spoken.
I spent a while looking at how to program mutual exclusivity for a resource, and was impressed by how complex such an apparently simple thing can get.
I decided that what was needed was a simple program, running on the Assistant, that would watch a directory, notice when a file to be spoken arrived, and speak the text in that file. Python makes it easy to deal with more than one file in the directory. Here’s what I wrote…
#
# Program to run on PiAssistant, to watch for newly arrived text files in
# /home/pi/Messages that it should speak, and delete them once it has.
import os
import time
path = “/home/pi/Messages/”
while True:
with os.scandir(path) as entries:
for entry in entries:
f = open(entry, “r”)
content = f.read()
f.close()
command = “python ~/AIY-projects-python/src/aiy/voice/tts.py “” +
content + “” –lang en-GB –volume 10 –pitch 60 –speed 90″
os.system(command)
time.sleep(0.5)
os.remove(path+entry.name)
time.sleep(0.5)
When it spots one of more files in the Messages directory, it reads the text, and sends it out to be spoken. It can supposedly only do one file at a time, but… Still the cacophony!
#RaspberryPi #GoogleAIY #Python