Skip to content

Instantly share code, notes, and snippets.

View siwonkh's full-sized avatar

Ganghyun Kim siwonkh

  • Handong Global University
  • 15:04 (UTC +09:00)
View GitHub Profile
version: 1.2.8
cache: true
interface:
privacyPolicy:
externalUrl: 'https://librechat.ai/privacy-policy'
openNewTab: true
termsOfService:
externalUrl: 'https://librechat.ai/tos'
@siwonkh
siwonkh / librechat.yaml
Last active July 29, 2025 17:59
LibreChat Config
version: 1.2.8
cache: true
interface:
privacyPolicy:
externalUrl: 'https://librechat.ai/privacy-policy'
openNewTab: true
termsOfService:
externalUrl: 'https://librechat.ai/tos'
@siwonkh
siwonkh / tauri-update.json
Last active May 17, 2023 08:18
tauri update test
{
"version": "v0.0.2",
"notes": "Second test version",
"pub_date": "2023-05-16T15:25:57Z",
"platforms": {
"windows-x86_64": {
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVTWjh1cFdaQWdlK0hOUEsvd21Vc0lLa21ycVZKNnhOalZIbGtSSFlLa1ZwZXQ5STM0SjYyZXRtLzNZZDVtT3Z5Rm1ObE05ZDFrV2x1NjlKQWhtWmtWS1p3dnhNNzBlZndNPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjg0MzExMjQ0CWZpbGU6dGF1cmktYXBwXzAuMC4yX3g2NF9lbi1VUy5tc2kuemlwClJGL01KSDVJc1V0RXovaitnNkxOSk1Wa1lNU0VqaUxJbHlTQ2FZSlpSNnhjSVphbWxJNlRxMUk2WGtaRjhzS2I2ZjBmb1BHSGJrV3Bjb0dSSlBUakJ3PT0K",
"url": "https://github.com/siwonKH/GBSW_WIFI_Solution_Test/releases/download/v0.0.2/tauri-app_0.0.2_x64_en-US.msi.zip"
}
}
@siwonkh
siwonkh / WIFI_Solution_Core.bat
Last active May 14, 2023 14:30
Core code of GBSW_WIFI_Solution(beta) for Windows.
@ECHO OFF
setlocal enabledelayedexpansion
:: User settings START
set "CheckInterval=10"
set "PrimaryDNS=1.0.0.1"
set "SecondaryDNS=8.8.4.4"
:: User settings END
:: Get Admin Process START
@siwonkh
siwonkh / GBSW_WIFI_Solution.bat
Last active May 14, 2023 14:19
GBSW_WIFI_Solution(beta) for Windows.
@ECHO OFF
setlocal enabledelayedexpansion
:: ===============================
:: connection check interval (sec)
set "CheckInterval=3"
:: DNS settings
set "PrimaryDNS=1.0.0.1"
set "SecondaryDNS=8.8.4.4"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<style>
.first {
border: 1px solid red;
width: 15rem;
box-sizing: border-box;
@siwonkh
siwonkh / AntiCortana.bat
Created March 9, 2023 01:30
Anti Cortana
@ECHO OFF
SET task=Cortana.exe
SET interval=10
:REDO
TASKLIST | FIND "%task%" > NUL
IF NOT ERRORLEVEL 1 (
taskkill /im %task% /F
) ELSE (