Scottish Tea
Tuesday, 13 June 2023 04:15 pmIt appears that Fortnum and Masons sell a brand of Tea grown in Scotland
https://teagardensofscotland.co.uk/
https://teagardensofscotland.co.uk/
To: EdgeLinuxDev@microsoft.com
Subject: Patch for MS edge linux cron script
I have recently installed microsoft-edge-stable version 102.0.1245.30-1
on my Ubuntu 22.04/jammy machine.
Each morning since then I have received the following report.
/etc/cron.daily/microsoft-edge:
base64: invalid input
I have attached a patch - keydata.20220531.patch -
which stops the report and appears to do the right thing.
I also note that lines 30-39 are the same as lines 19-28.
long product(int a, int b) {always makes c a variable big enough to contain the product, without overflowing ... but it notes that a and b are "int" and makes the product an "int" as well. So if a*b is big enough, the first few (and hence most important) digits are thrown away - unless you are explicit that you want to keep them:
long c = a * b;
return c;
}
long product(int a, int b) {
long c = (long)(a * b);
return c;
}
long c = a * b;
int d = a * b;