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
| # This script might be outdated at some point - refer to the links to update it | |
| # https://docs.docker.com/install/linux/docker-ce/ubuntu/#install-using-the-repository | |
| sudo apt-get update | |
| sudo apt-get --yes install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ | |
| software-properties-common |
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
| const Benchmark = require('benchmark'); | |
| const WmiClient = require('wmi-client'); | |
| const {snapshot} = require("process-list"); | |
| const ps = require('ps-node'); | |
| const suite = new Benchmark.Suite; | |
| let wmi = new WmiClient(); | |
| // Purpose: See which is fastest at retrieving a suitable data set, not necessarily narrowed down to | |
| // the data actually needed yet. |
NewerOlder