background picture of the home page

Hi,Friend

Python 基础

1.输出函数 print("hello world","hahaha",sep=",",end=".") sep 间隔符 end 终止符 1.1 格式化输出 and 占位符 # 占位符 # %d 证书 print("hello%dworld" % 1) # %s 字符串 print("hello%s

thumbnail of the cover of the post

Windows 下 Docker 使用 GPU 运行 vLLM 嵌入式模型

前言 最近需要在本地部署 Qwen3-Embedding-0.6B 模型,利用 vLLM 提供 OpenAI 风格的 Embeddings API。我的电脑是 Windows 系统,显卡为 NVIDIA GTX 1070,打算使用 Docker 容器运行模型以隔离环境。然而,Windows 上的 D

thumbnail of the cover of the post

windows 端口代理

1.powershell # 10809 为vpn的代理端口 # 当前是只有http 和 https 走代理 $env:HTTP_PROXY="http://127.0.0.1:10809" $env:HTTPS_PROXY="http://127.0.0.1:10809" # 所有协议都走代理 $

thumbnail of the cover of the post

Maven命令

1.删除本地某个jar包 mvn dependency:purge-local-repository -DmanualInclude="groupId:artifactId" 2.删除本地jar 并重新下载 mvn dependency:purge-local-repository -Dmanual

thumbnail of the cover of the post