- 浏览: 24688 次
- 性别:
- 来自: 长沙
最新评论
文章列表
Code
Nmr
List
List Size
Code
Avarage Elapsed Time
(sec)
1
List<Put>batchAllRows;
250.000
table.setAutoFlush(false);
for (Put mRow : batchAllRows) {table.put(mRow);}table.flushCommits();
27
2
List<Put> batchAllRows;
250.000
table.setAutoFlush(false);ta ...
sudo vi /etc/mysql/my.cnf,在[mysqld]段下加入一行“skip-grant-tables”
sudo service mysql restart,重启mySQL服务
sudo mysql -u root -p mysql,用空密码进入mysql管理命令行
(进入mysql表, 或者用use mysql指令)
执行update user set password=PASSWORD("123″) where user='root’; 把密码重置为123
(注意,如果是表中没有的用户名,使用insert插入用户)
quit,退出数据库管理
s ...
And I'm getting the following error when tyring to add a row to a table:Incorrect string value: '\xF0\x90\x8D\x83\xF0\x90...' for column 'content' at row 1
MySQL's utf8 permits only the unicode characters that can be represented with 3 bytes in UTF-8. Here you have a character that needs 4 byte ...
3D标签云,3D Tag Cloud,3D Image Cloud:
TagCanvas - HTML5 Canvas Tag Cloud
1.解压缩下载的插件压缩包,例如:要安装是XXX插件,压缩包是:XXX.zip,将其解压缩到【XXX】目录;
2.进到MyEclipse 10\dropins目录下,将刚才得到的【XXX】目录拷贝到其中即可;
3.启动Myeclipse,他会自动安装XXX插件,并弹出相应提示。
Git: clone a specific branch
git clone -b <branch> <remote_repo>
Example:
git clone -b my-branch git@github.com:user/myproject.git
Alternative (no public key setup needed):
git clone -b my-branch https://git@github.com/username/myproject.git
前些日子一直用这两款软件,没发现异常。偶尔有一次重装了office2010,再启动和关闭word2010时就出现提示“an unknown error occur” 弹出框标题是ENDNOTE X6,初步判定是两款软件设置上兼容问题,但是一直没能解决。今天有点闲工夫,特意查了些资料,最终完美解决此冲突问题。
删除 Word Data 注册表子项Word 中的大多数常用选项都存储在 Word Data 注册表子项中。一个常用的故障排除步骤就是删除 Word Data 注册表子项。重新启动 Word 时,它将使用默认设置重建此 Word Data 注册表项。若要在 Word 2003 中查 ...
Git 相关
- 博客分类:
- Git,GitHub
Download Git from : Git
Set Up Git: URL
Make a new repository on GitHub:URL
如图所示:
linux下:
对于快捷方式:
用编辑器打开其快捷方式,桌面环境不同可能位置不一样,自己找一下自己的,我的是Xfce
gedit '/home/longqi/.local/share/applications/netbeans-7.2.desktop' 然后将其中的一行启动信息更改为Exec=/opt/netbeans7.2/bin/netbeans --locale zh:CN
也就是在后面添加上语言信息即可
对于命令直接启动:
可以用alias设置别名使其添加上语言信息
windows下:
打开NetBeans快捷方式的属 ...
NetBeans IED 7.x 无法运行Gephi 8.X Gephi 9.X Source 代码的解决方法:
The wiki page (http://wiki.gephi.org/index.php/Configuring_NetBeans) needs to be updated, since our build system has been changed to maven. It's normal that you need to run gephi-app module instead of "gephi Netbeans platform applicat ...
目前,绝大多数开发人员都把 Ant 当作 Java 编程项目的标准构建工具。遗憾的是,Ant 的项目管理工具(作为 make 的替代工具)不能满足绝大多数开发人员的需要。通过检查 Ant 构建文件,很难发现项目的相关性信息和其它元信息(如开发人员/拥有者、版本或站点主页)。
Maven 除了以程序构建能力为特色之外,还提供 Ant 所缺少的高级项目管理工具。由于 Maven 的缺省构建规则有较高的可重用性,所以常常用两三行 Maven 构建脚本就可以构建简单的项目,而使用 Ant 则需要十几行。事实上,由于 Maven 的面向项目的方法,许多 Apache Jakarta 项目现在使用 Mav ...
One of these changes is a "String in a switch". In the previous versions of Java, the argument of switch had to be only of the following primitive data types: byte, short, char, int, or enum. Starting from JDK 7, you can use arguments of type String in the expression of a switch statement. ...