摘要: 首先我们到下载记录中找到下载连接 右键复制链接:https://vscode.cdn.azure.cn/stable/da15b6fd3ef856477bf6f4fb29ba1b7af717770d/VSCodeUserSetup-x64-1.67.1.exe 然后把上面链接的域名部分替换为vsco 阅读全文
posted @ 2022-05-12 23:59 极客船长 阅读(357) 评论(0) 推荐(0)
摘要: async static Task TaskRun(string link) { string ip = string.Empty; string errmsg = ""; while (string.IsNullOrEmpty(ip)) { IpList = IpHelper.GetAvilabl 阅读全文
posted @ 2022-05-05 14:29 极客船长 阅读(332) 评论(0) 推荐(0)
摘要: private static bool PingIp(string strIP) { bool bRet = false; try { Ping pingSend = new Ping(); PingReply reply = pingSend.Send(strIP, 30); if (reply. 阅读全文
posted @ 2022-05-05 14:25 极客船长 阅读(339) 评论(0) 推荐(0)
摘要: //新增永久图片素材 public string add_matrial(string accesstoke,string picurl,out string errmsg) { string result = string.Empty; errmsg = ""; string addMatrial 阅读全文
posted @ 2022-05-05 14:06 极客船长 阅读(440) 评论(0) 推荐(0)
摘要: static bool ConsoleEventCallback(int eventType) { if (eventType == 2) { List<Process> pList = Process.GetProcessesByName("chrome").ToList(); try { pLi 阅读全文
posted @ 2022-05-05 13:52 极客船长 阅读(511) 评论(0) 推荐(0)
摘要: LaunchOptions options = new LaunchOptions { Headless = true, ExecutablePath = @".local-chromium\Win64-901912\chrome-win\chrome.exe", Args = new[] { st 阅读全文
posted @ 2022-05-05 13:47 极客船长 阅读(530) 评论(1) 推荐(0)
摘要: 普通匿名代理能隐藏客户机的真实IP,但会改变我们的请求信息,服务器端有可能会认为我们使用了代理。不过使用此种代理时,虽然被访问的网站不能知道你的ip地址,但仍然可以知道你在使用代理,当然某些能够侦测ip的网页仍然可以查到你的ip。 高匿名代理不改变客户机的请求,这样在服务器看来就像有个真正的客户浏览 阅读全文
posted @ 2022-04-26 16:59 极客船长 阅读(683) 评论(0) 推荐(0)
摘要: FileStream stream = new FileStream(FilePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); 使用FileShare.ReadWrite参数即可 阅读全文
posted @ 2022-04-09 22:22 极客船长 阅读(431) 评论(0) 推荐(0)
摘要: private static PhantomJSDriverService GetPhantomJSDriverService() { PhantomJSDriverService pds = PhantomJSDriverService.CreateDefaultService("D:/");// 阅读全文
posted @ 2022-04-08 16:59 极客船长 阅读(94) 评论(0) 推荐(0)
摘要: IF NOT EXISTS (SELECT 1 FROM [dbo].[geo_asso_type] WHERE [geo_asso_type_id] = 11) BEGIN INSERT INTO [dbo].[geo_asso_type] ([geo_asso_type_id] ,[bound_ 阅读全文
posted @ 2022-04-08 16:53 极客船长 阅读(222) 评论(0) 推荐(0)