http://acm.hdu.edu.cn/showproblem.php?pid=2612 ...
分类:
其他好文 时间:
2016-07-13 20:12:20
阅读次数:
131
步骤:1.使用single view application 创建一个新的项目 2.在.h文件中遵守<UIGestureRecognizerDelegate>协议,创建一个UIimageview实例对象并进行相连,创建一个UIDynamicAnimator实例对象 3.在.m文件中,在- (void ...
分类:
移动开发 时间:
2016-07-13 20:13:07
阅读次数:
237
// ffmpegDemo1.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include <string>#include <windows.h>#include <processthreadsapi.h>#define __STDC_CONSTANT_MA ...
分类:
其他好文 时间:
2016-07-13 20:10:43
阅读次数:
243
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root-to-leaf path 1->2->3 whic ...
分类:
编程语言 时间:
2016-07-13 20:11:23
阅读次数:
190
【功能介绍】 在开发应用的时候,经常会遇到需要上传图片的功能,比如修改个人资料的头像。本文介绍的是基于ionic框架,在移动端上传图片的功能。 【功能流程】 (1)点击页面上的头像,弹出一个对话框,选择[拍照]或者[从相册选择]; (2)选取/拍摄照片; (3)上传照片; 【html核心代码】 【m ...
分类:
Web程序 时间:
2016-07-13 20:12:06
阅读次数:
262
前言:我只是在练习画 思维导图,提取一篇文章的重点 原文链接:http://news.cnblogs.com/n/549233/ ...
分类:
其他好文 时间:
2016-07-13 20:12:20
阅读次数:
88
很多术语都不像人话,特别是中文的,但是我也没得办法呀~摊手~ 慢慢积累吧。 application vs utility from 微软计算机词典 application n. A program designed to assist in the performance of a specific ...
分类:
其他好文 时间:
2016-07-13 20:10:03
阅读次数:
142
1、不加doctype导致低版本IE解析效果不一样2、id不能为数字,如<div id="1">是错误的3、文件编码与charset声明不一致 <style>#container{ width:800px; background:gray; } #header{ height:100px; back ...
分类:
Web程序 时间:
2016-07-13 20:11:59
阅读次数:
127
var myDate = new Date();myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表1月)myDate.getDa ...
分类:
Web程序 时间:
2016-07-13 20:09:00
阅读次数:
267
glTexGeni()函数为控制纹理坐标的生成。 代码如下,后面有截图,同样修改的部分位于双行星号内。 Thanks for Nehe's tutorials, this is his home. ...
分类:
移动开发 时间:
2016-07-13 20:07:59
阅读次数:
325
转载:http://www.linuxawk.com/jiaocheng/83.html 6. printf函数 打印输出时,可能需要指定字段间的空格数,从而把列排整齐。在print函数中使用制表符并不能保证得到想要的输出,因此,可以用printf函数来格式化特别的输出。 printf函数返回一个带 ...
分类:
系统相关 时间:
2016-07-13 20:08:09
阅读次数:
333
1.日期时间间隔操作 当前时间减去7分钟的时间 select sysdate,sysdate - interval '7' MINUTE from dual 当前时间减去7小时的时间 select sysdate - interval '7' hour from dual ...
分类:
数据库 时间:
2016-07-13 20:09:38
阅读次数:
173
我们要使用CollectionView里面的头视图需要先注册头视图 UICollectionReusableView或者 继承UICollectionReusableView的子类,kind类型为UICollectionElementKindSectionHeader,并且需要带一个标识符,我们定义 ...
分类:
其他好文 时间:
2016-07-13 20:07:48
阅读次数:
155
1. http://mvnrepository.com/artifact/org.codehaus.mojo.archetypes/webapp-javaee6/1.5 中有描述 2. 在创建Maven工程时添加Archetype的时候,点击 Add Archetype按钮 点击后进入如下页面,并在 ...
分类:
移动开发 时间:
2016-07-13 20:08:55
阅读次数:
1149
http://poj.org/problem?id=3468 ...
分类:
其他好文 时间:
2016-07-13 20:07:19
阅读次数:
142
Ctrl+1 快速修复Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt+↑ 当前行和上面一行交互位置(同上)Alt+← 前一个编辑的页面 ...
分类:
系统相关 时间:
2016-07-13 20:06:24
阅读次数:
298
八. 构建LFS系统 1. 准备虚拟内核文件系统 内核会挂载几个文件系统用于自己和用户空间程序交换信息。这些文件系统是虚拟的,并不占用实际磁盘空间,它们的内容会放在内存里。 mkdir -pv $LFS/{dev,proc,sys,run} mknod -m 600 $LFS/dev/console ...
分类:
系统相关 时间:
2016-07-13 20:08:06
阅读次数:
297