【整理】systemctl的使用心得和语法
crifan 7年前 (2018-05-24) 3630浏览 0评论
折腾: 【已解决】CentOS中如何用systemctl管理supervisor包括设置supervisor开机启动 搜到了: How To Use Systemctl to Manage Systemd Services and Units | D...
crifan 7年前 (2018-05-24) 3630浏览 0评论
折腾: 【已解决】CentOS中如何用systemctl管理supervisor包括设置supervisor开机启动 搜到了: How To Use Systemctl to Manage Systemd Services and Units | D...
crifan 7年前 (2017-11-11) 6406浏览 0评论
想要给自己的crfianLib.py中的新增函数,加上doc string的描述。 但是除了知道基本的”””xxx”””之外,其他格式,比如参数等,不知道标准格式应该是什么样的。 python doc string python中的文档字符串(doc...
crifan 7年前 (2017-08-10) 3720浏览 0评论
之前自己折腾的Reactjs是Preact的ES6的写法,Component的写法都是: export default class App extends Component { constructor(props) { } } ...
crifan 8年前 (2016-08-18) 4352浏览 0评论
折腾: [已解决]已安装Flask的虚拟环境中无法正常运行uwsgi 期间,还是先去了解一下,uwsgi是啥 以及具体的语法是啥 [总结] 概述: WSGI是Python的规范 uWSGI是实现了WSGI的(应用)服务器 目前还存在有其它的,实现了W...
crifan 9年前 (2016-06-02) 3580浏览 0评论
之前就知道,用于格式化NSDate的字符串,有: “yyyy/MM/dd HH:mm” 但是此处,想要格式化获得: 月份是1个数字的那种 -》超过9月份的得到的分别是两位的:10,11,12 好像应该是:M -》”M/dd H...
crifan 9年前 (2016-05-30) 2283浏览 0评论
The Swift Programming Language中文版_The Swift Programming Language中文教程_The Swift Programming Language开发中文手册[PDF]下载-极客学院Wiki -》 ...
crifan 9年前 (2016-05-16) 3276浏览 0评论
折腾: [记录]用Carthage添加第三方库 期间,已经知道了carthage的基本命令了: <code>licrifandeMacBook-Pro:QorosSales crifan$ carthage help Available ...
crifan 9年前 (2015-10-09) 3160浏览 0评论
想要实现: do { let curRandomNum = getRandomInRange(lower, upper: upper) }while(curRandomNum not in un...
crifan 9年前 (2015-09-30) 3932浏览 0评论
【背景】 折腾: 【已解决】swift中如何让一个图片和文字在一个矩形区域内水平居中对齐 期间,看到别处的代码中: let image = UIImageView(image: UIImage(named: image)) ...
crifan 9年前 (2015-07-30) 4977浏览 0评论
【背景】 折腾: 【规避解决】KindEditor第二次加载时无法加载已有html内容 期间,需要去搞懂: js中的createWindow是如何使用的,语法如何 以及关闭窗口时候对应的事件是什么->便于后期加入销毁kindedito...