07 2016 档案

摘要:我是WIN10+VS2015 之前用的是VS2012 后来卸载了VS2012 就出现了这个错误,请问该如何解决 在VS的图标上按右键用管理员(Administrator)运行 阅读全文
posted @ 2016-07-31 23:23 shiningrise 阅读(683) 评论(0) 推荐(0) 编辑
摘要:cd /tmp wget linuxdot.net/down/jexus-5.8.1-x64.tar.gz tar -zxvf jexus-5.8.1-x64.tar.gz mv jexus /usr rm -rf /tmp/jexus* 阅读全文
posted @ 2016-07-31 16:39 shiningrise 阅读(210) 评论(0) 推荐(0) 编辑
摘要:运行后配置文件所在位置 coreos配置文件位置https://coreos.com/os/docs/latest/cloud-config.html /var/lib/coreos-install/user_data 官方文档 https://coreos.com/os/docs/latest/c 阅读全文
posted @ 2016-07-31 08:57 shiningrise 阅读(1013) 评论(0) 推荐(0) 编辑
摘要:这其实是编码问题 和字体什么的没有关系,在VSCode中默认是用UTF-8编码方式打开文件,只要你的文件是这个编码就能正常打开如果不是,不进行设置VSCode是不会自动切换编码方式打开 手动可以Reopen with encoding/Save with encoding 选择打开也可以修改设置使其 阅读全文
posted @ 2016-07-30 09:57 shiningrise 阅读(842) 评论(0) 推荐(0) 编辑
摘要:shipyard中文版v3.0.2更新 https://console.dockerclub.net/ https://dockerclub.net/docs/intro/getting_started https://github.com/dockerclubgroup/shipyard 默认用户 阅读全文
posted @ 2016-07-29 05:58 shiningrise 阅读(562) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/cuisongliu/article/details/49178461 Docker启动如果随服务一起启动? docker run -ti -d --restart=always -p 8080:8080 tomcat 1 1 docker怎样才可以当运行完 阅读全文
posted @ 2016-07-29 05:50 shiningrise 阅读(571) 评论(0) 推荐(0) 编辑
摘要:public static byte[] DESEncrypt(byte[] data, byte[] sKey) { return DESEncrypt(data, sKey, sKey); } /// /// CBC-DES加密 /// public s... 阅读全文
posted @ 2016-07-28 23:31 shiningrise 阅读(620) 评论(0) 推荐(0) 编辑
摘要:Docker系列之(三):Docker微容器Alpine Linux 阅读全文
posted @ 2016-07-28 14:09 shiningrise 阅读(344) 评论(0) 推荐(0) 编辑
摘要:http://linuxdot.net/bbsfile-3988 1. 安装 docker: // docker 1.7 新版 安装非常容易,理论上说,在主流的任意linux发行版上都可以直接安装. wget -qO- https://get.docker.com/ | sh 2. 重启你的宿主机, 阅读全文
posted @ 2016-07-28 12:42 shiningrise 阅读(1654) 评论(1) 推荐(1) 编辑
摘要:Docker学习笔记 — 配置国内免费registry mirror Docker学习笔记 — 配置国内免费registry mirror 阅读全文
posted @ 2016-07-28 11:57 shiningrise 阅读(573) 评论(0) 推荐(0) 编辑
摘要:https://www.daocloud.io/ 阅读全文
posted @ 2016-07-28 11:35 shiningrise 阅读(738) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/freewebsys/article/details/51136562 docker(2):安装docker管理工具rancher rancher是一个Docker的管理系统。http://rancher.com/ 相同类似的系统还有,http://ship 阅读全文
posted @ 2016-07-28 11:21 shiningrise 阅读(472) 评论(0) 推荐(0) 编辑
摘要:static class Program { private static Mutex onlyOne; [STAThread] static void Main() { onlyOne = new Mutex(true, Process.GetCurrentProcess().ProcessNam 阅读全文
posted @ 2016-07-27 22:52 shiningrise 阅读(281) 评论(0) 推荐(0) 编辑
摘要:Random r = new Random(); byte[] bytes = new byte[6]; var t = new StringBuilder(); for (int j = 0; j < 16; j++) { r.NextByt... 阅读全文
posted @ 2016-07-27 12:31 shiningrise 阅读(872) 评论(0) 推荐(0) 编辑
摘要:有关调用实时(JIT)调试而不是此对话框的详细信息,请参见此消息的结尾。 ************** 异常文本 **************System.BadImageFormatException: 试图加载格式不正确的程序。 (异常来自 HRESULT:0x8007000B) 在 mwrf_ 阅读全文
posted @ 2016-07-25 22:02 shiningrise 阅读(643) 评论(0) 推荐(0) 编辑
摘要:下面给出解决办法: 1.用vi编辑器修改/etc/default/local文件 2.把原来的中文编码替换成下面的 3.注销系统,重新登录就OK了 阅读全文
posted @ 2016-07-25 09:03 shiningrise 阅读(282) 评论(0) 推荐(0) 编辑
摘要:1. 首先在服务器上安装ssh的服务器端。 $ sudo aptitude install openssh-server 2. 启动ssh-server。 $ sudo /etc/init.d/ssh restart 3. 确认ssh-server已经正常工作。 $ netstat -tlp tcp 阅读全文
posted @ 2016-07-25 08:40 shiningrise 阅读(1640) 评论(0) 推荐(0) 编辑
摘要:修改/etc/network/interfaces文件sudo gedit /etc/network/interfaces贴出我的eth0设置,自己看情况修改:# The primary network interfaceauto eth0#iface eth0 inet dhcpiface eth 阅读全文
posted @ 2016-07-25 08:11 shiningrise 阅读(179) 评论(0) 推荐(0) 编辑
摘要:http://www.daocloud.io/ 阅读全文
posted @ 2016-07-25 06:36 shiningrise 阅读(217) 评论(0) 推荐(0) 编辑
摘要:一直使用osharp,osharp3使用的是combguid,代码如下 但在事务应用场景,比如,我一次性导入10000个学生,我导入时时按学号排序的,,导入后,,在数据库中是乱序的,原因是因为用事务提交,他的提交时间是相同的,所以生成的combguid是乱序的 这个让我无法接受,网上找了一通,找到下 阅读全文
posted @ 2016-07-24 21:59 shiningrise 阅读(714) 评论(0) 推荐(0) 编辑
摘要:Productivity Power Tools 是微软官方推出的 Visual Studio 扩展 免费的精品: Productivity Power Tools 动画演示 阅读全文
posted @ 2016-07-24 21:28 shiningrise 阅读(155) 评论(0) 推荐(0) 编辑
摘要:原文:http://www.asp.net/web-api/overview/error-handling/exception-handling This article describes error and exception handling in ASP.NET Web API. HttpR 阅读全文
posted @ 2016-07-22 17:49 shiningrise 阅读(470) 评论(0) 推荐(0) 编辑
摘要:public class validationActionFilter:ActionFilterAttribute { public override void OnActionExecuting(System.Web.Http.Controllers.HttpActionContext actionContext) { var m... 阅读全文
posted @ 2016-07-22 16:40 shiningrise 阅读(1031) 评论(0) 推荐(0) 编辑
摘要:https://blog.oneunicorn.com/2012/02/27/code-first-migrations-making-__migrationhistory-not-a-system-table/ Code First Migrations uses a table called _ 阅读全文
posted @ 2016-07-20 23:49 shiningrise 阅读(284) 评论(0) 推荐(0) 编辑
摘要:C# 6.0可能的新特性 1、主构造函数(Primary Constructors) 主构造函数给类中的变量赋值 Before public class Point { private int x, y; public Point(int x, int y) this.x = x; this.y = 阅读全文
posted @ 2016-07-20 23:34 shiningrise 阅读(205) 评论(0) 推荐(0) 编辑
摘要:public static Guid GenerateGuid() { byte[] guidArray = Guid.NewGuid().ToByteArray(); var baseDate = new DateTime(1900, 1, 1); DateTime now = DateTime.Now; var days = new TimeSpan(now... 阅读全文
posted @ 2016-07-20 22:57 shiningrise 阅读(2959) 评论(1) 推荐(0) 编辑
摘要:启用外部程序: C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe 命令行参数 /rootsuffix Exp 阅读全文
posted @ 2016-07-19 08:57 shiningrise 阅读(298) 评论(0) 推荐(0) 编辑
摘要:http://personball.com/powershell/2016/07/15/powershell-tips 阅读全文
posted @ 2016-07-19 07:22 shiningrise 阅读(470) 评论(0) 推荐(0) 编辑
摘要:;Asynchronous Processing=true 不是异步查询吗,怎么是缓存 <!--<add name="default" providerName="System.Data.SqlClient" connectionString="Data Source=(localdb)\MSSQL 阅读全文
posted @ 2016-07-18 21:59 shiningrise 阅读(637) 评论(0) 推荐(0) 编辑
摘要:原文:http://blog.csdn.net/xxj_jing/article/details/49508557 版权声明:本文为博主原创文章,未经博主允许不得转载。 版权声明:本文为博主原创文章,未经博主允许不得转载。 .net mvc web api 返回 json 内容时,好多属性为null 阅读全文
posted @ 2016-07-18 18:15 shiningrise 阅读(2453) 评论(0) 推荐(0) 编辑
摘要:http://blog.itpub.net/12639172/viewspace-490786/ 阅读全文
posted @ 2016-07-17 15:52 shiningrise 阅读(243) 评论(0) 推荐(0) 编辑
摘要:1. 在.aspx中添加异步标记 2. 在.aspx.cs或者.ascx.cs(用户控件)中添加异步方法 3. 在.aspx.cs或者.ascx.cs的Page_Load或者OnLoad注册异步方法 搞定! 【参考资料】 How to create Asynchronous device Page 阅读全文
posted @ 2016-07-17 15:00 shiningrise 阅读(691) 评论(0) 推荐(0) 编辑
摘要://当webapi作为一owin一部分运行时,下面这两句不能有,不然除了webapi,其它程序验证不了 //webapiConfig.SuppressDefaultHostAuthentication(); //webapiConfig.Filters.Add(new HostAuthenticat 阅读全文
posted @ 2016-07-15 16:29 shiningrise 阅读(2190) 评论(0) 推荐(0) 编辑
摘要:C#异常类相关总结 C#异常类相关总结 C#异常类一、基类ExceptionC#异常类二、常见的异常类1、SystemException类:该类是System命名空间中所有其他异常类的基类。(建议:公共语言运行时引发的异常通常用此类)2、ApplicationException类:该类表示应用程序发 阅读全文
posted @ 2016-07-14 18:13 shiningrise 阅读(355) 评论(0) 推荐(0) 编辑
摘要:前言: 你先得知道HelpPageConfig文件,不知道说明你现在不需要这个,所以下文就不用看了,等知道了再看也不急.当然如果你很知道这个,下文也不用看了,因为你会了. 方法一: 方法二: 自定义一个支持从目录加载xml文档的XmlDocumentationProvider 使用方法: 使用方法: 阅读全文
posted @ 2016-07-14 17:24 shiningrise 阅读(876) 评论(0) 推荐(0) 编辑
摘要:Snippet Designer is a Visual Studio plug in which allows you to create and search for snippets inside the IDE https://visualstudiogallery.msdn.microso 阅读全文
posted @ 2016-07-14 15:43 shiningrise 阅读(253) 评论(0) 推荐(0) 编辑
摘要:(推荐使用正版.正版也不贵) 【工具】CodeSmith Generator 7.0.2激活步骤 学过三层的人应该认识CodeSmith Generator吧,今天我就跟大家一起探讨下CodeSmith Generator 7.0.2的激活,这最新版本破解的难度也是超越以往......具体看这篇日记 阅读全文
posted @ 2016-07-14 02:33 shiningrise 阅读(574) 评论(0) 推荐(0) 编辑
摘要:InnoSetup汉化语言包.zip 阅读全文
posted @ 2016-07-12 08:14 shiningrise 阅读(9562) 评论(0) 推荐(1) 编辑
摘要:var result = fruit.GroupBy(i => i.date) .Select(i => new { date = i.Key, no_of_apple = i.Where(j => j.fruit_code == "apple").Sum(k => k.count), ... 阅读全文
posted @ 2016-07-10 08:09 shiningrise 阅读(1859) 评论(0) 推荐(0) 编辑
摘要:Description DisplayName Display的关系 ? 阅读全文
posted @ 2016-07-09 01:59 shiningrise 阅读(558) 评论(0) 推荐(0) 编辑
摘要:http://hadb.me/2015/03/23/authenticationmanager-signout-not-working/ 这文章不对, 我发现原因是不能有Response.Redirect("~/");跳转了后,,就退不出登录了 最近遇到一个很诡异的问题,在最近的一个新项目中,发现在 阅读全文
posted @ 2016-07-08 14:49 shiningrise 阅读(979) 评论(1) 推荐(0) 编辑
摘要:http://open.soft.360.cn/ 阅读全文
posted @ 2016-07-07 16:09 shiningrise 阅读(179) 评论(0) 推荐(0) 编辑
摘要:http://www.jrsoftware.org/isinfo.php 阅读全文
posted @ 2016-07-07 15:30 shiningrise 阅读(170) 评论(0) 推荐(0) 编辑
摘要:net stop spooler del c:\windows\system32\spool\printers\*.* /Q /F net start spooler 阅读全文
posted @ 2016-07-06 20:27 shiningrise 阅读(265) 评论(0) 推荐(0) 编辑
摘要:1.创建 API 帮助页 2.将帮助页添加到现有的项目 3.添加Api文档 4.Under the Hood 当你创建一个网络 API 时,它很有用来创建一个帮助页,以便其他开发人员将知道如何调用您的 API。您可以创建的所有文档手动,但它是自动生成尽可能多地更好。 为了简化这一任务,ASP.NET Web API 提供一个库自动生成帮助页在运行时。 回到顶部 1.创建 API 帮助页 安装A... 阅读全文
posted @ 2016-07-06 17:17 shiningrise 阅读(2401) 评论(1) 推荐(1) 编辑
摘要:http://vsrefactoringessentials.com/Features/Refactorings-CSharp 阅读全文
posted @ 2016-07-06 07:25 shiningrise 阅读(144) 评论(0) 推荐(0) 编辑
摘要:osharp3 原来的数据日志,有配置文件中有这总开关,DataLoggingEnabled,原来的程序是,这个总开关关了,就无法记录数据日志了,,如果开了,,他不管记录不记录数据日志,系统都会存数据改动日志到DataLogCache中 我在 DbContextBase中注入了一个操作记录员类 pu 阅读全文
posted @ 2016-07-05 19:45 shiningrise 阅读(519) 评论(0) 推荐(0) 编辑
摘要:osharp3 整合 dbcontextscope 后,,dbcontextscope 对dbcontext管理的很好,做到,用到时创建,不用时销毁,下面看一个 trace 但dbcontext默认是由dbcontextscope创建的,所以,我们的ioc就不能对dbcontext建行注入 不过它留 阅读全文
posted @ 2016-07-05 19:22 shiningrise 阅读(605) 评论(0) 推荐(0) 编辑
摘要:[Obsolete("此API即将移除")] 阅读全文
posted @ 2016-07-05 15:32 shiningrise 阅读(203) 评论(0) 推荐(0) 编辑
摘要:Why is applicationhost.config still being added to source control even thought it's in gitignore git rm .vs/config/applicationhost.config 阅读全文
posted @ 2016-07-05 13:30 shiningrise 阅读(157) 评论(0) 推荐(0) 编辑
摘要:using CanDoo.Contracts; using CanDoo.Core.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CanDoo.Data; using System.Linq... 阅读全文
posted @ 2016-07-02 17:05 shiningrise 阅读(261) 评论(0) 推荐(0) 编辑
摘要:https://visualstudiogallery.msdn.microsoft.com/9d6ef0ce-2bef-4a82-9a84-7718caa5bb45 Nest files in Solution Explorer. 建立文件关联 阅读全文
posted @ 2016-07-01 21:32 shiningrise 阅读(278) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/zhengwl/p/5433181.html Aop含义:aspect-oriented programming 实现工具介绍 Autofac是一个比较流行的Ioc组件,DynamicProxy2是 the Castle Project core的一部分,提供了一个拦截框架 组件安装和实现步骤 1.先打开vs新建一个web项目,打开nug... 阅读全文
posted @ 2016-07-01 09:11 shiningrise 阅读(548) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/ShaYeBlog/p/3554253.html 1:安装后,Resharper会用他自己的英文智能提示,替换掉 vs2010的智能提示,所以我们要换回到vs2010的智能提示 2:快捷键。是使用vs2010的快捷键还是使用 Resharper的快捷键呢?我是使用re的快捷键 3: Resharper安装后,会做几件事情,这几件事情对于除此使用者,... 阅读全文
posted @ 2016-07-01 07:19 shiningrise 阅读(530) 评论(0) 推荐(0) 编辑

// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css