ZenTao 9.6 has been released! Webhook has been added!

ZenTao 9.6 has been released! In this release, webhook has been added to work as the interface between ZenTao and other instant messenger. More actions in Zentao to get points have been added. Proje...
2017/11/10   Renee   1723

推荐36款优秀且免费的英文字体

将最近收集整理的36款字体整理了一下分享给大家,重点是这些字体目前还是免费的,赶紧下载起来吧。国外链接打开速度比较慢,切勿心急。 LOMBARD DIOTIMA QUENTIN AUTOMATA MADEMOISELLE SICKBOY SPRING TIME BLACK ANIMAL AGANÉ CHEQUE ILLUMA T...
2017/11/10   郑乔尹   3919

禅道9.6版本发布,新增webhook,积分,多人任务和子任务功能

禅道开源版9.6版本正式发布。 新版本中,新增了webhook功能,实现与倍冾、钉钉的消息通知接口;新增禅道操作获取积分的功能; 项目任务新增了多人任务和子任务功能;增强列表页、导航菜单、必填项的自定义功能;产品视图新增了产品线功能,支持导出所有产品和所有项目。 优化调整任务--看板功能,新增项目--需求的看板功能。 一、修改记录 1、完成的需求: 2004   项目支持多人任务和子任务...
2017/11/10   潘仙芝   4236

警示!一幅漫画揭示了项目研发过程中存在的问题

一个秋千的制作可以引发各个部门对该秋千理解和实际完成的差异性,这些差异性的存在有的人认为是沟通问题,例如听不明白客户的需求等。与此同时,该漫画也揭示了产品开发中的一些问题,并提醒任何项目参与者什么该做和什么不该做。
2017/11/05   郑乔尹   4271

Pass parameters to Shell

Pass parameters to shell scripts when executing shell scripts. Use $n to get parameters in scripts. N stands for numbers, 0 is the executed shell script name , 1 is the first parameter executed in the...
2017/11/05   Memory, Renee   7467

图文解析PHP对象的赋值操作是“传值”还是“传址”

<?php $a = 'hello world'; $b = $a; $a = 'bey world'; var_dump($a); var_dump($b); ?> 但是当一个对象被实例化后,对象的传递并非传值,而是传递该对象的地址。也就是说,不会复制整个对象,因为这样做既耗时又耗内存。 <?php class Person {  ...
2017/11/02   薛才杰   1941

Configure nginx+php+mysql+phpmyadmin in Ubuntu

Follow the steps below. 1、Get Ready Start terminal and update Ubuntu sudo atp-get update 2、Install and start Nginx Enter sudo apt-get install nginx 3、Check whether it is installed. Visit http:/...
2017/10/30   Memory, Renee   2263

NO MORE BUGS: The Ideal Result of Testing

If you want more effective programmers, you will discover that they should not waste their time debugging, they should not introduce the bugs to start with.
2017/10/29   Chuck, Renee   2389

前端设计师必收的5款免费响应式布局测试工具

我在给客户做网站的过程中,不少客户都会要求做响应式设计,响应式的网站也越来越多。但是响应式的网站在具体操作过程中,会有很多问题被忽略,所以我一般会使用一些响应式设计工具来测试这些站点是否正常显示。 上次给大家分享过我的个人收藏夹的一些工具,今天跟大家再分享我个人觉得好用的五款响应式网页测试工具,重点都是免费免费! Responsive Design Checker 这个网站适合自定义屏幕尺寸的响...
2017/10/29   郑乔尹   2337

Solutions to Improve Efficiencies of Random Select in MySQL

Solution 1 - just Order By Rand() SELECT * FROM user ORDER BY rand() LIMIT 10 This solution is not recommended, because the more the data is, the slower it is. Solution 2 - Use JOIN method one by on...
2017/10/29   Memory, Renee   6472
111/172