自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

我在这里

我在这里欢笑,我在这里哭泣;我在这里活着,也在这里死去。

  • 博客(4)
  • 收藏
  • 关注

原创 如何避免console引起javascript的兼容问题

//console经常在坑爹的IE下面报错,解决的办法如下:(function() { var noop = function noop() {}; var methods = [ 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 'exception', 'group',

2015-01-07 11:10:16 261

转载 安装node.js,npm,mongodb

安装node.js npm: sudo apt-get install python-software-properties python g++ make sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get install nodejs 安装mongodb

2014-04-14 16:33:05 1559

原创 node.js 的crypto模块用来加密

var crypto = require('crypto'); function encrypt(str,secret) { var cipher = crypto.createCipher('aes192', secret); var enc = cipher.update(str,'utf8','hex'); enc += cipher.final('hex');

2013-10-30 15:01:49 505

转载 urllib2

http://adchoices.sinaapp.com/topic/36/urllib2-%E8%AF%A6%E7%BB%86%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95

2013-05-05 15:44:49 287

空空如也

空空如也

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

TA关注的人

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