์ฟ ํก ๊ฒ์ ์ํ ๋ฐ์ดํฐ๋ฅผ PHP๋ก ๋ถ๋ฌ์ค๋ ์์ ์ ๋๋ค.
- PHP 7.4+ ๊ถ์ฅ
- cURL ํ์ฅ ํ์ฑํ (
php -m | grep curl)
| // Analyze Microsoft Outlook data with ChatGPT | |
| // Require: WelsonJS framework (https://github.com/gnh1201/welsonjs) | |
| // Workflow: Microsoft Outlook -> OpenAI -> Get Response | |
| var Office = require("lib/msoffice"); | |
| var LIE = require("lib/language-inference-engine"); | |
| function main(args) { | |
| var prompt_texts = []; | |
| var keyword = "example.com"; |
| # batch_hwp_to_pdf_recover.py | |
| # Namhyeon Go <gnh1201@catswords.re.kr> | |
| # MIT license | |
| import os | |
| import time | |
| import subprocess | |
| import pythoncom | |
| from win32com.client import Dispatch | |
| HWP_EXE_PATH = r"C:\Program Files (x86)\HNC\Office 2020\HOffice110\Bin\Hwp.exe" |
ChakraCore is an open-source JavaScript engine with a C API. It was originally developed and released by Microsoft, but official build links are no longer actively maintained.
Since parts of the WelsonJS project depend on ChakraCore, we are providing alternative download links here for convenience.
Please note that the WelsonJS maintainers and Catswords OSS do not provide any warranties or accept any liability for the use of these files.
| // Directus + WebSocket + File Upload + Realtime + Jquery example | |
| // Namhyeon Go <gnh1201@catswords.re.kr> | |
| const CommentWs = (function() { | |
| const ws_url = "wss://mydata.tld/websocket"; // websocket server url | |
| const fs_url = "https://mydata.tld/files"; | |
| const download_url = "https://mydata.tld/assets"; | |
| const access_token = ""; // authentication token | |
| const collection = "collection_name"; // collection (data store) name |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| // Super-simple JSON-RPC 2.0 framework for PHP | |
| // MIT License | |
| // Namhyeon Go <abuse@catswords.net> | |
| // created: 2024-03-22 | |
| // updated: 2024-03-25 | |
| function jsonrpc2_encode($method, $params, $id = '') { | |
| $data = array( | |
| "jsonrpc" => "2.0", |
| #!/usr/bin/env python3 | |
| # | |
| # hello.py | |
| # serverless translation service gateway | |
| # | |
| # @author: Namhyeon Go <abuse@catswords.net> | |
| # @created_on: 2024-03-15 | |
| # @updated_on: 2024-03-19 | |
| # |
| /** | |
| * Welcome to Cloudflare Workers! This is your first worker. | |
| * | |
| * - Run "npm run dev" in your terminal to start a development server | |
| * - Open a browser tab at http://localhost:8787/ to see your worker in action | |
| * - Run "npm run deploy" to publish your worker | |
| * | |
| * Learn more at https://developers.cloudflare.com/workers/ | |
| */ |