<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_33698823的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_33698823</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_33698823]]></copyright><item><title><![CDATA[【C#学习笔记】指针使用]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94746962</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94746962</guid><author>weixin_33698823</author><pubDate>Fri, 05 Jul 2019 18:00:41 +0800</pubDate><description><![CDATA[using System;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 5;
            unsafe
            {
          ...]]></description><category></category></item><item><title><![CDATA[matlab练习程序（k-means聚类）]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94746852</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94746852</guid><author>weixin_33698823</author><pubDate>Fri, 05 Jul 2019 17:59:39 +0800</pubDate><description><![CDATA[聚类算法，不是分类算法。
分类算法是给一个数据，然后判断这个数据属于已分好的类中的具体哪一类。
聚类算法是给一大堆原始数据，然后通过算法将其中具有相似特征的数据聚为一类。
这里的k-means聚类，是事先给出原始数据所含的类数，然后将含有相似特征的数据聚为一个类中。
所有资料中还是Andrew Ng介绍的明白。
首先给出原始数据{x1,x2,...,xn}，这些数据没有被标记的。
初始...]]></description><category></category></item><item><title><![CDATA[Ext JS 4 的类系统]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94710355</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94710355</guid><author>weixin_33698823</author><pubDate>Fri, 05 Jul 2019 07:51:32 +0800</pubDate><description><![CDATA[前言
我们知道，JavaScript中没有真正的类，它是一种面向原型的语言 。这种语言一个强大的特性就是灵活，实现一个功能可以有很多不同的方式，用不同的编码风格和技巧。但随之也带来了代码的不可预测和难以维护等问题。代码量很大时，由于JavaScript 没有统一的结构，代码变得很难理解和阅读，不方便维护和重用。
而像C#这种基于类的面向对象语言，它是强类型的，具有封装、继承和多态的OOP基本特...]]></description><category></category></item><item><title><![CDATA[WCF系列（三） -- WCF配置文件注释]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94497578</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94497578</guid><author>weixin_33698823</author><pubDate>Tue, 02 Jul 2019 23:28:42 +0800</pubDate><description><![CDATA[2008年10月4日更新

&lt;?xml version="1.0" encoding="utf-8" ?&gt;
&lt;configuration&gt;
 &lt;system.ServiceModel&gt;
 &lt;!-- services 元素包含应用中驻留的所有service的配置要求 --&gt;
 &lt;services...]]></description><category></category></item><item><title><![CDATA[验证能有多优雅]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94278316</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94278316</guid><author>weixin_33698823</author><pubDate>Sun, 30 Jun 2019 07:53:45 +0800</pubDate><description><![CDATA[背景
我们都知道ENTLIB有VAB，也知道如果不在乎大量的XML损视力的话，VAB非常非常优雅，但是在不大的项目中，很多情况下我们依旧自己写着验证的代码
所以在这篇文章中，打算展示一下学习.NET一年半以来，写验证代码的各个阶段，并展示一种个人觉得比较优雅的验证代码的写法，如果大家有别的方案，也请提出来与大家分享哦

第一阶段--强写
所谓强写，自然就是强行地写了，从知道...]]></description><category></category></item><item><title><![CDATA[IE的框架]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94192615</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94192615</guid><author>weixin_33698823</author><pubDate>Sat, 29 Jun 2019 19:09:42 +0800</pubDate><description><![CDATA[IEXPLORE.exe是应用程序，它可以host SHDOCVW.dll，即WebBrowser Control,它是一个ActiveX Control。  WebBrowser Control有可以host mshtml.dll,它是一个ActiveX文档。  Shdocvw.dll提供导航、历史记录等操作。  Mshtml.dll负责解析html，渲染(render)html操作等。
...]]></description><category></category></item><item><title><![CDATA[C#利用msscript.ocx控件执行JS脚本]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94147929</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94147929</guid><author>weixin_33698823</author><pubDate>Sat, 29 Jun 2019 13:13:25 +0800</pubDate><description><![CDATA[到微软的网站上下载Windows Script Control，它是一个ActiveX(R) 控件，所以在.NET中使用我Interop了一下。下载安装完成后，新建一个C#的Windows应用程序项目，在解决方案资源管理器中选中引用节点，右键点击选择添加引用菜单，弹出添加引用对话框，单击浏览找到安装Windows Script Control的目录，选取msscript.ocx文件确定。那么在引用...]]></description><category></category></item><item><title><![CDATA[C#中ref和out的作用和区别]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/94107933</link><guid>https://blog.csdn.net/weixin_33698823/article/details/94107933</guid><author>weixin_33698823</author><pubDate>Sat, 29 Jun 2019 06:36:01 +0800</pubDate><description><![CDATA[相同点：方法的定义和调用都必须显示使用ref、out关键字。都会导致参数按引用传递。
不同点：传递给ref关键字的参数必须赋初始值，而out不用。out关键字会清空变量，即使变量已经赋值也不行，退出函数时所有out引用个变量都要赋值。

说明：ref的应用场景是内部对外部的值进行改变，而out则是内部对外部变量赋值。out一般用在函数有多个返回值。




[c-sharp]...]]></description><category></category></item><item><title><![CDATA[ExtJS2.0实用简明教程 - Border区域布局]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93800929</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93800929</guid><author>weixin_33698823</author><pubDate>Thu, 27 Jun 2019 00:20:20 +0800</pubDate><description><![CDATA[Border布局由类Ext.layout.BorderLayout定义，布局名称为border。该布局把容器分成东南西北中五个区域，分别由east，south, west，north, cente来表示，在往容器中添加子元素的时候，我们只需要指定这些子元素所在的位置，Border布局会自动把子元素放到布局指定的位置。看下面的代码：Ext.onReady(function(){...]]></description><category></category></item><item><title><![CDATA[[Windows Azure] Development Considerations in Windows Azure SQL Database]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93800270</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93800270</guid><author>weixin_33698823</author><pubDate>Thu, 27 Jun 2019 00:14:08 +0800</pubDate><description><![CDATA[Development Considerations in Windows Azure SQL Database
3 out of 5 rated this helpful - Rate this topic 


Developing applications for MicrosoftWindows Azure SQL Database is very similar to deve...]]></description><category></category></item><item><title><![CDATA[用C#获取CPU编号、硬盘编号等系统有关环境、属性]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93766876</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93766876</guid><author>weixin_33698823</author><pubDate>Wed, 26 Jun 2019 19:06:24 +0800</pubDate><description><![CDATA[用C#获取CPU编号、硬盘编号等系统有关环境、属性
如果利用C#获取系统有关环境和属性，这个也是在网上问得比较多的问题，不过大部分只有提问没有回答，最近正好想做有关方面的东西，整理了一下，提供给大家，希望能给大家提供参考意见：
首先需要定义几个结构(struct) ，便于DllImport作为返回参数调用。以下是代码：
CpuInfo.cs
using System;
using Sys...]]></description><category></category></item><item><title><![CDATA[创建型设计模式小结]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93725173</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93725173</guid><author>weixin_33698823</author><pubDate>Wed, 26 Jun 2019 11:48:55 +0800</pubDate><description><![CDATA[概述
　　创建型模式，就是用来创建对象的模式，它抽象了对象的创建过程。本系列文章介绍了Gof设计模式中的5种创建型模式，另外对简单工厂模式也进行了介绍，下面通过一个表格来说明它们之间的关系。




名称


GoF的定义


功能描述




Singleton


保证一个类仅有一个实例，并提供一个该实例的全局访问点。


解决的是类实例化个数的问...]]></description><category></category></item><item><title><![CDATA[我感恩]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93664583</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93664583</guid><author>weixin_33698823</author><pubDate>Tue, 25 Jun 2019 22:22:09 +0800</pubDate><description><![CDATA[这篇文章很早以前已经看过了．看完后会发现原来世界还是如此美好，充满希望的！我感恩有每夜和我抢棉被的伴侣，那表示他／她不是和别人在一起．有只会看电视而不洗碗的青少年，那表示他／她乖乖在家而不是流连在外．我缴税，那表示我有工作．衣服越来越紧，那表示我吃的很好．有阴影陪伴我劳动，那表示我在明亮的阳光下．有待修整的草地，待清理的窗户，和待修理的排水沟，那表示我有个家能找到最远的那个停车位，那表示我还能走路...]]></description><category></category></item><item><title><![CDATA[10.3 io流 正篇 FileReader FileWriter读写代码]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93739849</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93739849</guid><author>weixin_33698823</author><pubDate>Tue, 25 Jun 2019 16:17:00 +0800</pubDate><description><![CDATA[一、FileWriter
小节：
1）FileWriter fw = new FileWriter("a.txt",true);//表示追加写入，默认是false。正常情况：执行多次程序输出会被覆盖。写追加true后会在之前基础上写入。
2）\n可以实现换行，但是windows系统自带的记事本打开并没有换行，这是为什么呢?因为windows识别的换行不是\n，而是\r\n
 *      ...]]></description><category></category></item><item><title><![CDATA[如何做搜索引擎优化（SEO）]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93587564</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93587564</guid><author>weixin_33698823</author><pubDate>Tue, 25 Jun 2019 08:27:49 +0800</pubDate><description><![CDATA[如何做搜索引擎优化（SEO）
			
	
	
		搜索引擎优化是一个网站推广最佳的方案，因为搜索引擎优化做的好，带来的效果完 全可以达到付费广告带来的效果。 以下是我在给目前服务的一家思科技术培训机构做网络优化时总结的一个SEO优化操作方案，大家可以了解下，有不足的地方，欢迎提出来。 搜索引擎优化主要做一下几个方面   1、网站内容   网站的实际内容是你网络优化...]]></description><category></category></item><item><title><![CDATA[wtforms的使用]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93707461</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93707461</guid><author>weixin_33698823</author><pubDate>Mon, 24 Jun 2019 21:17:00 +0800</pubDate><description><![CDATA[1.登陆

class LoginForm(Form):
    name = simple.StringField(
        validators=[
            validators.DataRequired(message='用户名不能为空.'),
            # validators.Length(min=6, max=18, message='...]]></description><category></category></item><item><title><![CDATA[实现用户注册验证码]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93495892</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93495892</guid><author>weixin_33698823</author><pubDate>Mon, 24 Jun 2019 16:36:49 +0800</pubDate><description><![CDATA[为防止用户在注册的时候使用注册机注册。故在用户注册时加一个注册码验证机制是必要的。下面就是做注册码验证的一些代码。首先建一个新的页面gif.aspx来创建验证码图片。其代码实现如下： '***********产生随机数*************随机产生一个100000到999999之间的整数，并将其进行转换为字符串，然后保存在Session()中 Private Sub Random()...]]></description><category></category></item><item><title><![CDATA[Socket 学习实例]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93293223</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93293223</guid><author>weixin_33698823</author><pubDate>Sat, 22 Jun 2019 07:59:13 +0800</pubDate><description><![CDATA[整理一份Socket代码，整理前辈的代码
http://www.cnblogs.com/yellowapplemylove/archive/2011/04/19/2021586.html
直接贴代码
一、客户端


 1 /// &lt;summary&gt;
 2     /// Client客户端
 3     /// &lt;/summary&gt;
 4     publ...]]></description><category></category></item><item><title><![CDATA[DotNetTextBox V3.0 所见即所得编辑器控件Ver3.2.9 Free(免费版)]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93109125</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93109125</guid><author>weixin_33698823</author><pubDate>Thu, 20 Jun 2019 19:42:37 +0800</pubDate><description><![CDATA[英文名：DotNetTextBox V3.0 WYSWYG Web Control For Asp.Net2.0
中文名：DotNetTextBox V3.0 所见即所得编辑器控件 For Asp.Net2.0
类型: 个人及非盈利性网站免费使用
作者: 小宝.NET 2.0(Terry Deng)
主页：http://www.aspxcn.com.cn
控件演示页面: http://w...]]></description><category></category></item><item><title><![CDATA[cocoapods组件关系介绍]]></title><link>https://blog.csdn.net/weixin_33698823/article/details/93179374</link><guid>https://blog.csdn.net/weixin_33698823/article/details/93179374</guid><author>weixin_33698823</author><pubDate>Wed, 19 Jun 2019 12:23:37 +0800</pubDate><description><![CDATA[转载于:https://juejin.im/post/5d0a28f4f265da1b8b2b6316]]></description><category></category></item></channel></rss>