Scrum Sprint:是什么?

冲刺(Sprint) 冲刺是Scrum循环的心跳,也是所有其他事件的容器。它在开始时由sprint计划和结束时由sprint回顾和sprint回顾标记。 冲刺的目的是达到冲刺目标。
Scrum: Product Backlog 是什么?

Product Backlog 产品积压工作只是一个简单的工作项清单,在功能级别进行描述,这些工作项需要随着时间的推移而完成。任何人都可以将项目添加到积压工作
Scrum-燃烧图表 (Burndown Chart)

冲刺跟蹤通常使用 向下烧录 图表完成。燃烧图表以日数为目标显示剩余的工作量。例如, 让我们考虑2周冲刺- 冲刺持续时间: 2周 每週天数: 5 每日时间: 6
GitLab-使用Git reset & Git tag 版本回退

简易两种方法可以使用 一。查询log git log git reset --hard {commit纪录代码} 二。查询tag git tag git show {tag出来的版本号} git reset --hard {commit纪录代码} 这两种都是
SaaS──Cordchat

SaaS ,Software as a Service,意谓「软体即服务」,有时被作为「即需即用软体」而提及。它是一种软体交付模式。在这种交付模式中云端集中式代管软体及其
php 将手机号码转为 +886 国际码(preg_replace + preg_quote)

当初串 TapPay 的时候发现打他后端的手机格式需要国际码 +886,于是想到这个做法可以实现 str_replace_national function function str_replace_national($from, $to, $content)
php 使用 Curl 传递 json 资料给对方及显示对方回传的 json (Json 格式 / API 串接

function httpRequest($api, $data_string) { $ch = curl_init($api); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, POST); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); c
Apache 透过 htaccess 隐藏 php 副档名(mod_rewrite)

首先安装好 apache 后,启用 rewrite 功能 $ a2enmod rewrite 然后再到 /etc/apache2/apache2.conf 添加内容 $ nano /etc/apache2/apache2.conf 内容为 Directory /var/www/ Options Indexes F
php 设定启用 php缩写(php.ini、short_open_tag)

启用 php 缩写能节省一些写法,虽然没差多少,只是要是脚本多了,看起来就比较好辨识 例如php 脚本一开头需要加上 php ?php // do..? 开了简写后就不用了
phython 环境建置

1.下载 https://www.python.org/ 2.安装 测试安装有没有问题 3.测试IDLE 新增记事本,副档名改为py,滑鼠右键Edit with IDLE,输入 print(Hello, world!) 安装Anaconda Anaconda官网