摘要: 今天開始做到最基本的功能发送和接收消息、获取本地历史数据。 先上到眼下为止的效果图: 首先是要在XMPPFramework.h中引入数据存储模块: //聊天记录模块的导入 #import "XMPPMessageArchiving.h" #import "XMPPMessageArchivingCo 阅读全文
posted @ 2017-06-18 20:45 yutingliuyl 阅读(322) 评论(0) 推荐(0)
摘要: 【POJ 2482】 Stars in Your Window(线段树+离散化+扫描线) Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11294 Accepted: 3091 Description Fleeting time 阅读全文
posted @ 2017-06-18 20:13 yutingliuyl 阅读(184) 评论(0) 推荐(0)
摘要: #pragma once #include <boost/noncopyable.hpp> #include <boost/scoped_ptr.hpp> #include <boost/ptr_container/ptr_vector.hpp> #include <boost/thread.hpp 阅读全文
posted @ 2017-06-18 18:59 yutingliuyl 阅读(196) 评论(0) 推荐(0)
摘要: 1.描写叙述 “我”在 2004 年的时候带了一个项目,做一个人力资源管理,该项目是我们总公司发起的项目,公司一共同拥有 700 多号人,包含子公司,这个项目还是比較简单的,分为三大模块:人员信息管理,薪酬管理,职位管理,当中人员管理这块就用到了适配器模式,是怎么回事呢?当时开发时明白的指明:人员信 阅读全文
posted @ 2017-06-18 18:22 yutingliuyl 阅读(832) 评论(0) 推荐(0)
摘要: 在Resin配置參数实现JConsole远程监控JVM 在Resin中配置中配置下列參数,就能够是实现了! <jvm-arg>-Dcom.sun.management.jmxremote</jvm-arg> <jvm-arg>-Dcom.sun.management.jmxremote.port=9 阅读全文
posted @ 2017-06-18 17:29 yutingliuyl 阅读(257) 评论(0) 推荐(0)
摘要: Intellj IDEA 安装配置 使用IntelliJ IDEA 13搭建Android集成开发环境(图文教程) Android设计指南站点 图标 App Icon Template免费的PhotoShop模板,方便预览图标效果 http://appicontemplate.com/ Gemico 阅读全文
posted @ 2017-06-18 17:16 yutingliuyl 阅读(166) 评论(0) 推荐(0)
摘要:  Reuse Is About People and Education, Not Just Architecture Jeremy Meyer you MigHT AdopT THE AppRoACH that a framework that is well designed, or an a 阅读全文
posted @ 2017-06-18 16:23 yutingliuyl 阅读(169) 评论(0) 推荐(0)
摘要: /** * @author default7<default7@zbphp.com> * @description 演示PHP弹出下载的原理 * * @param $file_name */ function downFile($file_name) { $file_path = "/tmp/" . 阅读全文
posted @ 2017-06-18 15:28 yutingliuyl 阅读(330) 评论(0) 推荐(0)
摘要: 二、LB LoadBalance就是把负载均衡分配到集群的各个节点,从而提高总体的吞吐能力。Oracle 10g RAC提供了两种手段来实现负载,其一是通过Connection Balancing。依照某种算法把用户分配到不同的节点。其二是通过service。在应用层面上进行分散。 Connecti 阅读全文
posted @ 2017-06-18 13:49 yutingliuyl 阅读(8331) 评论(0) 推荐(0)
摘要: 转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents 题目链接: POJ:http://poj.org/problem?id=2243 HDU: http://acm.hdu.edu.cn/showproblem.php?pid=1372 阅读全文
posted @ 2017-06-18 13:09 yutingliuyl 阅读(178) 评论(0) 推荐(0)
摘要: 1.6 INSERT语句正在更新内容,请稍后 阅读全文
posted @ 2017-06-18 11:33 yutingliuyl 阅读(153) 评论(0) 推荐(0)
摘要: 新项目開始,决定转战as战场,(是应为听说了太多关于as的夸赞我才来的),期间各种不爽不适应历历在目啊。闲话少说,项目迁移開始 1、Eclipse迁出 当然直接从Eclipse迁出是有条件的,ADT必须是22以后的版本号?记不清了,总之adt版本号不能太老 2、导出gradle 网上各种迁出方式。。 阅读全文
posted @ 2017-06-18 10:24 yutingliuyl 阅读(171) 评论(0) 推荐(0)
摘要: Oulipo Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 31293 Accepted: 12643 Description The French author Georges Perec (1936–1982) once w 阅读全文
posted @ 2017-06-18 09:39 yutingliuyl 阅读(155) 评论(0) 推荐(0)
摘要: whereis命令仅仅能用于程序名的搜索(程序安装在哪?)。并且仅仅搜索二进制文件(參数-b)、man说明文件(參数-m)和源码文件(參数-s)。假设省略參数,则返回全部信息。 和find相比。whereis查找的速度非常快。这是由于linux系统会将系统内的全部文件都记录在一个数据库文件里。当使用 阅读全文
posted @ 2017-06-18 09:08 yutingliuyl 阅读(201) 评论(0) 推荐(0)
摘要: 简单的说我们能够把23种设计模式能够归为三大类,各自是创建型模式、结构型模式和行为型模式。 今天,首先看一下创建型模式。创建型设计模式包含5种:单例模式(Singleton)、工厂方法模式(Factory Method)、抽象工厂模式(Abstract Factory)、建造者模式(Builder) 阅读全文
posted @ 2017-06-18 08:22 yutingliuyl 阅读(189) 评论(0) 推荐(0)