Skip to content

Instantly share code, notes, and snippets.

View bowdenk7's full-sized avatar

Bowden Kelly bowdenk7

View GitHub Profile
@bowdenk7
bowdenk7 / VS 2017 workload
Created May 30, 2017 23:51
Screenshot of workloads in VS 2017
foo
Object.defineProperty(window, "HelloTypeScript", { value: "v1.0.0", writable: false });
function deliveryMethod() {
var deliveryElement = document.querySelectorAll('#deliveryMethod');
if (deliveryElement) {
return deliveryElement[0].textContent;
}
else {
return undefined;
}
}
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import sklearn.metrics as metrics
import numpy as np
from sklearn.neighbors import NearestNeighbors
# This contains a function `find_similar_items` which calculates the most similar items using cosine similarity.