-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnohup.out
More file actions
3363 lines (3286 loc) · 145 KB
/
nohup.out
File metadata and controls
3363 lines (3286 loc) · 145 KB
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
./issuesClawler: ./issuesClawler: cannot execute binary file
./issuesClawler: ./issuesClawler: cannot execute binary file
./issuesClawler: ./issuesClawler: cannot execute binary file
nohup: ignoring input
Ready! Gooo! %v 2018-11-29 12:00:00.001479459 +0800 CST m=+9658.883798779
/d2-projects/d2-awesome/issues/243
/d2-projects/d2-awesome/issues/242
/d2-projects/d2-awesome/issues/241
/d2-projects/d2-awesome/issues/240
/d2-projects/d2-awesome/issues/239
/d2-projects/d2-awesome/issues/238
/d2-projects/d2-awesome/issues/237
/d2-projects/d2-awesome/issues/236
- name: 开源项目
list:
- name: notadd/neditor 基于 ueditor的更现代化的富文本编辑器,支持HTTPS
note: notadd/neditor 基于 ueditor的更现代化的富文本编辑器,支持HTTPS
url: https://github.com/notadd/neditor
- name: 分享
list:
- name: UC国际技术
note: UC国际技术
url: https://mp.weixin.qq.com/s?__biz=MzU0Nzk1MTg5OA==&mid=2247484459&idx=1&sn=af40c897b9a8bdbb110c0ec6ff189f96&chksm=fb47c05ecc304948b90f6a03d79f9a0c9373a7005273edfaaa93a52e4a935a73b039a792bfbc&xtrack=1&scene=90&sessionid=1543406791&ascene=56&devicetype=android-24&version=2607033a&nettype=cmnet&abtest_cookie=BQABAAoACwANABIAFAAFACOXHgBXmR4AiJkeAJuZHgChmR4AAAA%3D&lang=zh_CN&pass_ticket=UnnbkAO9u%2BNkR5baIe5KP10mGoFLACmEI2l7Cx9h0PM%3D&wx_header=1
- name: 5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure Code
note: 5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure Code
url: https://blog.gruntwork.io/5-lessons-learned-from-writing-over-300-000-lines-of-infrastructure-code-36ba7fadeac1
- name: 前端早读课
note: 前端早读课
url: https://mp.weixin.qq.com/s?__biz=MjM5MTA1MjAxMQ%3D%3D&mid=2651230568&idx=1&sn=1f6f1de7316f7a57c3209b6faa1ed9a4#wechat_redirect
- name: MakeGirlsMoe - Create Anime Characters with A.I.!
note: MakeGirlsMoe - Create Anime Characters with A.I.!
url: https://make.girls.moe/#/
- name: 教程
list:
- name: How to automatic Dark Mode upon sunset including Safari, iTerm, Vim in macOS – Marginalia by Apostolos Papadopoulos
note: How to automatic Dark Mode upon sunset including Safari, iTerm, Vim in macOS – Marginalia by Apostolos Papadopoulos
url: http://apas.gr/2018/11/dark-mode-macos-safari-iterm-vim/
- name: 工具
list:
- name: Create compelling Documentation with Github Pages – ITNEXT
note: Create compelling Documentation with Github Pages – ITNEXT
url: https://itnext.io/create-compelling-documentation-with-github-pages-16e4149efe9e
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 7047076] 20181129
3 files changed, 98 insertions(+), 932 deletions(-)
create mode 100644 20181129.md
rewrite nohup.out (97%)
nohup: ignoring input
Ready! Gooo! %v 2018-11-29 13:00:00.000698778 +0800 CST m=+1991.231890593
/d2-projects/d2-awesome/issues/246
/d2-projects/d2-awesome/issues/245
/d2-projects/d2-awesome/issues/244
/d2-projects/d2-awesome/issues/243
/d2-projects/d2-awesome/issues/242
/d2-projects/d2-awesome/issues/241
/d2-projects/d2-awesome/issues/240
/d2-projects/d2-awesome/issues/239
/d2-projects/d2-awesome/issues/238
/d2-projects/d2-awesome/issues/237
/d2-projects/d2-awesome/issues/236
- name: 设计
list:
- name: Conversational UI - UI Movement
note: Conversational UI - UI Movement
url: https://uimovement.com/ui/6734/conversational-ui/
- name: Interfilm - UI Movement
note: Interfilm - UI Movement
url: https://uimovement.com/ui/6730/interfilm/
- name: 分享
list:
- name: React Hooks 深入不浅出 - 掘金
note: React Hooks 深入不浅出 - 掘金
url: https://juejin.im/post/5bfe93566fb9a049c30af2db?from=timeline&isappinstalled=0
- name: UC国际技术
note: UC国际技术
url: https://mp.weixin.qq.com/s?__biz=MzU0Nzk1MTg5OA==&mid=2247484459&idx=1&sn=af40c897b9a8bdbb110c0ec6ff189f96&chksm=fb47c05ecc304948b90f6a03d79f9a0c9373a7005273edfaaa93a52e4a935a73b039a792bfbc&xtrack=1&scene=90&sessionid=1543406791&ascene=56&devicetype=android-24&version=2607033a&nettype=cmnet&abtest_cookie=BQABAAoACwANABIAFAAFACOXHgBXmR4AiJkeAJuZHgChmR4AAAA%3D&lang=zh_CN&pass_ticket=UnnbkAO9u%2BNkR5baIe5KP10mGoFLACmEI2l7Cx9h0PM%3D&wx_header=1
- name: 5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure Code
note: 5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure Code
url: https://blog.gruntwork.io/5-lessons-learned-from-writing-over-300-000-lines-of-infrastructure-code-36ba7fadeac1
- name: 前端早读课
note: 前端早读课
url: https://mp.weixin.qq.com/s?__biz=MjM5MTA1MjAxMQ%3D%3D&mid=2651230568&idx=1&sn=1f6f1de7316f7a57c3209b6faa1ed9a4#wechat_redirect
- name: MakeGirlsMoe - Create Anime Characters with A.I.!
note: MakeGirlsMoe - Create Anime Characters with A.I.!
url: https://make.girls.moe/#/
- name: 教程
list:
- name: How to automatic Dark Mode upon sunset including Safari, iTerm, Vim in macOS – Marginalia by Apostolos Papadopoulos
note: How to automatic Dark Mode upon sunset including Safari, iTerm, Vim in macOS – Marginalia by Apostolos Papadopoulos
url: http://apas.gr/2018/11/dark-mode-macos-safari-iterm-vim/
- name: 工具
list:
- name: Create compelling Documentation with Github Pages – ITNEXT
note: Create compelling Documentation with Github Pages – ITNEXT
url: https://itnext.io/create-compelling-documentation-with-github-pages-16e4149efe9e
- name: 开源项目
list:
- name: notadd/neditor 基于 ueditor的更现代化的富文本编辑器,支持HTTPS
note: notadd/neditor 基于 ueditor的更现代化的富文本编辑器,支持HTTPS
url: https://github.com/notadd/neditor
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master afebbeb] 20181129
3 files changed, 75 insertions(+), 4 deletions(-)
Ready! Gooo! %v 2018-11-29 14:00:00.00072848 +0800 CST m=+5591.231920475
/d2-projects/d2-awesome/issues/246
/d2-projects/d2-awesome/issues/245
/d2-projects/d2-awesome/issues/244
/d2-projects/d2-awesome/issues/243
/d2-projects/d2-awesome/issues/242
/d2-projects/d2-awesome/issues/241
/d2-projects/d2-awesome/issues/240
/d2-projects/d2-awesome/issues/239
/d2-projects/d2-awesome/issues/238
/d2-projects/d2-awesome/issues/237
/d2-projects/d2-awesome/issues/236
- name: 开源项目
list:
- name: notadd/neditor 基于 ueditor的更现代化的富文本编辑器,支持HTTPS
note: notadd/neditor 基于 ueditor的更现代化的富文本编辑器,支持HTTPS
url: https://github.com/notadd/neditor
- name: 设计
list:
- name: Conversational UI - UI Movement
note: Conversational UI - UI Movement
url: https://uimovement.com/ui/6734/conversational-ui/
- name: Interfilm - UI Movement
note: Interfilm - UI Movement
url: https://uimovement.com/ui/6730/interfilm/
- name: 分享
list:
- name: React Hooks 深入不浅出 - 掘金
note: React Hooks 深入不浅出 - 掘金
url: https://juejin.im/post/5bfe93566fb9a049c30af2db?from=timeline&isappinstalled=0
- name: UC国际技术
note: UC国际技术
url: https://mp.weixin.qq.com/s?__biz=MzU0Nzk1MTg5OA==&mid=2247484459&idx=1&sn=af40c897b9a8bdbb110c0ec6ff189f96&chksm=fb47c05ecc304948b90f6a03d79f9a0c9373a7005273edfaaa93a52e4a935a73b039a792bfbc&xtrack=1&scene=90&sessionid=1543406791&ascene=56&devicetype=android-24&version=2607033a&nettype=cmnet&abtest_cookie=BQABAAoACwANABIAFAAFACOXHgBXmR4AiJkeAJuZHgChmR4AAAA%3D&lang=zh_CN&pass_ticket=UnnbkAO9u%2BNkR5baIe5KP10mGoFLACmEI2l7Cx9h0PM%3D&wx_header=1
- name: 5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure Code
note: 5 Lessons Learned From Writing Over 300,000 Lines of Infrastructure Code
url: https://blog.gruntwork.io/5-lessons-learned-from-writing-over-300-000-lines-of-infrastructure-code-36ba7fadeac1
- name: 前端早读课
note: 前端早读课
url: https://mp.weixin.qq.com/s?__biz=MjM5MTA1MjAxMQ%3D%3D&mid=2651230568&idx=1&sn=1f6f1de7316f7a57c3209b6faa1ed9a4#wechat_redirect
- name: MakeGirlsMoe - Create Anime Characters with A.I.!
note: MakeGirlsMoe - Create Anime Characters with A.I.!
url: https://make.girls.moe/#/
- name: 教程
list:
- name: How to automatic Dark Mode upon sunset including Safari, iTerm, Vim in macOS – Marginalia by Apostolos Papadopoulos
note: How to automatic Dark Mode upon sunset including Safari, iTerm, Vim in macOS – Marginalia by Apostolos Papadopoulos
url: http://apas.gr/2018/11/dark-mode-macos-safari-iterm-vim/
- name: 工具
list:
- name: Create compelling Documentation with Github Pages – ITNEXT
note: Create compelling Documentation with Github Pages – ITNEXT
url: https://itnext.io/create-compelling-documentation-with-github-pages-16e4149efe9e
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 7443076] 20181129
2 files changed, 62 insertions(+), 5 deletions(-)
Ready! Gooo! %v 2018-11-30 12:00:00.001329353 +0800 CST m=+84791.232521231
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
- name: 分享
list:
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 6222022] 20181130
2 files changed, 59 insertions(+), 0 deletions(-)
create mode 100644 20181130.md
Ready! Gooo! %v 2018-11-30 13:00:00.001017463 +0800 CST m=+88391.232209258
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
- name: 分享
list:
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master de17b1c] 20181130
2 files changed, 30 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-11-30 14:00:00.000431664 +0800 CST m=+91991.231623515
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 分享
list:
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master c6ce22b] 20181130
2 files changed, 44 insertions(+), 7 deletions(-)
Ready! Gooo! %v 2018-12-01 12:00:00.001113205 +0800 CST m=+171191.232304982
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 1cbdf6c] 20181201
2 files changed, 84 insertions(+), 0 deletions(-)
create mode 100644 20181201.md
Ready! Gooo! %v 2018-12-01 13:00:00.001118479 +0800 CST m=+174791.232310336
exit status 1
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master ef872c4] 20181201
1 files changed, 38 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-01 14:00:00.000334297 +0800 CST m=+178391.231526080
exit status 1
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 3ff1021] 20181201
1 files changed, 37 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-02 12:00:00.001101946 +0800 CST m=+257591.232293768
/d2-projects/d2-awesome/issues/258
/d2-projects/d2-awesome/issues/257
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
- name: 分享
list:
- name: 如何为自己的 Github 项目选择开源许可证? - 知乎
note: 如何为自己的 Github 项目选择开源许可证? - 知乎
url: https://zhuanlan.zhihu.com/p/51331026?utm_source=wechat_timeline&utm_medium=social&from=timeline&isappinstalled=0#showWechatShareTip
- name: 一位工作了 10 年的 Java 高级架构师的技术之路
note: 码洞
url: https://mp.weixin.qq.com/s/9wfEJvU_ON6gq71L9Oni7g
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master e9c1260] 20181202
2 files changed, 98 insertions(+), 0 deletions(-)
create mode 100644 20181202.md
Ready! Gooo! %v 2018-12-02 13:00:00.000820134 +0800 CST m=+261191.232011886
/d2-projects/d2-awesome/issues/258
/d2-projects/d2-awesome/issues/257
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: 如何为自己的 Github 项目选择开源许可证? - 知乎
note: 如何为自己的 Github 项目选择开源许可证? - 知乎
url: https://zhuanlan.zhihu.com/p/51331026?utm_source=wechat_timeline&utm_medium=social&from=timeline&isappinstalled=0#showWechatShareTip
- name: 一位工作了 10 年的 Java 高级架构师的技术之路
note: 码洞
url: https://mp.weixin.qq.com/s/9wfEJvU_ON6gq71L9Oni7g
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 6fe0902] 20181202
2 files changed, 58 insertions(+), 13 deletions(-)
Ready! Gooo! %v 2018-12-02 14:00:00.000295945 +0800 CST m=+264791.231487787
/d2-projects/d2-awesome/issues/258
/d2-projects/d2-awesome/issues/257
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: 如何为自己的 Github 项目选择开源许可证? - 知乎
note: 如何为自己的 Github 项目选择开源许可证? - 知乎
url: https://zhuanlan.zhihu.com/p/51331026?utm_source=wechat_timeline&utm_medium=social&from=timeline&isappinstalled=0#showWechatShareTip
- name: 一位工作了 10 年的 Java 高级架构师的技术之路
note: 码洞
url: https://mp.weixin.qq.com/s/9wfEJvU_ON6gq71L9Oni7g
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 开源项目
list:
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 7de8cbd] 20181202
1 files changed, 44 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-03 12:00:00.000382243 +0800 CST m=+343991.231592017
/d2-projects/d2-awesome/issues/262
/d2-projects/d2-awesome/issues/261
/d2-projects/d2-awesome/issues/260
/d2-projects/d2-awesome/issues/259
/d2-projects/d2-awesome/issues/258
/d2-projects/d2-awesome/issues/257
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: [英][官方] Mozilla 发布 Firefox Reality 在 VR 世界中体验 Web - 前端 - 掘金
note: [英][官方] Mozilla 发布 Firefox Reality 在 VR 世界中体验 Web - 前端 - 掘金
url: https://juejin.im/entry/5c0352aa51882511630d6567?from=timeline&isappinstalled=0
- name: 如何为自己的 Github 项目选择开源许可证? - 知乎
note: 如何为自己的 Github 项目选择开源许可证? - 知乎
url: https://zhuanlan.zhihu.com/p/51331026?utm_source=wechat_timeline&utm_medium=social&from=timeline&isappinstalled=0#showWechatShareTip
- name: 一位工作了 10 年的 Java 高级架构师的技术之路
note: 码洞
url: https://mp.weixin.qq.com/s/9wfEJvU_ON6gq71L9Oni7g
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 教程
list:
- name: 【漫画】内存管理速成教程
note: 前端 - 掘金
url: https://juejin.im/entry/5bff4a23518825604c161c28
- name: Bitcoin in 2019 The Definitive Guide | Stadivm.com | Cryptocurrency Forum and Blockchain Networking Hub - Stadivm
note: Bitcoin in 2019 The Definitive Guide | Stadivm.com | Cryptocurrency Forum and Blockchain Networking Hub - Stadivm
url: https://stadivm.com/blog/bitcoin-guide/
- name: 开源项目
list:
- name: primer/primer
note: The CSS design system that powers GitHub
url: https://github.com/primer/primer
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master b83b401] 20181203
2 files changed, 130 insertions(+), 0 deletions(-)
create mode 100644 20181203.md
Ready! Gooo! %v 2018-12-03 13:00:00.000732995 +0800 CST m=+347591.231924804
/d2-projects/d2-awesome/issues/262
/d2-projects/d2-awesome/issues/261
/d2-projects/d2-awesome/issues/260
/d2-projects/d2-awesome/issues/259
/d2-projects/d2-awesome/issues/258
/d2-projects/d2-awesome/issues/257
/d2-projects/d2-awesome/issues/256
/d2-projects/d2-awesome/issues/254
/d2-projects/d2-awesome/issues/253
/d2-projects/d2-awesome/issues/252
/d2-projects/d2-awesome/issues/251
/d2-projects/d2-awesome/issues/250
- name: 分享
list:
- name: [英][官方] Mozilla 发布 Firefox Reality 在 VR 世界中体验 Web - 前端 - 掘金
note: [英][官方] Mozilla 发布 Firefox Reality 在 VR 世界中体验 Web - 前端 - 掘金
url: https://juejin.im/entry/5c0352aa51882511630d6567?from=timeline&isappinstalled=0
- name: 如何为自己的 Github 项目选择开源许可证? - 知乎
note: 如何为自己的 Github 项目选择开源许可证? - 知乎
url: https://zhuanlan.zhihu.com/p/51331026?utm_source=wechat_timeline&utm_medium=social&from=timeline&isappinstalled=0#showWechatShareTip
- name: 一位工作了 10 年的 Java 高级架构师的技术之路
note: 码洞
url: https://mp.weixin.qq.com/s/9wfEJvU_ON6gq71L9Oni7g
- name: undefined
note: undefined
url: undefined
- name: 简介 · 语雀
note: 简介 · 语雀
url: https://www.yuque.com/tech-learn/github-project-recommend/jianjie
- name: 【进阶3-1期】JavaScript深入之史上最全--5种this绑定全面解析
note: 掘金
url: https://juejin.im/post/5bfe8fc5e51d4514e0515b90
- name: 新闻
list:
- name: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
note: Cloud Source Repositories - 用于存储和管理代码的私有 Git 代码库 | Source Repositories | Google Cloud
url: https://cloud.google.com/source-repositories/
- name: 教程
list:
- name: 【漫画】内存管理速成教程
note: 前端 - 掘金
url: https://juejin.im/entry/5bff4a23518825604c161c28
- name: Bitcoin in 2019 The Definitive Guide | Stadivm.com | Cryptocurrency Forum and Blockchain Networking Hub - Stadivm
note: Bitcoin in 2019 The Definitive Guide | Stadivm.com | Cryptocurrency Forum and Blockchain Networking Hub - Stadivm
url: https://stadivm.com/blog/bitcoin-guide/
- name: 开源项目
list:
- name: primer/primer
note: The CSS design system that powers GitHub
url: https://github.com/primer/primer
- name: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
note: GitHub - cssanimation/css-animation-101 Learn how to bring animation to your web projects
url: https://github.com/cssanimation/css-animation-101
- name: didi/cube-ui
note: A fantastic mobile ui lib implement by Vue
url: https://github.com/didi/cube-ui
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master eb5cf1e] 20181203
1 files changed, 63 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-03 14:00:00.000232699 +0800 CST m=+351191.231424546
/d2-projects/d2-awesome/issues/263
- name: 分享
list:
- name: 如何优雅处理前端异常? - Jartto's blog
note: 如何优雅处理前端异常? - Jartto's blog
url: http://jartto.wang/2018/11/20/js-exception-handling/
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master d6df3a5] 20181203
2 files changed, 41 insertions(+), 68 deletions(-)
rewrite 20181203.md (84%)
Ready! Gooo! %v 2018-12-04 12:00:00.001000121 +0800 CST m=+430391.232191905
/d2-projects/d2-awesome/issues/270
/d2-projects/d2-awesome/issues/267
/d2-projects/d2-awesome/issues/266
/d2-projects/d2-awesome/issues/265
/d2-projects/d2-awesome/issues/264
/d2-projects/d2-awesome/issues/263
- name: 开源项目
list:
- name: a54552239/projectManage
note: 基于Vue.js实现的项目管理系统
url: https://github.com/a54552239/projectManage
- name: ParadeTo/vue-tree-list
note: A vue component for tree structure
url: https://github.com/ParadeTo/vue-tree-list
- name: bolasblack/http-api-guide
note:
url: https://github.com/bolasblack/http-api-guide
- name: alibaba/DataX
note:
url: https://github.com/alibaba/DataX
- name: 分享
list:
- name: 前端早读课
note: 前端早读课
url: https://mp.weixin.qq.com/s/qmwf1qqIcROd6h-LWm2gQQ
- name: 如何优雅处理前端异常? - Jartto's blog
note: 如何优雅处理前端异常? - Jartto's blog
url: http://jartto.wang/2018/11/20/js-exception-handling/
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 65fb2f3] 20181204
2 files changed, 81 insertions(+), 0 deletions(-)
create mode 100644 20181204.md
Ready! Gooo! %v 2018-12-04 13:00:00.000779515 +0800 CST m=+433991.231971690
/d2-projects/d2-awesome/issues/270
/d2-projects/d2-awesome/issues/267
/d2-projects/d2-awesome/issues/266
/d2-projects/d2-awesome/issues/265
/d2-projects/d2-awesome/issues/264
/d2-projects/d2-awesome/issues/263
- name: 开源项目
list:
- name: a54552239/projectManage
note: 基于Vue.js实现的项目管理系统
url: https://github.com/a54552239/projectManage
- name: ParadeTo/vue-tree-list
note: A vue component for tree structure
url: https://github.com/ParadeTo/vue-tree-list
- name: bolasblack/http-api-guide
note:
url: https://github.com/bolasblack/http-api-guide
- name: alibaba/DataX
note:
url: https://github.com/alibaba/DataX
- name: 分享
list:
- name: 前端早读课
note: 前端早读课
url: https://mp.weixin.qq.com/s/qmwf1qqIcROd6h-LWm2gQQ
- name: 如何优雅处理前端异常? - Jartto's blog
note: 如何优雅处理前端异常? - Jartto's blog
url: http://jartto.wang/2018/11/20/js-exception-handling/
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master b47024f] 20181204
1 files changed, 35 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-04 14:00:00.000270975 +0800 CST m=+437591.231462790
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 25b9933] 20181204
2 files changed, 30 insertions(+), 46 deletions(-)
rewrite 20181204.md (65%)
Ready! Gooo! %v 2018-12-05 12:00:00.001090292 +0800 CST m=+516791.232282347
/d2-projects/d2-awesome/issues/274
/d2-projects/d2-awesome/issues/272
/d2-projects/d2-awesome/issues/271
- name: 开源项目
list:
- name: vladocar/screenshoteer
note: Make website screenshots and mobile emulations from the command line.
url: https://github.com/vladocar/screenshoteer
- name: 新闻
list:
- name: Release v6.0.0 · reduxjs/react-redux
note:
url: https://github.com/reduxjs/react-redux/releases/tag/v6.0.0
- name: 分享
list:
- name: 为什么要避免写 for 循环 - 掘金
note: 为什么要避免写 for 循环 - 掘金
url: https://juejin.im/post/5c0463226fb9a049bc4c67c0
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master c21ad23] 20181205
2 files changed, 64 insertions(+), 0 deletions(-)
create mode 100644 20181205.md
Ready! Gooo! %v 2018-12-05 13:00:00.001107968 +0800 CST m=+520391.232299779
/d2-projects/d2-awesome/issues/279
/d2-projects/d2-awesome/issues/278
/d2-projects/d2-awesome/issues/277
/d2-projects/d2-awesome/issues/276
/d2-projects/d2-awesome/issues/275
/d2-projects/d2-awesome/issues/274
/d2-projects/d2-awesome/issues/272
/d2-projects/d2-awesome/issues/271
- name: 开源项目
list:
- name: algorithm-visualizer/algorithm-visualizer
note: Interactive Online Platform that Visualizes Algorithms from Code
url: https://github.com/algorithm-visualizer/algorithm-visualizer
- name: zhoushaw/Instagram
note: A web-app with some feature like Instagram!!😉📸😊
url: https://github.com/zhoushaw/Instagram
- name: vladocar/screenshoteer
note: Make website screenshots and mobile emulations from the command line.
url: https://github.com/vladocar/screenshoteer
- name: 新闻
list:
- name: Google’s cross-platform Flutter UI toolkit hits version 1.0 | TechCrunch
note: Google’s cross-platform Flutter UI toolkit hits version 1.0 | TechCrunch
url: https://techcrunch.com/2018/12/04/googles-cross-platform-flutter-ui-toolkit-hits-version-1-0/
- name: Release v6.0.0 · reduxjs/react-redux
note:
url: https://github.com/reduxjs/react-redux/releases/tag/v6.0.0
- name: 分享
list:
- name: 为什么要避免写 for 循环 - 掘金
note: 为什么要避免写 for 循环 - 掘金
url: https://juejin.im/post/5c0463226fb9a049bc4c67c0
- name: 工具
list:
- name: eamodio/vscode-gitlens
note: Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more
url: https://github.com/eamodio/vscode-gitlens
- name: darkreader/darkreader
note: Dark Reader Chrome and Firefox extension
url: https://github.com/darkreader/darkreader
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 8dcd135] 20181205
2 files changed, 64 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-05 14:00:00.000450515 +0800 CST m=+523991.231642291
/d2-projects/d2-awesome/issues/280
/d2-projects/d2-awesome/issues/279
/d2-projects/d2-awesome/issues/278
/d2-projects/d2-awesome/issues/277
/d2-projects/d2-awesome/issues/276
/d2-projects/d2-awesome/issues/275
/d2-projects/d2-awesome/issues/274
/d2-projects/d2-awesome/issues/272
/d2-projects/d2-awesome/issues/271
- name: 开源项目
list:
- name: algorithm-visualizer/algorithm-visualizer
note: Interactive Online Platform that Visualizes Algorithms from Code
url: https://github.com/algorithm-visualizer/algorithm-visualizer
- name: zhoushaw/Instagram
note: A web-app with some feature like Instagram!!😉📸😊
url: https://github.com/zhoushaw/Instagram
- name: vladocar/screenshoteer
note: Make website screenshots and mobile emulations from the command line.
url: https://github.com/vladocar/screenshoteer
- name: 新闻
list:
- name: Google’s cross-platform Flutter UI toolkit hits version 1.0 | TechCrunch
note: Google’s cross-platform Flutter UI toolkit hits version 1.0 | TechCrunch
url: https://techcrunch.com/2018/12/04/googles-cross-platform-flutter-ui-toolkit-hits-version-1-0/
- name: Release v6.0.0 · reduxjs/react-redux
note:
url: https://github.com/reduxjs/react-redux/releases/tag/v6.0.0
- name: 分享
list:
- name: 为什么要避免写 for 循环 - 掘金
note: 为什么要避免写 for 循环 - 掘金
url: https://juejin.im/post/5c0463226fb9a049bc4c67c0
- name: 设计
list:
- name: Search - UI Movement
note: Search - UI Movement
url: https://uimovement.com/ui/6793/search/
- name: 工具
list:
- name: eamodio/vscode-gitlens
note: Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more
url: https://github.com/eamodio/vscode-gitlens
- name: darkreader/darkreader
note: Dark Reader Chrome and Firefox extension
url: https://github.com/darkreader/darkreader
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master ee8c717] 20181205
2 files changed, 57 insertions(+), 0 deletions(-)
Ready! Gooo! %v 2018-12-06 12:00:00.000984128 +0800 CST m=+603191.232176125
/d2-projects/d2-awesome/issues/287
/d2-projects/d2-awesome/issues/286
/d2-projects/d2-awesome/issues/285
/d2-projects/d2-awesome/issues/284
/d2-projects/d2-awesome/issues/283
/d2-projects/d2-awesome/issues/282
/d2-projects/d2-awesome/issues/281
- name: 新闻
list:
- name: Chromium 或将一统浏览器内核?微软也投奔 Chromium 怀抱
note: UC国际技术
url: https://mp.weixin.qq.com/s/XLhjR6Z3fKuUSpjdDf5QHQ
- name: 分享
list:
- name: Hummingbird 在Web上运行Flutter应用
note: UC国际技术
url: https://mp.weixin.qq.com/s/ykcLufh9W2DIa5mByGCkoQ
- name: 深入理解 CSS linear-gradient
note: 奇舞周刊
url: https://mp.weixin.qq.com/s/Ot0tqtPUiqjX0mrOWhXAEg
- name: 设计
list:
- name: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
note: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
url: https://github.com/alexpate/awesome-design-systems
- name: 开源项目
list:
- name: Akryum/vue-virtual-scroller
note: ⚡️ Blazing fast scrolling for any amount of data
url: https://github.com/Akryum/vue-virtual-scroller
- name: llh911001/mostly-adequate-guide-chinese
note: JS 函数式编程指南中文版
url: https://github.com/llh911001/mostly-adequate-guide-chinese
- name: vuejs/vue-touch
note: Hammer.js wrapper for Vue.js
url: https://github.com/vuejs/vue-touch
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master ac6f448] 20181206
2 files changed, 95 insertions(+), 0 deletions(-)
create mode 100644 20181206.md
Ready! Gooo! %v 2018-12-06 13:00:00.000977147 +0800 CST m=+606791.232168840
/d2-projects/d2-awesome/issues/289
/d2-projects/d2-awesome/issues/288
/d2-projects/d2-awesome/issues/287
/d2-projects/d2-awesome/issues/286
/d2-projects/d2-awesome/issues/285
/d2-projects/d2-awesome/issues/284
/d2-projects/d2-awesome/issues/283
/d2-projects/d2-awesome/issues/282
/d2-projects/d2-awesome/issues/281
- name: 开源项目
list:
- name: Akryum/vue-virtual-scroller
note: ⚡️ Blazing fast scrolling for any amount of data
url: https://github.com/Akryum/vue-virtual-scroller
- name: llh911001/mostly-adequate-guide-chinese
note: JS 函数式编程指南中文版
url: https://github.com/llh911001/mostly-adequate-guide-chinese
- name: vuejs/vue-touch
note: Hammer.js wrapper for Vue.js
url: https://github.com/vuejs/vue-touch
- name: 分享
list:
- name: 【第1468期】前端与编译原理——用JS写一个JS解释器
note: 前端早读课
url: https://mp.weixin.qq.com/s/NRZQI-Md0dqNAGY96qsn-A
- name: 【视频】挖掘Vue的声明式交互能力
note: 前端早读课
url: https://mp.weixin.qq.com/s/j3GdpXIv483-MsYnrMsu8A
- name: Hummingbird 在Web上运行Flutter应用
note: UC国际技术
url: https://mp.weixin.qq.com/s/ykcLufh9W2DIa5mByGCkoQ
- name: 深入理解 CSS linear-gradient
note: 奇舞周刊
url: https://mp.weixin.qq.com/s/Ot0tqtPUiqjX0mrOWhXAEg
- name: 新闻
list:
- name: Chromium 或将一统浏览器内核?微软也投奔 Chromium 怀抱
note: UC国际技术
url: https://mp.weixin.qq.com/s/XLhjR6Z3fKuUSpjdDf5QHQ
- name: 设计
list:
- name: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
note: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
url: https://github.com/alexpate/awesome-design-systems
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master fd71767] 20181206
2 files changed, 72 insertions(+), 15 deletions(-)
Ready! Gooo! %v 2018-12-06 14:00:00.000572004 +0800 CST m=+610391.231764062
/d2-projects/d2-awesome/issues/289
/d2-projects/d2-awesome/issues/288
/d2-projects/d2-awesome/issues/287
/d2-projects/d2-awesome/issues/286
/d2-projects/d2-awesome/issues/285
/d2-projects/d2-awesome/issues/284
/d2-projects/d2-awesome/issues/283
/d2-projects/d2-awesome/issues/282
/d2-projects/d2-awesome/issues/281
- name: 分享
list:
- name: 【第1468期】前端与编译原理——用JS写一个JS解释器
note: 前端早读课
url: https://mp.weixin.qq.com/s/NRZQI-Md0dqNAGY96qsn-A
- name: 【视频】挖掘Vue的声明式交互能力
note: 前端早读课
url: https://mp.weixin.qq.com/s/j3GdpXIv483-MsYnrMsu8A
- name: Hummingbird 在Web上运行Flutter应用
note: UC国际技术
url: https://mp.weixin.qq.com/s/ykcLufh9W2DIa5mByGCkoQ
- name: 深入理解 CSS linear-gradient
note: 奇舞周刊
url: https://mp.weixin.qq.com/s/Ot0tqtPUiqjX0mrOWhXAEg
- name: 新闻
list:
- name: Chromium 或将一统浏览器内核?微软也投奔 Chromium 怀抱
note: UC国际技术
url: https://mp.weixin.qq.com/s/XLhjR6Z3fKuUSpjdDf5QHQ
- name: 设计
list:
- name: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
note: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
url: https://github.com/alexpate/awesome-design-systems
- name: 开源项目
list:
- name: Akryum/vue-virtual-scroller
note: ⚡️ Blazing fast scrolling for any amount of data
url: https://github.com/Akryum/vue-virtual-scroller
- name: llh911001/mostly-adequate-guide-chinese
note: JS 函数式编程指南中文版
url: https://github.com/llh911001/mostly-adequate-guide-chinese
- name: vuejs/vue-touch
note: Hammer.js wrapper for Vue.js
url: https://github.com/vuejs/vue-touch
exec: "cd": executable file not found in $PATH
Already up-to-date.
[master 8631aa4] 20181206
2 files changed, 61 insertions(+), 11 deletions(-)
Ready! Gooo! %v 2018-12-07 12:00:00.001005713 +0800 CST m=+689591.232197538
/d2-projects/d2-awesome/issues/293
/d2-projects/d2-awesome/issues/292
/d2-projects/d2-awesome/issues/290
/d2-projects/d2-awesome/issues/289
/d2-projects/d2-awesome/issues/288
/d2-projects/d2-awesome/issues/287
/d2-projects/d2-awesome/issues/286
/d2-projects/d2-awesome/issues/285
/d2-projects/d2-awesome/issues/284
/d2-projects/d2-awesome/issues/283
/d2-projects/d2-awesome/issues/282
/d2-projects/d2-awesome/issues/281
- name: 设计
list:
- name: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
note: alexpate/awesome-design-systems 💅🏻 ⚒ A collection of awesome design systems
url: https://github.com/alexpate/awesome-design-systems
- name: 开源项目
list:
- name: sindresorhus/ora
note: Elegant terminal spinner
url: https://github.com/sindresorhus/ora
- name: Akryum/vue-virtual-scroller
note: ⚡️ Blazing fast scrolling for any amount of data
url: https://github.com/Akryum/vue-virtual-scroller
- name: llh911001/mostly-adequate-guide-chinese
note: JS 函数式编程指南中文版
url: https://github.com/llh911001/mostly-adequate-guide-chinese
- name: vuejs/vue-touch
note: Hammer.js wrapper for Vue.js