Skip to content

Instantly share code, notes, and snippets.

View keitheis's full-sized avatar

Keith Yang keitheis

View GitHub Profile
@keitheis
keitheis / 0_Instructions.md
Last active November 18, 2016 08:50 — forked from ccwang002/0_Instructions.md
Miniconda on Windows 64bit

在 Windows 上安裝 Miniconda 選 Python 3.5 64bit

這邊用 Miniconda,選擇 Python 3.5 Windows 64-bit。

安裝 Anaconda 一樣沒有問題,兩個裡面是一樣的, 只是 Anaconda 預設下載了很多常用套件。

開一個 Command Prompt (Win+R -> cmd + [Enter]) 輸入 conda

import time
import concurrent.futures
import rx
num_stream = [1, 2, 3, 4, 5]
def heavy_work(data):
time.sleep(1)
return data
@keitheis
keitheis / introrx.md
Created May 18, 2016 07:45 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@keitheis
keitheis / installation.rst
Created March 6, 2016 08:24 — forked from uranusjr/installation.rst
在各作業系統上安裝 Python 3.4。

設定 Python 環境

開始使用 Pyhton 之前,首先要確定電腦上能不能執行 Pyhton 程式。本教學將需要 Python 3.4 或更高的版本,因此請確認電腦上是否有對應版本。若不確定電腦上是否已經安裝 Python,建議直接按照以下步驟設定,以保證教學中的程式皆能夠正常執行。由於各作業系統安裝流程不同,以下請按照作業系統,選擇自己需要的部份閱讀。

Windows

from flask import Flask, render_template
from flask.ext.wtf import Form, widgets, SelectMultipleField
SECRET_KEY = 'development'
app = Flask(__name__)
app.config.from_object(__name__)
class MultiCheckboxField(SelectMultipleField):
widget = widgets.ListWidget(prefix_label=False)
@keitheis
keitheis / fabfile.py
Created November 21, 2012 09:51 — forked from justinvoss/fabfile.py
Example Fabric and Cuisine Scrips
from deployment.cuisine import *
from fabric.api import *
from fabric.context_managers import *
from fabric.utils import puts
from fabric.colors import red, green
import simplejson
import os