Gulp常用脚本

Posted by Sir0xb on 2016-01-26 14:20:38 +0800

js 压缩合并

gulp = require "gulp"
jshint = require "gulp-jshint"
concat = require "gulp-concat"
uglify = require "gulp-uglify"
 
gulp.task "script"->
    gulp.src ["xxx""yyy"]
    .pipe jshint()
    .pipe concat "base.min.js"
    .pipe uglify()   # 混淆 
    .pipe gulp.dest "输出目录"
Read More

用 swiftype 配置静态搜索

Posted by on 2015-06-08 10:03:45 +0800

听说 swiftype 很好用,就在网站里加入了这个功能,没想到的是从注册到真正能用上竟然花了差不多一个月的时间,主要原因是除了随处可见的教程中那些配置之外,还要有额外的配置,真是坑爹啊。。。

注册 swiftype 账号

http://www.swiftype.com 注册账号

 

配置搜索

一路跟着提示,选择默认下一步下一步,直到完成

Read More

解决 Github 邮件中提示的问题

Posted by Sir0xb on 2015-05-27 23:14:24 +0800

独立域名指向 Github 服务器 IP ,并在站点增加 CNAME 文件之后,收到了无数个 GitHub 提示邮件。

Read More

Mac 解决 Chrome 隐私登录问题

Posted by Sir0xb on 2015-05-25 19:09:45 +0800

Mac 下用 Chrome 有一点很不爽,就是开启隐私模式。 难道就没有像 Windows 下那样修改快捷方式的方法吗?

Mac 提供了好玩的工具 —— 脚本编辑器,利用它我们可以实现想要实现的效果。

打开脚本编辑器输入以下代码

do shell script "open -a /Applications/Google\\ Chrome.app --args --incognito"
 
tell application "Google Chrome"
    close windows
make new window with properties {mode:"incognito"}
activate
end tell

保存的时候 文件格式 选择应用程序,保存之后的 app 文件可以直接放入 Applications


Read More

开发过程中常会用到的命令行工具

Posted by Sir0xb on 2015-05-21 19:08:10 +0800

brew (Homebrew)

brew 安装

$ ruby -"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

brew 使用

查找软件包

$ brew search <package>
Read More
Copyright © 2022, Built with Gatsby