摘要: crontab时linux上执行定时任务的工具(MacOS和linux都是unix的变种系统,所有linux上可执行的指令大多数Mac上也可以执行) * * * * * echo 'one minute execute' * * * * * #后边可以跟要执行的脚本,比如: * * * * * /u 阅读全文
posted @ 2017-10-23 18:47 Vitascope 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: https://github.com/qinjx/30min_guides/blob/master/shell.md 阅读全文
posted @ 2017-10-23 16:39 Vitascope 阅读(114) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/24669514 阅读全文
posted @ 2017-10-23 12:00 Vitascope 阅读(72) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/win_turn/article/details/51559867 阅读全文
posted @ 2017-10-23 04:10 Vitascope 阅读(5) 评论(0) 推荐(0) 编辑
摘要: http://www.ruanyifeng.com/blog/2014/05/restful_api.html 阅读全文
posted @ 2017-10-23 02:36 Vitascope 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 我经常会面试一些做PHP的开发者,让我很奇怪的是,10个人总有8个多不知道什么是REST服务,甚至是没有听说过。但RESTFul API已经是现在互联网里对外开放接口的主流模式,可参考: 豆瓣API https://developers.douban.com/wiki/?title=api_v2 G 阅读全文
posted @ 2017-10-23 02:26 Vitascope 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 以前就是觉得 /nowamagic/article/article_id 这样的地址非常的漂亮,但是那只是表象罢了,了解深入以后,发现必须有一个客户端的Ajax Engine和Server端的服务配合,才能实现一个REST风格的应用,下面就是我的实验。 要对外提供哪些服务。服务器端的服务可能会被众多 阅读全文
posted @ 2017-10-23 02:18 Vitascope 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 这两天在写代码的时候,由于涉及到资源的位置,因此,需要在Java Bean中定义一些字段,用来表示资源的位置,比如:imgUrl,logoUri等等。但是,每次定义的时候,心里都很纠结,是该用imgUrl还是imgUri呢? 同样的,另外一个问题:String HttpServletRequest. 阅读全文
posted @ 2017-10-23 01:52 Vitascope 阅读(130) 评论(0) 推荐(0) 编辑
摘要: .看手册 The DATE type is used for values with a date part but no time part. MySQL retrieves and displays DATE values in 'YYYY-MM-DD' format. The supporte 阅读全文
posted @ 2017-10-23 01:40 Vitascope 阅读(381) 评论(0) 推荐(0) 编辑
摘要: http://www.apisystem.cn/index.php?s=/Home/User/login.html 阅读全文
posted @ 2017-10-23 01:37 Vitascope 阅读(118) 评论(0) 推荐(0) 编辑
摘要: http://www.mamicode.com/info-detail-1682176.html 阅读全文
posted @ 2017-10-23 01:20 Vitascope 阅读(170) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name localhost; set $root_path '/usr/local/app/snsprj/public'; root $root_path; index index.php index.ht... 阅读全文
posted @ 2017-10-23 01:04 Vitascope 阅读(251) 评论(0) 推荐(0) 编辑
摘要: php程序开发中经常涉及到生成缩略图,利用php生成缩略图这个过程本身没难度,但是你知道php能够优化调节生成的缩略图的质量吗?也就是说php能够控制生成缩略图的清晰度以及生成后的缩略图的体积。下面我们就来看看如何利用php优化我们压缩后的图片。 对于如何使用php生成缩略图这里就不介绍了,大家可以参考本站下面这篇文章: php生成图片缩略图的方法 首先我们来看看用php压缩图片的程... 阅读全文
posted @ 2017-10-23 00:42 Vitascope 阅读(462) 评论(0) 推荐(0) 编辑