她说: 不指定

Else , 2009/12/31 15:28 , 积累些,自己也写些 , Comments(1) , Reads(564) , Via Original
她说:

没有想到你会来加我!

........................我一直在想在会说什么,她会想些什么,结果什么也没有,他说的还是她说的,

在说她,她出现,到她的消息,我只是一个听客,六年,没有几句话,好像就是这么简单,她的故事我也听了,前后的事我也知道!


她问:

新的一年计划好了吗?是呀,我还没有静下来,去计划什么,这是习惯成了自然了,都是空的希望,分期了,其实就是这样简单!不是吗?

我本来想在昨天的早上写下这新东西,是的很久没有写了!


原来坐着的时候,手机动起来,腰的受力才没有这么大!


她说:


她说:

Google是支持开源运动的最大公司之一,它们现在总共发布有超过500个的开源项目(大部分都是利用它们的API来完成),本文将列举一些有趣的开源项目,其中很可能有不少你不知道的哦。
[hcode]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="http://www.aixq.com/js/jquery.js" type="text/javascript"></script>
</head>

<body>
<img src="http://www.suibe.com/images/logo.gif" alt="" name="logo" id="logo" />
<label>
  <input type="button" name="cccc" id="cccc" value="Button" onclick="$('#logo').attr('src','http://www.aixq.com/img/logo.gif');" />
</label>
</body>
</html>
[/hcode]
其实就是做了个网站的皮肤

Open in new window

红楼梦·葬花演唱 不指定

Else , 2009/12/14 13:37 , 不拘一格的内容 , Comments(3) , Reads(630) , Via Original
《红楼梦·葬花演唱:王文娟[4];王志萍;单仰萍;
  绕绿堤,拂柳丝,穿过花径,
  听何处,哀怨笛,风送声声。
  人说道,大观园,四季如春,
  我眼中,却只是,一座愁城。
  看风过处,落红成阵,牡丹谢,芍药怕,海棠惊,
  《红楼梦·葬花》王文娟杨柳带愁,桃花含恨,这花朵儿与人一般受逼凌。
  我一寸芳心谁共鸣,七条琴弦谁知音,
  我只为,惜惺惺,怜同命,不教你陷落污泥遭蹂躏。
  且收拾起,桃李魂,自筑香坟葬落英。
  花落花飞飞满天,红消香断有谁怜?
  一年三百六十天,风刀霜剑严相逼,明媚鲜妍能几时?
  一朝漂泊难寻觅。
  花魂鸟魂总难留,鸟自无言花自羞,
  愿侬此日生双翼,随花飞到天尽头。
  天尽头,何处有香丘?
  未若锦囊收艳骨,一杯净土掩风流,
  质本洁来还洁去,不叫污淖陷渠沟。
  侬今葬花人笑痴,他年葬侬知是谁?
  一朝春尽红颜老,花落人亡两不知。
Quotation
public string GetContentSummary(string content, int length, bool StripHTML)
        {
            if (string.IsNullOrEmpty(content) || length == 0)
                return "";
            if (StripHTML)
            {
                System.Text.RegularExpressions.Regex re = new System.Text.RegularExpressions.Regex("<[^>]*>");
                content = re.Replace(content, "");
                content = content.Replace("﹛", "").Replace(" ", "").Replace(" ", "");
                if (content.Length <= length)
                    return content;
                else
                    return content.Substring(0, length) + "...";
            }
            else
            {
                if (content.Length <= length)
                    return content;

                int pos = 0, npos = 0, size = 0;
                bool firststop = false, notr = false, noli = false;
                System.Text.StringBuilder sb = new System.Text.StringBuilder();
                while (true)
                {
                    if (pos >= content.Length)
                        break;
                    string cur = content.Substring(pos, 1);
                    if (cur == "<")
                    {
                        string next = content.Substring(pos + 1, 3).ToLower();
                        if (next.IndexOf("p") == 0 && next.IndexOf("pre") != 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                        }
                        else if (next.IndexOf("/p") == 0 && next.IndexOf("/pr") != 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            if (size < length)
                                sb.Append("
");
                        }
                        else if (next.IndexOf("br") == 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            if (size < length)
                                sb.Append("
");
                        }
                        else if (next.IndexOf("img") == 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            if (size < length)
                            {
                                sb.Append(content.Substring(pos, npos - pos));
                                size += npos - pos + 1;
                            }
                        }
                        else if (next.IndexOf("li") == 0 || next.IndexOf("/li") == 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            if (size < length)
                            {
                                sb.Append(content.Substring(pos, npos - pos));
                            }
                            else
                            {
                                if (!noli && next.IndexOf("/li") == 0)
                                {
                                    sb.Append(content.Substring(pos, npos - pos));
                                    noli = true;
                                }
                            }
                        }
                        else if (next.IndexOf("tr") == 0 || next.IndexOf("/tr") == 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            if (size < length)
                            {
                                sb.Append(content.Substring(pos, npos - pos));
                            }
                            else
                            {
                                if (!notr && next.IndexOf("/tr") == 0)
                                {
                                    sb.Append(content.Substring(pos, npos - pos));
                                    notr = true;
                                }
                            }
                        }
                        else if (next.IndexOf("td") == 0 || next.IndexOf("/td") == 0)
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            if (size < length)
                            {
                                sb.Append(content.Substring(pos, npos - pos));
                            }
                            else
                            {
                                if (!notr)
                                {
                                    sb.Append(content.Substring(pos, npos - pos));
                                }
                            }
                        }
                        else
                        {
                            npos = content.IndexOf(">", pos) + 1;
                            sb.Append(content.Substring(pos, npos - pos));
                        }
                        if (npos <= pos)
                            npos = pos + 1;
                        pos = npos;
                    }
                    else
                    {
                        if (size < length)
                        {
                            sb.Append(cur);
                            size++;
                        }
                        else
                        {
                            if (!firststop)
                            {
                                sb.Append("...");
                                firststop = true;
                            }
                        }
                        pos++;
                    }

                }
                return sb.ToString();
            }
        }
CNNIC称将整顿域名注册 注册信息不实将被注销

网络实名,

很简单,

这个暴力,

合同后面的加的条款,在cn还有一个专门的名称,叫

霸王条约,

没有分条约的后面都是痛苦的,

从马关,南j,还在大x安l

如果处处都要用到这种暴力,只能说明这个团对没有能力!内部失调!惊弓之鸟!


这应该是网络的暴力执法!

不知道有几个老外在用.cn这又怎么处理!现在看来,只能进一步的破坏这个.cn的这个品牌!

bad.cn bad


測試列印資料
主要读cnblogs的
csdn的,有关于
打印
http://data.book.163.com/book/home/009200100010/0000FcDa.html

Quotation
它令阅卷老师怒火冲冠 它令教育专家哑口无言。它令天下父母啼笑皆非 它令芸芸网民爆笑吐血。教育史上最雷人、最搞笑、最荒诞、最天才的高考零分作文。绝对挑战你的想象极限!
Pages: 1/2 First page 1 2 Next page Final page [ View by Articles | List ]