WebStorm快捷键(Mac版)

3月 16, 2015

⌘——Command ⌃ ——Control ⌥——alt ⇧——Shift ⇪——Caps Lock fn— […]

Read the full article →

npm使用国内镜像

3月 3, 2015

因为网络原因,使用npm安装比较慢,所以找了几个配置国内镜像的方法。 通过config命令 npm confi […]

Read the full article →

Mac上安装MongoDB

3月 1, 2015

MongoDB是什么 MongoDB是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可 […]

Read the full article →

Laravel 5 禁用CSRF token访问路由

3月 1, 2015

使用POST和DETELE方式访问路由,Laravel5默认是开启了CSRF,有二种方法可以关闭CSRF访问 […]

Read the full article →

Mac快捷键

2月 5, 2015

切换桌面: control + 左右方向键 显示桌面:command + F3 窗口最大化:control + […]

Read the full article →

Homebrew – Mac下的开发软件包管理工具

2月 2, 2015

Homebrew是什么 Homebrew都是Mac OS X上的软件包管理工具 ,Homebrew是一个Rub […]

Read the full article →

Mac ssh public key认证免密码登录

2月 1, 2015

ssh 登录可以使用公钥认证(ssh public key authentication)。 将客户端机器的s […]

Read the full article →

Javascript检测对象中是否存在某个属性

1月 23, 2015

检测对象中属性的存在与否可以通过几种方法来判断。 1.使用in关键字 该方法可以判断对象的自有属性和继承来的属 […]

Read the full article →

CentOS6搭建LNMP环境

1月 20, 2015

LNMP是Linux、Nginx、MySQL和PHP的缩写,这个组合是最常见的WEB服务器的运行环境之一。 本 […]

Read the full article →

常用正则表达式总结

1月 3, 2015

一、校验数字的表达式 1 数字:^[0-9]$ 2 n位的数字:^d{n}$ 3 至少n位的数字:^d{n,} […]

Read the full article →