Skip to content

Instantly share code, notes, and snippets.

View SuitUp's full-sized avatar
💤
dreaming

Vineet Singh SuitUp

💤
dreaming
View GitHub Profile
@SuitUp
SuitUp / curl.md
Created June 9, 2020 20:20 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@SuitUp
SuitUp / plot_decision_boundary.py
Created December 22, 2019 11:57 — forked from dennybritz/plot_decision_boundary.py
plot_decision_boundary.py
# Helper function to plot a decision boundary.
# If you don't fully understand this function don't worry, it just generates the contour plot below.
def plot_decision_boundary(pred_func):
# Set min and max values and give it some padding
x_min, x_max = X[:, 0].min() - .5, X[:, 0].max() + .5
y_min, y_max = X[:, 1].min() - .5, X[:, 1].max() + .5
h = 0.01
# Generate a grid of points with distance h between them
xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h))
# Predict the function value for the whole gid
@SuitUp
SuitUp / PY0101EN-5-1-Numpy1D.ipynb
Created November 2, 2019 19:57
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-4-2-WriteFile.ipynb
Created November 2, 2019 14:57
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-4-1-ReadFile.ipynb
Created November 2, 2019 13:00
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-3-4-Classes.ipynb
Created November 2, 2019 09:57
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-3-1-Conditions.ipynb
Created November 1, 2019 20:38
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-2-4-Dictionaries.ipynb
Created November 1, 2019 20:22
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-2-3-Sets.ipynb
Created November 1, 2019 19:13
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SuitUp
SuitUp / PY0101EN-2-1-Tuples.ipynb
Created October 31, 2019 20:55
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.