摘要: 从2007年6月8日来到深圳,增加sonoscape,到2014年6月7日。已整7年。假设把“工作”比作“读书”,工作也有小学、中学、大学,仅仅只是评价方式,从考试分数/书本知识,转变成了经济收入/产品成果。7年相当于“小学”阶段毕业(包含学前班)。在公司的平台下,小学阶段自己也有非常多成长和收获。 阅读全文
posted @ 2017-06-12 21:01 cxchanpin 阅读(162) 评论(0) 推荐(0)
摘要: JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同一时候也易于机器解析和生成。 它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 阅读全文
posted @ 2017-06-12 20:10 cxchanpin 阅读(1095) 评论(0) 推荐(0)
摘要: 一。使用Servlet来处理请求响应 当client提交数据之后。接着发送请求,请求被封装成对象,server接收到请求,依据请求的URL。来推断将请求对象交由哪个Servlet处理。在servlet中,我们能够依据请求是从哪里发出的。来推断我们详细运行哪段处理表现层业务逻辑的if-else.或者。 阅读全文
posted @ 2017-06-12 18:41 cxchanpin 阅读(311) 评论(0) 推荐(0)
摘要: #!/bin/bash ######the system first start configuretion #####for install ####copy right by donglei############## #1、配置sysctl mv /etc/sysctl.conf /etc/s 阅读全文
posted @ 2017-06-12 17:37 cxchanpin 阅读(520) 评论(0) 推荐(0)
摘要: Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Submit Status Description Adapted from Wikipedia, the free encyclopedia The humid 阅读全文
posted @ 2017-06-12 16:35 cxchanpin 阅读(323) 评论(0) 推荐(0)
摘要: 题目大意: 思路:基尔霍夫矩阵求生成树个数,不会。 可是能够暴力打表。(我才不会说我调试force调试了20分钟。。。 CODE(force.cc): #include <cstdio> #include <cstring> #include <iostream> #include <algorit 阅读全文
posted @ 2017-06-12 15:49 cxchanpin 阅读(285) 评论(0) 推荐(0)
摘要: 1 在程序最后加 system("PAUSE"); 要注意包括头文件#include"stdlib.h" //system须要调用这个 2 程序末尾加函数getchar(); getchar()是等待用户输入字符的函数,假设程序没有getchar()函数。那么程序执行完就自己主动结束了,末尾增加了g 阅读全文
posted @ 2017-06-12 15:02 cxchanpin 阅读(970) 评论(0) 推荐(0)
摘要: ***************************************转载请注明出处:http://blog.csdn.net/lttree******************************************** 啊哈~,做完这个開始准备做一些真正的小游戏耍一耍咯~ 打地基, 阅读全文
posted @ 2017-06-12 14:06 cxchanpin 阅读(236) 评论(0) 推荐(0)
摘要: 在model中建立这种模型,在当中写入获取枚举类的方法 请勿盗版,转载请加上出处http://blog.csdn.net/yanlintao1 class Student extends Zend_Db_Table{ protected $_name ='student'; protected $_ 阅读全文
posted @ 2017-06-12 12:49 cxchanpin 阅读(391) 评论(0) 推荐(0)
摘要: 1. OpenGL 渲染管线OpenGL渲染管线分为两大部分,模型观測变换(ModelView Transformation)和投影变换(Projection Transformation)。做个比喻,计算机图形开发就像我们照相一样。目的就是把真实的场景在一张照相纸上表现出来。那么观測变换的过程就像 阅读全文
posted @ 2017-06-12 12:09 cxchanpin 阅读(568) 评论(0) 推荐(0)
摘要: 题目例如以下: On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appe 阅读全文
posted @ 2017-06-12 11:24 cxchanpin 阅读(282) 评论(0) 推荐(0)
摘要: Flex 生成AsDoc用的是SDK自带的asdoc.exe工具 生成AsDoc文档的方式有两种:ant或者FlashBuilder 外部配置工具 方法一:外部配置工具 新增一个外部配置工具。过程例如以下: 配置完毕后,直接单击执行button就自己主动生成AsDoc文档了。(注:这样的方式生成的A 阅读全文
posted @ 2017-06-12 10:00 cxchanpin 阅读(213) 评论(0) 推荐(0)
摘要: 将字符串abc进行全排列 #include "stdafx.h" #include <vector> #include <iostream> using namespace std; void cSwap(char* str,int m,int n) { char ch; ch=str[m]; st 阅读全文
posted @ 2017-06-12 09:29 cxchanpin 阅读(155) 评论(0) 推荐(0)
摘要: A. Flipping Game time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Iahub got bored, so he i 阅读全文
posted @ 2017-06-12 08:30 cxchanpin 阅读(173) 评论(0) 推荐(0)
摘要: 闲着没事。就来看看源代码,看看源代码的各种原理,会用仅仅是简单的,知道为什么才是最牛逼的。 Handler源代码分析那,从使用的步骤来边用边分析: 1.创建一个Handler对象:new Handler(getMainLooper(),this); 这是我经常使用的一个方式。getMainLoope 阅读全文
posted @ 2017-06-12 08:27 cxchanpin 阅读(185) 评论(0) 推荐(0)