摘要: bookmark即书签在eclipse里非常非常好用,可以快速定位到核心函数、代码部分,省去Ctrl+F低效的查找。 使用方法: (1)、插入bookmark: 把光标放在重要代码位置的最左边一栏,右击 add Bookmark,设置bookmark名称。 或者 添加一个快捷键(比如Ctrl+',' 阅读全文
posted @ 2018-01-01 08:26 galoishelley 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 1- 准备PDF域 数据 2- 绘制PDF 有PDF模板的情况下,重新绘制PDF 1- 使用 Adobe Acrobat DC 2- 编辑PDF > 准备表单 代码中读取PDF模板,按照排版好的域,顺序写入内容 reference: https://itextpdf.com/ 阅读全文
posted @ 2017-12-29 13:02 galoishelley 阅读(3448) 评论(2) 推荐(0) 编辑
摘要: 既然validator依赖与Bootstrap3,那么表单必须使用Bootstrap的类来编写. Tip1:如果表单不是通过Bootstrap构建(即元素包含表单项且关联的label没有form-group类),可能会看到错误Uncaught RangeError: Maximum call sta 阅读全文
posted @ 2016-09-25 11:38 galoishelley 阅读(1493) 评论(0) 推荐(0) 编辑
摘要: CREATE DATABASE IF NOT EXISTS `focusdata` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;USE `focusdata`; 阅读全文
posted @ 2016-08-29 23:28 galoishelley 阅读(141) 评论(0) 推荐(0) 编辑
摘要: ALTER TABLE `fd_rel_customer_doctor` ADD CONSTRAINT `FK_fd_rel_customer_doctor_1` FOREIGN KEY (`CUSTOMER_USER_ID`) REFERENCES `fd_customer_user` (`CUS 阅读全文
posted @ 2016-08-28 20:12 galoishelley 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 用老毛桃做个U盘启动, 从U盘启动 1- 启动老毛桃 选择01 精装版 启动PE系统后 类似精装版的xp系统 a. 运行分区,格式化C盘 b. 运行桌面一键恢复 选择手动恢复 c. 运行分区, 重置>>> d. 运行修改启动, C盘 修复 阅读全文
posted @ 2016-08-11 13:42 galoishelley 阅读(1475) 评论(0) 推荐(0) 编辑
摘要: $this->pdo = new PDO($dsn, $user, $password, array(PDO::ATTR_PERSISTENT => true)); $stmt = $this->pdo->prepare("set names utf8"); $stmt->execute(); 阅读全文
posted @ 2016-06-16 11:56 galoishelley 阅读(1178) 评论(0) 推荐(0) 编辑
摘要: 普通帐号登su;mkdir /root;chown root:root /root cp -R /etc/skel/.[!.]* ./ 阅读全文
posted @ 2016-06-06 11:03 galoishelley 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 自增字段必须为primary key 2种方法: 1- ALTER TABLE `qr_role` CHANGE `ROLE_ID` `ROLE_ID` INT(11) NOT NULL AUTO_INCREMENT; 2- phpmyadmin设置id自增(AUTO_INCREMENT) 在A_I 阅读全文
posted @ 2016-05-04 12:07 galoishelley 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: 7- 色彩的色相谱 在这个环中,位于180度夹角的两种颜色(也就是圆的某条直径两端的颜色),称为反转色,又称为互补色。互补的两种颜色之间是此消彼长的关系,小框往蓝色移动的同时就会远离黄色, 黄色=白色-蓝色”。为什么不是白色+黄色呢?因为蓝色是原色光,要以原色光的调整为准。因此,最黄色的数值是255 阅读全文
posted @ 2016-05-03 11:13 galoishelley 阅读(1751) 评论(0) 推荐(0) 编辑