mysql的默认配置文件
[root@localhosthome]#vim/etc/my.cnf
#ExampleMySQLconfigfileforlargesystems.
#
#Thisisforalargesystemwithmemory=512Mwherethesystemrunsmainly
#MySQL.
#
#MySQLprogramslookforoptionfilesinasetof
#locationswhichdependonthedeploymentplatfor..
分类:
其他好文 时间:
2015-09-24 07:12:00
阅读次数:
240
英特尔发布两个Windows7USB3.0xHCI驱动程序,其中一个对应英特尔7系列/C216芯片组家族,另一个对应英特尔8系列/C220芯片组family/第四代智能英特尔酷睿TM处理器U系列平台,有时为了偷懒可能会在一个驱动包同时导入上述两个驱动包,在MDT2013UPDATE1的驱动同时导入上述两个驱动..
分类:
其他好文 时间:
2015-09-24 07:12:46
阅读次数:
514
Tomcat官网http://tomcat.apache.org1.下载tomcatcd/usr/local/src/wgethttp://apache.fayea.com/tomcat/tomcat-7/v7.0.63/bin/apache-tomcat-7.0.63.tar.gz2.解压tarzxvfapache-tomcat-7.0.63.tar.gz3.移动目录,tomcat和jdk一样,不需要编译安装,只要移动目录即可。mvapache..
分类:
其他好文 时间:
2015-09-24 07:11:35
阅读次数:
191
日前,京东与美的正式签署协议,双方将在物流配送、大数据分析、智能设备等方面实现打通EDI系统的数据信息共享服务,另外,双方还将在平台、产品等方面进行更多深入合作和探索。据了解,这是京东与美的在继去年签订战略合同协议之后的重要举动,也是践行京东与美的之间深切合作..
分类:
其他好文 时间:
2015-09-24 07:10:19
阅读次数:
295
操作系统概述:hardware:最底层是硬件(各个厂家)kenerl:各个厂家的硬件通过简洁的统一的接口抽象出来,将整个操作系统虚拟出来,进行系统调用。库:将kernel最底层的数量较少的系统调用,封装成里用户较近的功能模块。应用程序:其中就有shell,服务于后台叫做守护进程和服务..
分类:
其他好文 时间:
2015-09-24 07:11:08
阅读次数:
1078
Given two strings s and t, determine if they are isomorphic.
Two strings are isomorphic if the characters in s can be replaced to get
t.
All occurrences of a character must be replaced with another...
分类:
其他好文 时间:
2015-09-24 07:07:24
阅读次数:
209
在11、12、1月各阅读一本书,每本书有三篇阅读笔记,每个阅读笔记发表间隔至少一周10月份阅读计划10月份准备阅读《需求工程-软件建模与分析》10月10日22:00前发表第一篇阅读笔记10月20日22:00前发表第二篇阅读笔记10月30日22:00前发表第三篇阅读笔记11月份阅读计划11月份准备阅读...
分类:
其他好文 时间:
2015-09-24 07:05:20
阅读次数:
218
I. Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index.Accordi...
分类:
其他好文 时间:
2015-09-24 07:08:03
阅读次数:
221
题目:Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exa...
分类:
其他好文 时间:
2015-09-24 07:04:45
阅读次数:
301
QuestionGiven a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from left to right, level by level from leaf to root)...
分类:
其他好文 时间:
2015-09-24 07:05:02
阅读次数:
212
There are two ways to conduct BFS on tree.Solution 1 -- Given levelUse recursion to find given level, and print./*Function to print level order traver...
分类:
其他好文 时间:
2015-09-24 07:06:24
阅读次数:
221
DFS ended up with TLE. Only BFS works./** * Definition for Directed graph. * struct DirectedGraphNode { * int label; * vector neighbors; * ...
分类:
其他好文 时间:
2015-09-24 07:04:31
阅读次数:
188
1.首先,必须要有一个能够读取文件的函数用来读取Shader,将Shader中的语句读到一个字符指针中,并返回这个指针,比如如下这个函数: 1 char* readFileFuc(char* filename){ 2 FILE* fp = fopen(filename, "r"); 3 ...
分类:
其他好文 时间:
2015-09-24 07:05:28
阅读次数:
439
原题链接在这里:https://leetcode.com/problems/gas-station/参见这篇帖子:http://pisxw.com/algorithm/Gas-Station.htmlsumCur是走到当前油站的剩余油量,totalCir是走完一整圈的剩余油量。若是从起始站走到i站,...
分类:
其他好文 时间:
2015-09-24 07:02:59
阅读次数:
202
原题链接在这里:https://leetcode.com/problems/jump-game/维护一个当前能跳到的最大值maxJump, 若是maxJump 已经>=nums.length-1, 说明能跳到最后一个点,return true.若是过程中maxJump = nums.length-1...
分类:
其他好文 时间:
2015-09-24 07:04:02
阅读次数:
201
废话 ????一直以来我对车都对车有特别的爱好,而且特别喜欢赛车,但是太贵玩不起,所以我就玩起了模拟,如(LFS,rFactor,rFactor2,GSC2013)。越玩越觉得自己要DIY一些东西才又意思,才能模拟真实。所以我要D...
分类:
其他好文 时间:
2015-09-24 02:06:39
阅读次数:
606
关于OOD的几个设计原则,大家耳熟能祥了,不再展开,可以参考设计模式的六大设计原则之里氏替换原则。这里尝试讨论常常违反的形式和解决方案。违反里氏替换原则的根源是对子类及父类关系不明确。我们在设计继承关系常常受一些主观认识的左右,比如Robert C. Martin提到的线段与线的关系,以及被大家说到烂的正方形与矩形。从以前的经验我们认为它们符合继承关系,比如线段是线的较短形式,正方形是矩形的一个特例...
分类:
其他好文 时间:
2015-09-24 02:04:13
阅读次数:
206