码迷,mamicode.com
首页 > Windows程序 > 周排行
window在Anaconda中安装TensorFlow
window在Anaconda中安装TensorFlow 1、打开Anaconda Prompt,输入清华的仓库镜像,更新包更快: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ ...
分类:Windows程序   时间:2017-08-10 11:40:17    阅读次数:229
新手C#代码简洁性—函数篇
1.从Html代码抽取MVC HtmlHelper <td class = "noborder nopaddingv"> <div class = "aligncenter"> <a href="/Home/Index"> <img src="../../Resouces/Images/Agile/ ...
分类:Windows程序   时间:2017-08-10 13:20:51    阅读次数:203
GeometryWorks 3D Features for SolidWorks 2014 Win32_64 2CD
Intelligent.Light.FieldView.v14.Win32_64 2CD Altair HyperWorks Solvers v12.0.212 Update Only Win32_64 & Linux64 3CD Ansys ECAD Translators 2014 v8.0 W ...
分类:Windows程序   时间:2017-08-10 17:00:23    阅读次数:351
C# List 作为参数传递的值变化
一、示例演示 可以发现: 经过 Test1后,list 的元素数量由 0 变为 1 了, 经过 Test2后,list 的元素数量还是0。 二、解说 1.list类型是引用类型 2.引用本身是类似于一个“保存地址的值变量”所以从方法外部传入引用到方法里,那么其实引用本身是复制了一份副本来给方法里使用 ...
分类:Windows程序   时间:2017-08-11 13:31:07    阅读次数:205
Django 聚合与查询集API
本文从Django官方文档总结而来,将聚合的主要用法和查询集的常见方法做一归纳。 聚合 1. 聚合的产生来源于django数据库查询,通常我们使用django查询来完成增删查改,但是有时候需要更复杂的方法才能完成对数据的提取、筛选、更改,所以需要一组对象聚合来完成这种操作。模型举例如下: from ...
分类:Windows程序   时间:2017-08-11 17:24:08    阅读次数:1934
Windows Server 2016 简介和安装
简介确定WindowsServer2016的安装需求:在安装WindowsServer 2016之前,你应该考虑下面几个问题?应该安装哪一个版本的WindowsServer2016?不同版本的License价钱不同。你应该使用哪一个安装选项?Core选项和DesktopExperience选项对硬件需求不一样。这个服务器需要哪些角色和..
分类:Windows程序   时间:2017-08-12 22:32:14    阅读次数:373
win7 64bit安装theano
安装theano ,首先安装anconda,上个帖子有介绍,这里不再重复 1.在anconda prompt中conda install mingw libpython 2.conda install theono 3.修改环境变量, D:\ProgramFiles\Anaconda3; D:\Pr ...
分类:Windows程序   时间:2017-08-13 14:15:41    阅读次数:193
Window Server 2016 Server Core
InstallingServerCore当你安装WindowsServer2016时,在Windows安装向导的“Select TheOperatingSystemYouWantToInstall”页面,其他和DesktopExperience安装一样。注意:在WindowsServer2016中,你不能在安装操作系统后添加或删除GUI元素,此外,也没有最小服务器界面选项运行..
分类:Windows程序   时间:2017-08-13 15:14:48    阅读次数:393
WindowsService开发简单入门
一、简介 1) 二、demo建立 1) 2) 3) 4) 5) 6) 7) 8) 9) 10) 三、总结及注意事项 ...
分类:Windows程序   时间:2017-08-14 10:21:11    阅读次数:225
【转】用win7(64位)远程桌面连接linux(Ubuntu14.04)详细教程
转自:http://blog.csdn.net/qq754438390/article/details/50042511 亲测,确实是可以。非常感谢原博。 用win7(64位)远程桌面连接linux(Ubuntu14.04)详细教程 1.需要读者初步了解linux的基本操作,并可以联网,以下操作均是 ...
分类:Windows程序   时间:2017-08-14 21:13:00    阅读次数:277
Cygwin 快速镜像站点
Cygwin 快速镜像站点: http://mirrors.163.com/cygwin/ Cygwin 官网中国区地址: 1. http://mirrors.neusoft.edu.cn 2. http://mirrors.ustc.edu.cn ps:在 Cygwin 的中文站点(http://... ...
分类:Windows程序   时间:2017-08-14 21:34:01    阅读次数:240
WebApi升级到2.0以后的XmlDocumentationProvider
using System; using System.Globalization; using System.Linq; using System.Reflection; using System.Web.Http.Controllers; using System.Web.Http.Descrip... ...
分类:Windows程序   时间:2017-08-15 11:29:07    阅读次数:253
批量采集世纪佳缘会员图片及winhttp异步采集效率
原始出处:http://www.cnblogs.com/Charltsing/p/winhttpasyn.html 最近老有人问能不能绕过世纪佳缘的会员验证来采集图片,我测试了一下,发现是可以的。 同时也测试了winhttp异步采集的效率。(在vba里面使用winhttp开发速度快) 经过测试,在网 ...
分类:Windows程序   时间:2017-08-15 12:00:15    阅读次数:282
Codeforces 839D Winter is here - 暴力 - 容斥原理
Winter is here at the North and the White Walkers are close. John Snow has an army consisting of n soldiers. While the rest of the world is fighting f ...
分类:Windows程序   时间:2017-08-15 16:02:58    阅读次数:272
c# 中list的用法
1.添加元素 (1)List. Add(T item) 添加一个元素,E.g.: mList.Add("John"); (2)List. AddRange(IEnumerable<T>collection) 添加一组元素, E.g.: string[] temArr = { "Ha","Hunter ...
分类:Windows程序   时间:2017-08-15 17:14:48    阅读次数:238
Windows高速定时器,多媒体定时器winmm.dll库的使用
Windows高速定时器,多媒体定时器winmm.dll库的使用 ...
分类:Windows程序   时间:2017-08-15 21:00:39    阅读次数:281
【bzoj3676】[Apio2014]回文串 回文自动机
题目描述 考虑一个只包含小写拉丁字母的字符串s。我们定义s的一个子串t的“出现值”为t在s中的出现次数乘以t的长度。请你求出s的所有回文子串中的最大出现值。 输入 输入只有一行,为一个只包含小写字母(a -z)的非空字符串s。 输出 输出一个整数,为逝查回文子串的最大出现值。 样例输入 【样例输入l ...
分类:Windows程序   时间:2017-08-16 09:58:09    阅读次数:241
Windows 下使用 GCC
MinGw 是 Minimal GNU on Windows 的缩写,允许在 GNU/Linux 和 Windows 平台生成本地的 Windows 程序而不需要第三方运行时库。本文主要介绍 MinGw 的安装和使用。 (一)安装 1.下载 min-gw 安装程序,链接为:http://source ...
分类:Windows程序   时间:2017-08-16 11:40:37    阅读次数:296
c#:未将对象引用设置到对象的实例--可能出现的问题总结(转)
摘自:http://blog.csdn.net/sollion/article/details/5777475 一、网络上的一般说法 1、ViewState 对象为Null。2、DateSet 空。3、sql语句或Datebase的原因导致DataReader空。4、声明字符串变量时未赋空值就应用变 ...
分类:Windows程序   时间:2017-08-16 15:20:47    阅读次数:203
通过Powershell去除Windows10开机启动项
批量去除Windows10系统中某个应用(以OneDrive为例)的开机启动项脚本如下:regqueryHKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run|findstr"OneDrive" if($?-eq"True"){ regdeleteHKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run/vOneDrive/f }注:启动项路径还可..
分类:Windows程序   时间:2017-08-16 15:24:50    阅读次数:193
86459条   上一页 1 ... 23 24 25 26 27 28 29 ... 4323 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!