摘要:
我现在偶尔开发代码,已经不用Eclipse了,主要原因是查看Jar包中的代码反编译十分不便,项目加载的时候卡,偶尔还会崩溃 用Intellij IDEA和PyCharm 原来的笔记如何在Eclipse中集成Python贴在here # 安装python* 下载python 安装包 * 安装并配置环境 阅读全文
摘要:
#!/bin/bash #定义参数 username="xxx" passwd="xxxxxxxx" dbname="xxx" #判断入参为空 if [ ! -d $# ];then echo "please input" exit 1 fi #判断入参不为1或2 if [ $# -ne 1 || $# -ne 2 ];then echo "input false" exit 1 fi #... 阅读全文
摘要:
CASSANDRA在工作中用过,但是用的项目少,能用却了解的不全面。今天来稍加学习下: http://zqhxuyuan.github.io/2015/10/15/Cassandra-Daily/ Step1: 首先,CASSANDRA也是Apache的产品,是个DB。官网原话: The Apach 阅读全文