vagrant 添加本地 box 安装 laravel homestead

在安装 Laravel homestead 虚拟机的时候,由于神秘的原因,直接添加 box 实在太慢,中途失败的几率又太大。所以,在国内,非常推荐大家都直接使用本地 box 的方式安装 Laravel homestead:1.下载 homestead.box 文件你可以使用迅雷或其他的方式下载...

使用 axios 异步下载文件

axios({ method: 'get', url: '/reports/interval-dates', responseType: 'arraybuffer', data: dates }).then(funct...

Mac自带PHP启动php-fpm问题解决

Mac 自带 php-fpm,在终端执行 php-fpm,会报如下错误:ERROR: failed to open configuration file '/private/etc/php-fpm.conf': No such file or directory (2) E...

Brew 删除无用的包

brew rmrecThis is a brew command to remove a package and all of its dependencies recursively. Only removes packages that are not depended on by oth...

Unix 系统与 Linux、macOS、BSD、FreeBSD 的区别

Unix 及其分支,一图胜千言在新标签中打开可以看大图

POSIX

POSIX表示可移植操作系统接口(Portable Operating System Interface of UNIX,缩写为 POSIX ),POSIX标准定义了操作系统应该为应用程序提供的接口标准,是IEEE为要在各种UNIX操作系统上运行的软件而定义的一系列API标准的总称,其正式称呼...

curl 执行远端代码 | Execute bash script from URL

curl -s http://server/path/script.sh | bash -s arg1 arg2查看原文

CSS 垂直居中最简单办法

CSS 垂直居中的最简单写法:容器元素设为 flex 布局,子元素只要写 margin: auto 即可。<header> <h1>A secret weapon…</h1> </header>header { display: fl...

Messenger 分享链接图片控制 - share url

在 Messenger 应用中打开网页后,如果用户点击分享,那么分享出的链接和内容如何控制呢?可以通过 Open Graph 来实现:查看demo:在Messenger应用中打开此链接并分享:https://cdn.ijustplay.cn/files/5bc3c1d52024c150581c...

Git 基于分支创建分支

基于远程仓库创建新分支git branch branch_name remote_name/branch基于远程仓库创建新分支并且切换到新分支git checkout -b branch_name remote_name/branch获取上次提交hashgit rev-parse HEAD -...