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
<% | |
if (s.forceSsl) { | |
%> | |
server { | |
listen 80; | |
server_name <%-s.publicDomain%>; | |
# Used by Lets Encrypt |
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
import os | |
import struct | |
import logging | |
def PrintWavHeader(strWAVFile): | |
""" Extracts data in the first 44 bytes in a WAV file and writes it | |
out in a human-readable format | |
""" | |
def DumpHeaderOutput(structHeaderFields): | |
for key in structHeaderFields.keys(): |
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
import pandas as pd | |
import numpy as np | |
from keras.models import Sequential | |
from keras.layers import Dense | |
from keras.wrappers.scikit_learn import KerasRegressor | |
from sklearn.model_selection import cross_val_score | |
from sklearn.model_selection import KFold | |
from sklearn.preprocessing import StandardScaler | |
from sklearn.model_selection import train_test_split | |
# from sklearn.pipeline import Pipeline |
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
<html> | |
<head> | |
<title>Basic Homepage</title> | |
<link href="style.css" rel="stylesheet" type="text/css"> | |
<style type="text/css"> | |
body { | |
text-align: center; | |
margin: auto; |
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
<html> | |
<head> | |
<title>Basic Homepage</title> | |
<link href="style.css" rel="stylesheet" type="text/css"> | |
<style type="text/css"> | |
body { | |
text-align: center; | |
margin: auto; | |
} |
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
library(ggplot2) | |
library(lattice) | |
library(caret) | |
library(dplyr) | |
train <- read.csv(file="housing_prices/train.csv", header = TRUE, sep = ",") | |
test <- read.csv(file="housing_prices/test.csv", header = TRUE, sep = ",") | |
dim(train) | |
summary(train) |
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
library(ggplot2) | |
library(lattice) | |
library(caret) | |
library(dplyr) | |
train <- read.csv(file="housing_prices/train.csv", header = TRUE, sep = ",") | |
test <- read.csv(file="housing_prices/test.csv", header = TRUE, sep = ",") | |
dim(train) | |
summary(train) |