相关文章
跑模型——fastapi使用笔记
前言
被要求提供一个接口,我顿时就懵了,咋提供来着,之前学的又忘了,悔不当初,吓的我赶紧记录一下
FastAPI
pip install fastapi uvicorn
服务器端
import uvicorn
from fastapi import FastAPIappFastAPI()
app.p…
建站知识
2025/1/22 23:47:35
PostgreSQL添加PostGIS扩展和存储坐标
一、安装
1、PostGIS安装:Getting Started | PostGIS 2、安装好后,执行下面sql
CREATE EXTENSION postgis;SELECT PostGIS_Full_Version();
二、使用 PostGIS文档:PostGIS 简介 — Introduction to PostGIS
建表:
CREATE TAB…
建站知识
2025/1/28 0:48:50
Linux网络编程之---多线程实现并发服务器
下面我们来使用tcp集合多线程实现并发服务器
一.服务端
#include <stdio.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>typedef struct sockinfo
{char ip[16];unsigne…
建站知识
2025/1/16 0:04:46
前端技巧第三期CSS公用代码常用
1. 设置宽高比例
通过 aspect-ratio 属性,可以根据指定的宽度自动调整高度
.box {width: 90%;aspect-ratio: 16/9;
}2.逻辑属性
使用 margin-block 和 margin-inline 替代传统的 margin-top、margin-right 等,更加简洁直观
.box {margin-block: 5px …
建站知识
2025/1/20 11:09:48
【GESP】C++一级练习 luogu-P1035, [NOIP2002 普及组] 级数求和
GESP一级练习,循环和基本运算练习,难度★☆☆☆☆。
题目题解详见:https://www.coderli.com/gesp-1-luogu-p1035/
https://www.coderli.com/gesp-1-luogu-p1035/https://www.coderli.com/gesp-1-luogu-p1035/
建站知识
2025/1/23 11:47:11
CentOS虚拟机开机出现问题
CentOS虚拟机断电或强制关机,再开机出现问题 错误原因: failed to mount /sysroot.(无法挂载/ sysroot。) Dependency failed for Initrd root File System.(Initrd根文件系统的依赖关系失败。) Dependency…
建站知识
2025/1/25 10:15:36
RK3568 Android14 打开蓝牙时默认同意
1、最近给一个项目做了一款基础功能的自动测试,在打开蓝牙时,有一个是否同意的提示框要去掉,即默认同意打开蓝牙。
2、路径:
packages/apps/Settings/src/com/android/settings/bluetooth/RequestPermissionActivity.java// Sho…
建站知识
2025/1/16 22:20:54