然後第一個說核能列入歐盟綠色轉型的不是台灣報導也不是哪個擁核媒體平台,是世界最大的媒體通訊社,美聯社以《EU leaders include nuclear energy in green transition》為標題報導歐盟高峰會結論,然後有紐約時報、日本時報等轉載刊登,到台灣因為翻譯就變成歐盟將核能納入綠色轉型。不懂台灣反核怎麼一直說別人世界最大平台假消息呢?
Regarding the long-term management of High-Level Waste (HLW), there is an international consensus that a safe, long-term technical solution is needed to solve the present unsustainable situation. A combination of temporary storage plus permanent disposal in geological formation is the most promising, with some countries are leading the way in implementing those solutions. Yet nowhere in the world has a viable, safe and long-term underground repository been established. It was therefore infeasible for the TEG to undertake a robust DNSH assessment as no permanent, operational disposal site for HLW exists yet from which long-term empirical, in-situ data and evidence to inform such an evaluation for nuclear energy.
Given these limitations, it was not possible for TEG, nor its members, to conclude that the nuclear energy value chain does not cause significant harm to other environmental objectives on the time scales in question. The TEG has not therefore recommended the inclusion of nuclear energy in the Taxonomy at this stage. Further, the TEG recommends that more extensive technical work is undertaken on the DNSH aspects of nuclear energy in future and by a group with in-depth technical expertise on nuclear life cycle technologies and the existing and potential environmental impacts across all objectives.
https://hugo-m9c19ra1o-sueboy.vercel.app/
input demo
Keep ooxxooxxooxxooxx.dkr.ecr.ap-northeast-1.amazonaws.com/demo
save
4. aws cli login powershell windows
aws configure
go back IAM, show Demo_ECR -> 安全登入資料 security login
run 建立存取金鑰 create Access Key
copy new Access Key ID and AWS Secret Access Key
back aws configure. Input Access Key ID, Secret Access Key, ap-northeast-1 and Enter
5. docker login
aws ecr get-login-password --region ap-northeast-1
copy return Text like: eyJwYXlsb2FkIjoieE9hcWgzYmdPOXpN...............
6. docker image craete
First check your docker image: docker image ls
REPOSITORY = Image Name.
Tag is import.
Example "demo" is my image that want to send to aws repository.
docker tag "your image name":"your image" tag "aws repository URI"
docker tag demo:latest ooxxooxxooxxooxx.dkr.ecr.ap-northeast-1.amazonaws.com/demo
check "docker image ls" again
Now you can see new repository: ooxxooxxooxxooxx.dkr.ecr.ap-northeast-1.amazonaws.com/demo
Q: error parsing HTTP 403 response body: unexpected end of JSON input: ""
A: When you step 3. Image scan settings:get error If you check true. You can change false then push success.
A. other way.
https://github.com/aws/aws-toolkit-azure-devops/issues/311
https://stackoverflow.com/questions/34423873/docker-push-to-aws-ecr-private-repo-failing-with-malformed-json
go back step 1. change policy.
迷思?!
英 登記打疫苗,官方的
https://www.nhs.uk/conditions/coronavirus-covid-19/coronavirus-vaccination/book-coronavirus-vaccination/
If you're under 40, you'll only be shown appointments for the Pfizer/BioNTech or Moderna vaccines. If you're 40 or over, you'll be asked if you're pregnant to make sure you're only shown appointments for these vaccines.
澳洲
https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/learn-about-covid-19-vaccines/about-the-astrazeneca-covid-19-vaccine The Australian Technical Advisory Group on Immunisation (ATAGI) recommends the COVID-19 vaccine by Pfizer (Comirnaty) is preferred in adults aged under 60 years.
In people 60 years and over, ATAGI continue to advise that the benefits of vaccination with the AstraZeneca vaccine outweigh the risks associated with vaccination.
This recommendation is based on:
the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination), and
the increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 60 years.
There appears to be a small risk of TTS in people 60 years and over, but this risk appears to be lower than in younger people. Cases overseas have been reported at all ages.
1) 輝瑞/BNT一劑:52%。
2) 莫德納一劑:69.5%。
3) #AZ一劑: 76%!!
Fosun Pharma will commercialize the COVID-19 vaccine in Greater China upon regulatory approval, including mainland China, Hong Kong, Macau and Taiwan.
https://biontech.de/covid-19
class Kernel extends HttpKernel
{
public function __construct(Application $app, Router $router)
{
parent::__construct($app, $router);
$environmentPath = __DIR__.'/../../';
$dotenv = Dotenv::createUnsafeImmutable($environmentPath, '.env'); // getenv not thread safe
$dotenv->safeLoad(); //this is important
$dotenv = Dotenv::createUnsafeImmutable($environmentPath, '.env.'.getenv('APP_ENV').'.env'); // getenv not thread safe
$dotenv->safeLoad(); //this is important
}