上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 110 下一页
摘要: ps:process status for pid in $(pgrep httpd); do echo -n "${pid} " ; ps -p ${pid} -o lstart | grep -v "START" ; done 阅读全文
posted @ 2018-02-09 10:50 脚本小娃子 阅读(2048) 评论(0) 推荐(0) 编辑
摘要: In Unix-like systems, the ASCII hyphen-minus is commonly used to specify options. The character is usually followed by one or more letters. Two hyphen 阅读全文
posted @ 2018-02-09 10:32 脚本小娃子 阅读(581) 评论(0) 推荐(0) 编辑
摘要: JNI :Java Native Interface 随便找几篇文章看下就掌握了 http://www.cnblogs.com/icejoywoo/archive/2012/02/22/2363709.html http://blog.csdn.net/createchance/article/de 阅读全文
posted @ 2018-02-08 16:11 脚本小娃子 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 出现这类错误提示:'JavaPackage' object is not callable,可以看下所引用的jar包或者class文件是否在java的路径搜索范围内 命令行模式下:javac可以编译*.java为*.class字节码;然后使用java执行字节码 java -help -cp <目录和 阅读全文
posted @ 2018-02-08 15:24 脚本小娃子 阅读(1331) 评论(0) 推荐(0) 编辑
摘要: py4j可以使python和java互调 py4j并不会开启jvm,需要先启动jvm server,然后再使用python的client去连接jvm GatewayServer实例:允许python程序通过本地网络socket来与JVM通信。 1、安装:pip install py4j 其中Pyth 阅读全文
posted @ 2018-02-08 10:54 脚本小娃子 阅读(8442) 评论(0) 推荐(1) 编辑
摘要: 有一次一个python进程挂了,使用了下这个命令。 可以看到原因:虚拟机总共内存8082608KB,结果python项目就消耗掉了7341764KB,内存泄露,导致python进程被系统杀死 顺带介绍下watch命令: 这个命令可以实时跟新监控的内容 1、tailf log/web.log 就会看到 阅读全文
posted @ 2018-02-07 20:24 脚本小娃子 阅读(2527) 评论(0) 推荐(0) 编辑
摘要: SVG 意为可缩放矢量图形(Scalable Vector Graphics)。 SVG 使用 XML 格式定义图像。 SVG 图像在放大或改变尺寸的情况下其图形质量不会有所损失 SVG 使用 XML 格式定义图形 SVG 与 JPEG 和 GIF 图像比起来,尺寸更小,且可压缩性更强。 SVG 是 阅读全文
posted @ 2018-02-07 14:14 脚本小娃子 阅读(710) 评论(0) 推荐(0) 编辑
摘要: <body> ... ... <script type="text/javascript"> <!-- document.write("Hello World!") //--> </script> <noscript>Your browser does not support JavaScript! 阅读全文
posted @ 2018-02-07 10:59 脚本小娃子 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 旋转动画 参考: 1、http://www.w3school.com.cn/cssref/pr_animation.asp 2、http://www.runoob.com/cssref/css3-pr-flex.html 阅读全文
posted @ 2018-02-07 10:31 脚本小娃子 阅读(833) 评论(0) 推荐(0) 编辑
摘要: 1、安装create-react-app:npm/cnpm installl create-react-app -g 2、创建项目:create-react-app my-first-app 3、此时项目里包含一个registerServiceWorker.js文件,作用是什么呢? service 阅读全文
posted @ 2018-02-07 10:07 脚本小娃子 阅读(1336) 评论(0) 推荐(1) 编辑
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 110 下一页