> Microsoft has confirmed two cases of coronavirus in Seattle. One is at LinkedIn and has no known contact with other employees, and the other is from a main campus building that houses Microsoft’s cloud team. Both employees are now in quarantine
#!/usr/bin/emacs --script
(require 'dom)
(defun corona ()
(with-current-buffer (url-retrieve-synchronously "https://www.worldometers.info/coronavirus/" t)
(goto-char url-http-end-of-headers)
(setq cur-dom (libxml-parse-html-region (point) (point-max)))
(setq texts (dom-texts cur-dom))
(string-match "Coronavirus Cases: +\\([0-9,]+\\)" texts)
(setq cases (match-string 1 texts))
(string-match "Deaths: +\\([0-9,]+\\)" texts)
(setq deaths (match-string 1 texts))
(princ (format "%s / %s" deaths cases))))
(corona)