Skip to content

Instantly share code, notes, and snippets.

View tzvsi's full-sized avatar
🎯
Focusing

tzvsi tzvsi

🎯
Focusing
  • San Francisco, CA
View GitHub Profile
@tzvsi
tzvsi / nyt-all-your-data-is-health-data.md
Created August 14, 2019 19:55
All Your Data Is Health Data

All Your Data Is Health Data

By Charlie WarzelAug. 13, 2019

This article is part of a limited-run newsletter. You can sign up here.

Here’s a terrifying sentence: Hackers are “becoming increasingly interested in the susceptibility of health data.”

At least that’s the takeaway from researchers at the University of Southern California’s Center for Body Computing. They were at the Blackhat hacker conference in Las Vegas recently, where programmers set up a fake hospital environment and invited medical tech companies to bring their devices for a live stress test. “There was a lot of talk about the ease of insurance fraud and blackmail with some of this legacy software that is very hard and frustrating to update,” Dr. Mona Sobhani, who is the head of research for the Center for Body Computing, told me.

@tzvsi
tzvsi / ml-model-conversions.md
Last active August 9, 2019 10:48
Example model conversion commands

ML Model Conversions

MMdnn

$ sudo -H pip3 install -U git+https://github.com/Microsoft/MMdnn.git@master
$ sudo -H pip3 install onnx-tf
$ mmconvert -h
usage: mmconvert [-h]
                 [--srcFramework {caffe,caffe2,cntk,mxnet,keras,tensorflow,tf,pytorch}]
Global Corporate Wellness Market 2018 by Manufacturers, Countries, Type and Application, Forecast to 2023
In the U.S., there are more than 550 organizations offering employee wellness programs
Optum (UnitedHealth) Eden Prairie, MN 270,000 employees $91.2B Annual
EXOS Phoenix, AZ 3,000 employees $140M Annaul
Provant Health Solutions Olathe, KS 200 employees $35M Annual
Wellness Corporate Solutions Bethesda, MD 88 employees $23M Annual
ComPsych Corporation Chicago, IL 900 employees $400M Annual
@tzvsi
tzvsi / .eslintignore
Last active November 9, 2018 15:33
ESLint Config
test/unit/coverage/**
test/unit/*.js
test/e2e/*.js
src/db/migrations/*.js
@tzvsi
tzvsi / jq-cheetsheet.md
Created November 17, 2017 05:18 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@tzvsi
tzvsi / curl-websocket.sh
Created September 30, 2017 03:10 — forked from htp/curl-websocket.sh
Test a WebSocket using curl.
curl --include \
--no-buffer \
--header "Connection: Upgrade" \
--header "Upgrade: websocket" \
--header "Host: example.com:80" \
--header "Origin: http://example.com:80" \
--header "Sec-WebSocket-Key: SGVsbG8sIHdvcmxkIQ==" \
--header "Sec-WebSocket-Version: 13" \
http://example.com:80/