
工具 tools
sidney
数据挖掘数据分析
展开
-
eclipse 变量 高亮 eclipse variable highlight eclipse mark occurrences
1 要显示哪些类型windows-> preferences-> java-> Editor-> Mark Occurrences2 高亮显示的颜色Window->Preferences->General->Editors->Text Editors->Annotations->Occurrences3 有么有快捷键? 有: Alt + Shift + o原创 2012-01-05 12:24:06 · 3023 阅读 · 0 评论 -
jupyter hub not allowing Hub user
假设该用户名为 Lily。则尝试删除/home/Lily/.jupyter文件夹,或许能解决问题。原创 2018-11-12 19:27:13 · 401 阅读 · 0 评论 -
查看所有用户的crontab任务
以root用户执行,cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {}原创 2018-08-14 10:20:44 · 37832 阅读 · 1 评论 -
登录docker脚本
dk_name=`sudo docker ps -a | grep 'Up' | awk '{print $NF}'`if [ "$dk_name"==""]then echo "no docker is running" exitelse echo "get docker $dk_name" pid=`sudo docker inspect -原创 2017-03-27 15:34:51 · 820 阅读 · 0 评论 -
Cannot connect to the Docker daemon. Is the docker daemon running on this host?
可能原因:1. 用户不对, 命令前加sudo试试2. 真的没启动, sudo /etc/init.d/docker start试试原创 2016-12-14 13:45:19 · 891 阅读 · 0 评论 -
swig Cannot find pcre-config script from PCRE
运行configure的时候,指定pcre的路径 ./configure --with-pcre-prefix=/usr/lib64如果没有pcre,则先安装pcre安装后,可以用locate pcre来查找pcre安装在哪原创 2016-11-23 17:43:07 · 4836 阅读 · 0 评论 -
spss 启动帮助时错误
把spss的语言改为英语即可。编辑->选项。原创 2013-04-01 08:48:11 · 3257 阅读 · 1 评论 -
open in command line
win7: shift + right clickubuntu: sudo apt-get install nautilus-open-terminalnautilus -qhttp://www.thelinuxgeeks.info/how-to-open-terminal-here-in-ubuntu-12-04/转载 2012-07-23 12:35:48 · 710 阅读 · 0 评论 -
mocking webservice with SoapUI example
test case data config xml AuthenticateService.wsdl /mockrgtServicesV1 declare namespace ser='http://com.test.wagerlink/services'; //ser:authenticate[1]/s原创 2012-07-06 15:35:57 · 1547 阅读 · 0 评论 -
ant import relative path
... 如果A 和 B 不在同一个目录,则在projectA中调用projectB,则上面的echo找不到正确的build.properties文件。可以用-v查看他找到是什么文件。解决办法使用ant内置属性 ant.file.your-project-name project B的property改为 其中ant.file.B的值为pr原创 2012-05-11 16:09:44 · 2133 阅读 · 0 评论 -
start-stop-daemon example
example: run an ant task as a daemon thread#!/bin/shDESC="mock system"NAME="mocksystem"PIDFILE=/var/run/$NAME.pid#RUN_AS=hudsonRUN_AS=zhusEXE=/usr/bin/antd_start() { start-stop-daemo原创 2012-05-08 18:09:38 · 3344 阅读 · 0 评论 -
linux more 0% 无内容
more一个文件,结果成下图这样,可能是文件的前面n行是空行所致,按下F键看看后面的即可。原创 2019-01-31 11:48:01 · 484 阅读 · 0 评论