Skip to content

Instantly share code, notes, and snippets.

View kaituoxu's full-sized avatar

Kaituo XU 许开拓 kaituoxu

View GitHub Profile
@kaituoxu
kaituoxu / solarized_dark.xcs
Created July 4, 2016 13:02
xshell 5 coloar scheme
[Names]
count=1
name0=Solarized Dark
[Solarized Dark]
text(bold)=839496
magenta(bold)=dd3682
text=839496
white(bold)=fdf6e3
green=859900
red(bold)=cb4b16
@kaituoxu
kaituoxu / simpleNN.py
Last active March 30, 2016 08:42
The implement of Neural Network
#!/usr/bin/env python
#coding: utf-8
import numpy as np
np.random.seed(1)
def sigmoid(x):
return 1/(1 + np.exp(-x))
@kaituoxu
kaituoxu / 0_reuse_code.js
Last active March 29, 2016 10:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console