万码GY56TG86
IP:上海
3关注数
23粉丝数
48获得的赞
北京博网宇通信息技术有限公司
测试工程师
黄山学院
本科
工作8年
编辑资料
链接我:

创作·8

全部
问答
动态
项目
学习
专栏
万码GY56TG86

请问在对React项目做状态管理,您们都是使用什么方案呢?

好好好
0
0
0
浏览量0
万码GY56TG86

请问在对React项目做状态管理,您们都是使用什么方案呢?

各个环节
0
0
0
浏览量0
万码GY56TG86

chatgpt-talkieai

TalkieAI 简介 "TalkieAI" (https://github.com/maioria/chatgpt-talkieai) 是一个基于AI的外语学习应用,可通过语音进行聊天,语法分析,翻译。 AI可以基于CHAT-GPT, 国内可以配置chat-gpt代理或者使用"智谱开放平台" (https://open.bigmodel.cn/) 在线预览 - "TalkieAI 预览地址" (https://talkie.prejade.com/) 微信小程序 https://aitake-saas-qiniu.sciotech.cn/aitake-ai/gh_8f98368aa102_258.jpg 后端 - 使用python语言开发,开发使用的版本为3.11,web框架为fastAPI,数据层框架为SQLAlchemy,语音使用azure。 前端 - 前端使用uniapp开发,基于vue3,可发布到网页与小程序与APP 项目示例图 https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/login.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/switch-roles.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/index.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/topic-detail.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/chat.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/chat-settings.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/chat-prompt.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/pronunciation.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/select-language.jpg https://qiniu.prejade.com/1597936949107363840/talkie/example_2.0/my.jpg 本地启动 # 数据库,创建一个空的数据库,.env文件配置好数据库后启动服务,服务会自动生成相应的表,并且加载默认数据 # 1.克隆本仓库; git clone git@github.com:maioria/chatgpt-talkieai.git cd talkieai-server # 2.安装依赖; pip3 install -r requirements.txt # 3. 启动服务(需要新建.env文件并设置变量,参考.env.default) nohup uvicorn app.main:app --host 0.0.0.0 --port 8097 & #前端使用HBuilder直接web或者小程序运行 # 1. 安装依赖(前端只用了俩个依赖fingerprintjs2 与 recorder) npm install nginx配置(Web) # uniapp可以直接跨域请求服务端地址,也可通过nginx来配置反向代理 server { listen 80; listen [::]:80; server_name {server_name}; rewrite ^(.*) https://$server_name$1 permanent; } server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name {server_name}; root {前端编译完后的路径}; ssl_certificate "{crt}"; ssl_certificate_key "{key}"; ssl_session_cache shared:SSL:1m; ssl_session_timeout 10m; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; # Load configuration files for the default server block. location ^~ /api/ { proxy_pass http://localhost:8000/api/; proxy_set_header Host $http_host; proxy_connect_timeout 15s; proxy_send_timeout 300s; proxy_read_timeout 300s; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location / { try_files $uri $uri/ /index.html; } } 交流 贡献 如果您有任何建议或意见,欢迎提出 "Issues" (https://github.com/maioria/chatgpt-talkieai/issues) 或 " Pull Request" (https://github.com/maioria/chatgpt-talkieai/pulls)。 "哈哈"
14
0
0
浏览量57
万码GY56TG86

compose

Table of Contents - "Docker Compose v2" (#docker-compose-v2) - "Where to get Docker Compose" (#where-to-get-docker-compose) + "Windows and macOS" (#windows-and-macos) + "Linux" (#linux) - "Quick Start" (#quick-start) - "Contributing" (#contributing) - "Legacy" (#legacy) Docker Compose v2 ""GitHub release" (https://img.shields.io/github/release/docker/compose.svg?style=flat-square)" (https://github.com/docker/compose/releases/latest) ""PkgGoDev" (https://img.shields.io/badge/go.dev-docs-007d9c?style=flat-square&logo=go&logoColor=white)" (https://pkg.go.dev/github.com/docker/compose/v2) ""Build Status" (https://img.shields.io/github/actions/workflow/status/docker/compose/ci.yml?label=ci&logo=github&style=flat-square)" (https://github.com/docker/compose/actions?query=workflow%3Aci) ""Go Report Card" (https://goreportcard.com/badge/github.com/docker/compose/v2?style=flat-square)" (https://goreportcard.com/report/github.com/docker/compose/v2) ""Codecov" (https://codecov.io/gh/docker/compose/branch/main/graph/badge.svg?token=HP3K4Y4ctu)" (https://codecov.io/gh/docker/compose) ""OpenSSF Scorecard" (https://api.securityscorecards.dev/projects/github.com/docker/compose/badge)" (https://api.securityscorecards.dev/projects/github.com/docker/compose) "Docker Compose" (Docker Compose Logo: logo.png?raw=true) Docker Compose is a tool for running multi-container applications on Docker defined using the "Compose file format" (https://compose-spec.io). A Compose file is used to define how one or more containers that make up your application are configured. Once you have a Compose file, you can create and start your application with a single command: "docker compose up". Where to get Docker Compose Windows and macOS Docker Compose is included in "Docker Desktop" (https://www.docker.com/products/docker-desktop) for Windows and macOS. Linux You can download Docker Compose binaries from the "release page" (https://github.com/docker/compose/releases) on this repository. Rename the relevant binary for your OS to "docker-compose" and copy it to "$HOME/.docker/cli-plugins" Or copy it into one of these folders to install it system-wide: * "/usr/local/lib/docker/cli-plugins" OR "/usr/local/libexec/docker/cli-plugins" * "/usr/lib/docker/cli-plugins" OR "/usr/libexec/docker/cli-plugins" (might require making the downloaded file executable with "chmod +x") Quick Start Using Docker Compose is a three-step process: 1. Define your app's environment with a "Dockerfile" so it can be reproduced anywhere. 2. Define the services that make up your app in "compose.yaml" so they can be run together in an isolated environment. 3. Lastly, run "docker compose up" and Compose will start and run your entire app. A Compose file looks like this: services: web: build: . ports: - "5000:5000" volumes: - .:/code redis: image: redis Contributing Want to help develop Docker Compose? Check out our "contributing documentation" (CONTRIBUTING.md). If you find an issue, please report it on the "issue tracker" (https://github.com/docker/compose/issues/new/choose). Legacy The Python version of Compose is available under the "v1" "branch" (https://github.com/docker/compose/tree/v1).
17
0
1
浏览量56
万码GY56TG86

安卓虚拟摄像头

https://fastly.jsdelivr.net/gh/iiheng/TuChuang@main/1700961311425EasyGIF-1700961287297.gif 开发计划 支持rtmp传输直播,提高稳定性 支持视频提前选择,自定义播放顺序 开发环境 Android SDK 34 Xposed 82 xiaomi 9 MIUI 11.0.3 xiaomi 8 MIUI 11.0.3 Redim K40 MUI 14.0.7 酷比魔方50pro MIUI 14.0.5 Lsposed lastest 使用方法 在Lsposed中勾选自己想要的播放平台 在软件中选择自己想要播放的视频 打开视频开关 然后选择平台播放 支持替换 支持视频替换 支持RTMP直播替换,不稳定 注意事项 视频播放需要与平台播放的格式相同,基本支持9:16的视频,例如:3840x2160,1920x1080,1280x720,854x480,640x360,426x240,256x144 画面黑屏,相机启动失败,因为视频解码有问题,请多次点击翻转摄像头 画面翻转,和原视频不匹配,当前视频播放还未做调整,请手动调整视频 不同软件对于硬解码和软解码的要求不同,如果多次只出声音不出画面,请切换视频解码方式 硬解码流畅于软解码,请根据你的手机型号来判断是否支持硬解码,软解码的适配性较高,视频基本都支持播放 反馈问题 在issues中反馈,如果为BUG反馈,请附带Xposed模块日志信息 致谢 提供hook代码:https://github.com/Xposed-Modules-Repo/com.example.vcam
17
0
14
浏览量82
万码GY56TG86

乐在其中

家人们谁懂啊!这一年感觉就像坐过山车,一会儿“嗖”地冲向云霄,一会儿又“哐当”掉进谷底。年初立志要征服世界,结果被世界狠狠“拿捏”。 想瘦成一道闪电,却胖成了一堵墙。工作忙到飞起,天天“累成狗”,但还是能苦中作乐。 我这一年主打一个“打不死的小强”,不管遇到啥困难,都能苦笑着面对。希望下一年能像开了挂,顺顺利利,少点“奇葩”事儿,多些欢乐!
14
0
0
浏览量180
万码GY56TG86

大家最近工作好找么

还好吧
9
0
0
浏览量0
万码GY56TG86

[AMH] 当使用AMS3 远程备份时,面板上如何设置指定路径?

好的
11
0
0
浏览量0

履历

项目经理
藏格科技(西安)有限公司/藏格控股股份有限公司
2021.03-至今
,
平台经理
西安三元园区运营管理有限公司
2020.01-2021.03
,
项目经理
芜湖奇瑞信息技术有限公司/奇瑞汽车股份有限公司
2017.06-2020.01