摘要: ChatGPT中文网是一个面向中国用户的聊天机器人网站,旨在为国内用户提供一个自然的环境、有趣、实用的聊天体验。它使用最新的自然语言处理技术来帮助用户更好地理解他们的聊天对话,还可以帮助用户解决日常生活中的问题,提供有趣的谈话内容以及实时信息服务。ChatGPT-AI智能小聊 小程序名称:AI智能小 阅读全文
posted @ 2023-03-07 14:11 极客船长 阅读(5324) 评论(0) 推荐(0) 编辑
摘要: Parallel.ForEach(Enumerable.Range(1, 10), i => { ExecuteFFmpegCommand("-i " + i + ".mp4 -vf \"select = eq(n\\, 0)\" -vframes 1 first_frame" + i + ".jp 阅读全文
posted @ 2024-03-22 10:07 极客船长 阅读(1) 评论(0) 推荐(0) 编辑
摘要: public class Crc32 { public static uint ComputeChecksum(byte[] bytes) { uint[] table = new uint[256]; // Initialize CRC table. for (uint i = 0; i < 25 阅读全文
posted @ 2024-03-07 18:25 极客船长 阅读(2) 评论(0) 推荐(0) 编辑
摘要: // 创建一个新的 XMLHttpRequest 对象 var xhr = new XMLHttpRequest(); // 监听 XMLHttpRequest 对象的加载完成事件 xhr.addEventListener('load', function() { // 如果请求成功完成 if (x 阅读全文
posted @ 2024-03-05 11:04 极客船长 阅读(84) 评论(0) 推荐(0) 编辑
摘要: public static void Mapper<T>(T tSource, T tDestination) where T : class { //获得所有property的信息 PropertyInfo[] properties = tSource.GetType().GetPropertie 阅读全文
posted @ 2023-12-14 10:28 极客船长 阅读(4) 评论(0) 推荐(0) 编辑
摘要: function compressImg(file, quality) { var qualitys = 0.52 if (parseInt((file.size / 1024).toFixed(2)) < 1024) { qualitys = 0.85 } if (5 * 1024 < parse 阅读全文
posted @ 2023-12-08 15:00 极客船长 阅读(30) 评论(0) 推荐(0) 编辑
摘要: --为字段添加注释 --Eg. execute sp_addextendedproperty 'MS_Description','字段备注信息','user','dbo','table','字段所属的表名','column','添加注释的字段名'; execute sp_addextendedpro 阅读全文
posted @ 2023-10-27 17:09 极客船长 阅读(282) 评论(0) 推荐(0) 编辑
摘要: execute sp_addextendedproperty 'MS_Description','零售客户类型对应的限时特惠价格','user','dbo','table','Fac_BuyerTypeOfferPrice',null,null; 阅读全文
posted @ 2023-10-27 11:36 极客船长 阅读(3) 评论(0) 推荐(0) 编辑
摘要: SELECT DATEADD(month, DATEDIFF(month, 0, GETDATE()), 0) AS StartOfMonth SELECT DATEFROMPARTS(YEAR(GETDATE()),MONTH(GETDATE()),1) SELECT DATEADD(DAY,1, 阅读全文
posted @ 2023-10-12 18:04 极客船长 阅读(388) 评论(0) 推荐(0) 编辑
摘要: while (select count(1) from [Demo_Top])>0 begin delete top (202) from [Demo_Top] end 阅读全文
posted @ 2023-09-28 14:40 极客船长 阅读(7) 评论(0) 推荐(0) 编辑
摘要: dynamic address = new JObject(); address.Province = "beijing"; address.City = "beijing"; address.County = "zhongguo"; address.Villages = new JArray("a 阅读全文
posted @ 2023-09-27 16:35 极客船长 阅读(7) 评论(0) 推荐(0) 编辑