摘要:
CUDA 安装教程(手把手) 一、简单了解 CUDA 与 CUDNN 1、什么是 CUDA CUDA(ComputeUnified Device Architecture),是显卡厂商 NVIDIA 推出的运算平台。CUDA 是一种由 NVIDIA 推出的通用并行计算架构,该架构使 GPU 能够解决 阅读全文
2023年9月12日 #
2023年9月8日 #
摘要:
# `F:\song_csharp\MagicVilla_API-master\MagicVilla_VillaAPI\MappingConfig.cs` ```cs using AutoMapper; using MagicVilla_VillaAPI.Models; using MagicVi 阅读全文
摘要:
# C# 定时器 ```cs using System.Timers; internal class Program { private static DateTime startTime; private static void Main(string[] args) { // 定义一个变量来存储 阅读全文
2023年9月7日 #
摘要:
# `YOLO v8 on mac m1/classes.txt` ```txt person bicycle car motorbike airplane bus train truck boat traffic light fire hydrant stop sign parking meter 阅读全文
2023年9月5日 #
摘要:
# 0 ![img](./%E6%88%AA%E5%B1%8F2023-09-05%2022.31.06.png) # 1 ![img](./%E6%88%AA%E5%B1%8F2023-09-05%2022.43.14.png) # 2 ![img](./%E6%88%AA%E5%B1%8F202 阅读全文
2023年9月3日 #
摘要:
# `MagicVilla_VillaAPI/MagicVilla_VillaAPI.csproj` ```csproj net7.0 enable enable ..\packages runtime; build; native; contentfiles; analyzers; buildtr 阅读全文
摘要:
# sqlite触发器 我看到你在使用 Entity Framework Core 和 SQLite 数据库,想让别墅实体的 `UpdatedDate` 属性在更新时自动生成。这是一个使用 Code First 的问题,关于如何配置实体属性的值生成策略(Value Generation Strate 阅读全文
摘要:
# 基本命令 EF Core的迁移(Migration)是一种用于管理数据库架构变化的功能,它可以根据你的数据模型自动生成和执行数据库创建或者更新的SQL语句。EF Core提供了一些命令行工具,让你可以方便地操作迁移。以下是一些常用的迁移命令: - `dotnet ef migrations ad 阅读全文
2023年9月2日 #
摘要:
![image](https://img2023.cnblogs.com/blog/1222814/202309/1222814-20230902224059928-1057701596.png) 阅读全文
摘要:
```cs [HttpPost] [ProducesResponseType(StatusCodes.Status201Created)] [ProducesResponseType(StatusCodes.Status400BadRequest)] [ProducesResponseType(St 阅读全文
摘要:
# `SeerAGV_2/SeerMessage.cs` ```cs using System.Reflection; using System.Runtime.InteropServices; namespace SeerAGV { public struct SeerMessageHead { 阅读全文
2023年8月9日 #
摘要:
# idea的vim配置 ``` " " = Extensions " Plug 'tpope/vim-surround' Plug 'preservim/nerdtree' " " = Basic settings " set clipboard+=unnamed set ignorecase s 阅读全文
摘要:
# vsvimv配置 分割线之下的暂时还没有配置好 ``` set ai "自动缩进宽度 set sw=4 set ts=4 "关闭高亮显示 set nohlsearch set is set ignorecase set backspace=indent,eol,start set clipboa 阅读全文
2023年8月4日 #
摘要:
``` set ai "自动缩进宽度 set sw=4 set ts=4 "关闭高亮显示 set nohlsearch set is set ignorecase set backspace=indent,eol,start set clipboard=unnamed set number :nno 阅读全文
2023年8月1日 #
摘要:
# 树莓派设置开机启动 ## 前言 树莓派设置开机自启,看了好多教程都没有成功. 我是要设置树莓派开机运行一个 fastapi 或者 flask 的服务,要求该程序在后台运行 ## 创建一个 bash 脚本运行 python 程序 1. 很关键,一定要使用 bash 脚本去运行 python 程序, 阅读全文
2023年7月22日 #
摘要:
# babylonjs_uv贴图_瞬间秒懂 ![image](https://img2023.cnblogs.com/blog/1222814/202307/1222814-20230722155324919-447386828.png) ![image](https://img2023.cnblo 阅读全文
2023年7月16日 #
摘要:
# 设置uuid ```cs namespace EF6SQLiteTutorial.Models { public class People { public int Id { get; set; } // 设置uuid public Guid Uuid { get; set; } = Guid. 阅读全文
摘要:
# `EF6SQLiteTutorial/Program.cs` ```cs using EF6SQLiteTutorial.Data; using Microsoft.EntityFrameworkCore; var builder = WebApplication.CreateBuilder(a 阅读全文
摘要:
# Entity Framework Core的使用 如果您想要根据模型创建数据库表,可以使用Entity Framework Core的迁移功能。迁移允许您在模型更改时更新数据库架构,而无需手动创建或修改表。 要使用迁移,您需要执行以下步骤: 1. 安装 `Microsoft.EntityFram 阅读全文
2023年7月15日 #
摘要:
# `dotnet_learn/appsettings.json` ```json { "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }, "AllowedHosts" 阅读全文
摘要:
> 了解 Entity Framework (EF) Core 的定义,以及如何将其与 API 一起使用。 大多数重要的 Web 应用程序都需要对数据可靠地运行操作,如创建、读取、更新和删除 (CRUD)。 它们还需要在应用程序重启之间保留这些操作所做的任何更改。 尽管有各种选项可用于在 .NET 阅读全文
2023年7月10日 #
摘要:
# async ensuer_future 和 add_done_callback 的用法 ```py import os from loguru import logger logger.add(os.path.join(os.path.dirname(__file__) , os.path.ba 阅读全文
摘要:
# bat脚本 ```bat @echo off setlocal enabledelayedexpansion rem 获取当前目录下的.zip文件 for %%f in (*.zip) do ( set "zipfile=%%f" ) rem 获取.zip文件的文件名(不带扩展名) for %% 阅读全文
2023年7月9日 #
摘要:
# `cnblog_upload/cnblog_upload.command` ```sh #! /bin/bash # source /Users/song/Code/script_python/pycnblog-master/venv/bin/activate echo -n '请拖入一个md文 阅读全文
2023年7月8日 #
摘要:
# `6.python高级知识-闭包装饰器/demo02_闭包.py` ```py # -*- coding:utf-8 -*- # 第一种方法 # 每次都更具汇率和钱都写一遍 # 这种方法是太烦了 print("第一种方法") rate_usa = 0.7 money = 100 # print( 阅读全文
摘要:
# `5.python高级一/demo03_python环境变量路径.py` ```py from loguru import logger import sys sys.path.append('/Users/toby/Downloads/PythonAdvanced/code/pythonAdv 阅读全文
摘要:
# sqlalchemy连接多个数据库_异步形式 ```py from fastapi import FastAPI from sqlalchemy import create_engine, Column, Integer, String from sqlalchemy.ext.asyncio i 阅读全文
2023年7月2日 #
摘要:
# `wechat_python/run.py` ```py from sqlalchemy import Column, Integer, String, create_engine from sqlalchemy.orm import sessionmaker from sqlalchemy.e 阅读全文
摘要:
# `F:\wechat_fiddler\1.py` ```py #!/usr/bin/python # -*- coding: UTF-8 -*- import requests url = 'https://mp.weixin.qq.com/mp/profile_ext?action=getms 阅读全文
2023年6月26日 #
摘要:
# `code2md/run_img2markdown.command` ```sh #! /bin/bash source /Users/song/Code/script_python/code2md/venv/bin/activate # echo -n '请任意拖入文件夹中的一个文件:' # 阅读全文
摘要:
# `snippets/markdown.json` ```json { // Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and 阅读全文
2023年6月24日 #
摘要:
# 组织Python代码技巧 [英文版链接](https://guicommits.com/organize-python-code-like-a-pro/) ## 一.构建Python项目 首先关注目录结构、文件命名和模块组织。 我 建议把所有的模块都放在src目录下,所有测试都和它并排。 pyt 阅读全文
2023年6月23日 #
摘要:
# `code2md\code2md_v1.bat` ```bat @echo off :start set filePath= set /p filePath=Please drag a file in the project(or project dir): D:\Python38\python 阅读全文
2023年6月22日 #
摘要:
# `code2md/run_img2markdown.command` ```sh #! /bin/bash source /Users/song/Code/script_python/code2md/venv/bin/activate # echo -n '请任意拖入文件夹中的一个文件:' # 阅读全文
摘要:
# `code2md/run_img2markdown.command` ```sh #! /bin/bash source /Users/song/Code/script_python/code2md/venv/bin/activate # echo -n '请任意拖入文件夹中的一个文件:' # 阅读全文
2023年6月15日 #
摘要:
# k均值聚类_异常检测 1. 先来张图,快速理解 ![img](https://img2023.cnblogs.com/blog/1222814/202306/1222814-20230615232856641-500630803.png) 2. 正常数据应该分布在两个簇中 3. 异常数据,距离两 阅读全文
摘要:
# opencv计算图片中出现面积最大最经常出现的颜色 1. opencv 2. K均值聚类算法 3. 颜色相似性,欧几里得距离越小,颜色越相似 ```py import math import cv2 import numpy as np from sklearn.cluster import K 阅读全文
2023年6月4日 #
摘要:
# `/Users/song/Downloads/WebGPU视频教程/2. 3D几何变换数学基础/9.片元的屏幕坐标/1.片元坐标/index.html` ```html Threejs中文网:http://www.webgl3d.cn/ ``` # `/Users/song/Downloads/ 阅读全文
摘要:
# `/Users/song/Downloads/WebGPU视频教程/1.WebGPU快速入门/9.三角形拼接矩形/2.三角形拼接矩形.html` ```html Threejs中文网:http://www.webgl3d.cn/ ``` # `/Users/song/Downloads/WebG 阅读全文
摘要:
# webgpu的中的顶点插值 1. 正常情况下,顶点着色器都是返回一个四维向量,如果要画一个三角形,呢么就是pos就是我们传入的三个顶点坐标,返回值就是将这些坐标转换成四维向量返回 ```rs // 顶点着色器代码 @vertex fn main(@location(0) pos: vec3) - 阅读全文