This file contains 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
sudo /usr/local/McAfee/AntiMalware/VSControl stopoas | |
sudo killall VShieldService | |
sudo killall VShieldScanner |
Reusable slopegraph inspired/adapted from Ben Van Dyke's example into a reusable chart.
This slopegraph example shows the number of personal computers installed in a country per household. This includes desktop PCs and laptops, but excludes smartphones and terminals connected to mainframe computers. All figures are calculated using total number of Personal Computers and the Total Number of Households.
This file contains 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
[ | |
{ | |
"Ministry":"01. Barton (Protectionist), 1 Jan 1901-24 Sept 1903", | |
"Title":"Minister for External Affairs", | |
"Name":"Barton, Edmund", | |
"House":"HR", | |
"Party":"Protectionist", | |
"State":"NSW", | |
"InCabinet":"N/A", | |
"Start":"1901-01-01", |
This file contains 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
/** | |
* See: http://jsfromhell.com/math/dot-line-length | |
* | |
* Distance from a point to a line or segment. | |
* | |
* @param {number} x point's x coord | |
* @param {number} y point's y coord | |
* @param {number} x0 x coord of the line's A point | |
* @param {number} y0 y coord of the line's A point | |
* @param {number} x1 x coord of the line's B point |