Skip to content

Instantly share code, notes, and snippets.

@Charlie13
Charlie13 / kt_starbucks_2019.py
Created July 27, 2019 22:58 — forked from chwnam/kt_starbucks_2019.py
스타벅스 와이파이 자동 인증 파이썬3 스크립트
import time
from http.cookiejar import Cookie
from re import search, findall
from urllib.parse import urlencode
from urllib.request import (
HTTPCookieProcessor,
HTTPRedirectHandler,
Request,
build_opener
)
@Charlie13
Charlie13 / easy_keras.py
Created May 22, 2017 23:46 — forked from jskDr/easy_keras.py
Siimplied Keras for Users
from keras import layers, models
Nin = 784
Nh = 100
number_of_class = 10
Nout = number_of_class
class ANN(models.Model):
def __init__(self, Nin, Nh, Nout):
# Prepare network layers and activate functions
@Charlie13
Charlie13 / ShortIntroToScraping.rst
Created December 13, 2016 06:37 — forked from bradmontgomery/ShortIntroToScraping.rst
Really short intro to scraping with Beautiful Soup and Requests