请注意,逸凡并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome浏览器

mysql 忘记root密码

12-15 907 views

http://jingyan.baidu.com/article/9c69d48f42166213c9024e02.html
阅读全文 0

Sharing Golang packages to C and Go

12-06 852 views

http://blog.ralch.com/tutorial/golang-sharing-libraries/
阅读全文 0

vscode编译

12-05 1,047 views

git clone https://github.com/Microsoft/vscode.git git branch -a git checkout remotes/origin/release/1.7 Failed at the oniguruma@6.1.1 install scri...
阅读全文 0

Angularjs

11-24 899 views

<div id="add" data-id="2" data-name="Google" onclick="onClick(this)">Click Me</div> 在AngularJS中没用,把this传进去后你会发现你只是获...
阅读全文 0

golang json date format

11-23 1,107 views

type CustomTime struct { time.Time } const ctLayout = "2006/01/02|15:04:05" func (ct *CustomTime) UnmarshalJSON(b []byte) (err error) { ...
阅读全文 0

Python打乱字符串

11-16 1,129 views

import random alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+=" print "\n", alphabet alphabet = bytearray(...
阅读全文 0

CGo

11-14 1,623 views

Typecast char --> C.char --> byte signed char --> C.schar --> int8 unsigned char --> C.uchar --> uint8 short int --> C...
阅读全文 6

Nodejs Windows 安装

11-13 1,696 views

下载 前往https://nodejs.org/en/download/下载 Windows Binary (.zip) 版 解压到 D:\Program_Files\nodejs 设置 npm config set prefix "D:\Program_Files\...
阅读全文 0

bat 启停 脚本

11-11 849 views

Start.bat @echo off tasklist|find /i "A.exe" >nul && (echo A is already running... & pause) tasklist|find /i "A.exe" >nul || A ...
阅读全文 0

golang 交叉编译

11-02 822 views

http://dave.cheney.net/2012/09/08/an-introduction-to-cross-compilation-with-go
阅读全文 0