具体的安装教程,參考这个 navicat_for_mysql_10.0.11在linux下的安装,介绍的非常具体參考这个 :我可否在 64-bit Linux 执行 Navicat?推荐navicat wiki我当时的ubuntu内核是输入下面命令:64-bit Ubuntu 13.10 或以上su...
分类:
系统相关 时间:
2015-06-03 13:16:22
阅读次数:
206
One of my friends is always drunk. So, sometimes I get a bit confused whether he is drunk or not. So, one day I was talking to him, about his drinks! He began to describe his way of drinking. So, let m...
分类:
编程语言 时间:
2015-06-03 11:59:10
阅读次数:
186
Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as the Hamming weight).
For example, the 32-bit integer ’11' has binary representation 00000000...
分类:
其他好文 时间:
2015-06-02 22:04:54
阅读次数:
128
Reverse bits of a given 32 bits unsigned integer.
For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), return 964176192 (represented in binary as0011100101...
分类:
其他好文 时间:
2015-06-02 22:04:40
阅读次数:
166
转自:http://www.cnblogs.com/snake-hand/p/3172376.html1)、下载MongoDBhttp://downloads.mongodb.org/win32/mongodb-win32-i386-2.4.5.zip下载Windows 32-bit版本并解压缩,程...
分类:
数据库 时间:
2015-06-02 17:27:37
阅读次数:
179
ASCII码我们知道,在计算机内部,所有的信息最终都表示为一个二进制的字符串。每一个二进制位(bit)有0和1两种状态,因此八个二进制位就可以组合出 256种状态,这被称为一个字节(byte)。也就是说,一个字节一共可以用来表示256种不同的状态,每一个状态对应一个符号,就是256个符号,从 000...
分类:
其他好文 时间:
2015-06-02 16:49:01
阅读次数:
129
此博文对装系统小白来说绝对实用,直面解决问题。环境配置vwware9.0cenos6.5,从虚拟机上选择新建虚拟机typical安装就行选择最后一项installlater选择安装Linux,version选择otherlinux2.6.xkernel64-bit虚拟机名自己填写路径选择自己指定的路径比如cenos_2...maxdisksize选择20..
分类:
其他好文 时间:
2015-06-02 15:37:14
阅读次数:
177
最近不想在编辑器上花太多的精力,所以找到个不错的解决方案。在不懂vim配置的前提下也能用的很开心。1,下载安装Janus(https://github.com/carlhuda/janus)安装很简单,如果安装不成功,可能你需要安装rakecurl -Lo- https://bit.ly/janus...
分类:
系统相关 时间:
2015-06-02 14:58:32
阅读次数:
576
1、 FP(Fast Projection)此索引为默认的索引形式,在创建表时系统自动设置此索引。 特点:用于SELECT、LIKE '%sys%'、SUM(A+B)、JOIN操作等语句。 此类型索引也是唯一可用于BIT数据类型的索引。 FP索引可以优化索引,将小于255的唯一值的索引压缩到1...
分类:
数据库 时间:
2015-06-02 13:03:53
阅读次数:
252
题目:有一个数组 int array[100];本来应该存放的数为1~100,但是有两个数据a,b丢失了,值变成了0。问如何找出丢失的那两个数?附带条件不能开辟额外的空间。解题思路:常见的两种解法有:1.计算a+b和a*b的值,然后在解方程求解(但是这样会使得中间某个变量过大)。2.使用bit位来标...
分类:
其他好文 时间:
2015-06-01 18:19:55
阅读次数:
119