摘要: 安装 安装 root 权限用户下 :yum install openvpn fedora23的yum可能会切换到dnf源上安装不必在意,等待就ok。 稍等片刻将自动安装好openvpn需要的软件包。安装完成后,应该出现/etc/openvpn/文件夹。 使用 使用 首先将OpenVPN服务器提供商发 阅读全文
posted @ 2016-03-13 13:36 黎明の破晓 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 不废话直接上代码: HTML: <a class="js-tel tel" data-tel="1312414"></a> JS: 1 // zepto tel 2 $('body').on('tap', '.js-tel', function() { 3 var _this = $(this); 阅读全文
posted @ 2016-03-04 17:26 黎明の破晓 阅读(256) 评论(0) 推荐(1) 编辑
摘要: Malformed lock file found: /var/cache/dnf/metadata_lock.pid.Ensure no other dnf process is running and remove the lock file manually or run systemd-tm 阅读全文
posted @ 2016-03-02 18:14 黎明の破晓 阅读(983) 评论(0) 推荐(0) 编辑
摘要: 1. Install and configure the necessary dependencies 2. Add the GitLab package server and install the package 3. Configure and start GitLab 4. Browse t 阅读全文
posted @ 2016-02-29 15:27 黎明の破晓 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 用gulp启动,错误如下 Error: watch ENOSPC at exports._errnoException (util.js:746:11) at FSWatcher.start (fs.js:1172:11) at Object.fs.watch (fs.js:1198:11) at 阅读全文
posted @ 2016-02-26 16:46 黎明の破晓 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 这是因为 app.use(function * (){ 语句中有一个 * ,这种方式被称为generator functions ,一般写作function *(){...} 的形式,在此类function 中可以支持ES6的一种yield概念。 为了保证这种新型的方法可以编译通过,在运行node  阅读全文
posted @ 2016-02-26 11:36 黎明の破晓 阅读(1237) 评论(0) 推荐(0) 编辑
摘要: perferences->Settings - User添加下面两句话: { "save_on_focus_lost": true, "atomic_save": true,} 亲测可以使用,有用麻烦点下赞或推荐,谢谢。 阅读全文
posted @ 2016-02-24 10:54 黎明の破晓 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 1.配置email及name git config --global user.email "guxuelong@f-road.com.cn" git config --global user.name "jaxGu" 2.生成密钥: $ ssh-keygen -t rsa -C “guxuelon 阅读全文
posted @ 2016-02-22 15:48 黎明の破晓 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 需要处理的返回场景: 1.正常的a->b->c 2.页面上的按钮触发需要登陆 3.页面跳转需要登陆 4.页面上的可修改的部分(如选择地址,地址页面本身也是可以增删改查的) 整体的原则是原路来原路回 第一个场景不需要考虑,history.go(-1)就ok,第二个场景登陆成功之后使用history.g 阅读全文
posted @ 2016-02-22 14:48 黎明の破晓 阅读(3188) 评论(0) 推荐(0) 编辑
摘要: Linux(Fedora)下NodeJs升级最新版本(制定版本) 首先安装n模块: npm install -g n 升级node.js到最新稳定版 n stable 升级node.js到制定版本 n v0.10.26 阅读全文
posted @ 2016-02-22 13:20 黎明の破晓 阅读(918) 评论(0) 推荐(0) 编辑