上一页 1 2 3 4 5 6 ··· 57 下一页
摘要: //克隆 git clone http://xx.xx.com/aa.git //来查看当前Git仓库的状态 git status //新建本地分支 git branch demo2 //切换到新创建的本地分支 git checkout demo2 //提交到远程 git push origin d 阅读全文
posted @ 2023-12-01 10:15 iDEAAM 阅读(1) 评论(0) 推荐(0) 编辑
摘要: C#下载远程文件并打包 using System; using System.IO; using System.IO.Compression; using System.Net; class Program { static void Main() { string[] files = { "htt 阅读全文
posted @ 2023-11-21 13:48 iDEAAM 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 本文介绍如何使用 Visual Studio .NET 升级助手和增量更新方法将 ASP.NET Framework MVC 或 Web API 应用升级为 ASP.NET Core MVC。 使用 .NET 升级助手进行升级 如果.NET Framework项目在解决方案中具有所需的支持库,应尽可 阅读全文
posted @ 2023-10-08 09:21 iDEAAM 阅读(98) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 把现有图片顶部50px刷成白色,去水印 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnBrushWhite_Click(o 阅读全文
posted @ 2023-04-12 16:15 iDEAAM 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1. nuget 安装插件 2. 上代码 // Define method to convert PDF to PNG public void ConvertPdfToPng(string pdfFilePath, string pngFileFolder, ImageFormat format) 阅读全文
posted @ 2023-04-07 16:21 iDEAAM 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: SwaggerConfig.cs public class SwaggerConfig { public static void Register(HttpConfiguration config) { var thisAssembly = typeof(SwaggerConfig).Assembl 阅读全文
posted @ 2023-03-13 16:01 iDEAAM 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 安装oracle odbc驱动1. 安装 Oracle-Client-for-Microsoft-Tools.exe2. 下载 instantclient-basic-windows.x64-11.2.0.4.0.zip3. 下载 instantclient-odbc-windows.x64-11. 阅读全文
posted @ 2023-03-09 11:24 iDEAAM 阅读(727) 评论(0) 推荐(0) 编辑
摘要: ocelot asp.net core 微服务 gateway介绍https://ocelot.readthedocs.io/en/latest/introduction/gettingstarted.html 1. 新建asp.net core webapi空项目 AProject, nuget引 阅读全文
posted @ 2022-12-14 17:02 iDEAAM 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 从目标库导出数据 C:\Program Files\MySQL\MySQL Server 8.0\bin>mysqldump -uroot -p testdb_db > c:/testdb.dump 导入目标库 C:\Program Files\MySQL\MySQL Server 5.7\bin> 阅读全文
posted @ 2022-12-02 20:35 iDEAAM 阅读(88) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver.chrome.options import Options import requests; from bs4 import BeautifulSoup # instance of Opti 阅读全文
posted @ 2022-11-07 17:34 iDEAAM 阅读(337) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 57 下一页