• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 








每日三省吾身
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 5 6 7 ··· 22 下一页

2013年8月28日

js好文章
摘要: http://dmitrysoshnikov.com/ecmascript/javascript-the-core/ 阅读全文
posted @ 2013-08-28 16:49 渔樵耕读2017 阅读(122) 评论(0) 推荐(0)
 

2013年8月17日

memcached
摘要: 1. 安装: yum install memcached 2. 启动: service memcached start 3. 开启11211端口4. 官网:http://memcached.org/5. 中文基础教程、协议:http://www.ccvita.com/259.html问题:socket即时通讯为啥没有做分包、粘包处理? 阅读全文
posted @ 2013-08-17 21:32 渔樵耕读2017 阅读(202) 评论(0) 推荐(0)
 

2013年8月8日

CKEditor
摘要: http://ckeditor.comhttp://peterkeating.co.uk/using-ckeditor-with-razor-for-net-mvc3/ 阅读全文
posted @ 2013-08-08 22:58 渔樵耕读2017 阅读(220) 评论(0) 推荐(0)
 

2013年8月6日

centos6.3 配置防火墙,开启80端口、3306端口
摘要: vi /etc/sysconfig/iptables -A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT(允许80端口通过防火墙) -A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT(允许3306端口通过防火墙) 特别提示:很多网友把这两条规则添加到防火墙配置的最后一行,导致防火墙启动失败,正确的应该是添加到默认的22端口这条规则的下面 添加好之后防火墙规则如下所示: ###################################### 阅读全文
posted @ 2013-08-06 16:59 渔樵耕读2017 阅读(1228) 评论(1) 推荐(0)
 

2013年7月13日

Unable to run man pages on Centos 6
摘要: I just installed CentOS 6 with minimalinstall. When i tried to read the linux manual pages using man command, it returned following error message. Howto installman command ?[root@LMK-LIN-03 ~]# manbash: man: command not foundWhat wrong with Centos? Normally Centos come with man page, how come latest 阅读全文
posted @ 2013-07-13 00:02 渔樵耕读2017 阅读(349) 评论(0) 推荐(0)
 

2013年7月11日

1. 信息系统基础知识
摘要: 1. 4个阶段: EDP (电子数据处理) --> TPS (事务处理系统) --> MIS --> DSS2. 类型: 按数据环境分:数据文件、应用数据库、主题数据库、信息检索数据库 按应用层次分:战略级信息系统、战术级信息系统、操作级信息系统、事务级信息系统3. 生命周期: 规划阶段 开发阶段(总体规划、系统分析、系统设计、系统设计、系统验证) 系统运行与维护 系统更新阶段4. 信息系统建设原则: 高层管理人员介入原则 用户参与开发原则 自顶向下规划原则 工程化原则 其他原则(创新性、整体性、发展性、经济性)5. 信息系统规划方法 ?6. 信息系统开发方法 ? 阅读全文
posted @ 2013-07-11 22:27 渔樵耕读2017 阅读(215) 评论(0) 推荐(0)
 

2013年7月4日

2. 软件工程
摘要: 1. 软件工程开发模型: 1)瀑布模型: 需求分析 -> 软件设计 -> 开发 -> 测试 问题所在:需求分析阶段! 2)原型模型: 3)迭代:(没搞明白迭代和原型间的区别于联系) 4)螺旋:包含多中原型,具体也没听明白 5)Rup或Up,Rational统一过程: 重量级! 6)敏捷: 轻量级(轻文档,其他均为重文档?),适用于小团队、不清晰的需求。 阅读全文
posted @ 2013-07-04 21:19 渔樵耕读2017 阅读(179) 评论(0) 推荐(0)
 

2013年6月30日

CommonJs
摘要: 关于CommonJs,http://raychase.iteye.com/blog/1463617,http://arstechnica.com/business/2009/12/commonjs-effort-sets-javascript-on-path-for-world-domination/官网,http://wiki.commonjs.org/wiki/CommonJS 阅读全文
posted @ 2013-06-30 23:35 渔樵耕读2017 阅读(200) 评论(0) 推荐(0)
 
软考资料
摘要: 报名地址: https://www.bjrbj.gov.cn/uamsso/login?service=http://www.bjrbj.gov.cn/kaowu/login 阅读全文
posted @ 2013-06-30 10:21 渔樵耕读2017 阅读(272) 评论(0) 推荐(0)
 

2013年6月24日

Node.js资料
摘要: http://developer.51cto.com/art/201109/290443.htmhttp://www.nodebeginner.org/index-zh-cn.htmlnode 各种modules大全:https://github.com/joyent/node/wiki/modules 阅读全文
posted @ 2013-06-24 22:40 渔樵耕读2017 阅读(149) 评论(0) 推荐(0)
 
上一页 1 2 3 4 5 6 7 ··· 22 下一页