harbor-offline-installer-v2.8.4
harbor-offline-installer-v2.8.4
ML.NET resnet-v2-50-299
C# ML.NET resnet_v2_50_299.meta 资源包
C# 在机器学习时,可能resnet_v2_50_299.meta 无法自动下载,或者很慢。
可以先下载好resnet_v2_50_299.meta,放到:C:\Users\Administrator\AppData\Local\Temp\MLNET\resnet_v2_50_299.meta。其中“Administrator”是登录用户名,根据实际情况调整
Exchange2013——Code
Exchange2013——Code,Exchange2013——Code,Exchange2013——Code
AnkhSVN 2.5.12478
For Microsoft Visual Studio 2005, 2008, 2010, 2012, 2013 and 2015
AnkhSVN 1.0.6 - Subversion 1.6 support for Microsoft Visual Studio 2002 and 2003.
GhostDoc4.9
GhostDoc_v4.9pro破解
NET高级调试
这是一本介绍如何通过非托管调试器(包括WinDBG、NTSD和CDB等)来调试?NET应用程序的书籍。本书内容主要包括:调试工具简介、CLR基础、基本调试任务、程序集加载器、托管堆与垃圾收集、同步、互用性以及一些高级主题
VisualSVN-Server
VisualSVN-Server2.7.8
AnkhSvn-2.5
AnkhSvn-2.5.12471.17
jquery pagination jpaginator .net两个版本分页
总结了jquery pagination jpaginator .net两个版本分页功能,
带多种样式效果
3000正则表达式
收集常用的正则,大概有3000个
tExpression tDESCRIPTION matchs
((19|20)[0-9]{2})-(([1-9])|(0[1-9])|(1[0-2]))-((3[0-1])|([0-2][0-9])|([0-9])) Validate the year month and day. 2008-12-15
^1+0+$ A simple regular expression to determine if a subnet mask is contiguous; that is, the submask must start with a 1 bit followed by 0 or more 1 bits, followed by 1 or more 0 bits until the end of the submask. 10 | 110 | 1100
^([1][12]|[0]?[1-9])[\/-]([3][01]|[12]\d|[0]?[1-9])[\/-](\d{4}|\d{2})$ Matches dates with the following formatMonth - either MM (like 01) or M (like 1) - from 1 to 12Day - either DD (like 01) or D ( like 1) - from 1 to 31Year - either YYYY ( like 1998) or YY (like 98)Separater - either - or / 11-02-02 | 1-25-2002 | 01/25/2002
[\x00-\x1F\x7F] Matches all non-printable characters in the ASCII-table, such as Data Link Escape and Cancel Test 123-4! *^¨┼@
^\$[+-]?([0-9]+|[0-9]{1,3}(,[0-9]{3})*)(\.[0-9]{1,2})?$ This expression is little tricky since the $ sign is includeded in theexpression itself. So whenever you want to make use of the expression besure to prepend $ sign to the value if it's not present. $-1 | $-1.0 | $1,234.42
json 动态键名
using Newtonsoft.Json;
json 动态键名
有问题可发邮件554961776@qq.com
winformsui
weifenluo winformsui thread 线程问题
微信公众平台 接口.net php 集合带日志输出
改版了
http://download.csdn.net/detail/bladewing/4881197
和其他人的
notepad++\plugins
notepad++\plugins 所有插件
vs2008报表
vs2008报表 例子程序, 微软报表ReportViewer
GridView动态添加列的方法及代码
GridView动态添加列的方法及代码,
生成动态列,,模板列没全部完成
ASP.NET MVC 将IList导出Excel文档的泛型类(继承自ActionResult)
ASP.NET MVC 将IList导出Excel文档的泛型类(继承自ActionResult)
delphi 常用开发
delphi 常用开发,学习Delphi 5开发人员指南
IIS启动器.rar
IIS启动器.rarIIS启动器.rarIIS启动器.rar
css2.0 CSS 是 Cascading Style Sheet 的缩写。译作「层叠样式表单」。是用于(增强)控制网页样式并允许将样式信息与网页内容分离的一种标记性语言。
css2.0
CSS 是 Cascading Style Sheet 的缩写。译作「层叠样式表单」。是用于(增强)控制网页样式并允许将样式信息与网页内容分离的一种标记性语言。
mysql-essential-5[1].0.24-win32.msi
mysql-essential-5[1].0.24-win32.msi
global.asax
global.asax 用法介绍
<%@ Application Language="C#" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
string st= HttpContext.Current.Request.ContentEncoding.BodyName.ToString();
HttpContext.Current.Response.Write(st);
}
void Application_End(object sender, EventArgs e)
{
// Code that runs on application shutdown
}
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
}
void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
}
void Session_End(object sender, EventArgs e)
{
// Code that runs when a session ends.
// Note: The Session_End event is raised only when the sessionstate mode
// is set to InProc in the Web.config file. If session mode is set to StateServer
// or SQLServer, the event is not raised.
}
void Application_BeginRequest(object sender, EventArgs e)
{
Response.Write("\t\n<br>"+HttpContext.Current.Request.Url.ToString());
}
</script>