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
/** | |
* Flatten an Array of Arbitrarily nested Arrays of Integers | |
* into a Flat Array of Integers. | |
* @param {Array} intArray - Array of Numbers | |
* @param {Array} flatArray - Flatten array (recursive) | |
* @return {Array} - Array of Numbers | |
* | |
* Link to JSBin - http://jsbin.com/dofuneb/edit?js,output | |
*/ | |
var flatten = function(intArray, flatArray) { |
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
/* | |
Instructions to run: | |
node program.js grep "search term" file1.xyz file2.xyz /path/to/file/file3.xyz | |
*/ | |
var fileList = []; | |
var countObj = {}; | |
console.log(process.argv); |
Install Virtualbox - https://www.virtualbox.org/wiki/Linux_Downloads
Install Kubectl - https://kubernetes.io/docs/tasks/tools/install-kubectl/
Install Minikube - https://kubernetes.io/docs/tasks/tools/install-minikube/
Set ENV - https://stackoverflow.com/questions/42564058/how-to-use-local-docker-images-with-minikube
Webconfig file when using IIS Node - https://github.com/Azure/iisnode
<configuration>
<system.webServer>
<!-- indicates that the hello.js file is a node.js application
to be handled by the iisnode module -->
- https://www.analyticsvidhya.com/blog/2016/02/time-series-forecasting-codes-python/
- http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html
- https://machinelearningmastery.com/time-series-forecasting-methods-in-python-cheat-sheet/
- https://www.analyticsvidhya.com/blog/2018/02/time-series-forecasting-methods/
- https://www.youtube.com/watch?v=e8Yw4alG16Q
- https://medium.com/@josemarcialportilla/using-python-and-auto-arima-to-forecast-seasonal-time-series-90877adff03c
- https://www.digitalocean.com/community/tutorials/a-guide-to-time-series-forecasting-with-arima-in-python-3
- https://www.sciencedirect.com/science/article/pii/S0925231217309864
- http://publications.lib.chalmers.se/records/fulltext/242944/242944.pdf
OlderNewer