Skip to content

Instantly share code, notes, and snippets.

View WindDAnalytics's full-sized avatar
💭
I may be slow to respond.

D Thomas WindDAnalytics

💭
I may be slow to respond.
  • Windd Analytics
  • Seattle, WA
View GitHub Profile
@WindDAnalytics
WindDAnalytics / Plot_Compare_LOGIT_SVM.ipynb
Last active February 11, 2018 07:49
plot_compare_calibration.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@WindDAnalytics
WindDAnalytics / plot_classification_probability.ipynb
Created February 11, 2018 07:54
plot_classification_probability.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@WindDAnalytics
WindDAnalytics / Mini_Project_Final_Revised.ipynb
Created February 25, 2018 21:59
Cryptography/Mini_Project_Final_Revised.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@WindDAnalytics
WindDAnalytics / LAB2_classification_and_Regression_Final.ipynb
Created March 12, 2018 04:47
LAB2_classification_and_Regression_Final.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Bash script that input validates two numbers and adds them together.
#!/bin/bash
#Prompt user to insert inputs (one at a time)
read -p 'Enter Number 1: ' number1
read -p 'Enter Number 2: ' number2
i
# Firstly Validate if any input field is left blank. If not, display appropriate message and stop execution of script
if [ -z "$number1" ] || [ -z "$number2" ]
then