智能合约是现在区块链的一大特色,而不同的链使用的智能合约的虚拟机各不相同,编码语言也有很大差异。而今天我们开始学习EOS的智能合约,我也是从EOS初期一直开发合约至今,期间踩过无数坑,也在Stack Overflow上提过问(最后自己解决了),在实际生产中也积累了很多经验,所以我会连续几周分多次分享... ...
分类:
其他好文 时间:
2020-06-18 17:53:11
阅读次数:
56
解决Web API路由配置支持Area及命名空间参数 首先创建一个新的HttpControllerSelector类 using System; using System.Collections.Concurrent; using System.Collections.Generic; using ...
Switch>en进入模式Switch#conf配置Configuringfromterminal,memory,ornetwork[terminal]?Enterconfigurationcommands,oneperline.EndwithCNTL/Z.Switch(config)#intf0/3Switch(config-if)#switchportmodetrunk更改为trunk模
分类:
其他好文 时间:
2020-06-17 16:39:55
阅读次数:
63
索引的维护,从以下方面考虑: ? Index fragmentation 碎片化? Heap bloat and forwarding ? Columnstore fragmentation? Statistics? In-memory statistics ...
分类:
其他好文 时间:
2020-06-17 13:05:15
阅读次数:
53
单行文本省略号: overflow: hidden;text-overflow:ellipsis;white-space: nowrap; 多行文本省略号: display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertic ...
分类:
其他好文 时间:
2020-06-17 10:50:21
阅读次数:
83
省市 const area = [{ "name": "北京市", "city": ["北京市"] }, { "name": "天津市", "city": ["天津市"] }, { "name": "上海市", "city": ["上海市"] }, { "name": "重庆市", "city": ...
分类:
Web程序 时间:
2020-06-16 21:59:56
阅读次数:
167
今天研究了一下SQL Server实现省市区联动的方法,记录一下。 一、先创建三个表,Dic_Area(区)、Dic_City(市)和Dic_Province(省),三个表建表语句如下: 1 create table Dic_Province 2 ( 3 id int NOT NULL, 4 pro ...
分类:
数据库 时间:
2020-06-16 16:48:53
阅读次数:
141
html中 ( <div class="wave"> </div> ) css( .wave{ width: 200px; height: 200px; background-color: skyblue; margin: 0 auto; position: relative; overflow: ...
分类:
其他好文 时间:
2020-06-16 13:32:04
阅读次数:
68
1、如果是只需要显示一行+省略号,那么就容易啦 { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } 2、如果是需要显示2行或者更多+省略号 { overflow:hidden; text-overflow:ellipsis ...
分类:
Web程序 时间:
2020-06-16 13:28:44
阅读次数:
71
实验要求: 1.1.1.1访问5.5.5.5走R1-R2-R4-R5 5.5.5.5访问1.1.1.1走R5-R4-R3-R1 一、配置IP 二、为R2、R3、R4配置IGP动态路由OSPF R2: ospf 100 area 0.0.0.0 network 12.1.1.0 0.0.0.255 n ...
分类:
其他好文 时间:
2020-06-16 12:48:38
阅读次数:
66