Follow the instructions below to setup OpenVPN and SoftEther Server Manager.
-
Make sure you have a Linux server, which will be used as a VPN server.
-
ssh into the server by the following command:
$ ssh root@your_server_ip_address
""" | |
Title: Directory Loader using Unstructured API with Error Handling and LangChain Document Output | |
Description: A class for loading documents from a directory using the LangChain format. | |
It supports recursive loading and conversion of documents to the LangChain Document class using the UnstructuredClient API. | |
The class includes built-in error handling and outputs documents in the same style as the LangChain Document class. | |
To use, get a free unstructured API key here: https://unstructured.io/api-key | |
Author: @CivilEngineerUK |
@ECHO OFF&PUSHD %~DP0 | |
TITLE title KMS_Activation for Windows 10 | |
Rd "%WinDir%\system32\test_permissions" >NUL 2>NUL | |
Md "%WinDir%\System32\test_permissions" 2>NUL||(Echo 请使用右键管理员身份运行!&&Pause >nul&&Exit) | |
Rd "%WinDir%\System32\test_permissions" 2>NUL | |
SetLocal EnableDelayedExpansion | |
::修改下面的内容,定义选择想使用的KMS服务器。如果定义了多次,最后的有效 | |
::set KMS_Sev=192.168.2.8 | |
::set KMS_Sev=1.2.7.0 |
// Filename: uvm_basics_complete.sv | |
//---------------------------------------------------------------------- | |
// Copyright (c) 2013 by Mentor Graphics Corp. | |
// Copyright (c) 2011-2012 by Doulos Ltd. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at |
$ text-builder -index /path/to/index.txt
Or run $ sh build-all
to build all your index files.本人不提供任何保证和技术支持,使用者自负风险。
There are no guarantees, no any support. Use it at your own risk.
from trello import * | |
import re | |
from pprint import pprint | |
from difflib import * | |
client = TrelloClient( | |
'YOUR_KEY', | |
'YOUR_TOKEN', | |
) |
--[[ config | |
root = "./" | |
listen = "127.0.0.1:8786" | |
redisaddr = "127.0.0.1:6379[1]" | |
dbfile = root .. "backup.db" | |
thread = 4 | |
logger = nil | |
harbor = 1 |
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |