首页 > 2014年06月27日 > 全部分享
raspberry pi系统安装
1.格式化SD卡,用SDFormatter2.解压下载的操作系统3.复制操作系统到SD卡(要放在根目录,把最外面的文件夹路径去掉)4.把SD卡插入raspberry pi,接上电源5.在启动界面选择要安装的系统,然后点击install6.10分钟左右的安装等待时间startx:命令行进入界面改键盘h...
分类:Web开发   时间:2014-06-27 12:23:41    收藏:0  评论:0  赞:0  阅读:403
2432: [Noi2011]兔农 - BZOJ
Description农夫栋栋近年收入不景气,正在他发愁如何能多赚点钱时,他听到隔壁的小朋友在讨论兔子繁殖的问题。问题是这样的:第一个月初有一对刚出生的小兔子,经过两个月长大后,这对兔子从第三个月开始,每个月初生一对小兔子。新出生的小兔子生长两个月后又能每个月生出一对小兔子。问第n个月有多少只兔子?...
分类:其他   时间:2014-06-27 12:22:57    收藏:0  评论:0  赞:0  阅读:366
mysql常用的hint
--mysql常用的hint-------------------2014/06/26对于经常使用oracle的朋友可能知道,oracle的hint功能种类很多,对于优化sql语句提供了很多方法。同样,在mysql里,也有类似的hint功能。下面介绍一些常用的。强制索引FORCEINDEXSELEC...
分类:数据库技术   时间:2014-06-27 12:24:23    收藏:0  评论:0  赞:0  阅读:405
oracle
第一章用户管理//2014年4月17号oracle有40多种权限。connect是权限问题,如省长,权限系统权限:描述的用户对数据库的访问的权限对象权限(数据对象(用户的表,视图,存储过程,触发器)权限):用户对其他用户的数据对象操作的权限。createression角色:事先定义一些角色,如con...
分类:数据库技术   时间:2014-06-27 12:25:06    收藏:0  评论:0  赞:0  阅读:445
[leetcode] Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head.
分类:其他   时间:2014-06-27 12:26:30    收藏:0  评论:0  赞:0  阅读:316
[leetcode] Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
分类:其他   时间:2014-06-27 12:25:52    收藏:0  评论:0  赞:0  阅读:323
2434: [Noi2011]阿狸的打字机 - BZOJ
Description阿狸喜欢收藏各种稀奇古怪的东西,最近他淘到一台老式的打字机。打字机上只有28个按键,分别印有26个小写英文字母和'B'、'P'两个字母。经阿狸研究发现,这个打字机是这样工作的:l 输入小写字母,打字机的一个凹槽中会加入这个字母(这个字母加在凹槽的最后)。l 按一下印有'B'的按...
分类:其他   时间:2014-06-27 12:27:09    收藏:0  评论:0  赞:0  阅读:382
《ruby编程语言》笔记2 对象
ruby是一门非常纯粹的面向对象的语言:所有值都是对象,而且没有基本类型(primitive type)和对象类型的区别,这一点不同于其他语言。在Ruby中,所有对象都继承一个Object类,而且共享那些定义于此类中的方法。对象引用object references当我们在ruby中使用对象时,其实...
分类:编程语言   时间:2014-06-27 12:29:00    收藏:0  评论:0  赞:0  阅读:445
[leetcode] Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.
分类:其他   时间:2014-06-27 12:28:22    收藏:0  评论:0  赞:0  阅读:326
[leetcode] 3Sum
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of ...
分类:其他   时间:2014-06-27 12:27:46    收藏:0  评论:0  赞:0  阅读:287
[leetcode] Merge k Sorted Lists
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.
分类:其他   时间:2014-06-27 12:29:38    收藏:0  评论:0  赞:0  阅读:428
[leetcode] Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
分类:其他   时间:2014-06-27 12:30:21    收藏:0  评论:0  赞:0  阅读:299
[leetcode] Search Insert Position
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他   时间:2014-06-27 12:30:59    收藏:0  评论:0  赞:0  阅读:248
javaweb--HTTP状态码
HTTP状态码(HTTP Status Code)一些常见的状态码为:200- 服务器成功返回网页404- 请求的网页不存在503- 服务不可用所有状态解释:点击查看1xx(临时响应)表示临时响应并需要请求者继续执行操作的状态代码。代码 说明 100 (继续) 请求者应当继续提出请求。 服务...
分类:编程语言   时间:2014-06-27 12:31:40    收藏:0  评论:0  赞:0  阅读:381
rgba兼容IE系列
在容器里面如果用到opacity或者filter:opacity里面的内容也会被滤镜化如果不想里面的内容也被滤镜化我们可以用rgba来处理或者用透明的背景图片。兼容ie的rgba的写法background: rgba(0,0,0,0.75);-ms-filter:progid:DXImageTran...
分类:其他   时间:2014-06-27 12:33:01    收藏:0  评论:0  赞:0  阅读:416
Jmeter 继续性能测试
最近应公司要求,继续对公司的某一个服务器进行性能测试主要测试步骤及测试数据如下:1. 突然并发测试:使用N*10的请求量在1秒钟内并发到服务器,查看服务器响应速度的方式来测试。其中N代表线程,即模拟了N个用户,10代表重复次数测试完这组数据之后分析,突然发现这性能差的真有点离谱,没办法,只能硬着头皮...
分类:其他   时间:2014-06-27 12:32:24    收藏:0  评论:0  赞:0  阅读:1222
uboot中gd的定义和使用
近期在做uboot中nand启动相关的工作,遇到一个问题一直纠结着。如今最终明确了这个问题,想想还有好多兄弟在某个黑暗的角落里或者某台电脑前纠结着呢,所以赶紧写下来以供查阅。uboot version 2014.4/* Architecture-specific global data */stru...
分类:其他   时间:2014-06-27 12:34:54    收藏:0  评论:0  赞:0  阅读:404
双倍边距bug
最新上线
分类:其他   时间:2014-06-27 12:34:13    收藏:0  评论:0  赞:0  阅读:289
[leetcode] Roman to Integer
Given a roman numeral, convert it to an integer.
分类:其他   时间:2014-06-27 12:33:40    收藏:0  评论:0  赞:0  阅读:285
JS正则表达式验证邮箱
JavaScript表单验证email邮箱,判断一个输入量是否为邮箱email,通过正则表达式实现。//检查email邮箱JavaScript表单验证email邮箱
分类:Web开发   时间:2014-06-27 12:35:31    收藏:0  评论:0  赞:0  阅读:455
1543条   上一页 1 ... 32 33 34 35 36 ... 78 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!