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
| let question = ['🥚','🐔'] | |
| let answer = question.sort() | |
| console.log(answer[0] + ' was first!') |
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
| #!/bin/bash | |
| # First in https://console.cloud.google.com/ | |
| # 1) Create project | |
| # 2) Enable billing | |
| # 3) Install gcloud command line tools and run `gcloud init` to login and configure | |
| # (https://cloud.google.com/sdk/docs/downloads-apt-get) | |
| # | |
| # Created by data hackers from http://activate.cz |
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
| #install.packages("neuralnet") | |
| library(neuralnet) | |
| library(MASS) | |
| #pripravime si data | |
| data <- Boston | |
| index <- sample(1:nrow(data),round(0.8*nrow(data))) | |
| train <- data[index,] | |
| test <- data[-index,] |
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
| #!/bin/sh | |
| ##################################################################### | |
| # | |
| # tools form development and google cloud management instalation | |
| # tested on debian9 for Windows10 https://www.microsoft.com/en-us/p/debian-gnu-linux/9msvkqc78pk6?activetab=pivot%3Aoverviewtab | |
| # | |
| # run as regular user, don't use sudo! | |
| # | |
| # will install: |
NewerOlder