blog code

Code Snippet

   1: public override void Update()
   2:     {
   3:         base.Update();
   4:     }
   5:  
   6:     public virtual void Standup()
   7:     {
   8:         SetState(CCharacterState.Idle);
   9:     }

Insert Code

   1:  public override void Update()
   2:      {
   3:          base.Update();
   4:      }
   5:   
   6:      public virtual void Standup()
   7:      {
   8:          SetState(CCharacterState.Idle);
   9:      }

.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }

PreCode Snippet

public override void Update()
{
    base.Update();
}

public virtual void Standup()
{
    SetState(CCharacterState.Idle);
}

CodeFormatterPlugin

1     public override void Update()
2     {
3         base.Update();
4     }
5
6     public virtual void Standup()
7     {
8         SetState(CCharacterState.Idle);
9     }

博客园官方代码插件

public override void Update()
    {
        base.Update();
    }

    public virtual void Standup()
    {
        SetState(CCharacterState.Idle);
    }

           //注:该插件基于Windows Live Writer Source Code plugin for SyntaxHighlighter(http://sourcecodeplugin.codeplex.com/)的代码修改而成。

时间: 2024-07-28 22:29:40

blog code的相关文章

code.google.com

https://github.com/couchbase/sync_gateway/issues/492 This list shows the current base import paths, and their new equivalents. code.google.com/p/go.benchmarks -> golang.org/x/benchmarks code.google.com/p/go.blog -> golang.org/x/blog code.google.com/

Sed 实记 · laoless‘s Blog

sed编辑命令 p 打印匹配行 = 打印文件行号 a 在定位行之后追加文本 i 在定位行之前插入文本 d 删除定位行 c 用新文本替换定位文本 s 使用替换模式替换相应模式 r 从另一个文件读取文本 w 将文本写入到一个文件 y 变换字符,类似替换 q 第一个模式匹配完成后退出 l 显示与八进制ASCII码等价的控制字符 {} 在定位行执行的命令组 n 读取下一个输入行,用下一个命令处理新的行 h 将模式缓冲区的文本复制到保持缓冲区 H 将模式缓冲区的文本追加到保持缓冲区 x 互换模式缓冲区和保

(转) AI突破性论文及代码实现汇总

本文转自:https://zhuanlan.zhihu.com/p/25191377 AI突破性论文及代码实现汇总 极视角 · 2 天前 What Can AI Do For You? "The business plans of the next 10,000 startups are easy to forecast: Take X and add AI." - Kevin Kelly "A hundred years ago electricity transforme

golang编码转换

在网上搜索golang编码转化时,我们经常看到的文章是使用下面一些第三方库: https://github.com/djimenez/iconv-go https://github.com/qiniu/iconv 如果我们在windows下使用这个库,会看到错误: iconv.go:6:20: fatal error: iconv.h: No such file or directory compilation terminated. 这是因为需要系统有 iconv.h 文件. linux.ma

awesome-very-deep-learning

awesome-very-deep-learning is a curated list for papers and code about implementing and training very deep neural networks. Deep Residual Learning Deep Residual Networks are a family of extremely deep architectures (up to 1000 layers) showing compell

在Flex4中使用RemoteObjectAMF0来连接fluorine网关 转

转http://vipnews.csdn.net/newscontent.aspx?pointid=2011_04_21_142132661 RemoteObjectAMF0是一个开源组件,可以很方便的连接AMF网关,而不需要配置services-config.xml,少了很多事. 1.首先到http://renaun.com/blog/code/remoteobjectamf0/下 载RemoteObjectAMF0的源代码,其实上RemoteObjectAMF0是用ActionScripct

.Net 2014 Connect() 相关文章合集

微软在11月中旬的Connect()研讨会中公布了一系列 2015年的发展规划,今天在MSDN Blog上看到了一篇比较全的相关文章合集,这里转录一下,感兴趣的朋友可以看看. Announcements Opening up Visual Studio and .NET to Every Developer, Any Application: .NET Server Core open source and cross platform, Visual Studio Community 2013

Docker学习总结(6)——通过 Docker 化一个博客网站来开启我们的 Docker 之旅

通过 Docker 化一个博客网站来开启我们的 Docker 之旅 这篇文章包含 Docker 的基本概念,以及如何通过创建一个定制的 Dockerfile 来 Docker 化Dockerize一个应用. Docker 是一个过去两年来从某个 idea 中孕育而生的有趣技术,公司组织们用它在世界上每个角落来部署应用.在今天的文章中,我将讲述如何通过"Docker 化Dockerize"一个现有的应用,来开始我们的 Docker 之旅.这里提到的应用指的就是这个博客! 什么是 Dock

iOS Development: Proper Use of initWithNibName:bundle: Affects UITableViewController

Address:http://www.outofcore.com/2011/07/ios-development-proper-use-of-initwithnibnamebundle-affects-uitableviewcontroller/ I think this post will be useful to someone new to the iOS development. One of the most important and commonly used classes in