- An advanced stat primer: Understanding basic hockey metrics
- Core Metrics
- Corsi
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
######### INSTRUCTIONS ########## | |
# 1) Download this file to your computer | |
# 2) Open Windows PowerShell (Run as Administrator) | |
# 3) Run: Set-ExecutionPolicy RemoteSigned; & <PATH_TO_SCRIPT>/windows-bootstrap.ps1; | |
Write-Host "Ryan's Chocolatey Bootstrap Script" | |
Write-Host "... installing choco package manager" | |
# You must ensure Get-ExecutionPolicy is not Restricted. | |
# We suggest using Bypass to bypass the policy to get things installed |
This is a quick synopsis of the Golden Picks 2018 to hold until Q3 using the
languagecrunch
Sentiment endpoint (utilizes Spacy).
polarity
: whether the expressed opinion in a document, a sentence or an entity feature/aspect is positive, negative, or neutral. Advanced, "beyond polarity" sentiment classification looks, for instance, at emotional states such as "angry", "sad", and "happy". (Source: Wikipedia)subjectivity
: The subjectivity of words and phrases may depend on their context and an objective document may contain subjective sentences (e.g., a news article quoting people's opinions). (Source: Wikipedia
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
0xA4B8E4DebeA63f2583056Cf119faF41109dd61fB |
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
version: '2' | |
services: | |
scrapy: | |
image: scrapinghub/splash:latest | |
ports: | |
- "8050:8050" |
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
{ | |
"extends": "airbnb", | |
"env": { | |
"browser": true, | |
"amd": true, | |
"commonjs": true, | |
"jest": true, | |
"mocha": true, | |
"node": true, | |
"es6": true |
Douglas Crockford, author of JavaScript: The Good parts, recently gave a talk called The Better Parts, where he demonstrates how he creates objects in JavaScript nowadays. He doesn't call his approach anything, but I will refer to it as Crockford Classless.
Crockford Classless is completely free of class, new, this, prototype and even Crockfords own invention Object.create.
I think it's really, really sleek, and this is what it looks like:
function dog(spec) {
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
(function () { | |
var articleId = fyre.conv.load.makeArticleId(null); | |
fyre.conv.load({ | |
"strings": { | |
"signIn": "註冊", | |
"signInGuest": "Se connecter en invit\u00e9", | |
"signOut": "D\u00e9connexion", | |
"editProfile": "\u00c9diter le profil", | |
"siteAdmin": "Administration", | |
"postButton": "郵寄", |