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


阅读全文...

April 13

simulate mapping in CPI iFlow

https://sapzero2hero.com/2022/04/19/sap-cpi-working-with-simulation-in-sap-cpi/

阅读全文...

March 11

Office 2021

Office Tool Plus:

https://otp.landian.vip/zh-cn/download.html


Edition:

Office LTSC 专业增强版2021


Key:

FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH


KMS:

102.168.1.22

阅读全文...

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

阅读全文...