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
/** Dummy data | |
[email protected] Thomas Bolan | |
[email protected] Rafael Ridgley | |
[email protected] Shoshana Zarrella | |
[email protected] Shavon Cales | |
[email protected] Mirian Fasano | |
[email protected] Wilfred Patch | |
[email protected] Allan Bankes | |
[email protected] Edwin Acheson | |
[email protected] Emanuel Oriley |
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
#smooth way to install scikit learn on python 2.6 | |
# Install miniconda from http://conda.pydata.org/miniconda.html | |
# Now run the script | |
bash ./location-pf-the-script.sh | |
#It will install mini conda | |
# Now run |
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
var dragStartX; | |
var dragStartY; | |
window.addEventListener("dragstart",function(e){ | |
dragStartX = Math.ceil(e.offsetX/70); | |
dragStartY = Math.ceil(e.offsetY/70); | |
}) | |
window.addEventListener("dragend",function(e){ | |
var dropX = Math.abs(dragstartX - e.screenX); |