RANK | LENGTH | KEYWORDS | URL | SNIPPET |
---|---|---|---|---|
-------- | ------ | ----------------- | ---------------- | -------------------------------------------------------------------------------------------- |
146.02 | 226 | [covid pandemic health ways response research reduce] | https://www.apprise.org.au/project/nhmrc-extends-apprise-funding-for-critical-covid-19-projects/ | * Generate evidence that can be applied to clinical practice during the pandemic, regarding the impact of multiple candidate interventions to reduce mortality or reduce the length of intensive care unit admission or both in critically ill patients with COVID-19 infection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
日本 (nihon) => Japan | |
日本語 (nihongo) => Japanese | |
東京 (tookioo) => Tokio | |
ありがとう (arigatoo) => thanks | |
さようなら (sayoonara) => bye | |
押忍 (oss) => saludo karate | |
愛してる (aishiteru) => I love you | |
愛 (ai) => love | |
常に (tsuneni) => siempre | |
大使館 (Taishikan) => embajada |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37819 covid | |
10693 coronavirus | |
8501 sars | |
7614 virus | |
7415 cov | |
5199 emergency | |
4533 respiratory | |
4220 infection | |
3984 pandemic | |
3671 cdc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm go.mod | |
go mod init goSNMP | |
go: creating new go.mod: module goSNMP | |
cat go.mod | |
module goSNMP | |
go 1.13 | |
En main.go: | |
import ("goSNMP/snmpPrintersLib") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Published on March 26, 2020 | |
https://www.linkedin.com/pulse/covid-19-pron%C3%B3stico-de-la-curva-para-abril-2020-p%C3%A9rez-sacrist%C3%A1n/ | |
2.- Contagio masivo en Mayo al levantar el confinamiento, con la esperanza de que el calor del verano reduzca la epidemia (pero los datos de Malasia y Brasil nos indican que no será así). | |
3.- Entrar en bucle de confinamiento y fase R0 cada 3 meses. | |
-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://gist.github.com/computerphysicslab/ff8f7b67fc3f63eb146ac102dedc5970 | |
#### SENSORS | |
sudo apt install lm-sensors hddtemp | |
sudo sensors-detect | |
sensors | |
sudo apt-get install sensors-applet | |
sudo apt-get install psensor |
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.pdf
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.epub
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.mobi
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.pdf
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.epub
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.mobi
Start with these resources
- https://ethresear.ch/t/on-chain-scaling-to-potentially-500-tx-sec-through-mass-tx-validation/3477 - Vitalik
- Despite this being a ZK focused approach, and only supporting deposit/withdraw/send/receive, it’s nicely laidout as a starting point
- https://ethresear.ch/t/minimal-viable-merged-consensus/5617 - John Adler
- I think this is the first description of the optimistic model
- https://medium.com/@adlerjohn/the-why-s-of-optimistic-rollup-7c6a22cbb61a - John Adler
- This article focuses a bit less on the mechanics, and more on the beneficial properties.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"os" | |
"github.com/go-audio/wav" | |
) | |
const filename = "pulse440_32bitFloat48kHz.wav" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func ReadGzFile(filename string) ([]byte, error) { | |
fi, err := os.Open(filename) | |
if err != nil { | |
return nil, err | |
} | |
defer fi.Close() | |
fz, err := gzip.NewReader(fi) | |
if err != nil { | |
return nil, err |
NewerOlder