<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[Lassewang的成长历程]]></title><description><![CDATA[记录Lassewang职业生涯中的点点滴滴]]></description><link>https://blog.csdn.net/wangyong0921</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; wangyong0921]]></copyright><item><title><![CDATA[Jenkins解决无法获取插件的办法]]></title><link>https://blog.csdn.net/wangyong0921/article/details/52766488</link><guid>https://blog.csdn.net/wangyong0921/article/details/52766488</guid><author>wangyong0921</author><pubDate>Sun, 09 Oct 2016 14:26:58 +0800</pubDate><description><![CDATA[替换插件的服务器地址：



http://ftp.tsukuba.wide.ad.jp/software/jenkins/updates/current/update-center.json]]></description><category></category></item><item><title><![CDATA[C#实现的CRC32算法]]></title><link>https://blog.csdn.net/wangyong0921/article/details/52766476</link><guid>https://blog.csdn.net/wangyong0921/article/details/52766476</guid><author>wangyong0921</author><pubDate>Sun, 09 Oct 2016 14:25:49 +0800</pubDate><description><![CDATA[using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ALG
{
    class CRC32
    {
        static UInt32[] crcTable =
        {
          0x00000000, 0x04c11d]]></description><category></category></item><item><title><![CDATA[libvlc播放节目时，进行转录]]></title><link>https://blog.csdn.net/wangyong0921/article/details/52766379</link><guid>https://blog.csdn.net/wangyong0921/article/details/52766379</guid><author>wangyong0921</author><pubDate>Sun, 09 Oct 2016 14:19:58 +0800</pubDate><description><![CDATA[按照如下方式操作，即可实现在播放的时候进行转录
//vlc库启动参数配置
private static string pluginPath = System.Environment.CurrentDirectory + "\\plugins\\";
private static string plugin_arg = "--plugin-path=" + pluginPath;//用于播放节目时]]></description><category></category></item><item><title><![CDATA[C# 将bit位数据拼装为byte]]></title><link>https://blog.csdn.net/wangyong0921/article/details/52240972</link><guid>https://blog.csdn.net/wangyong0921/article/details/52240972</guid><author>wangyong0921</author><pubDate>Thu, 18 Aug 2016 14:56:15 +0800</pubDate><description><![CDATA[public class BitWriter
    {
        private byte[] m_data = null;
        private int m_dataLen = 0;
        private int m_pos = 0;
        private BitArray bit_data = null;

        public BitWriter]]></description><category></category></item><item><title><![CDATA[C# 字节数组位操作]]></title><link>https://blog.csdn.net/wangyong0921/article/details/52240935</link><guid>https://blog.csdn.net/wangyong0921/article/details/52240935</guid><author>wangyong0921</author><pubDate>Thu, 18 Aug 2016 14:52:25 +0800</pubDate><description><![CDATA[public class BitBuffer
    {
        private byte[] m_data = null;
        private int m_dataLen = 0;
        private int m_pos = 0;

        public BitBuffer(byte[] data)
        {
            m_data]]></description><category></category></item><item><title><![CDATA[C#中调用libvlc实现本地、网络节目流的播放]]></title><link>https://blog.csdn.net/wangyong0921/article/details/52240894</link><guid>https://blog.csdn.net/wangyong0921/article/details/52240894</guid><author>wangyong0921</author><pubDate>Thu, 18 Aug 2016 14:49:40 +0800</pubDate><description><![CDATA[using System;
using System.Text;
using System.Runtime.InteropServices;
using System.Security;
using System.IO;
using System.Threading;

namespace Net.Media
{
    //定义替代变量
    using libvlc_media_t = Sy]]></description><category></category></item><item><title><![CDATA[rpmbuild 中文手册]]></title><link>https://blog.csdn.net/wangyong0921/article/details/51220042</link><guid>https://blog.csdn.net/wangyong0921/article/details/51220042</guid><author>wangyong0921</author><pubDate>Fri, 22 Apr 2016 14:35:46 +0800</pubDate><description><![CDATA[版权声明
本文译者是一位开源理念的坚定支持者，所以本文虽然不是软件，但是遵照开源的精神发布。

无担保：本文译者不保证译文内容准确无误，亦不承担任何由于使用此文档所导致的损失。自由使用：任何人都可以自由的阅读/链接/打印此文档，无需任何附加条件。名誉权：任何人都可以自由的转载/引用/再创作此文档，但必须保留译者署名并注明出处。
其他作品
本文译者十分愿意与他人分享劳动成果，如果你对我的其]]></description><category></category></item><item><title><![CDATA[RPM中文手册]]></title><link>https://blog.csdn.net/wangyong0921/article/details/51220033</link><guid>https://blog.csdn.net/wangyong0921/article/details/51220033</guid><author>wangyong0921</author><pubDate>Fri, 22 Apr 2016 14:34:55 +0800</pubDate><description><![CDATA[版权声明
本文译者是一位开源理念的坚定支持者，所以本文虽然不是软件，但是遵照开源的精神发布。

无担保：本文译者不保证译文内容准确无误，亦不承担任何由于使用此文档所导致的损失。自由使用：任何人都可以自由的阅读/链接/打印此文档，无需任何附加条件。名誉权：任何人都可以自由的转载/引用/再创作此文档，但必须保留译者署名并注明出处。
其他作品
本文译者十分愿意与他人分享劳动成果，如果你对我的其]]></description><category></category></item><item><title><![CDATA[更改MySQL数据文件存放目录位置]]></title><link>https://blog.csdn.net/wangyong0921/article/details/51038031</link><guid>https://blog.csdn.net/wangyong0921/article/details/51038031</guid><author>wangyong0921</author><pubDate>Fri, 01 Apr 2016 16:43:25 +0800</pubDate><description><![CDATA[转载地址：http://www.wandaijin.com/archives/23


