Skip to content

Instantly share code, notes, and snippets.

@eefuu
eefuu / myCFAPI.EXCEL.yaml
Created May 31, 2023 02:17
taegyun2kimdhi -excel custom function list-
name: myCFAPI
description: |-
taegyun2kimdhi
-excel custom function list-
host: EXCEL
api_set: {}
script:
content: >
// $("#run").click(() => tryCatch(run));
@eefuu
eefuu / myTSAPI.EXCEL.yaml
Last active May 31, 2023 02:33
taegyun2kimdhi - Performs a basic Excel API call using TypeScript.
name: myTSAPI
description: |-
taegyun2kimdhi -
Performs a basic Excel API call using TypeScript.
host: EXCEL
api_set: {}
script:
content: |
$("#run").click(() => tryCatch(run));
@eefuu
eefuu / myJSAPI.EXCEL.yaml
Last active May 31, 2023 02:46
taegyun2kimdhi - Performs a basic Excel API call using plain JavaScript & Promises.
name: myJSAPI
description: |-
taegyun2kimdhi
- Performs a basic Excel API call using plain JavaScript & Promises.
host: EXCEL
api_set: {}
script:
content: |
$("#run").click(() => tryCatch(run));
@eefuu
eefuu / wsl2-network.ps1
Created March 28, 2023 01:50 — forked from xmeng1/wsl2-network.ps1
WSL2 Port forwarding port to linux
$remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
if( $found ){
$remoteport = $matches[0];
} else{
echo "The Script Exited, the ip address of WSL 2 cannot be found";
exit;
}
@eefuu
eefuu / test.html
Created January 9, 2023 00:59
Hello World Html
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>