```python import datetime origin_date_str= "2019-07-26T08:20:54Z"
utc_date = datetime.datetime.strptime(origin_date_str, "%Y-%m-%dT%H:%M:%SZ")
local_d... ...
分类:
编程语言 时间:
2019-07-26 17:31:36
阅读次数:
937
Links is an open source web browser written in C programming Language. It is available for all major platforms viz., Linux, Windows, OS X and OS/2. Th ...
分类:
系统相关 时间:
2019-07-26 11:58:00
阅读次数:
125
简言: 这篇文章我要谈一谈SQL Server分布式跨服务器查询,多表Join,以及分布式事务的处理 SqlServer跨服务器查询的方式 以往自己才疏学浅,学习了一波之后,在这记录下来。 1. 使用sp_addlinkedserver和sp_addlinkedsrvlogin存储过程添加links ...
分类:
数据库 时间:
2019-07-23 17:32:39
阅读次数:
335
python中os.walk是一个简单易用的文件、目录遍历器,可以帮助我们高效的处理文件、目录方面的事情。 1.载入要使用os.walk,首先要载入该函数 可以使用以下两种方法 import os from os import walk 2.使用 os.walk的函数声明为: walk(top, t ...
分类:
编程语言 时间:
2019-07-23 17:09:06
阅读次数:
186
考虑到大家很多人并不是我这款网卡,在这里贴出一个链接,其包含下面列出的网卡的驱动。使用方法跟下面正文的方法一样,只需要把网卡那部分替换成你需要的网卡驱动。下载时注意是 Direct Download links 下的 Offline Bundle of version XXX。 net-e1000e ...
分类:
其他好文 时间:
2019-07-23 15:14:33
阅读次数:
777
https://docs.microsoft.com/zh-cn/?view=aspnetcore-2.1 https://docs.microsoft.com/zh-cn/dotnet/ https://www.tutorialsteacher.com/csharp/csharp-tutorial ...
分类:
其他好文 时间:
2019-07-23 13:28:37
阅读次数:
176
1.右击 phpStudy ->【打开配置文件】->【vhosts-conf】; 2.在里面加入如下代码,并保存: 3.右击 phpStudy ->【打开配置文件】->【httpd-conf】; 4.打开后 Ctrl+f 搜索vhosts 把该行前面的#号删掉,若已删除,请忽略该步骤。 5.请按照C ...
分类:
Web程序 时间:
2019-07-22 19:51:24
阅读次数:
152
(1)报错 >>> Ignoring required pre-requisite failures. Continuing... Preparing to launch Oracle Universal Installer from /tmp/OraInstall2015-01-21_06-07- ...
分类:
数据库 时间:
2019-07-22 16:37:19
阅读次数:
174
一.URI和URL URI的全称为Uniform Resoure Identifier,即统一资源标志符;URL的全称为“Universal Resoure Locator,即统一资源定位符。 例如:https://github.com/favicon.ico是GitHub的网站图标链接,它既是一个 ...
分类:
Web程序 时间:
2019-07-21 13:34:04
阅读次数:
192
有些情况下我们需要下载N个第三方包,或者下载的包依赖其它包,一个个下载非常浪费时间。这时我们可以通过如下两种方式的命令批量下载。 方式1 pip download -d /tmp/packagesdir 方式2 pip download -d /tmp/packagesdir -r requirem... ...
分类:
编程语言 时间:
2019-07-13 19:53:46
阅读次数:
219