码迷,mamicode.com
首页 > 2015年09月21日 > 全部分享
linux支持的内存根文件系统
linux支持两种内存根文件系统:ramdisk和initramfs。----------------------------------------------------------------------------------------------------Document/early-...
分类:系统相关   时间:2015-09-21 01:16:31    阅读次数:241
一张图告诉你php的命名空间和自动加载
一张图告诉你php的命名空间,及如何自动加载PHP的命名空间,这一张图就足够了PHP命名空间和文件的自动加载简单代码,简单几行,就将核心告诉给你!四哥许坤原创教程,转载请注明出处!联系方式:kunx-edu@qq.comhttp://weibo.com/sigexukun
分类:Web程序   时间:2015-09-21 01:16:03    阅读次数:195
BZOJ4262 : Sum
最大值和最小值的问题是独立且相似的,考虑最大值:考虑离线,设ask(i,l,r)为以1到i为右端点时左端点在区间[l,r]内的区间最大值的和。从1到n枚举右端点,假设现在是i,那么可以通过单调栈求出最小的j使得[j,i]内a[i]是最大值。然后左端点在[j,i]区间内的所有区间最大值都应当变为a[i...
分类:其他好文   时间:2015-09-21 01:15:42    阅读次数:187
Bootstrap <第一篇>
一、使用Bootstrap要引用的文件   要使用Bootstrap,基本架构要引用如下文件: ????<link?href="bootstrap.min.css"?rel="stylesheet"?type="text/css"?/> ????<script?type="text/javascript"?s...
分类:其他好文   时间:2015-09-21 00:12:16    阅读次数:234
数据库设计三大范式
为了建立冗余较小、结构合理的数据库,设计数据库时必须遵循一定的规则。在关系型数据库中这种规则就称为范式。范式是符合某一种设计要求的总结。要想设计一个结构合理的关系型数据库,必须满足一定的范式。 ??...
分类:数据库   时间:2015-09-21 00:13:16    阅读次数:203
自制时间选择插件
效果图如图 下载地址:(演示地址) http://www.ramosy.com/zt/html/time_picker/index.html
分类:其他好文   时间:2015-09-21 00:12:33    阅读次数:126
老男孩mysql练习题自我学习
登陆数据库 root@bj-idc-testdb-001 ~]#mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.5.38 MySQL Community Server (GPL) by Remi Copyr...
分类:数据库   时间:2015-09-21 00:12:19    阅读次数:344
Caused by: java.lang.ClassNotFoundException: org.hibernate.engine.FilterDefinition
1、错误描述java.lang.NoClassDefFoundError: [Lorg/hibernate/engine/FilterDefinition; at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Class.privateGetDeclaredMethods(Class.java:2570) at...
分类:编程语言   时间:2015-09-21 00:12:43    阅读次数:201
Caused by: java.lang.ClassNotFoundException: org.hibernate.impl.SessionImpl
1、错误描述2015-09-20 23:02:58 [main] WARN org.springframework.context.support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt org.springframew...
分类:编程语言   时间:2015-09-21 00:10:15    阅读次数:497
Caused by: org.jbpm.api.JbpmException: resource jbpm.cfg.xml does not exist
1、错误描述2015-09-20 22:49:59 [main] WARN org.springframework.context.support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt org.springframew...
分类:Windows程序   时间:2015-09-21 00:12:50    阅读次数:429
Caused by: java.lang.ClassNotFoundException: org.jbpm.pvm.internal.processengine.SpringHelper
1、错误描述2015-09-20 22:35:23 [main] WARN org.springframework.context.support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt org.springframew...
分类:编程语言   时间:2015-09-21 00:11:33    阅读次数:406
Could not resolve placeholder 'spring.security.mapping.directory' in string value "${spring.security
1、错误描述2015-09-20 22:30:25 [main] WARN org.springframework.context.support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt org.springframew...
分类:移动开发   时间:2015-09-21 00:10:50    阅读次数:388
深入浅出JMS(三)--ActiveMQ简单的HelloWorld实例
JMS其实并没有想象的那么高大上,看完这篇博文之后,你就知道什么叫简单。。...
分类:其他好文   时间:2015-09-21 00:11:45    阅读次数:211
spring Ioc 实践
了解过IoC的概念,没有真正实践,感觉还是会比较模糊。自己的实践虽然简单,但还是记录下呀~1. 通过注解的方式注入service1.1 controller中创建对象@Controller@RequestMapping("/account")public class AccountControlle...
分类:编程语言   时间:2015-09-21 00:11:36    阅读次数:162
Assetbundle2
无论是模型资源还是UI资源,最好是先把他们放在Prefab中,然后在做成Assetbundle1、相同的模型尽量打包在一起,他们会公用一套资源文件。2、相同模型具有不同的脚本、组件的话把他们放在不同的Prefab中,最后把这些Prefab一起打包在一个Assetbundle中3、不相同的模型尽量分开...
分类:其他好文   时间:2015-09-21 00:08:35    阅读次数:242
n*n的正方形网格中有多少个长方形
n*n的正方形网格中有横竖各n+1条直线,其中,任意各取两条都可以组成一个长方形﹙正方形也是长方形﹚.所以长方形个数为C﹙n+2,2﹚×C﹙n+2,2﹚=﹙n+1﹚²n²/4个.如果正方形不算,则N=﹙n+1﹚²n²/4-[1²+2²+……+n²]=﹙n+1﹚²n²/4-n﹙n+1﹚﹙2n+1﹚/6...
分类:其他好文   时间:2015-09-21 00:09:36    阅读次数:155
Python中*args 和**kwargs的用法
from:http://blog.csdn.net/chenjinyu_tang/article/details/8136841好久没有学习python了,应为工作的需要,再次拾起python,唤起记忆。当函数的参数不确定时,可以使用*args 和**kwargs,*args 没有key值,**kw...
分类:编程语言   时间:2015-09-21 00:10:54    阅读次数:159
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!