May 20

AXIOS HTTP Client

<!DOCTYPE html>
<html>
    <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-witdth, initial-scale=1.0" />
    <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
    <script src="/res/js/httpclt.js"></script>
    </head>
    <body>
    <div style="text-align: center" id="new-app">
    <button onclick="getJSON();">Click</button>
    </div>
    </body>
</html>
function getJSON(){
    axios
    .get('/vue/package.json')
    .then(response => {
    const name = response.data.name
    console.log('get list', name)
    })
    .catch(error => console.error(error))
}

https://juejin.cn/post/7218023140034084923 

https://axios-http.com/docs/intro


阅读全文...

Feb 26

Tabby Free SSH Client


阅读全文...

Oct 6

Java Move Mouse

import java.awt.AWTException; import java.awt.Robot; import java.awt.MouseInfo; import java.awt.Point; public final class JMoveMouse2 {     public static void main(String[] args) throws AWTException     {         Robot robot = new Robot();         robot.setAutoDelay(5);         robot.setAutoWaitForIdle(true);         int counts = 0;         Point p;         int x, y;         while(true){             p = MouseInfo.getPointerInfo().getLocation();     &n

阅读全文...

Aug 23

CoreFTP server

Free FTP & SFTP Server

http://www.coreftp.com/server


阅读全文...

July 29

NPM Instal Vue3

CNPM:

npm install -g cnpm --registry=http://registry.npm.taobao.org


Vue 3:

cnpm install vue@next


Vue-cli

cnpm install -g @vue/cli


Vue-cli-init

cnpm i -g @vue/cli-init

阅读全文...