摘要: 问题起因: 在项目目录中使用 ionic g component SearchBar 加入一个新的自定义组件并在 html 中插入代码: 此时运行报错 ion-searchbar is not a known elements。经过一翻搜索之后找到可行的解决方案如下: 在 components.mo 阅读全文
posted @ 2018-04-15 12:10 RexfieldVon 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 在最新版的WIN10系统中出于保护目的默认不允许访问匿名的NAS,会弹出一个路径不存在的错误。只需要修改注册表中的一项即可。 将 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters 中的 阅读全文
posted @ 2018-01-27 13:11 RexfieldVon 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 无需安装 Debian 系统,非虚拟机安装,只需 root 并安装 busybox 能够 mount 和 chroot,直接在终端模拟器下运行,快速简单实用。完整的Debian Wheezy环境,能够和Android系统交互。感谢 Debian 的贡献者和 LinuxInstallerSTD 的作者。 阅读全文
posted @ 2014-04-24 15:46 RexfieldVon 阅读(1419) 评论(0) 推荐(0) 编辑
摘要: 1 Func RTFunc = (RTFuncRT) =>2 {3 return (RTFuncRT as Func)(RTFuncRT);4 }; 阅读全文
posted @ 2014-02-20 01:10 RexfieldVon 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 定义: M={Q, ∑, f, q0, F} q = f(q, δ) σ ∈ Σ (q, q0, F) ∈ Q 阅读全文
posted @ 2014-02-18 16:25 RexfieldVon 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 1 /// 2 /// 整数区间类 3 /// 4 private class Interval 5 { 6 private int _start = 0, _end = 0; 7 public int Start 8 { 9 get { return Math.Min(this._start, this._end); } 10 set { this._st... 阅读全文
posted @ 2014-02-16 17:07 RexfieldVon 阅读(4513) 评论(0) 推荐(0) 编辑
摘要: 默认纵向,使用“rankdir="LR";”可使视图横向排列; 定义节点可以单独列出,“0;”方便自动生成; “edge[fontname="微软雅黑"];”设置边标签字体,以支持中文; 文件需保存为Unicode或者UTF8格式,否则中文字符可能乱码; 当有多个出度最好先定义节点的各项特性,然后用“0->{1, 2}”进行连接,或者分别连接; 注意字符串序列中的转义符是否需要,特别是自动生成的时候。 阅读全文
posted @ 2014-02-16 16:44 RexfieldVon 阅读(598) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-09-01 11:45 RexfieldVon 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 * LR(1) 语法分析 3 */ 4 #include 5 #include 6 #include 7 8 #include "Common.h" 9 #include "LRCal.h"10 #include "LRMigrate.h"11 #include "Stack.h"12 13 #define NEXTWORD(s) ((*(s)==0)?SYM_EOF:*((s)++))14 15 extern char *Grammer[];16 17 void LRParse(struct LRE 阅读全文
posted @ 2013-08-31 17:15 RexfieldVon 阅读(861) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 * LR 转换表 3 * + Goto 记录表 4 * + 状态转换表 5 */ 6 #include 7 #include 8 #include 9 10 #include "Common.h" 11 #include "Closure.h" 12 #include "LRCal.h" 13 #include "LRMigrate.h" 14 15 extern char *Grammer[]; 16 extern char ***GrammerRule; 17 18 /* 19 * 创建Goto记 阅读全文
posted @ 2013-08-31 10:50 RexfieldVon 阅读(1056) 评论(0) 推荐(0) 编辑