Skip to content

Instantly share code, notes, and snippets.

View hellojinwoo's full-sized avatar
💭
Organizing repositories these days

Jinwoo hellojinwoo

💭
Organizing repositories these days
  • Product Owner
  • Ile-de-France, France
View GitHub Profile
@ih2502mk
ih2502mk / list.md
Last active September 7, 2025 14:03
Quantopian Lectures Saved
@GerardBCN
GerardBCN / stock_price_autoencoding.ipynb
Created January 18, 2019 21:15
Stock market Bitcoin data compression with autoencoders
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@keithweaver
keithweaver / create-folder.py
Created March 10, 2017 03:42
Create a folder with Python
import os
def createFolder(directory):
try:
if not os.path.exists(directory):
os.makedirs(directory)
except OSError:
print ('Error: Creating directory. ' + directory)