自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

izengshuai's blog

关注Web,移动,脚本开发

  • 博客(0)
  • 资源 (10)
  • 收藏
  • 关注

空空如也

CocosEditor-1.5.1-IDEA13.1

CocosEditor: IDE to create multi platform Cocos2d-x games using Javascript or Lua Script. With Cocos2d-x Editor you can: Develop Cocos2d-x games on Windows, Mac OS Scene design you can add labels,label menu items, image label items, sprite from image files and from texture atlas files, create animations from texture atlas. New layers to the scene can be added. The property grid allows to change any property to the nodes or layers. Add folders, images, textures, lua files and sounds to the project. Create a Cocos2d-x JavaScript game for both native and web (Lua game for native only). Develop games with call tip hints and autocompletion of cocos2d-x JavaScript API. A texture packer is included in the solution, can create a texture atlas or edit an existing one. Debug JavaScript codes easily(3.0Alpha1+). The simulator supports multi device sizes and zooming. Publish your game for Android ,IOS , web and desktop with only one click. Support IntelliJ IDEA (Ultimate Edition | Community Edition),Android Studio.

2014-05-23

cocos2d-html5-v2.2.3.zip

cocos2d-html5最新开发包,支持js快速开发,适合想转型做游戏的同学。

2014-05-23

Node.js学习笔记.md

date: 2014-03-03 layout: post title: Node.js 学习笔记 description:Node.js learning notes categories: - nodejs - javascript tags: - nodejs

2014-03-03

gor未编译代码

gor -- Golang 编写的静态博客引擎 gor是使用 Go 实现的类 Ruhoh 静态博客引擎(Ruhoh like),基本兼容 ruhoh 1.x 规范。 相当于与 ruhoh 的官方实现( ruby 实现),有以下优点: 速度完胜 -- 编译 wendal.net 近200篇博客,仅需要1秒 安装简单 -- 得益于 golang 的特性,编译后仅一个可运行程序,无依赖 Installation 安装 To install: go get -u github.com/wendal/gor go install github.com/wendal/gor/gor

2014-02-27

gor未编译文件

gor -- A static websites and blog generator engine written in Go

2014-02-27

go语言写的静态网站

静态页面博客的好处: 性能是最好的,很合适用Raspberry Pi来做服务器,节省资源; 文章可以用Markdown格式来编写,采用Github来做版本控制,我的Blog仓库在 http://github.com/hugozhu/blog ,数据安全很好,误删除也不担心了; 很容易找到托管环境,方便迁移; 用Gor在Pi上生成速度很快;再用Nginx提供Web服务,可以直接在Pi上写Blog; 大繁至简

2014-02-27

静态网页生成引擎Gor

Golang编写的静态博客引擎 gor 是使用golang实现的类Ruhoh静态博客引擎 Ruhoh like 基本兼容ruhoh 1 x规范 相当于与ruhoh的官方实现 ruby实现 有以下优点: 速度完胜 编译wendal net近200篇博客 仅需要1秒 安装简单 得益于golang的特性 编译后仅一个可运行程序 无依赖">Golang编写的静态博客引擎 gor 是使用golang实现的类Ruhoh静态博客引擎 Ruhoh like 基本兼容ruhoh 1 x规范 相当于与ruhoh的官方实现 ruby实现 有以下优点: 速度完胜 编译wendal net近200篇博客 仅需要1秒 安装简单 得益于golang的特性 编 [更多]

2014-02-27

apache下项目POI用于读取Excel

用于操作excel表,导入导出数据。 demo: package poi; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Iterator; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; public class ReadExcel001 { public static void main(String[] args) { readXml("D:/test.xlsx"); System.out.println("-------------"); readXml("d:/test2.xls"); } public static void readXml(String fileName){ boolean isE2007 = false; //判断是否是excel2007格式 if(fileName.endsWith("xlsx")) isE2007 = true; try { InputStream input = new FileInputStream(fileName); //建立输入流 Workbook wb = null; //根据文件格式(2003或者2007)来初始化 if(isE2007) wb = new XSSFWorkbook(input); else wb = new HSSFWorkbook(input); Sheet sheet = wb.getSheetAt(0); //获得第一个表单 Iterator<Row> rows = sheet.rowIterator(); //获得第一个表单的迭代器 while (rows.hasNext()) { Row row = rows.next(); //获得行数据 System.out.println("Row #" + row.getRowNum()); //获得行号从0开始 Iterator<Cell> cells = row.cellIterator(); //获得第一行的迭代器 while (cells.hasNext()) { Cell cell = cells.next(); System.out.println("Cell #" + cell.getColumnIndex()); switch (cell.getCellType()) { //根据cell中的类型来输出数据 case HSSFCell.CELL_TYPE_NUMERIC: System.out.println(cell.getNumericCellValue()); break; case HSSFCell.CELL_TYPE_STRING: System.out.println(cell.getStringCellValue()); break; case HSSFCell.CELL_TYPE_BOOLEAN: System.out.println(cell.getBooleanCellValue()); break; case HSSFCell.CELL_TYPE_FORMULA: System.out.println(cell.getCellFormula()); break; default: System.out.println("unsuported sell type"); break; } } } } catch (IOException ex) { ex.printStackTrace(); } } }

2014-01-14

ext-4.0.7-gpl.zip

ext-4.0.7-gpl.zip 官网下载

2013-12-07

spket插件plugin版spket-1.6.23

spket插件plugin版spket-1.6.23

2013-12-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除