码迷,mamicode.com
首页 > 2015年01月26日 > 全部分享
initramfs对应的init脚本文件,解压后可见
#!/bin/sh [ -d /dev ] || mkdir -m 0755 /dev [ -d /root ] || mkdir -m 0700 /root [ -d /sys ] || mkdir /sys [ -d /proc ] || mkdir /proc [ -d /tmp ] || mkdir /tmp mkdir -p /var/lock mount -t sys...
分类:其他好文   时间:2015-01-26 22:49:01    阅读次数:450
玩转SSH--Hibernate(三)---手动修改数据库,前台查询信息不同步更新问题解决方法
在用hibernate时遇到一个挺纠结的问题,就是我在手动修改数据库的信息后,前台页面查询到的信息还是之前的结果,一开始以为是缓存的问题,经过多次修改和在网上查询资料,最终发现可能是hibernate自身的连接池存在问题,通过下面方法配置C3P0连接池就可以解决这个问题。 首先在hibernate.cfg.xml中加入下面代码: org.hibernate.conn...
分类:数据库   时间:2015-01-26 22:49:29    阅读次数:1041
14.ios之数据存取
iOS应用数据存储的常用方式 lXML属性列表(plist)归档 lPreference(偏好设置) lNSKeyedArchiver归档(NSCoding) lSQLite3 lCoreData 应用沙盒 l每个iOS应用都有自己的应用沙盒(应用沙盒就是文件系统目录),与其他文件系统隔离。应用必须待在自己的沙盒里,其他应用不能访问该沙盒 l应用沙盒的文...
分类:移动开发   时间:2015-01-26 22:49:46    阅读次数:242
POJ 2774 Long Long Message && URAL 1517. Freedom of Choice(求最长重复子序列)
两个题目意思差不多,都是让求最长公共子串,只不过poj那个让输出长度,而URAL那个让输出一个任意的最长的子串。 解体思路: Long Long Message Time Limit: 4000MS   Memory Limit: 131072K Total Submissions: 22313   Accep...
分类:其他好文   时间:2015-01-26 22:49:45    阅读次数:369
python学习:继承
一:先来看一段小程序 {CSDN:CODE:589806} 二:执行结果: new person LiuYanliang 18 三:总结 (1)python也是面向对象的,继承也是python的一个特性 (2)python的继承,只需要在创建类的时候,传入需要继承的类class teacher(person): (3)继承父类之后,就可以使...
分类:编程语言   时间:2015-01-26 22:50:14    阅读次数:227
HDU2589 正方形划分 【DFS】
正方形划分 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 179    Accepted Submission(s): 87 Problem Description 一个边长为L的正方形可以分成 L*L个小正方形...
分类:其他好文   时间:2015-01-26 22:49:04    阅读次数:182
欧拉计划(python) problem 5
Smallest multiple Problem 5 2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. What is the smallest positive number that is evenly di...
分类:编程语言   时间:2015-01-26 22:49:54    阅读次数:289
选择排序(C语言实现)
/* 选择排序:就是选一个最小(或最大)排在左边或者右边 */ //头文件 sort.h #include void Print(int* arr,int len) { int i; for(i=0;i<len;i++) { printf("%d ",arr[i]); } printf("\n"); } void Swap(int* a,int* b) { *a=...
分类:编程语言   时间:2015-01-26 22:46:46    阅读次数:150
NSArray - 数组
// // main.m // OC04-task-07 // // Created by Xin the Great on 15-1-24. // Copyright (c) 2015年 Xin the Great. All rights reserved. // #import #import "NSArray+Log.h" #import "Person.h" int main...
分类:编程语言   时间:2015-01-26 22:48:04    阅读次数:131
字符串操作函数实现
本文实现的基本字符串的操作函数:memcpy,memmove,strcpy,strncpy,memcmp,strcmp,strncmp,memchr,memset,strlen...
分类:其他好文   时间:2015-01-26 22:47:43    阅读次数:232
NSMutableArray--可变数组
// // main.m // OC04-task-08 // // Created by Xin the Great on 15-1-24. // Copyright (c) 2015年 Xin the Great. All rights reserved. // #import #import "Person.h" int main(int argc, const char * ...
分类:编程语言   时间:2015-01-26 22:46:04    阅读次数:197
init文件调试结果
grub.conf 里面的quiet去掉,加上debug 可以看出调用了/ /script/local-premount script/local-boottom script/init-boottom...
分类:其他好文   时间:2015-01-26 22:47:50    阅读次数:176
NSDictionary--字典
// // main.m // OC05-task-01 // // Created by Xin the Great on 15-1-25. // Copyright (c) 2015年 Xin the Great. All rights reserved. // #import #import "NSArray+Log.h" int main(int argc, const ch...
分类:其他好文   时间:2015-01-26 22:48:11    阅读次数:194
欧拉计划(python) problem 7
10001st prime Problem 7 By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. What is the 10 001st prime number? python code : import ma...
分类:编程语言   时间:2015-01-26 22:47:11    阅读次数:208
NSMutableDictionary--可变字典
// // main.m // OC05-task-02 // // Created by Xin the Great on 15-1-25. // Copyright (c) 2015年 Xin the Great. All rights reserved. // #import int main(int argc, const char * argv[]) { @auto...
分类:其他好文   时间:2015-01-26 22:45:22    阅读次数:206
身为码农,为12306说两句公道话
C语言入门 模式的秘密---责任链模式 Grunt-beginner前端自动化工具 洪大师带你解读Symfony2框架 原文出处: 西西河 - 代码狗   欢迎分享原创到伯乐头条 我曾在淘宝写过一段时间代码,2012年在一家百强民企做电商副总,当时在极为艰苦的条件下带队开发了一个B2C网站,走支付宝和银联支付通道,年营业额千万级(当然实在太少了,我只是说这个网...
分类:其他好文   时间:2015-01-26 22:46:17    阅读次数:381
POJ1364 HDU1531 King【SPFA】【差分约束】
题目大意:一个国王通过一个序列来做决定,他有几段段连续子序列的和的条件,知道 各段子序列的和是大于还有小于某个数(这个数已知)。问:是否能找到这样的序列。 转换一下,就是N个数组成一个序列,已知M段几个连续的数组成的子序列构成的不等 式,求这几个不等式构成的不等式组是否有解。 例如:序列{A1,A2,A3,A4,A5,…,An},有M个不等式,比如说: Ai + A(i+1) + A(i+2) + A(i+3) + A(i+4) + … + A(i+t) < Ki 或者是 Ai + A(i+1) + A(i...
分类:其他好文   时间:2015-01-26 22:45:21    阅读次数:422
1906条   上一页 1 2 3 4 5 6 7 8 ... 113 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!