“We also have information that the medical professionals get in regard to hospital capacity, hospital cases, hospital COVID cases, in ICU, in hospitals, etc.,” Hines said. “They absolutely admit the numbers are coming down, getting much better.”
What do we do with people who act like this, think like this…or pretend to think like this. Whatever his damage.
And that picture.
I don’t want my kid to be involved with school sports because I don’t want him to associate with or have any part of his life controlled by people like this.
The Brazilian government finally decided to buy vaccines from pharmaceutical companies Janssen and Pfizer.
The American pharmaceutical company had been offering its vaccine since September 2020, but the Brazilian government at first ignored the offer and when questioned by the media, the authorities said the contract had unfair terms.
Local journalists recently discovered that the government had accepted the same contractual clauses when purchasing the Oxford-AstraZeneca vaccine.
The Ministry of Health also bought 10,000,000 doses of the Russian vaccine Sputnik V.
Bolsonaro mobilizes government to get to know an anticovid spray developed in Israel, and sends a delegation of authorities to the country in the Middle East, which is ending the pandemic with vaccines.
Although the drug is still in the early stages of testing; the product is treated as ‘miraculous’ by the Brazilian president.
People are saying He only decided to buy the vaccines because his “enemies” bought and developed vaccines first. But He thinks it is better using miraculous drugs in the so called “early treatment”.
I’m old, but not at the age cutoff for Hawaii (which is 75), I have some official comorbidities (though borderline), and I teach via Zoom (though I signed up to teach in person). The first time I was offered the jab I decided against it as I decided I shouldn’t be a priority. The second time I was offered it I was also told that if I didn’t take it I might not have another chance for an indeterminate time. That, plus the email from my state senator talking about how wonderful it was that he’d already had both shots (he’s around 40) convinced me to go ahead.
I also think logistics will ultimately be the biggest issue in getting the vaccine out, and – however bad the distribution mechanisms in place are (and in some places they are criminally bad) – not taking the chance when offered probably will screw things up more.
Indiana has decided to use ONLY age as their determinant: they are not vaccinating teachers, essential workers (if non-medical), or those with comorbidities. They’re going with the argument that covid is most lethal for older patients, without comprehending that people who actually have to go to work and/or school are more likely to catch it and pass it to many others, including old people.
The one good thing is that the very Republican governor put a mask mandate in place very early.
Individual Hoosiers will say things like ‘are you a sheep?’ or ‘are you just wearing a mask because the government is making you?’ but the mask mandate continues despite their whining.
“Arizona’s students need to be back in the classroom,” Ducey said in a press statement announcing his executive order. “The science is clear: it’s time all kids have the option to return to school so they can get back on track and we can close the achievement gap.”
“Haha! I’m gonna kill those fucking teachers for embarrassing me with that Red for Ed shit.”
Care to share how that’s done? I’ve got a PiHole that could do this. But I’m not where sure to start with this web-scraping wizardry. I know what wget is, but beyond the most simple of invocations, I’m lost.
Ah, I’m afraid that it’s a specialized answer for Lazarus/Free Pascal/Indy.
99% of the time, a wget to fetch the page, then a grep to search for the key string would do the job. In this case, they added a cookie trap that usually requires a browser with javascript enabled to pass the test.
There’s probably a way to gimmick wget to do it, but I already had an app to fetch the weather forecast, so adding a TIdCookieManager, and disarming their cookie trap wasn’t a big deal. Their cookie trap page lacks a title, so that’s how I know that I have to set the cookie and try again.
procedure TPiCrateForm.CheckForCovid;
var
s : string;
sPage : string;
sCode : string;
sIP : string;
slX : TStringList;
begin
slX := TStringList.Create;
s := FormatDateTime('nn:ss', now);
if (s = '06:00') or
(s = '21:00') or
(s = '36:00') or
(s = '52:00') then
begin
sPage := '';
Memo2.Lines.Clear;
if FetchPage(CovidURL, sPage) then
begin
if pos('<title>', sPage) = 0 then
begin
// Cookie warp fuckery
slX.Text := sPage;
s := ''''+between(sPage, 'setCookie(''', ');', false);
sCode := Between(s, '''', ''',', false);
sIP := Between(s, ', ''', '''', false);
IdCookieManager1.AddServerCookie(sCode +'='+sIP, TIdURI.Create('https://www.york.ca'));
FetchPage(CovidURL, sPage);
end;
slX.Text := sPage;
//slX.SaveToFile('test.txt');
if pos('Vaccinations appointments fully booked.', sPage) = 0 then
begin
// Message is gone, play a sound
PlaySound(COVID_ALERT);
Memo2.Lines.Add(FormatDateTime('hh:nn:ss', now)+' Ready!');
end
else begin
// Temp sound
//PlaySound(COVID_NOP);
Memo2.Lines.Add(FormatDateTime('hh:nn:ss', now)+' Vaccinations appointments fully booked.');
end;
end
else begin
PlaySound(COVID_FAIL);
Memo2.Lines.Add(FormatDateTime('hh:nn:ss', now)+' Fail');
end;
end;
end;
After saying to mayors that the Ministry of Health would buy vaccine from Pfizer this Wednesday, General Pazuello says that this topic is still under negotiation with the American company and has not yet bought anything.
When Orange County started opening large-scale vaccination sites in mid-January, community health centers asked for doses too, said Isabel Becerra, chief executive of the Coalition of Orange County Community Health Centers.
“We don’t have transportation. We don’t speak English. We don’t understand the technology you’re asking us to use to register and get in line. So, can we vaccinate the 65 and older population in the comfort of their own facilities?” she said.