摘要: 软件构架师是技术主管首先,软件构架师是技术主管,这意味着除了他要有技术上的技能外,还要有很好的领导才能。构架师的领导能力在团队中和项目质量控制中起着十分重要的作用。在团队中,构架师是项目的技术总管,他需要有丰富的知识背景,以便作出技术上的决定。相对于构架师来说,项目经理是来管理项目的资源,时间进度和花费的。使用电影制作来做类比的话,项目经理就是制片人(他要确定工作被完成了),而构架师是导演(他需要... 阅读全文
posted @ 2009-03-11 10:01 iDEAAM 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 在Linux上,可以轻松的使用forever或者pm2来部署nodejs应用。但是在windows下就麻烦了,pm2明确的说支持Linux & MacOS,forever在windows下貌似问题多多: 另外还有一个选择就是iisnode,这个有空研究一下,今天先说下比较简单的nssm。nssm会监 阅读全文
posted @ 2024-04-22 18:29 iDEAAM 阅读(1) 评论(0) 推荐(0) 编辑
摘要: q.bat for /f "skip=1 tokens=3" %%s in ('query user %USERNAME%') do (%windir%\System32\tscon.exe %%s /dest:console) 阅读全文
posted @ 2024-04-15 11:24 iDEAAM 阅读(1) 评论(0) 推荐(0) 编辑
摘要: java -jar extractpdfexcel-0.1.jar source.pdf result.xcl https://github.com/eadgyo/Extract-PDF-Excel 阅读全文
posted @ 2024-03-13 13:44 iDEAAM 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 同时快速编辑多行内容: 五种方式:1,鼠标选中多行,按下 Ctrl Shift L (Command Shift L) 即可同时编辑这些行; 2,鼠标选中文本,反复按 CTRL D (Command D) 即可继续向下同时选中下一个相同的文本进行同时编辑; 3,鼠标选中文本,按下 Alt F3 (W 阅读全文
posted @ 2024-02-18 12:10 iDEAAM 阅读(158) 评论(0) 推荐(0) 编辑
摘要: //同步方法调用异步方法 public static string Test(string cName) { AutoResetEvent autoResetEvent = new AutoResetEvent(false); ThreadPool.QueueUserWorkItem(async ( 阅读全文
posted @ 2024-01-09 16:52 iDEAAM 阅读(24) 评论(0) 推荐(0) 编辑
摘要: windows 2008 r2 是老系统了,但是项目需要安装https。安装时,遇到问题,需要以下步骤解决。1. 安装系统补丁 Windows6.1-KB3080079-x64.msu https://download.microsoft.com/download/F/4/1/F4154AD2-21 阅读全文
posted @ 2023-12-27 10:19 iDEAAM 阅读(86) 评论(0) 推荐(0) 编辑
摘要: downloadCSV(data, fileName) { // 将数据转换为CSV格式 const csv = this.convertToCSV(data); // 创建一个Blob对象 const blob = new Blob([csv], { type: 'text/csv' }); // 阅读全文
posted @ 2023-12-21 15:29 iDEAAM 阅读(50) 评论(0) 推荐(0) 编辑
摘要: //克隆 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 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 本文介绍如何使用 Visual Studio .NET 升级助手和增量更新方法将 ASP.NET Framework MVC 或 Web API 应用升级为 ASP.NET Core MVC。 使用 .NET 升级助手进行升级 如果.NET Framework项目在解决方案中具有所需的支持库,应尽可 阅读全文
posted @ 2023-10-08 09:22 iDEAAM 阅读(68) 评论(0) 推荐(0) 编辑