Open git bash with admin privilege.
cd "C:/Program Files/Git/usr/share/mintty"
mkdir -p emojis
cd emojis
curl https://raw.githubusercontent.com/wiki/mintty/mintty/getemojis > getemojis
./getemojis -d| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| // Generated by gfwlist2pac | |
| // https://github.com/clowwindy/gfwlist2pac | |
| var domains = { | |
| "ggpht.com":1, | |
| "gimpshop.com": 1, | |
| "directcreative.com": 1, | |
| "speedpluss.org": 1, | |
| "mingpaovan.com": 1, | |
| "wikinews.org": 1, |
| rustup component add rust-src | |
| export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src" |
| onMounted(async () => { | |
| // const data = await accountInfoApi(); | |
| if (taskId.value !== undefined) { | |
| const data = await getTask(taskId.value); | |
| // task.then((result) => { | |
| // bodyList = result.body; | |
| // }); | |
| setFieldsValue(data); | |
| } | |
| }); |
| [ | |
| { | |
| "id": "1", | |
| "title": "Carpet", | |
| "shape": "poly", | |
| "name": "1", | |
| "fillColor": "#00ff194c", | |
| "strokeColor": "black", | |
| "coords": [264, 332, 319, 320, 328, 332, 338, 386, 276, 402, 264, 332], | |
| "polygon": [ |
Open git bash with admin privilege.
cd "C:/Program Files/Git/usr/share/mintty"
mkdir -p emojis
cd emojis
curl https://raw.githubusercontent.com/wiki/mintty/mintty/getemojis > getemojis
./getemojis -d| function printC(list, flag) { | |
| let columns = {}; | |
| let columnsI = []; | |
| list.map((item) => { | |
| columns[item.dataIndex] = item.title; | |
| item.title = `t('${flag}.${item.dataIndex}')`; | |
| }); | |
| console.log(columns); | |
| console.log(list); | |
| } |
| function dynamicMergeCells(dataSource: [], index: number, key: string) { | |
| const data = dataSource.map((item) => item[key]); | |
| const result = [] as any; | |
| let count = 1; | |
| for (let i = 1; i < data.length; i++) { | |
| if (data[i] == data[i - 1]) { | |
| count++; | |
| result.push({ |