Home
antdman
Cancel

antdpro v5 start

antdpro v5 typescrit 버전으로 실행해 보겠습니다. create yarn create umi antprov-v5-typescript option ? Select the boilerplate type (Use arrow keys) ❯ ant-design-pro - Create project ...

지킬 github 코멘트

jekyll comments install input https://github.com/apps/utterances Only select repositories user/repo (remenber) copy script <script src="https://utteranc.es/client.js" repo="[ENTER RE...

crawler 맛보기

crawler.js data를 받아서 파일에 저장한다. const request = require('request'); const cheerio = require('cheerio'); var fs = require('fs'); const news = 'https://www.baidu.com/s?wd=%E9%9F%A9%E5%B8%81%E5%AF...

vim window autohotkey

AutohotkeyVimExt in windows control to capslock , visual mode use other language then did not move ,solve this probrem 1. NOT ENG TO ENG START $Esc:: IME_CHANGE() return /* ^C:: IME...

vim mac hammerspoons

hammerspaoon int.lua -- 1). short key local bindKey = {"shift","cmd"} do -- app manager local app_man = require('modules.appman') hs.hotkey.bind(bindKey, 'c', app_man:toggle('Google Chrome')...

typescript2 tutorial

/** * 静态属性 Getter 和Setter */ class Person { // 私有属性 constructor(private _name: string) {} get name() { return this._name + " change"; } set name(name: string) { const realName =...

typescript1 tutorial

typescript // interface 接口 /** * age?------> ? 属性可有可无 * readname name ----> 属性可读 * [propName: string]: any, -------> 其他多余属性 * 接口可以继承interface * interface 可以定义一个具体的方法 */ interface Pe...