12-15 907 views
阅读全文 0
请注意,逸凡并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome浏览器
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 script 'node-gyp rebuild'.
npm config set python D:\Program_Files\Python\Python2\python.exe
scripts\npm ...
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...
<div id="add" data-id="2" data-name="Google" onclick="onClick(this)">Click Me</div>
在AngularJS中没用,把this传进去后你会发现你只是获取到了scope
<button id="test" class="button button-balanced pull-right" ng-click="test($event);"...
11-24 899 views
<div id="add" data-id="2" data-name="Google" onclick="onClick(this)">Click Me</div>
在AngularJS中没用,把this传进去后你会发现你只是获...
type CustomTime struct {
time.Time
}
const ctLayout = "2006/01/02|15:04:05"
func (ct *CustomTime) UnmarshalJSON(b []byte) (err error) {
s := strings.Trim(string(b), "\"")
if s == "null" {
ct.Time = time.Time{}
return
...
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) {
...
import random
alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+="
print "\n", alphabet
alphabet = bytearray( alphabet )
random.shuffle(alphabet)
print alphabet.decode("utf-8")
11-16 1,129 views
import random
alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+="
print "\n", alphabet
alphabet = bytearray(...
Typecast
char --> C.char --> byte
signed char --> C.schar --> int8
unsigned char --> C.uchar --> uint8
short int --> C.short --> int16
short unsigned int --> C.ushort --> uint16
int --> C.int --> in...
11-14 1,623 views
Typecast
char --> C.char --> byte
signed char --> C.schar --> int8
unsigned char --> C.uchar --> uint8
short int --> C...
下载
前往https://nodejs.org/en/download/下载 Windows Binary (.zip) 版
解压到 D:\Program_Files\nodejs
设置
npm config set prefix "D:\Program_Files\nodejs"
npm config set cache "D:\Program_Files\nodejs\npm_cache"
环境变量
下面这一步非常关键,我们需...
11-13 1,696 views
下载
前往https://nodejs.org/en/download/下载 Windows Binary (.zip) 版
解压到 D:\Program_Files\nodejs
设置
npm config set prefix "D:\Program_Files\...
Start.bat
@echo off
tasklist|find /i "A.exe" >nul && (echo A is already running... & pause)
tasklist|find /i "A.exe" >nul || A -native=60b381720748
Stop.bat
@echo off
taskkill /F /IM A.exe >nul 1>nul 2>nul
echo Stop A...
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 ...