Skip to content

Instantly share code, notes, and snippets.

View KyleXID's full-sized avatar

이형주 KyleXID

  • Heumlabs
  • Seoul, Gangnam-gu
  • 10:21 (UTC +09:00)
View GitHub Profile
@mGalarnyk
mGalarnyk / Neural NetworksRepresentationStanfordCoursera.md
Created June 29, 2017 21:15
Machine Learning (Stanford) Coursera Neural Networks: Representation Quiz (Week 4, Quiz 1) for the github repo: https://github.com/mGalarnyk/datasciencecoursera/tree/master/Stanford_Machine_Learning

Machine Learning Week 4 Quiz 1 (Neural Networks: Representation) Stanford Coursera

Github repo for the Course: Stanford Machine Learning (Coursera)
Quiz Needs to be viewed here at the repo (because the image solutions cant be viewed as part of a gist)

Question 1

True or False | Statement | Explanation

@iros
iros / API.md
Created August 22, 2012 14:42
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@geoffalday
geoffalday / secretkey.py
Created March 12, 2012 12:28
How to generate a secret key with Python
# How to generate a secret key with Python
# via http://flask.pocoo.org/docs/quickstart/
import os
os.urandom(24)