问题描述：挪动MySQL数据文件存放目录位置后，MySQL服务一直启动不了，查了很多遍权限依然没有解决，网上很多方式都试过了，依然没有用。最后终于发现apparmor这个玩意儿在作怪。改完/etc/apparmor.d/usr.sbin.mysqld文件，MySQL服务顺利启动^_^

实现思路：移动]]></description><category></category></item><item><title><![CDATA[Jenkins进阶系列之——Jenkins纳入版本控制]]></title><link>https://blog.csdn.net/wangyong0921/article/details/51007401</link><guid>https://blog.csdn.net/wangyong0921/article/details/51007401</guid><author>wangyong0921</author><pubDate>Tue, 29 Mar 2016 16:59:34 +0800</pubDate><description><![CDATA[转载地址：http://www.cnblogs.com/zz0412/p/jenkins_jj_08.html




2014-07-25:更新shell脚本
2014-06-05:更新shell脚本
2014-01-09:更新shell脚本，修改Jenkins文件删除后不能自动从版本控制删除的bug
是不是有过这种经历：某天手贱，把某一个配置更改了。然后只能在那儿苦逼的看着，然]]></description><category></category></item><item><title><![CDATA[Smbclient介绍]]></title><link>https://blog.csdn.net/wangyong0921/article/details/42123237</link><guid>https://blog.csdn.net/wangyong0921/article/details/42123237</guid><author>wangyong0921</author><pubDate>Wed, 24 Dec 2014 14:06:21 +0800</pubDate><description><![CDATA[1      Smbclient介绍

Smbclient(samba client)是基于SMB协议的,用于存取共享目标的客户端程序。

SMB 协议介绍 ：

服务器信息块（SMB）协议是一种 IBM 协议，用于在计算机间共享文件、打印机、串口等。SMB 协议可以用在因特网的TCP/IP协议之上，也可以用在其它网络协议如 IPX 和 NetBEUI 之上。

