-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1244 lines (854 loc) · 40 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 4.2.1">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<meta name="google-site-verification" content="_yNzrHPGXYa65o27fkpL3htgz2tq8P8GiHeb0ZdLYAo">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"7buzou.com","root":"/","scheme":"Muse","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":false,"show_result":false,"style":null},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":false,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}};
</script>
<meta property="og:type" content="website">
<meta property="og:title" content="zhangmx's blog">
<meta property="og:url" content="https://7buzou.com/index.html">
<meta property="og:site_name" content="zhangmx's blog">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="zhang mingxing">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="https://7buzou.com/">
<script id="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome : true,
isPost : false,
lang : 'zh-CN'
};
</script>
<title>zhangmx's blog</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7076879-3"></script>
<script>
if (CONFIG.hostname === location.hostname) {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-7076879-3');
}
</script>
<noscript>
<style>
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<div class="container use-motion">
<div class="headband"></div>
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">zhangmx's blog</h1>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content index posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2020/07/23/Testing-IDE-tools/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2020/07/23/Testing-IDE-tools/" class="post-title-link" itemprop="url">Testing IDE tools</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2020-07-23 16:29:29" itemprop="dateCreated datePublished" datetime="2020-07-23T16:29:29+08:00">2020-07-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/testing/" itemprop="url" rel="index"><span itemprop="name">testing</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="关于几款测试开发工具的比较"><a href="#关于几款测试开发工具的比较" class="headerlink" title="关于几款测试开发工具的比较"></a>关于几款测试开发工具的比较</h2><p>这是一个很久以前整理的内容了,当初研究自动化测试开发,为找到<code>最好</code>的测试工具,分别尝试使用了一下。</p>
<table>
<thead>
<tr>
<th>IDE</th>
<th><a href="https://www.jetbrains.com/pycharm/" target="_blank" rel="noopener">pycharm</a>(intellibot\robot support)</th>
<th><a href="https://github.com/robotframework/RIDE" target="_blank" rel="noopener">robotframework-ride</a></th>
<th><a href="https://github.com/nokia/RED" target="_blank" rel="noopener">RED(nokia)</a></th>
<th><a href="https://code.visualstudio.com/" target="_blank" rel="noopener">vscode</a></th>
</tr>
</thead>
<tbody><tr>
<td>图形编辑界面</td>
<td>无</td>
<td>表格填写</td>
<td>切卡+表格填写</td>
<td>无</td>
</tr>
<tr>
<td>图形关键字提示助手快捷键</td>
<td>无</td>
<td>ctrl space(alt space)</td>
<td>alt /</td>
<td>无</td>
</tr>
<tr>
<td>文本编辑关键字提示助手快捷键</td>
<td>自感应</td>
<td>ctrl space(alt space)</td>
<td>alt /</td>
<td>自感应</td>
</tr>
<tr>
<td>断点调试</td>
<td>不支持</td>
<td>不支持</td>
<td>支持</td>
<td>需要插件</td>
</tr>
<tr>
<td>明显bug</td>
<td>轻微 某些关键字需要单引号才能识别,但拿到ride或red后报错</td>
<td>有 某些情况下,提示无法保存,权限xxx;执行界面中文乱码;</td>
<td>加入新的库 需要编译,偶有报错 sikuli</td>
<td>无</td>
</tr>
<tr>
<td>执行测试</td>
<td>需插件或配置扩展工具</td>
<td>直接执行</td>
<td>直接执行</td>
<td>需要配置</td>
</tr>
<tr>
<td>查看库python源码</td>
<td>完美</td>
<td>不支持</td>
<td>无法ctrl+鼠标左键直接找到</td>
<td>不支持</td>
</tr>
<tr>
<td>查看keyword文档</td>
<td>ctrl q</td>
<td>ctrl m</td>
<td>ctrl + 鼠标左键(或鼠标悬停)</td>
<td>不支持</td>
</tr>
<tr>
<td>控制单个用例执行</td>
<td>不支持</td>
<td>支持(复选框)</td>
<td>支持(鼠标右键)</td>
<td>不支持</td>
</tr>
<tr>
<td>编写自定义python指令</td>
<td>完美支持</td>
<td>不支持(需在其他ide编写后导入)</td>
<td>安装pydev插件后,支持python开发</td>
<td>支持</td>
</tr>
<tr>
<td>查询keyword</td>
<td>无</td>
<td>F5</td>
<td>无,但是有列表</td>
<td>无</td>
</tr>
<tr>
<td>最后更新日期</td>
<td>3 years ago</td>
<td>2019-1-23</td>
<td>2019-1-31</td>
<td>多个插件</td>
</tr>
</tbody></table>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/24/Normal-demand/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/24/Normal-demand/" class="post-title-link" itemprop="url">Normal demand</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-24 11:02:55" itemprop="dateCreated datePublished" datetime="2016-12-24T11:02:55+08:00">2016-12-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E9%9C%80%E6%B1%82/" itemprop="url" rel="index"><span itemprop="name">需求</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>前天同事提到一个服务器推送行情的需求,然后考虑了一个实现方案,结果昨天一个旧同事也问询了我这个几乎一模一样的需求,感觉这个需要很实际啊</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/24/Normal-demand/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/23/Windows-7-oracle-client-crash/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/23/Windows-7-oracle-client-crash/" class="post-title-link" itemprop="url">Windows 7 oracle client crash</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-23 10:54:22" itemprop="dateCreated datePublished" datetime="2016-12-23T10:54:22+08:00">2016-12-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E6%95%B0%E6%8D%AE%E5%BA%93/" itemprop="url" rel="index"><span itemprop="name">数据库</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>win 7 下oracle默认的客户端连接服务器莫名其妙的闪退,秒退,崩溃,反正这几个词在百度都没搜到相应的解决方案.</p>
<p>解决方案: 用管理员方式打开控制台.</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/23/Windows-7-oracle-client-crash/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/22/Vagrant-and-docker/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/22/Vagrant-and-docker/" class="post-title-link" itemprop="url">Vagrant and docker</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-22 09:33:05" itemprop="dateCreated datePublished" datetime="2016-12-22T09:33:05+08:00">2016-12-22</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/%E8%BF%90%E7%BB%B4/" itemprop="url" rel="index"><span itemprop="name">运维</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>vagrant和docker都研究了一下,下面做一个简单的对比.</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/22/Vagrant-and-docker/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/21/How-to-Hbuilder/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/21/How-to-Hbuilder/" class="post-title-link" itemprop="url">How to Hbuilder</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-21 11:06:20" itemprop="dateCreated datePublished" datetime="2016-12-21T11:06:20+08:00">2016-12-21</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/mobile/" itemprop="url" rel="index"><span itemprop="name">mobile</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>一个各种吹嘘的工具,养眼,速度快的开发环境工具<a href="http://dcloud.io/" target="_blank" rel="noopener">官网</a>.可以用html5+的方式开发手机应用.通过对<a href="http://ask.dcloud.net.cn/docs/" target="_blank" rel="noopener">文档</a>的翻阅,和各种示例的研究.觉得这个东西还是有点价值的,但是还有很多商榷之处,如果是开源的就最棒了</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/21/How-to-Hbuilder/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/20/About-2016/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/20/About-2016/" class="post-title-link" itemprop="url">About 2016</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-20 08:29:32" itemprop="dateCreated datePublished" datetime="2016-12-20T08:29:32+08:00">2016-12-20</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/summary/" itemprop="url" rel="index"><span itemprop="name">summary</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>愿:</p>
<h2 id="冬天阳光灿烂"><a href="#冬天阳光灿烂" class="headerlink" title="冬天阳光灿烂"></a>冬天阳光灿烂</h2><h2 id="春天百花争艳"><a href="#春天百花争艳" class="headerlink" title="春天百花争艳"></a>春天百花争艳</h2><h2 id="夏天清凉惬意"><a href="#夏天清凉惬意" class="headerlink" title="夏天清凉惬意"></a>夏天清凉惬意</h2><h2 id="秋天天高云淡"><a href="#秋天天高云淡" class="headerlink" title="秋天天高云淡"></a>秋天天高云淡</h2>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/20/About-2016/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/19/New-to-YII/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/19/New-to-YII/" class="post-title-link" itemprop="url">New to YII</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-19 11:14:02" itemprop="dateCreated datePublished" datetime="2016-12-19T11:14:02+08:00">2016-12-19</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/framework/" itemprop="url" rel="index"><span itemprop="name">framework</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>去年底接触了 laravel ,用到现在,对这个框架颇有好感,旧同事一直在用 yii ,而 yii 也迭代到了2版本,据说一切推到重来.</p>
<p>拜读了<a href="http://www.digpage.com/" target="_blank" rel="noopener">深入理解Yii2.0</a>.深感技术都是相通的,也不知道是谁抄袭了谁,或者是谁重新造了谁谁的轮子</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/19/New-to-YII/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/19/Openresty-taste/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/19/Openresty-taste/" class="post-title-link" itemprop="url">Openresty taste</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-19 11:13:41" itemprop="dateCreated datePublished" datetime="2016-12-19T11:13:41+08:00">2016-12-19</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/web/" itemprop="url" rel="index"><span itemprop="name">web</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>采集用户行为信息的服务器(B),采用openresty开发.</p>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2016/12/19/Openresty-taste/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/19/Look-at-Weex/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/19/Look-at-Weex/" class="post-title-link" itemprop="url">Look at Weex</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2016-12-19 11:09:12" itemprop="dateCreated datePublished" datetime="2016-12-19T11:09:12+08:00">2016-12-19</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2020-07-24 10:42:53" itemprop="dateModified" datetime="2020-07-24T10:42:53+08:00">2020-07-24</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-folder"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/mobile/" itemprop="url" rel="index"><span itemprop="name">mobile</span></a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<a id="more"></a>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="https://7buzou.com/2016/12/19/Create-ELK/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/default_avatar.jpg">
<meta itemprop="name" content="zhang mingxing">
<meta itemprop="description" content="">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="zhangmx's blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2016/12/19/Create-ELK/" class="post-title-link" itemprop="url">Create ELK</a>