<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>壹亩叁分地 &#187; Develop</title>
	<atom:link href="http://www.opzn.org/archives/category/dev/feed" rel="self" type="application/rss+xml" />
	<link>http://www.opzn.org</link>
	<description>WenYunlong&#039;s blog 温云龙的博客</description>
	<lastBuildDate>Fri, 23 Dec 2011 02:07:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Python执行命令行获取输出</title>
		<link>http://www.opzn.org/archives/919</link>
		<comments>http://www.opzn.org/archives/919#comments</comments>
		<pubDate>Wed, 03 Aug 2011 10:22:59 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=919</guid>
		<description><![CDATA[#!/usr/bin/env python
#
# $id: refresh.py,v 1.0.0 2009/01/05 15:32:48 master Exp $
# Copyright (C) 2009 Yunlong Wen (wenyunlong@gmail.com)
#
# La[......]<p class='read-more'><a href='http://www.opzn.org/archives/919'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/919/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>开发目录清理脚本</title>
		<link>http://www.opzn.org/archives/837</link>
		<comments>http://www.opzn.org/archives/837#comments</comments>
		<pubDate>Fri, 10 Jun 2011 10:13:18 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=837</guid>
		<description><![CDATA[#!/bin/sh

function usage() {
    echo "usage: "
}

if [ $ARGC != 1 ] &#124;&#124; [ -d $1 ];then
    usage
    exit
fi

DIR=$1

for i in `find $DI[......]<p class='read-more'><a href='http://www.opzn.org/archives/837'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/837/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>目录备份脚本</title>
		<link>http://www.opzn.org/archives/835</link>
		<comments>http://www.opzn.org/archives/835#comments</comments>
		<pubDate>Fri, 10 Jun 2011 10:12:08 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=835</guid>
		<description><![CDATA[备份执行目录到 BACKUP_DIR, 压缩文件名为 目录名+'_'+时间+'_'+随机数.tar.gz

#!/bin/sh
PWD=`pwd`
ARGC=$#
BDIR=$BACKUP_DIR

function usage() {
    echo "usage:  "
}[......]<p class='read-more'><a href='http://www.opzn.org/archives/835'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/835/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPV6地址类型</title>
		<link>http://www.opzn.org/archives/832</link>
		<comments>http://www.opzn.org/archives/832#comments</comments>
		<pubDate>Fri, 10 Jun 2011 08:05:41 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=832</guid>
		<description><![CDATA[IN6_IS_ADDR_UNSPECIFIED //未指定地址
IN6_IS_ADDR_LOOPBACK //环回地址
IN6_IS_ADDR_LINKLOCAL //单播链路本地地址
IN6_IS_ADDR_SITELOCAL //单播站点本地地址
IN6_IS_ADDR_V4MAPPED[......]<p class='read-more'><a href='http://www.opzn.org/archives/832'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/832/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>根据UDP数据包不可达的ICMP回应追踪网络路由</title>
		<link>http://www.opzn.org/archives/817</link>
		<comments>http://www.opzn.org/archives/817#comments</comments>
		<pubDate>Thu, 09 Jun 2011 00:01:30 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=817</guid>
		<description><![CDATA[在发送UDP数据包（保证UDP端口在目标没有监听）的之前递增的设置TTL，UDP途径的路由将TTL减1，当TTL为0时或目标服务器UDP端口没有监听，路由向UDP包发送方返回一个type=11（请求的服务或网络不可达）的ICMP回应包。[......]<p class='read-more'><a href='http://www.opzn.org/archives/817'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/817/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>浏览器兼容手册</title>
		<link>http://www.opzn.org/archives/775</link>
		<comments>http://www.opzn.org/archives/775#comments</comments>
		<pubDate>Wed, 02 Mar 2011 08:31:12 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=775</guid>
		<description><![CDATA[<strong>png透明 AlphaImageLoader </strong>filter:progid:

DXImageTransform.Microsoft.AlphaImageLoader(enabled=bEnabled,sizingMethod=sSize,src=sURL)

enabled：可选项。布尔值(Boolean)。设置或检索滤镜是否激活。true：默认值。滤镜激活。false：滤镜被禁止。
sizingMethod：可选项。字符串(String)。设置或检索滤镜作用的对象的图片在对象容器边界内的显示方式。crop：剪切图片以适应对象尺寸。image：默认值。增大或减小对象的尺寸边界以适应图片的尺寸。scale：缩放图片以适应对象的尺寸边界。
src：必选项。字符串(String)。使用绝对或相对 url 地址指定背景图像。假如忽略此参数，滤镜将不会作用。[......]<p class='read-more'><a href='http://www.opzn.org/archives/775'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/775/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autoconf 使用指南</title>
		<link>http://www.opzn.org/archives/484</link>
		<comments>http://www.opzn.org/archives/484#comments</comments>
		<pubDate>Tue, 12 Oct 2010 07:00:33 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=484</guid>
		<description><![CDATA[Autoconf是一个用于生成可以自动地配置软件源代码包以适应多种Unix类系统的 shell脚本的工具。由Autoconf生成的配置脚本在运行的时候与Autoconf是无关的， 就是说配置脚本的用户并不需要拥有Autoconf。
[......]<p class='read-more'><a href='http://www.opzn.org/archives/484'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/484/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript GB2312 汉字解码</title>
		<link>http://www.opzn.org/archives/394</link>
		<comments>http://www.opzn.org/archives/394#comments</comments>
		<pubDate>Sun, 13 Jun 2010 09:34:36 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/?p=394</guid>
		<description><![CDATA[GB2312 汉字编解码纯Javascript实现，不使用VBScript，查表实现，无平台限制，包含GB2312汉字码表
function gb2312decode(str)
{
    var strOut = '';
    for (var i=0;i
代码下载：<a href="[......]<p class='read-more'><a href='http://www.opzn.org/archives/394'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/394/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DNS查询数据信</title>
		<link>http://www.opzn.org/archives/370</link>
		<comments>http://www.opzn.org/archives/370#comments</comments>
		<pubDate>Tue, 08 Jun 2010 04:09:54 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://www.opzn.org/archives/370</guid>
		<description><![CDATA[头部信息

16bit 这是由生成DNS查询的程序指定的ID，在一个请求中标识应答属于那个请求
z
16bit的标志 字段

1bit QR，查询/相应的标志位，0 查询，1 应答[......]<p class='read-more'><a href='http://www.opzn.org/archives/370'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/370/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ERP常见名词解释</title>
		<link>http://www.opzn.org/archives/316</link>
		<comments>http://www.opzn.org/archives/316#comments</comments>
		<pubDate>Thu, 04 Feb 2010 08:40:31 +0000</pubDate>
		<dc:creator>温 云龙</dc:creator>
				<category><![CDATA[Develop]]></category>

		<guid isPermaLink="false">http://motse.opzn.com/?p=316</guid>
		<description><![CDATA[ABC Classification--ABC分类法对于库存的所有物料，按照全年货币价值从大到小排序，然后划分为三大类，分别称为A类、B类和C类。A类物料价值最高，受到高度重视，处于中间的B类物料受重视程度稍差，而C类物料价值低，仅进行例行控制管理。ABC分类法的原则是通过放松对低值物料的控制管理而节省精力，从而可以把高值物料的库存管理做得更好。[......]<p class='read-more'><a href='http://www.opzn.org/archives/316'>阅读全文</a></p>]]></description>
		<wfw:commentRss>http://www.opzn.org/archives/316/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

