码迷,mamicode.com
首页 >  
搜索关键字:show all    ( 41857个结果
ROP
You get the idea right! We are going to enumerate all the ROP-Gadgets and then chain them together to craft our API call which will in turn disable DE...
分类:其他好文   时间:2014-07-16 21:56:06    阅读次数:221
mysql操作SQL语句
二、数据库操作SQL语句1、显示服务器上当前存在什么数据库SHOW DATABASES;2、创建名称为rewin的数据库CREATE DATABASE rewin;3、删除名称为rewin的数据库DROP DATABASE rewin;4、选择rewin数据库USE rewin;三、表操作SQL语句...
分类:数据库   时间:2014-07-16 21:09:40    阅读次数:273
【leetcode刷提笔记】Permutations
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他好文   时间:2014-07-16 20:58:41    阅读次数:173
【leetcode刷题笔记】Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephon...
分类:其他好文   时间:2014-07-16 20:50:06    阅读次数:137
logger
log4j日志配置关键字:apachelog4j1、配置根Logger:log4j.rootLogger=[level],appenderName,appenderName2level:日志的级别,指定这条日志信息的重要性。分为ALL<DEBUG<INFO<WARN一般常用的为DEBUG,INFO,...
分类:其他好文   时间:2014-07-16 20:49:50    阅读次数:235
(1+2+3-1-2)*1*2/1/2=?李冬强
主要代码//// ViewController.m// Cal-0710//// Created by apple on 14-7-10.// Copyright (c) 2014年 戴维营教育. All rights reserved.//#import "ViewController.h"@in...
分类:其他好文   时间:2014-07-16 20:42:40    阅读次数:193
十六、mysql 分区之 简单sql优化1
1.使用 show session status like '%Com_%'; 可以查看当前连接的各个sql的执行频率 show global status like '%Com_%'; 可以查看从上次mysql服务器启动到目前为止sql的执行频率2.explain select * f...
分类:数据库   时间:2014-07-16 20:41:50    阅读次数:324
简单计算器的设计
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *show;@end@implementation ViewController - (voi...
分类:其他好文   时间:2014-07-16 20:41:43    阅读次数:186
CTCI 3.5
Implement a MyQueue class which implements a queue using two stacks./*Use two stacks, when enqueue, first pop all the elements in stack2 on stack1, th...
分类:其他好文   时间:2014-07-16 20:39:50    阅读次数:234
一个垃圾计算器
//// ViewController.m// calculator//// Created by apple on 14-7-10.// Copyright (c) 2014年 apple. All rights reserved.//#import "ViewController.h"#impo...
分类:其他好文   时间:2014-07-16 20:32:28    阅读次数:211
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!