SMB 一种客户机]]></description><category></category></item><item><title><![CDATA[C# HexEdit]]></title><link>https://blog.csdn.net/wangyong0921/article/details/42122961</link><guid>https://blog.csdn.net/wangyong0921/article/details/42122961</guid><author>wangyong0921</author><pubDate>Wed, 24 Dec 2014 13:44:25 +0800</pubDate><description><![CDATA[新建HexEditProperties.cs，将以下代码拷贝至该文件
using System.Drawing;

namespace TestHexEdit
{
    public class HexEditProperties
    {
        /// 
        /// 默认构造函数
        /// 
        public HexEditPropertie]]></description><category></category></item><item><title><![CDATA[C# Winform 支持Hex与ASCII输入和切换的文本框]]></title><link>https://blog.csdn.net/wangyong0921/article/details/38521449</link><guid>https://blog.csdn.net/wangyong0921/article/details/38521449</guid><author>wangyong0921</author><pubDate>Tue, 12 Aug 2014 21:33:36 +0800</pubDate><description><![CDATA[using System;  
using System.Collections.Generic;  
using System.Text;  
using System.Windows.Forms;  
using System.ComponentModel;  
   
namespace LeafSoft.Units  
{  
    ///    
    /// Hex/ASCII输入]]></description><category></category></item><item><title><![CDATA[C#实现组播源及客户端]]></title><link>https://blog.csdn.net/wangyong0921/article/details/38501705</link><guid>https://blog.csdn.net/wangyong0921/article/details/38501705</guid><author>wangyong0921</author><pubDate>Mon, 11 Aug 2014 22:46:52 +0800</pubDate><description><![CDATA[组播源：
using System;
using System.Net;
using System.Net.Sockets;

namespace multiCastSend
{
	class send
	{
		send(string mcastGroup, string port, string ttl, string rep) 
		{
			IPAddress ip;
			try 
	]]></description><category></category></item><item><title><![CDATA[log4net使用详解]]></title><link>https://blog.csdn.net/wangyong0921/article/details/37100047</link><guid>https://blog.csdn.net/wangyong0921/article/details/37100047</guid><author>wangyong0921</author><pubDate>Sat, 05 Jul 2014 22:04:16 +0800</pubDate><description><![CDATA[说明：本程序演示如何利用log4net记录程序日志信息。log4net是一个功能著名的开源日志记录组件。利用log4net可以方便地将日志信息记录到文件、控制台、Windows事件日志和数据库（包括MS SQL Server, Access, Oracle9i,Oracle8i,DB2,SQLite）中。并且我们还可以记载控制要记载的日志级别，可以记载的日志类别包括：FATAL（致命错误）、ERR]]></description><category></category></item><item><title><![CDATA[使用HttpClient发送GET请求]]></title><link>https://blog.csdn.net/wangyong0921/article/details/36488515</link><guid>https://blog.csdn.net/wangyong0921/article/details/36488515</guid><author>wangyong0921</author><pubDate>Wed, 02 Jul 2014 22:48:53 +0800</pubDate><description><![CDATA[HttpRequestMessage http_req_msg = new HttpRequestMessage();
http_req_msg.Method = HttpMethod.Get;
http_req_msg.Headers.Add("user-agent", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Tri]]></description><category></category></item><item><title><![CDATA[7款很棒的 HTML5 视频播放器]]></title><link>https://blog.csdn.net/wangyong0921/article/details/32346759</link><guid>https://blog.csdn.net/wangyong0921/article/details/32346759</guid><author>wangyong0921</author><pubDate>Thu, 19 Jun 2014 21:35:09 +0800</pubDate><description><![CDATA[作为下一代的网页语言，HTML5 拥有很多让人期待已久的新特性，其中之一就是 video 标签，让开发者可以在网页中和添加图片一样简单的方式添加视频。在这篇文章中，我收集了7个很棒的HTML5视频播放器，你可以很容易的应用到你的网站中，文章最后还将与大家分享使用 CSS3 和 jQuery 开发一个自定义 HTML5 视频播放器的教程。
VideoJS

VideoJS 是最流行的 HTML]]></description><category></category></item><item><title><![CDATA[DHCP协议和dhcpcd源码分析]]></title><link>https://blog.csdn.net/wangyong0921/article/details/30793209</link><guid>https://blog.csdn.net/wangyong0921/article/details/30793209</guid><author>wangyong0921</author><pubDate>Sat, 14 Jun 2014 20:59:50 +0800</pubDate><description><![CDATA[dhcpcd是一个dhcp客户端程序。
下载地址：
http://www.phystech.com/download/dhcpcd.html
DHCP 协议的几种报文：
　　1 dhcpdiscover: 此为client开始DHCP过程中的第一个请求报文
　　2 dhcpoffer : 此为server 对dhcpdiscover 报文的响应
　　3 dhcprequst : 此为c]]></description><category></category></item><item><title><![CDATA[dvbsnoop用法]]></title><link>https://blog.csdn.net/wangyong0921/article/details/25870119</link><guid>https://blog.csdn.net/wangyong0921/article/details/25870119</guid><author>wangyong0921</author><pubDate>Thu, 15 May 2014 09:39:18 +0800</pubDate><description><![CDATA[1、安装
sudo apt-get dvbsnoop
2、ts检测相关参数简介

通用参数：

-s ts 
检测类型为ts流
-if 文件名
离线检测ts流文件
-pd 
    解码的输出细节程度 0-9 ，0表示没有输出
-npd
    等同于  -pd 0.
-ph 
指定16进制输出的细节程度:
0=no hexdump output, 1=hex ou]]></description><category></category></item><item><title><![CDATA[windows下安装cygwin及配置]]></title><link>https://blog.csdn.net/wangyong0921/article/details/25716211</link><guid>https://blog.csdn.net/wangyong0921/article/details/25716211</guid><author>wangyong0921</author><pubDate>Tue, 13 May 2014 15:42:37 +0800</pubDate><description><![CDATA[安装 Cygwin
    先去http://www.cygwin.com/setup.exe下载setup.exe，运行，得到这个界面：



　　点下一步，出现这个界面：




　　选择“Install from Internet”，当然，如果本地已经下载了你所需要的package，也可以选“Install from Local Directory”
接下来选择安装位置]]></description><category></category></item></channel></rss>