会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
秦小扬
博客园
首页
新随笔
联系
管理
订阅
2017年1月9日
关于docker中的几个小命令
摘要: 问题 A VirtualBox machine with the name 'vagrant_c__devops_docker_vagrant' already exists. 解决命令:VBoxManage unregistervm vagrant_c__devops_docker_vagrant
阅读全文
posted @ 2017-01-09 09:28 一壶浊酒难入喉
阅读(177)
评论(0)
推荐(0)
2016年10月27日
Lodash Filter
摘要: var persons = [{name:'1',age:'20'}, {name:'2', age:'25'}];_.filter(persons, {'age': '25'}); //return persons with age is 25
阅读全文
posted @ 2016-10-27 15:38 一壶浊酒难入喉
阅读(1150)
评论(0)
推荐(0)
2016年10月26日
正则表达式 简单验证
摘要: var isAvailableId = function(id){ // can match number or number begin with "#" var reg = new RegExp('^(#)?[0-9]*$'); return reg.test(id); };
阅读全文
posted @ 2016-10-26 16:08 一壶浊酒难入喉
阅读(136)
评论(0)
推荐(0)
公告