This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 1.2.8 | |
cache: true | |
interface: | |
privacyPolicy: | |
externalUrl: 'https://librechat.ai/privacy-policy' | |
openNewTab: true | |
termsOfService: | |
externalUrl: 'https://librechat.ai/tos' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 1.2.8 | |
cache: true | |
interface: | |
privacyPolicy: | |
externalUrl: 'https://librechat.ai/privacy-policy' | |
openNewTab: true | |
termsOfService: | |
externalUrl: 'https://librechat.ai/tos' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SET task=Cortana.exe | |
SET interval=10 | |
:REDO | |
TASKLIST | FIND "%task%" > NUL | |
IF NOT ERRORLEVEL 1 ( | |
taskkill /im %task% /F | |
) ELSE ( |