-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmedia.html
2037 lines (1915 loc) · 91.2 KB
/
media.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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Press & Media | DAV - Decentralized Autonomous Vehicles</title>
<meta name="description" content="DAV is a blockchain-based transportation platform which enables vehicles to discover, communicate and transact with one another using DAV tokens."/>
<meta property="og:title" content="DAV - Decentralized Autonomous Vehicles" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://dav.network/img/og_image.jpg" />
<meta property="og:url" content="https://dav.network" />
<meta property="og:description" content="DAV is a blockchain-based transportation platform." />
<link rel="apple-touch-icon" sizes="57x57" href="img/fav/favicon.png?v=2">
<link rel="apple-touch-icon" sizes="60x60" href="img/fav/favicon.png?v=2">
<link rel="apple-touch-icon" sizes="72x72" href="img/fav/favicon.png?v=2">
<link rel="apple-touch-icon" sizes="76x76" href="img/fav/favicon.png?v=2">
<link rel="apple-touch-icon" sizes="114x114" href="img/fav/apple-icon-114x114.png?v=2">
<link rel="apple-touch-icon" sizes="120x120" href="img/fav/apple-icon-120x120.png?v=2">
<link rel="apple-touch-icon" sizes="144x144" href="img/fav/apple-icon-144x144.png?v=2">
<link rel="apple-touch-icon" sizes="152x152" href="img/fav/apple-icon-152x152.png?v=2">
<link rel="apple-touch-icon" sizes="180x180" href="img/fav/apple-icon-180x180.png?v=2">
<link rel="icon" type="image/png" sizes="192x192" href="img/fav/android-icon-192x192.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="img/fav/favicon.png?v=2">
<link rel="icon" type="image/png" sizes="96x96" href="img/fav/favicon.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="img/fav/favicon.png?v=2">
<link rel="manifest" href="img/fav/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="img/fav/ms-icon-144x144.png?v=2">
<meta name="theme-color" content="#ffffff">
<!-- Google Tag Manager -->
<!-- <script type="text/javascript" data-cfasync="false">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push(
{'gtm.start': new Date().getTime(),event:'gtm.js'}
);var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NCJHZN5');</script> -->
<!-- End Google Tag Manager -->
<!-- Google Tag Manager -->
<script type="text/javascript" data-cfasync="false">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KRPG9G6');</script>
<!-- End Google Tag Manager -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/blueimp-gallery/2.30.0/css/blueimp-gallery.min.css" />
<link rel="stylesheet" type="text/css" href="css/style.css?v=3.3.0"/>
<!-- Bootstrap -->
<!-- <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> -->
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet"> -->
<!-- <link href="css/style.css" rel="stylesheet"> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" data-cfasync="false">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104463303-1', 'auto');
ga('send', 'pageview');
ga('send', 'Button', 'Clicked', 'Join', '0');
</script>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '738526256352778');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" src="https://www.facebook.com/tr?id=738526256352778&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
</head>
<body id="press">
<!-- Google Tag Manager (noscript) -->
<!-- <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NCJHZN5"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> -->
<!-- End Google Tag Manager (noscript) -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KRPG9G6"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<nav class="navbar navbar-fixed-top">
<div class="container1">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img id="logo-orange" src="img/logo.png">
<img id="logo-white" src="img/logo-gray.png">
</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/#home">Home</a></li>
<li><a href="/#overview">Overview</a></li>
<li><a href="protocols.html">Protocols</a></li>
<li><a href="/#technology">Technology</a></li>
<li><a href="/#team">Team</a></li>
<li><a href="/#partners">Alliance</a></li>
<li><a href="/whitepaper.pdf">White Paper</a></li>
<li class="dropdown hidden-xs">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About</a>
<ul class="dropdown-menu">
<li><a href="media.html">Press & Media</a></li>
<li><a href="/#contact">Contact</a></li>
</ul>
</li>
<li class="visible-xs"><a href="media.html">Press & Media</a></li>
<li class="visible-xs"><a href="/#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="hero hero-media" id="home">
<div id="startchange"></div>
<div class="hero-inner">
<div class="hero-valign">
<h1>Press & Media</h1>
</div>
</div>
</div>
<div class="container press-releases">
<h2>Press Releases</h2>
<div class="row">
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/shared-mobility-services-innovator-moqo-to-join-dav-alliance.html">
<h5>Shared Mobility Services innovator MOQO to join DAV Alliance </h5>
<br/>
<p>MOQO, the engine for shared mobility services, has joined the DAV Alliance.</p>
<h6>August 23, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/dav-alliance-bolstered-by-new-drone-technology-and-logistics-companies.html">
<h5>DAV Alliance bolstered by new Drone Technology and Logistics Companies</h5>
<br/>
<p>SlipStream Advantage, High Drone Chile and ANRA Technologies have
joined the DAV Alliance.</p>
<h6>24 July, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/the-dav-foundation-joins-the-mobility-open-blockchain-initiative-mobi.html">
<h5>The DAV Foundation joins the Mobility Open Blockchain Initiative (MOBI)</h5>
<p>DAV and MOBI aim to make transportation more affordable, safer and accessible globally.</p>
<h6>03 July, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/global-robot-expo-and-drone-market-watch-join-burgeoning-dav-alliance.html">
<h5>Global Robot Expo and Drone Market Watch join burgeoning DAV Alliance</h5>
<br/>
<p>Global Robot Expo and Drone Market Watch join the growing DAV
Alliance, demonstrating the breadth of interest in the coming transport economy.</p>
<h6>29 June, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/dav-alliance-continues-to-grow-with-drone-innovators-and-drone-researchers.html">
<h5>DAV Alliance Continues to Grow with Drone Innovators and Drone Researchers</h5>
<p>The DAV Alliance has further expanded with the addition of BLKTATU,
INDrone Aero Systems and Drone Industry Insights.</p>
<h6>30 April, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hide">
<article>
<a href="press-releases/sai-yagnyamurthy-director-of-corporate-strategy-at-ford-motor-company-to-join-dav-foundation-advisory-board.html">
<h5>Sai Yagnyamurthy, Director of Corporate Strategy at Ford Motor Company, to join DAV Foundation Advisory Board</h5>
<p>The DAV Foundation is pleased to announce Sai Yagnyamurthy, the Director of Corporate Strategy at Ford Motor Company, as the latest addition to the foundation’s advisory board.</p>
<h6>28 April, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/dav-alliance-ranks-swell-with-drone-service-and-route-mapping-companies.html">
<h5>DAV Alliance Ranks Swell with Drone Service and Route Mapping Companies</h5>
<p>Drone Terminus, GRADD and Air Media are the latest members to join the burgeoning DAV Alliance.</p>
<h6>5 April, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4">
<article>
<a href="press-releases/dav-foundation-announces-former-head-of-drone-business-at-cisco-systems-to-join-advisory-board.html">
<h5>DAV Foundation announces former Head of Drone Business at Cisco Systems to join Advisory Board</h5>
<p>The DAV Foundation is pleased to announce Biren Gandhi, the former Head of Drone Business at Cisco Systems, as the latest addition to the foundation’s advisory board.</p>
<h6>22 March, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/moovee-innovations-ai-sensing-development-firm-joins-the-dav-alliance.html">
<h5>Moovee Innovations, AI Sensing Development Firm joins the DAV Alliance</h5>
<p>Moovee Innovations, an A.I. sensing R&D firm in the autonomous vehicle sector based in Vancouver, Canada, has joined the DAV Alliance.</p>
<h6>14 March, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/ex-nasa-astronaut-and-former-faa-executive-george-zamka-to-join-the-dav-foundation-as-advisor.html">
<h5>Ex-NASA Astronaut and Former FAA Executive George Zamka to join the DAV Foundation as Advisor</h5>
<p>The DAV Foundation is pleased to announce a new advisory board member: George Zamka, an ex-NASA shuttle pilot and commander, and former FAA executive.</p>
<h6>5 March, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/dav-foundation-announces-ibm-master-inventor-to-join-advisory-board.html">
<h5>DAV Foundation announces IBM Master Inventor to join Advisory Board</h5>
<p>The DAV Foundation is pleased to announce Dr. Giovanni Lanfranchi has joined as an advisor.</p>
<h6>5 March, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/autonomous-drone-charging-infrastructure-company-skysense-joins-the-dav-alliance.html">
<h5>Autonomous Drone Charging Infrastructure company Skysense joins the DAV Alliance</h5>
<p>Skysense, a drone infrastructure company with offices in Germany,
the U.S. and Italy, has joined the DAV Alliance.</p>
<h6>1 March, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/the-dav-foundation-announces-jerome-ferguson,-director-of-autonomous-systems-at-ups-as-advisor.html">
<h5>The DAV Foundation Announces Jerome Ferguson, Director of Autonomous Systems at UPS, as advisor</h5>
<p>The DAV Foundation is pleased to
announce that United Parcel Service’s Director of Autonomous
Systems, Jerome Ferguson, has joined them as a new member of its
advisory board.</p>
<h6>18 February, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hide">
<article>
<a href="https://drive.google.com/file/d/1KecKeDlcTzm8H1M3UT8WllXq0TqevEWO/view?ts=5a872153">
<h5>Singaporean Drone Services Provider H3 Dynamics joins the DAV Alliance</h5>
<p>The DAV Foundation is pleased to announce H3 Dynamics, based
in Singapore, has joined the DAV Alliance.</p>
<h6>15 February, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/the-dav-foundation-announces-priyanka-khaitan-saps-head-of-emerging-technologies-as-advisor.html">
<h5>Head of Emerging Technologies at SAP named as IoT Advisor at the DAV Foundation</h5>
<p>The DAV Foundation is pleased to announce that SAP’s Head of
Emerging Technologies, Priyanka Khaitan, has joined them as a new member of its advisory
board.</p>
<h6>15 February, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/alan-messer-ex-cto-of-general-motors-boards-the-dav-foundation-as-advisor.html">
<h5>Alan Messer, ex-CTO of General Motors boards the DAV Foundation as advisor</h5>
<p>Mr. Alan Messer, ex-Chief Technical Officer of General Motors, has been announced by the DAV Foundation as their latest addition to the advisory board.</p>
<h6>13 February, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/canadian-drone-services-innovator-scorpiox-technologies-joins-the-dav-alliance.html">
<h5>Canadian Drone Services Innovator Scorpiox Technologies joins the DAV Alliance</h5>
<p>The DAV Foundation is pleased to announce Scorpiox
Technologies, based in Toronto, Canada, has joined the DAV Alliance.</p>
<h6>3 February, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/dr-greg-colvin-core-developer-of-the-ethereum-virtual-machine-to-join-the-dav-foundation-as-blockchain-advisor.html">
<h5>Dr. Greg Colvin, lead developer behind the Ethereum Virtual Machine joins DAV as Technology Advisor</h5>
<p>The DAV Foundation is pleased to announce a new addition to their advisory board: Ethereum core developer Dr. Greg Colvin.</p>
<h6>30 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/copter-express-comes-aboard-as-a-member-of-the-dav-alliance.html">
<h5>Copter Express Comes Aboard as a Member of the DAV Alliance</h5>
<p>The DAV Foundation is pleased to announce Copter Express,
based in Moscow, Russia, has joined the DAV Alliance.</p>
<h6>30 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/the-dav-foundation-announces-husarion-membership-in-the-dav-alliance.html">
<h5>Husarion joins DAV Alliance</h5>
<p>The DAV Foundation announces Husarion membership in the DAV Alliance.</p>
<h6>23 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/the-dav-foundation-announces-advanced-aircraft-company-as-first-member-of-the-dav-alliance.html">
<h5>Advanced Aircraft Company joins DAV Alliance</h5>
<p>The DAV Foundation is pleased to announce Advanced Aircraft Company, based in Virginia, USA, has joined the DAV Alliance.</p>
<h6>22 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/ethereum-foundation-veteran-joins-dav-foundation-as-cco.html">
<h5>Ethereum Foundation Veteran joins DAV Foundation as CCO</h5>
<p>Ethereum Foundation veteran, John Frazer, joins DAV Foundation, the blockchain company that will bring the future of transportation one step closer. The company is also partnering with PR agency Blonde 2.0 towards an upcoming ICO.</p>
<h6>22 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/the-dav-foundation-announces-ex-nasa-astronaut-as-advisor.html">
<h5>Ex-NASA shuttle astronaut and administrator boards the DAV Foundation as Aerospace Advisor</h5>
<p>The DAV Foundation is pleased to announce ex-NASA astronaut Dr. Scott J. Horowitz has joined them as a key member of its advisory board.</p>
<h6>7 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/nick-johnson-founder-of-ethereum-name-service-and-ether-cards-to-join-the-dav-foundation-as-advisor.html">
<h5>Creator of Ethereum Name Service signs on with DAV as Blockchain Advisor</h5>
<p>Nick Johnson, Founder of Ethereum Name Service and Ether Cards, to join the DAV Foundation as Advisor.</p>
<h6>2 January, 2018</h6>
</a>
</article>
</div>
<div class="col-sm-6 col-lg-4 hidden-press">
<article>
<a href="press-releases/jay-adelson-co-founder-of-equinix-digg-and-revision3-to-join-the-dav-foundation-as-advisor.html">
<h5>Jay Adelson, Equinix co-founder and serial tech entrepreneur joins DAV as Infrastructure Advisor</h5>
<p>Jay Adelson, Co-founder of Equinix, Digg, and Revision3 to join the DAV Foundation as Advisor.</p>
<h6>21 December, 2017</h6>
</a>
</article>
</div>
</div>
<div class="text-center">
<a href="#" class="show-more">Show <span>more</span></a>
</div>
</div>
<div class="container media-articles">
<h2>Media Articles</h2>
<div class="row">
<div class="col-sm-6 col-md-4">
<a href="https://www.nasdaq.com/article/leaving-uber-and-lyft-behind-decentralized-ride-sharing-is-the-next-big-thing-cm1029704" target="_blank">
<article>
<img src="img/media/articles/nasdaq.jpg">
<h4>Leaving Uber and Lyft Behind, Decentralized Ride-Sharing Is the Next Big Thing</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.nasdaq.com/images/nasdaq_313_w.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Nasdaq</h5>
<h6>September 28, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://distributed.com/news/leaving-uber-and-lyft-behind-decentralized-ride-sharing-next-big-thing/" target="_blank">
<article>
<img src="img/media/articles/nasdaq.jpg">
<h4>Leaving Uber and Lyft Behind, Decentralized Ride-Sharing Is the Next Big Thing</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://media.godistributed.com/img/2018-logo-health.svg" width="60" style="background: #fff;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Distributed.com</h5>
<h6>September 28, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://cryptoslate.com/mobile-economy-expands-revenue-opportunities-for-entrepreneurs-and-enterprises/" target="_blank">
<article>
<img src="img/media/articles/cryptoslate.jpg">
<h4>Mobile Economy Expands Revenue Opportunities for Entrepreneurs and Enterprises</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://cryptoslate.com/wp-content/themes/cryptoslate-2017/images/logo.png" width="60" style="background: #fff;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Cryptoslate</h5>
<h6>September 25, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.forbes.com/sites/edgarsten/2018/09/05/a-major-push-to-use-blockchain-to-link-autonomous-vehicle-development-on-open-source-network/#58bdd443548c" target="_blank">
<article>
<img src="img/media/articles/forbes2.jpg">
<h4>A Major Push To Use Blockchain To Link Autonomous Vehicle Development On Open-Source Network</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="img/media/articles/forbes.jpg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Forbes</h5>
<h6>September 5, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.globalfleet.com/en/smart-mobility/north-america/news/walmart-explores-delivery-drone" target="_blank">
<article>
<img src="img/media/articles/globalfleet1.jpg">
<h4>Walmart explores delivery via drone</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.globalfleet.com/sites/all/themes/globalfleet/img/layout/logo-globalfleet-icon.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Global Fleet</h5>
<h6>September 5, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.cryptocurrencyguide.org/walmart-has-applied-a-patent-drone-deliveries-in-the-us-powered-by-blockchain/" target="_blank">
<article>
<img src="img/media/articles/cryptocurrencyguide.jpg">
<h4>Walmart Has Applied A Patent For Drone Deliveries In The US Powered By Blockchain</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.cryptocurrencyguide.org/wp-content/uploads/2018/07/HearderLogo_sticky_60.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Crypto Currency Guide</h5>
<h6>September 5, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.futurecar.com/2610/Renault-Samsung-Granted-Permit-to-Test-Autonomous-Cars-in-South-Korea" target="_blank">
<article>
<img src="img/media/articles/futurecar.jpg">
<h4>Renault Samsung Granted Permit to Test Autonomous Cars in South Korea</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://static.futurecar.com/images/fc_logo.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Future Car</h5>
<h6>August 31, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.cittimagazine.co.uk/companies-need-to-be-able-to-test-cars-in-real-conditions-says-dav/" target="_blank">
<article>
<img src="img/media/articles/dav.jpg">
<h4>Companies need to be able to test cars in real conditions, says DAV</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.cittimagazine.co.uk/wp-content/themes/mag-core/img/CiTTi-magazine-logo.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>CitiMagazine</h5>
<h6>August 31, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://hackernoon.com/does-decentralization-hold-the-key-to-transports-future-9eaab0e2db25" target="_blank">
<article>
<img src="img/media/articles/hackernoon.jpg">
<h4>Does Decentralization Hold the Key to Transport’s Future?</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://cdn-images-1.medium.com/letterbox/600/72/50/50/1*1HcGNZYjo78mH0faO3BnaQ.png?source=logoAvatar-lo_Kgfr3M92FsHz---3a8144eabfe3" width="60" style="background: #fff;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Hackernoon</h5>
<h6>August 29, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://cryptonewsreview.com/the-dav-foundation-joins-the-mobility-open-blockchain-initiative-mobi/" target="_blank">
<article>
<img src="img/media/articles/cryptonewsreview.jpg">
<h4>The DAV Foundation joins the Mobility Open Blockchain Initiative (MOBI)</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://cryptonewsreview.com/wp-content/uploads/2018/07/CNR-white-white.jpg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>CryptoNewsReview</h5>
<h6>August 25, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.smartcitiesworld.net/opinions/moving-towards-the-internet-of-transportation" target="_blank">
<article>
<img src="img/media/articles/smartcitiesworld.jpg">
<h4>Moving towards the Internet of Transportation</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://d2mpqlmtgl1znu.cloudfront.net/AcuCustom/Sitename/Icon/Icons/SCWslogan2RGB.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Smart Cities World</h5>
<h6>August 23, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.fleeteurope.com/en/safety-environment/global/features/self-driving-car-acceptance-plummeting" target="_blank">
<article>
<img src="img/media/articles/globalfleet.jpg">
<h4>Self-driving car acceptance plummeting</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.fleeteurope.com/sites/all/themes/fleeteurope/img/layout/logo-fleeteurope.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Fleet Europe</h5>
<h6>August 21, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://www.globalfleet.com/en/safety-environment/global/features/self-driving-car-acceptance-plummeting" target="_blank">
<article>
<img src="img/media/articles/globalfleet.jpg">
<h4>Self-driving car acceptance plummeting</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.globalfleet.com/sites/all/themes/globalfleet/img/layout/logo-globalfleet.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Global Fleet</h5>
<h6>August 21, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://smarthighways.net/china-announces-autonomous-vehicle-testing-standards/" target="_blank">
<article>
<img src="img/media/articles/smarthighways.jpg">
<h4>China announces autonomous vehicle testing standards</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://smarthighways.net/wp-content/uploads/2018/03/SH-header-March-2018.jpg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Smart Highways </h5>
<h6>August 20, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4">
<a href="https://finance.yahoo.com/news/merger-mobility-blockchain-technology-could-150529927.html" target="_blank">
<article>
<img src="img/media/articles/benzinga.jpg">
<h4>How A Merger Of Mobility And Blockchain Technology Could Change The World</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="img/media/articles/yahoo-finance.jpg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Yahoo! Finance</h5>
<h6>August 16, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.benzinga.com/fintech/18/08/12218757/how-a-merger-of-mobility-and-blockchain-technology-could-change-the-world" target="_blank">
<article>
<img src="img/media/articles/benzinga.jpg">
<h4>How A Merger Of Mobility And Blockchain Technology Could Change The World</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.benzinga.com/sites/all/modules/bzads/images/logo-fintech.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Benzinga</h5>
<h6>August 16, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.forbes.com/sites/edgarsten/2018/08/16/consumers-say-not-in-my-backyard-for-real-world-autonomous-car-testing/#7197759c686c" target="_blank">
<article>
<img src="img/media/articles/forbes1.jpg">
<h4>"Consumers Say 'Not In My Backyard' For Real-World Autonomous Car Testing</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="img/media/articles/forbes.jpg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Forbes</h5>
<h6>August 16, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://autonomouselectric.com/autonomous/2018/08/14/china-issues-national-standards-for-autonomous-vehicle-testing-comment-from-john-frazer-chief-communication-officer-at-the-dav-foundation/" target="_blank">
<article>
<img src="img/media/articles/dav.jpg">
<h4>China Issues National Standards for Autonomous Vehicle Testing</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://autonomouselectric.com/autonomous/wp-content/uploads/2016/08/AutonomousElectricBannerWordpress-1.jpg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Autonomous Electric</h5>
<h6>August 14, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.intelligenttransport.com/transport-news/70487/autonomous-technology-regulations-china/" target="_blank">
<article>
<img src="img/media/articles/intelligenttransport3.jpg">
<h4>China issues national standards for the testing of autonomous vehicles</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://d1vpzb8ccuu79x.cloudfront.net/wp-content/themes/it17/images/[email protected]" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Intelligent Transport</h5>
<h6>August 14, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.edie.net/library/New-tech-on-the-block--8-ways-businesses-are-using-blockchain-to-drive-sustainability/6838" target="_blank">
<article>
<img src="img/media/articles/edie1.jpg">
<h4>New tech on the block - 8 ways businesses are using blockchain to drive sustainability</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://static.edie.net/images/logos/logo.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Edie.com</h5>
<h6>August 13, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.edie.net/news/8/Blockchain-startup-joins-coalition-of-automakers-to-research-autonomous-EVs/" target="_blank">
<article>
<img src="img/media/articles/edie.jpg">
<h4>Blockchain start-up joins coalition of automakers to develop autonomous EVs</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://static.edie.net/images/logos/logo.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Edie.com</h5>
<h6>August 9, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://iotnowtransport.com/2018/07/30/68197-moving-roadblocks-driverless-cars/" target="_blank">
<article>
<img src="img/media/articles/iotnowtransport1.jpg">
<h4>Moving the roadblocks to driverless cars</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://iotnowtransport.com/wp-content/themes/iot-now-transport/img/logo-iot-now-transport.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>IoT Now Transport</h5>
<h6>August 1, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://bitcoinexchangeguide.com/decentralized-autonomous-vehicles-dav-blockchain-network-to-build-killer-connected-car-apps/" target="_blank">
<article>
<img src="img/media/articles/bitcoinexchangeguide1.jpg">
<h4>Decentralized Autonomous Vehicles (DAV) Blockchain Network To Build ‘Killer’ Connected Car Apps</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://3mgj4y44nc15fnv8d303d8zb-wpengine.netdna-ssl.com/wp-content/uploads/2017/05/LogoBEG-white.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Bitcoin Exchange Guide</h5>
<h6>July 28, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://bitcoinexchangeguide.com/crypto-market-sees-initial-coin-offerings-ico-raise-over-1-5-billion-in-june/" target="_blank">
<article>
<img src="img/media/articles/bitcoinexchangeguide.jpg">
<h4>Crypto Market Sees Initial Coin Offerings (ICO) Raise Over $1.5 Billion in June</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://3mgj4y44nc15fnv8d303d8zb-wpengine.netdna-ssl.com/wp-content/uploads/2017/05/LogoBEG-white.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Bitcoin Exchange Guide</h5>
<h6>July 25, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.entrepreneur.com/article/316354" target="_blank">
<article>
<img src="img/media/articles/top-entrepreneurs-under-40.jpg">
<h4>Top Entrepreneurs Under 40</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://assets.entrepreneur.com/static/20180510104135-ent-eu-logo-wht.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Shazir Mucklai</h5>
<h6>July 24, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.intelligenttransport.com/transport-news/69792/dav-foundation-joining-mobi-blockchain/" target="_blank">
<article>
<img src="img/media/articles/intelligenttransport2.jpg">
<h4>Why blockchain is needed to make unmanned vehicles a success</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://d1vpzb8ccuu79x.cloudfront.net/wp-content/themes/it17/images/[email protected]" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Intelligent Transport</h5>
<h6>July 16, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.intelligenttransport.com/transport-news/69792/dav-foundation-joining-mobi-blockchain/" target="_blank">
<article>
<img src="img/media/articles/intelligenttransport1.jpg">
<h4>DAV Foundation strengthens growth by joining MOBI – the Mobility Open Blockchain Initiative</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://d1vpzb8ccuu79x.cloudfront.net/wp-content/themes/it17/images/[email protected]" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Intelligent Transport</h5>
<h6>July 11, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.traffictechnologytoday.com/news.php?NewsID=92053" target="_blank">
<article>
<img src="img/media/articles/traffictechnologytoday.jpg">
<h4>DAV Foundation joins Mobility Open Blockchain Initiative for global transport ecosystem</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.newmobility.global/wp-content/uploads/2017/05/nm.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Traffic Technology Today</h5>
<h6>July 6, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.newmobility.global/connected-car/dav-foundation-joins-mobility-open-blockchain-initiative-mobi/" target="_blank">
<article>
<img src="img/media/articles/newmobility.jpg">
<h4>The DAV Foundation joins the Mobility Open Blockchain Initiative (MOBI)</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.newmobility.global/wp-content/uploads/2017/05/nm.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>New Mobility</h5>
<h6>July 5, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.enterprisetimes.co.uk/2018/07/05/mobi-extends-mobile-blockchain-with-the-dav-foundation/#provider_moreover" target="_blank">
<article>
<img src="img/media/articles/enterprisetimes.jpg">
<h4>MOBI extends mobile blockchain with the DAV Foundation</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://www.enterprisetimes.co.uk/wp-content/uploads/2018/03/Enterprise-Times-logo-272-1.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Enterprise Times</h5>
<h6>July 5, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://blocktribune.com/blockchain-tansportation-platform-dav-joins-automotive-blockchain-group-mobi/" target="_blank">
<article>
<img src="img/media/articles/blocktribune.jpg">
<h4>Blockchain Transportation Platform DAV Joins Automotive Blockchain Group MOBI</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://blocktribune.com/wp-content/uploads/2017/02/logo2.png?x72637" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>BlockTribune</h5>
<h6>July 4, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://www.econotimes.com/DAV-Foundation-joins-automotive-blockchain-consortium-MOBI-1398609" target="_blank">
<article>
<img src="img/media/articles/dav.jpg">
<h4>DAV Foundation joins automotive blockchain consortium ‘MOBI’</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://s1.econotimes.com/assets/images/econotimes/view/imgLogoSmall.svg" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>EconoTimes</h5>
<h6>July 4, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>
<div class="col-sm-6 col-md-4 hidden-articles">
<a href="https://dronebelow.com/2018/07/03/dav-crypto-blockchain-hitbtc-noam-copel-john-frazer/" target="_blank">
<article>
<img src="img/media/articles/dronebelow.jpg">
<h4>Autonomous Drones, Blockchain and Smart Cities: An Interview with DAV’s Noam Copel and John Frazer</h4>
<div class="row">
<div class="col-xs-4 text-center">
<img src="https://dronebelow.com/wp-content/uploads/2017/01/dronebelow_v2-1_web-1.png" width="60" style="background: #101820;" class="img-circle1">
</div>
<div class="col-xs-8">
<h5>Drone Below</h5>
<h6>July 4, 2018<br><br></h6>
</div>
</div>
</article>
</a>
</div>