摘要: Function GenPasswd(length, level) Dim allstr, substr, passwd As String allstr = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^& 阅读全文
posted @ 2018-11-27 17:34 dunkbird 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: 发表于 2008-09-23 09:35:15 楼主net.sf.jasperreports.engine.JRException: Error retrieving field value from bean : 我把field的声明方式由 <field name="number" class=" 阅读全文
posted @ 2018-08-16 19:22 dunkbird 阅读(241) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/shiyun123zw/article/details/79166448 阅读全文
posted @ 2018-08-16 15:59 dunkbird 阅读(90) 评论(0) 推荐(0) 编辑
摘要: string authInfo = userName + ":" + userPassword; authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo)); request.Headers["Authorizatio 阅读全文
posted @ 2017-05-26 09:14 dunkbird 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 启动命令: nohup /usr/bin/beanstalkd -l xxx.xxx.xxx.xxx -p 11300 & >> /dev/null 2>&1 正常启动后,利用 【lsof -i:11300】查看 该服务是否正常启动 停止命令: /etc/init.d/beanstalkd stop 阅读全文
posted @ 2017-03-22 15:09 dunkbird 阅读(1434) 评论(0) 推荐(0) 编辑
摘要: http://www.tuicool.com/articles/RnAVn2 三个角色: chef server, chef workstation, chef nodes(chef clients) 下载安装工具:https://downloads.chef.io 阅读全文
posted @ 2017-03-06 13:58 dunkbird 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 安装版本: ubuntu trusty64(14.04) step1: 安装vagrant,vbox step2: 下载box文件(官网http://www.vagrantbox.es/) https://atlas.hashicorp.com/ubuntu/boxes/trusty64/versi 阅读全文
posted @ 2017-03-03 10:14 dunkbird 阅读(4326) 评论(1) 推荐(0) 编辑
摘要: vboxmanage list vms vboxmanage unregistervm homestead-7 --delete 阅读全文
posted @ 2017-03-02 14:26 dunkbird 阅读(101) 评论(0) 推荐(0) 编辑
摘要: root@xxx# curl -i --get --include 'http://ali-barcode.showapi.com/barcode?code=6938166920785' -H 'Authorization:APPCODE xxxxxxxxxxx'HTTP/1.1 200 OKSer 阅读全文
posted @ 2017-01-18 16:01 dunkbird 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 该篇文章主要介绍Laravel获取用户请求和输入信息的方法。获取基本输入信息: Cookie信息:所有cookie值都本laravel加密,擅自修改cookie将会被废弃; 提交信息持久化,有时候会将一个请求中的信息持续到下一个请求中仍然有效。 文件上传处理: 获取更多请求详细信息: 转载地址: h 阅读全文
posted @ 2016-12-06 09:20 dunkbird 阅读(195) 评论(0) 推荐(0) 编辑