本文分类:news发布日期:2024/11/3 20:10:04
相关文章
苍穹外卖--客户催单
需求分析
用户在小程序中点击催单按钮后,需要第一时间通知外卖商家
设计思路:*
通过WebSocket实现管理端页面和服务端保持长连接状态当用户点击催单按钮后,调用WebSocket的相关API实现服务端向客户端推送消息客户端浏览器解析服务端推送的…
建站知识
2024/10/5 10:45:44
数据结构 | 堆【图解】
数据结构 | 堆【图解】 文章目录 数据结构 | 堆【图解】堆的概念及结构堆的实现堆的初始化堆的插入【重点】堆的删除【重点】取堆顶的数据堆的数据个数堆的判空堆的销毁 全部代码 堆的概念及结构
堆(heap): 一种有特殊用途的数据结构——用来…
建站知识
2024/10/5 10:45:45
Kaggle-水果图像分类银奖项目 pytorch Densenet GoogleNet ResNet101 VGG19
一些原理文章
卷积神经网络基础(卷积,池化,激活,全连接) - 知乎
PyTorch 入门与实践(六)卷积神经网络进阶(DenseNet)_pytorch conv1x1_Skr.B的博客-CSDN博客GoogLeNet网…
建站知识
2024/10/5 10:45:35
UNITY 超快速 在UNITY画网格GRID
首先,下载一个shapes插件!
为shapes插件的立刻绘画模式创建一个脚本
using Shapes;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Rendering;namespace XXX
{[ExecuteAlways]public class Draw…
建站知识
2024/10/5 11:05:21
AOP如何实现记录操作日志
动态记录操作日志有利于项目的维护和故障的排查,可以通过AOP来实现。 依赖
<!--AOP起步依赖-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-aop</artifactId>
</dependency…
建站知识
2024/10/20 4:59:27
2023.11.23使用flask实现在指定路径生成文件夹操作
2023.11.23使用flask实现在指定路径生成文件夹操作
程序比较简单,实现功能: 1、前端输入文件夹 2、后端在指定路径生成文件夹 3、前端反馈文件夹生成状态 main.py
from flask import Flask, request, render_template
import osapp Flask(__name__)a…
建站知识
2024/10/9 13:41:26
ERROR: Could not find a version that satisfies the requirement torch
在windows 上安装pip install torch torchvision torchaudio 报错: ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
ERROR: No matching distribution found for torch 解决办法:
将python版本降到3.11…
建站知识
2024/11/1 5:17:21
Springboot2+WebSocket
一、引入依赖
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
二、添加配置
新增配置文件
config/WebSocketConfig.java
import org.springframewo…
建站知识
2024/10/10 0:21:00