10 2016 档案
摘要:打开项目的时候,提示缺少sdk 在C:\Program Files\dotnet\sdk找不到对应的版本 解决方法: https://github.com/aspnet/Tooling/blob/master/known-issues.md#missing-sdk 在这个链接中下载对应的sdk版本,
阅读全文
摘要:http://stackoverflow.com/questions/228532/difference-between-char-isdigit-and-char-isnumber-in-c-sharp Char.IsDigit() is a subset of Char.IsNumber().
阅读全文
摘要:版本控制 Git for Windows 要把git集成到cmd的环境中去,否则https://github.com/HearthSim/Hearthstone-Deck-Tracker/blob/master/bootstrap.bat无法运行 TortoiseGit posh-git https
阅读全文
摘要:Tables Create Tables https://docs.microsoft.com/en-us/sql/relational-databases/tables/create-tables-database-engine https://docs.microsoft.com/en-us/s
阅读全文
摘要:数据表说明 RowId作为主键, 用projectid,sensorid,filename三个字段作为记录是否重复的判断 (projectid和sensorid,可以定位到id,所以也可以用id和filename作为记录是否重复的判断) 1.筛选全部数据 显示有1854条数据 2.分组筛选,过滤掉重
阅读全文
摘要:2016-10-20 10:19:46,667 [12] ERROR ClientApp.FormDownload - ErrorSystem.InvalidOperationException: The property 'RowId' is part of the object's key in
阅读全文
摘要:https://github.com/gurnec/HashCheck
阅读全文
摘要:Microsoft (R) File Checksum Integrity Verifier V2.05 README file 1.What is File Checksum Integrity Verifier (FCIV)?2.Features.3.Syntax.4.Database stor
阅读全文
摘要:1.筛选重复的记录 http://stackoverflow.com/questions/8190541/deleting-duplicate-rows-from-sqlite-database select s.*,t.[count]from filelist as sinner join (se
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/ms229627.aspx Margin and Padding Precise placement of controls on your form is a high priority for many appli
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/t5b5kc41(v=vs.110).aspx Spacing and Aligning Controls Using Snaplines Snaplines give you an accurate and intu
阅读全文
摘要:http://stackoverflow.com/questions/1003772/setting-margin-properties-in-code The problem is that Margin is a property, and its type (Thickness) is a v
阅读全文
摘要:The <p> tag defines a paragraph. http://www.w3schools.com/tags/tag_p.asp The <td> tag defines a standard cell in an HTML table. An HTML table has two
阅读全文
摘要:1.将css文件上传到博客园 http://files.cnblogs.com/files/chucklu/SimpleMemory.css 2.设置里面调整 2.1博客皮肤设置为Custom 2.2页面定制css代码 @import url("http://files.cnblogs.com/fi
阅读全文
摘要:1.可以去模板列表里选择一个模板 http://www.cnblogs.com/Skins.aspx 目前使用的模板是http://www.cnblogs.com/SkinUser.aspx?SkinName=SimpleMemory 2.找到模板对应的css文件 http://www.cnblog
阅读全文
摘要:1.介绍 The official MongoDB .NET Driver provides asynchronous interaction with MongoDB. Powering the drivers is a Core library and a BSON library. 2.功能
阅读全文
摘要:https://en.wikipedia.org/wiki/BSON BSON /ˈbiːsɒn/ is a computer data interchange format used mainly as a data storage and network transfer format in t
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/bb549218(v=vs.110).aspx public static TAccumulate Aggregate<TSource, TAccumulate>(this IEnumerable<TSource> s
阅读全文
摘要:[root@localhost sasl2]# postconf -d | grep mail_versionmail_version = 2.10.1milter_macro_v = mail_version [root@localhost sasl2]# rpm -qa
阅读全文
摘要:[root@localhost Desktop]# ps auxUSER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMANDroot 1 0.0 0.3 192096 7456 ? Ss 03:03 0:03 /usr/lib/systemd/syst
阅读全文
摘要:在我们使用虚拟机管理器的图形界面来安装虚拟机的时候,自动创建虚拟网桥和虚拟网卡。另外,我们很少会在一个虚拟机中再安装一个虚拟机,所以,我们可以将宿主机上的网桥删除。方法如下: 移除之后,需要自己再添加网络 #nm-connection-editor http://unix.stackexchange
阅读全文
摘要:http://www.cnblogs.com/mchina/archive/2013/01/04/2842275.html 四、配置本地yum源 1、挂载系统安装光盘 # mount /dev/cdrom /mnt/cdrom/ 2、配置本地yum源 # cd /etc/yum.repos.d/ #
阅读全文
摘要:1. 在安装的时候,不要用默认的最小安装。选择GNOME Desktop 2.自动分区的时候,选择自己进行分区 2个分区,1个大小为1024M的swap分区,剩下的分配一个ext3的分区。设备类型都选择标准分区 3.网络默认是关闭的,点进去之后,自己打开。然后会自动获取ip 启动之后: http:/
阅读全文