上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 43 下一页
摘要: 安装第三方包 go get github.com/tus/tusd/v2 package main import ( "fmt" "net/http" "github.com/tus/tusd/v2/pkg/filestore" tusd "github.com/tus/tusd/v2/pkg/ha 阅读全文
posted @ 2024-04-02 14:16 朝阳1 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 练手的项目,搜索的资源大部分都是枪版的。。。 import mechanicalsoup import re import json def extract_episode_number(label): match = re.search(r"(\d+)[^0-9]*集", label) if ma 阅读全文
posted @ 2024-04-01 16:41 朝阳1 阅读(36) 评论(0) 推荐(0) 编辑
摘要: Fiber是一个基于Fasthttp(Go最快的HTTP引擎)构建的Go Web框架。它旨在简化零内存分配和性能的情况,以便快速开发,比Gin框架快10倍 官网地址 https://docs.gofiber.io/ package main import ( "log" "github.com/go 阅读全文
posted @ 2024-04-01 14:14 朝阳1 阅读(130) 评论(0) 推荐(0) 编辑
摘要: @charset "utf-8";html{background-color:#fff;color:#000;font-size:12px} body,ul,ol,dl,dd,h1,h2,h3,h4,h5,h6,figure,form,fieldset,legend,input,textarea,b 阅读全文
posted @ 2024-04-01 13:48 朝阳1 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.App.vue 将获取菜单的方法放在全局中,以便每次刷新页面时,能够加载出。this.$store.state.userInfo是登入后存放在Vuex的用户信息 TODO:把数据放到本地存储,没有的时候再加载,这只是demo <template> <div id="app"> <router-v 阅读全文
posted @ 2024-04-01 13:44 朝阳1 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 如果.gitignore文件不存在,在项目的根目录下创建一个名为.gitignore的文件,并在该文件中添加以下内容: .idea/ 如果.idea文件夹已经被跟踪,运行git rm --cached .idea来从Git跟踪中移除它,然后再提交这个更改。 git rm -r --cached .i 阅读全文
posted @ 2024-03-29 14:22 朝阳1 阅读(241) 评论(0) 推荐(0) 编辑
摘要: import re import os import asyncio import requests from playwright.async_api import async_playwright def save_douyin_videos(keyword, file_name, video_ 阅读全文
posted @ 2024-03-29 10:39 朝阳1 阅读(310) 评论(0) 推荐(0) 编辑
摘要: # 卸载 pip uninstall -y playwright # 安装 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ playwright # 安装浏览器插件 playwright install 阅读全文
posted @ 2024-03-29 10:37 朝阳1 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 先上地址 https://github.com/ollama/ollama/tree/main 官网 https://ollama.com/ 下载 运行,然后会默认下载 ollama run llama2 选择不同的model ui交互 docker run -d -p 3000:8080 --ad 阅读全文
posted @ 2024-03-28 10:36 朝阳1 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 本示例只是demo,没有接入mysql,功能可以参考 https://github.com/idMiFeng/online_shopping_service rocketmq自行安装 PS:commit之后,证明分布式事务没有成功/或者成功,需要消费者监听回滚/或者提交。rollback则消息会扔掉 阅读全文
posted @ 2024-03-26 17:10 朝阳1 阅读(122) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 43 下一页