-
Notifications
You must be signed in to change notification settings - Fork 10
/
techcrunch_article.html
2548 lines (2297 loc) · 130 KB
/
techcrunch_article.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 xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" lang="en">
<head>
<title>GoBee Bike throws in the towel in France | TechCrunch</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta charset="UTF-8">
<script type="text/javascript">var _sf_startpt = (new Date()).getTime()</script>
<meta name="p:domain_verify" content="6189ff68ce30e30f12b40b3b40873027"/>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="initial-scale=1.0,width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0">
<meta http-equiv="cleartype" content="on">
<meta name="apple-mobile-web-app-title" content="TechCrunch">
<meta name="robots" content="NOYDIR,NOODP" />
<link rel="shortcut icon" type="image/x-icon" href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/favicon.ico" />
<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon.png" rel="apple-touch-icon-precomposed" />
<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon_2x.png" sizes="114x114" rel="apple-touch-icon-precomposed" />
<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon_ipad.png" sizes="72x72" rel="apple-touch-icon-precomposed" />
<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon_ipad_2x.png" sizes="144x144" rel="apple-touch-icon-precomposed" />
<link rel="alternate" href="android-app://com.aol.mobile.techcrunch/http/https://techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/" />
<script type="text/javascript">window.bN_cfg={h:window.location.hostname};</script>
<!-- Media Voice Ads Properties -->
<script>
window.mediaconductor=window.mediaconductor||function()
{(mediaconductor.q=mediaconductor.q||[]).push(arguments);}
mediaconductor("init", "8e3e705039964bb9860e38cc7cf5ffd1");
mediaconductor("exec");
</script>
<meta name="google-site-verification" content="4U1OC1LwZlFHAehLhCV4rt3YzWI_AyF7Gb0XqlaVEhE" />
<meta name="msvalidate.01" content="5ABD8A078F3356F3A6A8C8643C31FB8F" />
<!-- Facebook domain ownership verification. -->
<meta property="fb:pages" content="8062627951" />
<meta property="fb:app_id" content="187288694643718" />
<meta property="fb:admins" content="543710097,771265067,1661021707,1550970059,663677613,1178144075,726995222,506404657,4700188,643979435" />
<meta property="article:publisher" content="https://www.facebook.com/techcrunch" />
<meta property="article:author" content="http://www.facebook.com/romain.dillet" />
<!-- 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','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '1447508128842484');
fbq('track', 'PageView');
fbq('track', 'ViewContent', {
content_section: 'article',
content_subsection: "post",
content_mns: [93484989,"2787122",93484990,93484986,93484988,"773631","93484965","93484948","93484944","93484987"],
content_prop19: ["collaborative consumption","europe","startups","tc","bike sharing","mobike","ofo","obike","gobee.bike","france newsletter"] });
</script>
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1447508128842484&ev=PageView&noscript=1" /></noscript>
<!-- End Facebook Pixel Code -->
<script src='https://r-login.wordpress.com/remote-login.php?action=js&host=techcrunch.com&id=24588526&t=1520444789&back=https%3A%2F%2Ftechcrunch.com%2F2018%2F02%2F25%2Fgobee-bike-throws-in-the-towel-on-france%2F' type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */
if ( 'function' === typeof WPRemoteLogin ) {
document.cookie = "wordpress_test_cookie=test; path=/";
if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
WPRemoteLogin();
}
}
/* ]]> */
</script>
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//platform.twitter.com' />
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s.yimg.com' />
<link rel='dns-prefetch' href='//tctechcrunch2011.wordpress.com' />
<link rel="alternate" type="application/rss+xml" title="TechCrunch » Feed" href="https://techcrunch.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="TechCrunch » Comments Feed" href="https://techcrunch.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="TechCrunch » GoBee Bike throws in the towel in France Comments Feed" href="https://techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/feed/" />
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function () {
oldonload();
func();
}
}
}
/* ]]> */
</script>
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s1.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1516999477h&ver=4.9.4"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56692,8205,9792,65039],[55357,56692,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='all-css-0-1' href='https://s0.wp.com/_static/??-eJydkdtOwzAMhl+IzGsHTFwgniXNTOLNOShON+3tcVtNMDFVgpvIv/N/PiRwKcbl1DA1iKMpPHpKAkwnFDhiK9adzKw2TuQJHttdrqj5WGybHBEPZJExqm0Ni+X1Rk1h0F6rbS5F3WYYSkURo2ekMZoWtNFvbknDmQo0dMHVMblg+m23A2lXxk2k9BfIimATEEqeERQEPE/7PSrzc2Y6+JnLjiwbUsu9WGCClNtyeQvWqnrMhrOzjXK6E+aTLdU1tOLA2Wvo5yW+5T8eYypgq47L+gEr7xmewXMeLE+Gj/jevWz3u77r3/bHL9IO7Z8=?cssminify=yes' type='text/css' media='all' />
<script type='text/javascript' src='https://s1.wp.com/_static/??-eJyFkNEKwjAMRX/IWuvQ4YP4KdLFbGu3trNJN/Tr7UQfxKEQCOQebm4ip0EYD326IEmb65ow3l5tbWklfwHCmSZqxrUz/g1D8IyeZ9aFyvQoEmHUTZ5lozoscEMgdkiUoQX1M5Lxo8HpL2aRBw2diEjm/uXKLeZ9cjSDZIQWYvLQiu1GFVITIT8vpQgS4Vwl6JCXXkFTHSqLMIsnd1Q7dSjLvSoL+wBqlX62'></script>
<script type='text/javascript' src='https://s.yimg.com/ss/rapid-3.45.0.js?ver=4.9.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var Live_Cache = {"ajaxurl":"https:\/\/techcrunch.com","auto_updates":{"live-cache-widget-1-title":"#live-cache-widget-1 h2","live-cache-widget-1-text":"#live-cache-widget-1 div","live-cache-subtitle":".live-island .live-subtitle","live-cache-text":".live-island .vid-caption","live-cache-stream-pause":".live-island .stream-pause","live-cache-fb-stream-src":".live-island .fb-stream-src","live-cache-title-livecaster":".livecaster-title","live-cache-text-livecaster":".livecaster-text"}};
var gravityInsightsParams = {"type":"content","action":"","site_guid":"fca4fa8af1286d8a77f26033fdeed202"};
var tcOmniture = {"pageName":"GoBee Bike throws in the towel in France","prop1":"article","prop2":"collaborative-consumption","prop54":"wordpress","prop9":"tcr:1602047","prop16":"standard-article","prop19":"bike sharing|mobike|ofo|obike|gobee.bike|france newsletter","prop23":"02-25-2018","prop64":"gravity","prop65":"original_content","prop22":"romain-dillet","omni_env":"prod"};
var TC_Async_Head_Scripts = {"tc_ads_wrapper_omniture":"https:\/\/o.aolcdn.com\/ads\/adsWrapper.js","tc_ads_wrapper_omniture_call":"https:\/\/o.aolcdn.com\/os\/moat\/prod\/moatuac.js"};
var TC_Google_Analytics_Config = {"account":"UA-991406-1","domain":"techcrunch.com"};
/* ]]> */
</script>
<script type='text/javascript' src='https://s1.wp.com/_static/??-eJydzDEOwjAMQNELNXXSqkIMiLOkxmocJU5UG1BvXzZmmL/+g3d32MRIDCxRJYUXdzDChPtTMLnJhxmiKplCVthj54eLEsthjDpmHeBXo/DqvnWsLH8xW2tboc96r7ew+HkJ/nqZ8gkFqUty'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tctechcrunch2011.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s1.wp.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress.com" />
<link rel="canonical" href="https://techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/" />
<link rel='shortlink' href='https://wp.me/p1FaB8-6ILt' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&url=https%3A%2F%2Ftechcrunch.com%2F2018%2F02%2F25%2Fgobee-bike-throws-in-the-towel-on-france%2F&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&url=https%3A%2F%2Ftechcrunch.com%2F2018%2F02%2F25%2Fgobee-bike-throws-in-the-towel-on-france%2F&for=wpcom-auto-discovery" /><link rel='openid.server' href='https://tctechcrunch2011.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='https://tctechcrunch2011.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://techcrunch.com/osd.xml" title="TechCrunch" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<!-- BEGIN Sailthru Horizon Meta Information -->
<meta name="sailthru.date" content="2018-02-25 03:13:53" />
<meta name="sailthru.title" content="GoBee Bike throws in the towel in France" />
<meta name="sailthru.tags" content="bike sharing, mobike, ofo, obike, gobee.bike, France Newsletter" />
<meta name="sailthru.author" content="<a href="/author/romain-dillet/" title="Posts by Romain Dillet" onclick="s_objectID='river_author';" rel="author">Romain Dillet</a> <span class="twitter-handle">(<a href="https://twitter.com/romaindillet" rel="external">@romaindillet</a>)</span>" />
<meta name="sailthru.description" content="
Bike-sharing startup GoBee Bike is giving up and shutting down in all French cities where it operates. GoBee Bike operates just like Chinese giants Ofo and Mobike. You open the app, you find a bike on the map and you unlock it by scanning a QR code." />
<meta name="sailthru.image.full" content="https://tctechcrunch2011.files.wordpress.com/2017/08/gobee-2.jpg" />
<meta name="sailthru.image.thumb" content="https://tctechcrunch2011.files.wordpress.com/2017/08/gobee-2.jpg?w=50" />
<!-- END Sailthru Horizon Meta Information -->
<!-- BEGIN wp-parsely Plugin Version 1.10.3 -->
<meta name='wp-parsely_version' id='wp-parsely_version' content='1.10.3' />
<script type="application/ld+json">
{"@context":"http:\/\/schema.org","@type":"NewsArticle","mainEntityOfPage":{"@type":"WebPage","@id":"http:\/\/techcrunch.com\/2018\/02\/25\/gobee-bike-throws-in-the-towel-on-france\/"},"headline":"GoBee Bike throws in the towel in France","url":"http:\/\/techcrunch.com\/2018\/02\/25\/gobee-bike-throws-in-the-towel-on-france\/","thumbnailUrl":"https:\/\/tctechcrunch2011.files.wordpress.com\/2017\/08\/gobee-2.jpg?w=150","image":{"@type":"ImageObject","url":"https:\/\/tctechcrunch2011.files.wordpress.com\/2017\/08\/gobee-2.jpg?w=150"},"dateCreated":"2018-02-25T11:13:53Z","datePublished":"2018-02-25T11:13:53Z","dateModified":"1970-01-01T00:00:00Z","articleSection":"post","author":[{"@type":"Person","name":"Romain Dillet"}],"creator":["Romain Dillet"],"publisher":{"@type":"Organization","name":"TechCrunch","logo":{"@type":"imageObject","url":"https:\/\/s0.wp.com\/wp-content\/themes\/vip\/techcrunch-2013\/assets\/images\/logo-json-ld.png","width":"352","height":"60"}},"keywords":["@post-id:1602047","collaborative consumption","europe","startups","tc","bike sharing","mobike","ofo","obike","gobee.bike","france newsletter"]} </script>
<!-- END wp-parsely Plugin Version 1.10.3 -->
<meta property="og:site_name" content="TechCrunch" />
<meta property="og:site" content="social.techcrunch.com" />
<meta property="og:title" content="GoBee Bike throws in the towel in France" />
<meta property="og:description" content="Bike-sharing startup GoBee Bike is giving up and shutting down in all French cities where it operates. GoBee Bike operates just like Chinese giants Ofo and.." />
<meta property="og:image" content="https://tctechcrunch2011.files.wordpress.com/2017/08/gobee-2.jpg" />
<meta property="og:url" content="http://social.techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/" />
<meta property="og:type" content="article" />
<meta name='twitter:card' content='summary_large_image' />
<meta name='twitter:image:src' content='https://tctechcrunch2011.files.wordpress.com/2017/08/gobee-2.jpg?w=764&h=400&crop=1' />
<meta name='twitter:site' content='@techcrunch' />
<meta name='twitter:url' content='https://techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/' />
<meta name='twitter:description' content='Bike-sharing startup GoBee Bike is giving up and shutting down in all French cities where it operates. GoBee Bike operates just like Chinese giants Ofo and Mobike. You open the app, you find a bike…' />
<meta name='twitter:title' content='GoBee Bike throws in the towel in France | TechCrunch' />
<script>
//safe initalization
tp = window.tp || [];
jQuery(document).ready(function(){
//piano content tags
tp.push(["setContentCreated", "2018-Feb-25T00:00:00"]);
tp.push(["setContentAuthor", "Romain Dillet"]);
tp.push(["setContentSection", "test_sec"]);
tp.push(["setTags", ["bike sharing","mobike","ofo","obike","gobee.bike","France Newsletter"]]);
tp.push(["setZone", "\"Web\""]);
//piano custom variables
tp.push(['setCustomVariable',"referral", null]);
tp.push(['setCustomVariable',"newsletter", "n"]);
//user agent needs to be accessed in javascript
//becuase of batcache
tp.push(['setCustomVariable','device', navigator.userAgent]);
//ensure data is accessed on page load
tp.push(["init", function(){
//push visit data
tp.push(['setCustomVariable','frequency', s_265.getVisitNum(365)]);
tp.experience.init();
}]);
});
</script>
<script>
(function(src){var a=document.createElement("script");a.type="text/javascript";a.async=true;
a.src=src;var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b)})("https://dashboard.tinypass.com/xbuilder/experience/load?aid=Fy7FpgyUxA");
</script>
<!-- newsletter signup -->
<script>
/**
* Sets cookie for later use in custom variables
* @param name custom variable's name
* @param value custom variable's value
*/
function pianoSetCustomVariableCookie(name, value) {
// Get all existing values from the cookie
var cookieValue = pianoReadCustomVariableCookie();
// Set the value
cookieValue[name] = value;
// Get cookie expiration date in 3 years
var d = new Date();
d.setTime(d.getTime() + (94608000000));
var expires = "expires=" + d.toUTCString();
var domain = 'techcrunch.com';
// Write the cookie value
document.cookie = "__pcvc=" + JSON.stringify(cookieValue) + ";" + expires + ";path=/;domain=."+domain;
}
/**
* Sets cookie for later use in custom variables
* @param name custom variable's name
* @param value custom variable's value
*/
function pianoSetCustomVariableCookie(name, value) {
// Get all existing values from the cookie
var cookieValue = pianoReadCustomVariableCookie();
// Set the value
cookieValue[name] = value;
// Get cookie expiration date in 3 years
var d = new Date();
d.setTime(d.getTime() + (94608000000));
var expires = "expires=" + d.toUTCString();
// Write the cookie value
document.cookie = "__pcvc=" + JSON.stringify(cookieValue) + ";" + expires + ";path=/;domain=.tcpreprod.com";
}
/**
* Read values from cookie and convert them from json
* @param specificName (optional) Name specific value from the set
* @returns {*} If specificName is specified - returns single value, otherwise returns JSON object with all values
*/
function pianoReadCustomVariableCookie(specificName) {
var cookieValue;
try {
// Try to get the cookie value with regexp
var match = document.cookie.match(new RegExp('(^| )__pcvc=([^;]+)'));
if (match) {
// If cookie with this name was found - try to parse the JSON value
cookieValue = JSON.parse(match[2]);
}
}
catch (e) {
// By default - set value as empty object
cookieValue = {};
}
if (!cookieValue) {
// By default - set value as empty object
cookieValue = {};
}
if (typeof specificName != "undefined") {
// Get the specific value from the set
if (typeof cookieValue[specificName] != "undefined") {
return cookieValue[specificName];
}
return null;
}
return cookieValue;
}
/**
* Function to send data upstream to Piano template
* @param iframeId - Element id of the Piano iframe
* @param success - true/false. Status of the message
* @param message - Error message text
* @param object - Additional data, like the the field that triggered the error
*/
function sendPostMessageToPiano(iframeId, success, message, object) {
var iframe = jQuery('#' + iframeId);
if (iframe.length) {
iframe[0].contentWindow.postMessage({
piano: {
success: success,
message: message,
object: object
}
}, '*');
}
}
tp = window.tp || [];
tp.push(["addHandler", "customEvent", function (event, b, c, d) {
switch (event.eventName) {
// Don't show me this again
case 'dont-show':
pianoSetCustomVariableCookie('dontshow', 'y');
tp.offer.close();
break;
case 'tc-signup-newsletters':
console.log(event);
var email = '';
if ((typeof event.params.email != 'undefined') && (event.params.email.length > 0)) {
email = event.params.email;
}
var object = '';
if ((typeof event.params.object != 'undefined') && (event.params.object.length > 0)) {
object = event.params.object;
}
var list = [];
if ((typeof event.params.list != 'undefined') && (event.params.list.length > 0)) {
list = JSON.parse(event.params.list);
}
var iframeId;
// We are parsing the params object sent from the template to find out which iframe triggered it
params = JSON.parse(event.params.params);
// And here's the iframeId we're looking for
iframeId = params.iframeId;
//grab the security string from the from the form
//on the page, needed for check in the backend
var $form = jQuery('.form-newsletters');
var url = '/wp-admin/admin-ajax.php';
var nonce = $form.data('nonce');
if (email == undefined || email == '') {
return;
}
var emailLists = [];
for (var i in list){
if (list[i]){
emailLists.push(i);
}
}
var jqxhr = jQuery.get(url, {
action: "newsletters",
subaction: "subscribe",
email_lists: emailLists,
email: email,
tracking_id: event.params.tracking_id,
security: nonce
}, function (data) {
if (!data.success){
sendPostMessageToPiano(iframeId, false, data.data.message, object)
}
else{
// When the email was added - set the cookie
pianoSetCustomVariableCookie('newsletter', 'y');
sendPostMessageToPiano(iframeId, true, "");
}
});
break;
}
}]);
// Read all values from cookie
var cookieValues = pianoReadCustomVariableCookie();
for (var i in cookieValues) {
// Set custom variables from cookie
tp.push(['setCustomVariable', i, cookieValues[i]]);
}
</script>
<meta class="swiftype" name="author" data-type="string" content="Romain Dillet" />
<meta class="swiftype" name="post_id" data-type="integer" content="1602047" />
<meta class="swiftype" name="title" data-type="string" content="GoBee Bike throws in the towel in France" />
<meta class="swiftype" name="object_type" data-type="string" content="post" />
<meta class="swiftype" name="url" data-type="enum" content="https://techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/" />
<meta class="swiftype" name="timestamp" data-type="date" content="2018-02-25 03:13:53" />
<meta class="swiftype" name="content" data-type="text" content="Bike-sharing startup GoBee Bike is giving up and shutting down in all French cities where it operates. GoBee Bike operates just like Chinese giants Ofo and Mobike. You open the app, you find a bike on the map and you unlock it by scanning a QR code. Once you’re done, you lock it again and leave it there — there’s no dock. And yet, the startup is blaming vandalism and says that the service would stop immediately. It’s worth noting that users will get a refund on their remaining balances and €15 deposit. This is a nice gesture. According to the announcement, GoBee Bike managed to attract 150,000 users in Europe who used the service hundreds of thousands of times. But the company’s bikes slowly became unusable. 3,200 bikes became dysfunctional, 1,000 bikes were illegally parked in someone’s home. Overall, GoBee Bike had to send someone in 6,500 cases. The startup couldn’t keep up and it became clear that the business model wasn’t scalable if you needed to fix the…" />
<meta class="swiftype" name="excerpt" data-type="text" content="Bike-sharing startup GoBee Bike is giving up and shutting down in all French cities where it operates. GoBee Bike operates just like Chinese giants Ofo and Mobike. You open the app, you find a bike on the map and you unlock it by scanning a QR code. Once you’re done, you lock it again and leave it there — there’s no dock.
And yet, the startup is blaming vandalism and says that the service…" />
<meta class="swiftype" name="image" data-type="enum" content="https://tctechcrunch2011.files.wordpress.com/2017/08/gobee-2.jpg?w=150" />
<meta class="swiftype" name="category" data-type="string" content="Collaborative Consumption" />
<meta class="swiftype" name="category" data-type="string" content="Europe" />
<meta class="swiftype" name="category" data-type="string" content="Startups" />
<meta class="swiftype" name="category" data-type="string" content="TC" />
<meta class="swiftype" name="tag" data-type="string" content="bike sharing" />
<meta class="swiftype" name="tag" data-type="string" content="mobike" />
<meta class="swiftype" name="tag" data-type="string" content="ofo" />
<meta class="swiftype" name="tag" data-type="string" content="obike" />
<meta class="swiftype" name="tag" data-type="string" content="gobee.bike" />
<meta class="swiftype" name="tag" data-type="string" content="France Newsletter" />
<meta name="description" content="Bike-sharing startup GoBee Bike is giving up and shutting down in all French cities where it operates. GoBee Bike operates just like Chinese giants Ofo and.." />
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({article:'auto'});
!function (e, f, u, i) {
if (!document.getElementById(i)){
e.async = 1;
e.src = u;
e.id = i;
f.parentNode.insertBefore(e, f);
}
}(document.createElement('script'),
document.getElementsByTagName('script')[0],
'//cdn.taboola.com/libtrc/aol-techcrunch/loader.js',
'tb_loader_script');
if(window.performance && typeof window.performance.mark == 'function')
{window.performance.mark('tbl_ic');}
</script>
<script type="text/javascript">var ajaxurl = "https://techcrunch.com/wp-admin/admin-ajax.php"</script><meta name="application-name" content="TechCrunch" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Startup and Technology News" /><meta name="msapplication-task" content="name=Subscribe;action-uri=https://techcrunch.com/feed/;icon-uri=https://secure.gravatar.com/blavatar/d9ea925a71f82f06a1e6224298f7fe80?s=16" /> <script type="text/javascript">
<!-- Rapid analytics stuff -->
window.RapidAnalytics.baseKeys = {"st_sec":"us.tchcr","pt":"content","pct":"story","paid":"techcrunch_350=tcr:1602047","ver":"wordpress-vip"};
var myRapidInstance = new YAHOO.i13n.Rapid( {
keys: window.RapidAnalytics.baseKeys,
spaceid: window.RapidAnalytics.spaceId,
nol: true
} );
</script>
<style type="text/css">#site-logo { background: url(https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/images/logos/green.png) no-repeat !important; }</style>
<link rel="amphtml" href="https://techcrunch.com/2018/02/25/gobee-bike-throws-in-the-towel-on-france/amp/" /><style type="text/css" id="syntaxhighlighteranchor"></style>
<script src="https://o.aolcdn.com/os/aol/omniture.min.js" type="text/javascript"></script>
<script src="https://o.aolcdn.com/os/aol/beacon.min.js" type="text/javascript"></script>
<!--[if lte IE 8 ]>
<script src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/js/respond.min.js"></script>
<![endif]-->
<meta name="st:robots" content="follow, index">
<script src='https://www.google.com/recaptcha/api.js'></script>
<script>
//function to be used by google recaptcha
var newsletterRecaptchaClbk = function(){
jQuery( ".form-newsletters" ).submit();
}
</script>
</head>
<body class="post-template-default single single-post postid-1602047 single-format-standard mobile-header-ad mp6 customizer-styles-applied highlander-enabled highlander-light single-post-mobile-collapse single-post-standard">
<!-- piano adblock test -->
<script>
var setAdblockerCookie = function(adblocker) {
var d = new Date();
d.setTime(d.getTime() + 60 * 60 * 24 * 30 * 1000);
document.cookie = "__adblocker=" + (adblocker ? "true" : "false") + "; expires=" + d.toUTCString() + "; path=/";
}
var script = document.createElement("script");
script.setAttribute("async", true);
script.setAttribute("src", "//www.npttech.com/advertising.js");
script.setAttribute("onerror", "setAdblockerCookie(true);");
script.setAttribute("onload", "setAdblockerCookie(false);");
document.getElementsByTagName("head")[0].appendChild(script);
</script>
<header class="header header-fixed-mobile cf header-context-news" role="banner">
<div class="ad-top-mobile">
<div id="adsDiv927c62b548" class="mobile-ads-center"></div>
<script>
/* <![CDATA[ */
if (ads.isMobile()) {
(function(window,$){
window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
if ( !window.ads.isAdPageSet ){
if ( typeof window.adSetAdURL == 'function' ) {
window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
window.ads.isAdPageSet = true;
}
if ( typeof window.adsResizePortrait === 'function' ) {
window.adsResizePortrait('1');
}
window.console.log('ADS WIDTH:');
window.console.log(ads);
}
window.adSetOthAT('kventryid=1602047;kvcmsid=tcr:1602047;kvugc=0;kvsubj=982665:978988:983141:980877:983714;kvent=3689636:3683918:3449026:3454657:3463805:3685848:3856042:4063931');
window.htmlAdWH('93484987', "320", "50", 'f', 'adsDiv927c62b548');
});
}(this,this.jQuery));
}
/* ]]> */
</script> </div>
<div class="nav-bar">
<div class="lc">
<div class="lc">
<a href="#" class="nav-mobile icon-hamburger"><span class="is-vishidden">Menu</span></a>
<a href="/" class="logo-link" title="TechCrunch" data-omni-sm="gbl_topnav">
<img src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/logo.svg" alt="TechCrunch" class="logo"></a>
<a href="#" class="search-form-toggle icon-mag"><span class="is-vishidden">Search</span></a>
<a href="#" class="trending-nav-mobile icon-rocketship"></a>
<div class="header-logo-bar cf">
<div class="header-social">
<ul class="inline-list social-list sprite-social">
<li class="nav-followus">Follow Us</li><li class="first">
<a href="https://www.facebook.com/techcrunch" rel="external" class="spricon nosprite icon-facebook" target="_blank"><span class="is-vishidden">Facebook</span></a>
</li><li>
<a href="https://instagram.com/techcrunch" rel="external" class="spricon nosprite icon-instagram" target="_blank"><span class="is-vishidden">Instagram</span></a>
</li><li>
<a href="https://twitter.com/techcrunch" rel="external" class="spricon nosprite icon-twitter" target="_blank"><span class="is-vishidden">Twitter</span></a>
</li><li class="youtube nav-aux">
<a href="http://www.youtube.com/user/techcrunch" rel="external" class="spricon nosprite icon-youtube" target="_blank"><span class="is-vishidden">Youtube</span></a>
</li><li class="flipboard nav-aux">
<a href="https://flipboard.com/@techcrunch" rel="external" class="spricon nosprite icon-flipboard" target="_blank"><span class="is-vishidden">Flipboard</span></a>
</li><li class="linkedin nav-aux">
<a href="http://www.linkedin.com/company/techcrunch" rel="external" class="spricon nosprite icon-linkedin" target="_blank"><span class="is-vishidden">LinkedIn</span></a>
</li><li class="nav-aux">
<a href="https://plus.google.com/+TechCrunch" rel="external" class="spricon nosprite icon-google-plus" target="_blank"><span class="is-vishidden">Google+</span></a>
</li><li class="rss nav-aux">
<a href="/rssfeeds/" class="spricon nosprite icon-rss"><span class="is-vishidden">RSS</span></a>
</li>
<li class="nav-social-more">
<a href="#" class="icon-caret-down"><span class="is-vishidden">More</span></a>
<ul>
<li class="youtube">
<a href="http://www.youtube.com/user/techcrunch" rel="external" class="spricon nosprite icon-youtube" target="_blank"><span class="is-vishidden">Youtube</span></a>
</li><li class="flipboard">
<a href="https://flipboard.com/@techcrunch" rel="external" class="spricon nosprite icon-flipboard" target="_blank"><span class="is-vishidden">Flipboard</span></a>
</li><li class="linkedin">
<a href="http://www.linkedin.com/company/techcrunch" rel="external" class="spricon nosprite icon-linkedin" target="_blank"><span class="is-vishidden">LinkedIn</span></a>
</li><li class="google-plus">
<a href="https://plus.google.com/+TechCrunch" rel="external" class="spricon nosprite icon-google-plus" target="_blank"><span class="is-vishidden">Google+</span></a>
</li><li class="rss">
<a href="/rssfeeds/" class="spricon nosprite icon-rss"><span class="is-vishidden">RSS</span></a>
</li>
</ul>
</li>
</ul>
<div class="header-tip">
<a href="/got-a-tip/" data-omni-sm="gbl_topnav">
Got a tip? <span>Let us know.</span>
</a>
</div>
</div>
<nav class="nav-primary">
<ul class="nav" id="nav">
<li class="nav-level1 nav-news">
<a href="/" class="nav-parent icon-caret-down">News</a>
<div class="nav-subnav single-col">
<ul class="nav-col">
<li class="subnav-title">Channels</li>
<ul class="subnav-channel" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-899745" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899745"><a href="https://techcrunch.com/startups/">Startups</a></li>
<li id="menu-item-899746" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899746"><a href="https://techcrunch.com/mobile/">Mobile</a></li>
<li id="menu-item-899747" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899747"><a href="https://techcrunch.com/gadgets/">Gadgets</a></li>
<li id="menu-item-899748" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899748"><a href="https://techcrunch.com/enterprise/">Enterprise</a></li>
<li id="menu-item-899749" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899749"><a href="https://techcrunch.com/social/">Social</a></li>
<li id="menu-item-899750" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899750"><a href="https://techcrunch.com/europe/">Europe</a></li>
<li id="menu-item-901944" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-901944"><a href="/asia">Asia</a></li>
<li id="menu-item-1266871" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1266871"><a href="https://techcrunch.com/crunch-network/">Crunch Network</a></li>
<li id="menu-item-1210304" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1210304"><a href="https://techcrunch.com/unicorn-leaderboard/">Unicorn Leaderboard</a></li>
<li id="menu-item-1242803" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1242803"><a href="https://techcrunch.com/gifts/">Gift Guides</a></li>
</ul> </ul>
<div class="nav-col nav-col-border">
<a href="https://techcrunch.com/topic/">All Topics</a>
<a href="https://techcrunch.com/gallery/">All Galleries</a>
<a href="https://techcrunch.com/timeline/">All Timelines</a>
</div>
</div>
</li>
<li class="nav-level1 nav-shows">
<a href="/video/" class="nav-parent icon-caret-down">Video</a>
<div class="nav-subnav">
<div class="subnav-title">Shows</div>
<ul class="nav-col">
<ul class="subnav-tctv-shows-left" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-899755" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899755"><a href="https://techcrunch.com/video/apps/">Apps</a></li>
<li id="menu-item-1581167" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1581167"><a href="https://techcrunch.com/video/bubbleproof/">Bubbleproof</a></li>
<li id="menu-item-1386392" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1386392"><a href="https://techcrunch.com/video/bullish/">Bullish</a></li>
<li id="menu-item-1134050" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1134050"><a href="https://techcrunch.com/video/crunchreport/">Crunch Report</a></li>
<li id="menu-item-1213488" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1213488"><a href="https://techcrunch.com/events/disrupt-sf-2017/video/">Disrupt SF 2017</a></li>
<li id="menu-item-1493879" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1493879"><a href="https://techcrunch.com/video/judah-vs-the-machines/">Judah vs the Machines</a></li>
</ul> </ul>
<ul class="nav-col">
<ul class="subnav-tctv-shows-left" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-1218613" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1218613"><a href="https://techcrunch.com/video/gadgets/">Gadgets</a></li>
<li id="menu-item-1386391" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1386391"><a href="https://techcrunch.com/video/interviews/">Interviews</a></li>
<li id="menu-item-1493880" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1493880"><a href="https://techcrunch.com/video/tctv-news/">News</a></li>
<li id="menu-item-1106527" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1106527"><a href="https://techcrunch.com/video/reviews/">Reviews</a></li>
<li id="menu-item-1187083" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1187083"><a href="https://techcrunch.com/video/features/">TC Features</a></li>
</ul> </ul>
<div class="subnav-separator"></div>
<div class="nav-col nav-col-border">
<a href="/video/">All Shows</a>
</div>
<div class="nav-col nav-col-border">
<a href="/video/all/">All Videos</a>
</div>
</div>
</li>
<li class="nav-level1 nav-events">
<a href="/events/" class="nav-parent icon-caret-down">Events</a>
<div class="nav-subnav">
<ul class="nav-col">
<li class="subnav-title">TechCrunch Events</li>
<ul class="subnav-events-tc-events" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-899739" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899739"><a href="https://techcrunch.com/event-type/disrupt/">Disrupt</a></li>
<li id="menu-item-936211" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-936211"><a href="https://techcrunch.com/startup-battlefield/">Startup Battlefield</a></li>
<li id="menu-item-1519013" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1519013"><a href="https://techcrunch.com/event-info/tc-startup-battlefield-africa/">Battlefield Africa</a></li>
<li id="menu-item-1519017" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1519017"><a href="https://techcrunch.com/event-info/startup-battlefield-australia/https://techcrunch.com/event-info/startup-battlefield-australia/">Battlefield Australia</a></li>
<li id="menu-item-899740" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899740"><a href="https://techcrunch.com/event-type/crunchies/">Crunchies</a></li>
<li id="menu-item-899741" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899741"><a href="https://techcrunch.com/event-type/meetups/">Meetups</a></li>
<li id="menu-item-899742" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899742"><a href="https://techcrunch.com/event-type/international-city/">International City Events</a></li>
<li id="menu-item-899744" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899744"><a href="https://techcrunch.com/event-type/hackathon-2/">Hackathon</a></li>
<li id="menu-item-1477940" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1477940"><a href="https://techcrunch.com/event-type/sessions/">Sessions</a></li>
<li id="menu-item-1084973" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1084973"><a href="https://techcrunch.com/events/include">Include</a></li>
<li id="menu-item-1390002" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1390002"><a href="http://www.techcrunchstore.com">TechCrunch Store</a></li>
</ul> </ul>
<ul class="nav-col">
<li class="subnav-title">News About</li>
<ul class="subnav-events-news-about" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-1281118" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1281118"><a href="https://techcrunch.com/events/mobile-world-congress-2016/">Mobile World Congress</a></li>
<li id="menu-item-899737" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899737"><a href="https://techcrunch.com/events/ces-2017/">CES</a></li>
</ul> </ul>
<div class="subnav-separator"></div>
<div class="nav-col-border">
<a href="/events/">All Events</a>
</div>
</div>
</li>
<li class="nav-crunchbase">
<a href="https://www.crunchbase.com" class="nav-parent">Crunchbase</a>
</li>
</ul>
</nav>
<nav class="nav-trending">
<ul class="nav">
<li id="trending-icon">
Trending
<i class="icon-trending"></i>
</li>
<li id="menu-item-1137480" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1137480"><a href="https://techcrunch.com/topic/company/amazon/">Amazon</a></li>
<li id="menu-item-1134491" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1134491"><a href="https://techcrunch.com/tag/tesla/">Tesla</a></li>
<li id="menu-item-899780" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899780"><a href="https://techcrunch.com/tag/microsoft/">Microsoft</a></li>
</ul>
</nav>
<nav class="nav-contextual">
<ul class="nav">
<li class="nav-news">
<a href="/" class="nav-parent">News</a>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899745"><a href="https://techcrunch.com/startups/">Startups</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899746"><a href="https://techcrunch.com/mobile/">Mobile</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899747"><a href="https://techcrunch.com/gadgets/">Gadgets</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899748"><a href="https://techcrunch.com/enterprise/">Enterprise</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899749"><a href="https://techcrunch.com/social/">Social</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899750"><a href="https://techcrunch.com/europe/">Europe</a></li>
</ul>
</nav>
<div class="nav-fb-messenger">
<button id="fb-messenger-chat">
<img src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/facebook-messenger.svg" alt="" width="20" height="20">
<span>Message Us</span>
</button>
</div>
<form action="/" method="get" class="search-form">
<fieldset>
<legend>Search TechCrunch</legend>
<label for="s">Search TechCrunch</label>
<input type="search" placeholder="Search" class="search-field" name="s" value="" />
<button class="search-submit">
<span class="icon-mag" aria-hidden="true"></span>
<span class="is-vishidden">Search</span>
</button>
<button class="search-close">
<span class="icon-close" aria-hidden="true"></span>
<span class="is-vishidden">Search</span>
</button>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</header>
<!-- FB Messenger Modal -->
<div id="fb-messenger-modal" style="display:none;">
<div class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<div class="modal-tc-logo">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="180px" height="90px" viewBox="0 0 180 90" enable-background="new 0 0 180 90" xml:space="preserve">
<polygon fill="#3E433E" points="90,0 90,30 60,30 60,90 30,90 30,30 0,30 0,0 "/>
<rect x="120" fill="#3E433E" width="60" height="30"/>
<polygon fill="#3E433E" points="180,60 180,90 90,90 90,30 120,30 120,60 "/>
</svg>
</div>
</div>
<div class="modal-body">
<h2>Hi!</h2>
<p>
You are about to activate our Facebook Messenger news bot. Once subscribed, the bot will send you a digest of trending stories once a day. You can also customize the types of stories it sends you.
</p>
<p>
Click on the button below to subscribe and wait for a new Facebook message from the TC Messenger news bot.
</p>
<p>
Thanks,<br>
TC Team
</p>
<div class="fb-messenger-loading"></div>
<div class="fb-messenger-iframe">
<div class="fb-send-to-messenger"
id="fb-send-to-messenger"
messenger_app_id="1678638095724206"
page_id="8062627951"
color="blue"
size="large"
data-ref="tcnav"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '1678638095724206',
xfbml : true,
version : 'v2.6'
});
FB.Event.subscribe('xfbml.render', function() {
jQuery('.fb-messenger-loading').detach()
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
function getCookie(name) {
var matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
));
return matches ? decodeURIComponent(matches[1]) : undefined;
}
window.onload = function() {
var gravity_guid = getCookie('grvinsights');
var btn = document.getElementById('fb-send-to-messenger');
if (btn != undefined && btn != null) {
btn.setAttribute('data-ref', gravity_guid)
}
}
</script>
</div>
</div> </div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div class="header-ad">
<div id="adsDiv256b5f25dd" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
(function(window,$){
window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
if ( !window.ads.isAdPageSet ){
if ( typeof window.adSetAdURL == 'function' ) {
window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
window.ads.isAdPageSet = true;
}
if ( typeof window.adsResizePortrait === 'function' ) {
window.adsResizePortrait('1');
}
window.console.log('ADS WIDTH:');
window.console.log(ads);
}
window.adSetOthAT('kventryid=1602047;kvcmsid=tcr:1602047;kvugc=0;kvsubj=982665:978988:983141:980877:983714;kvent=3689636:3683918:3449026:3454657:3463805:3685848:3856042:4063931');
window.htmlAdWH('93484988', "LB", "LB", 'f', 'adsDiv256b5f25dd');
});
}(this,this.jQuery));
}
/* ]]> */
</script></div>
<div class="announcement announcement-bar announcement-flat-background announcement-centered">
<div class="lc">
<div class="announcement-bg">
<div class="announcement_left">
<a href="https://www.techcrunch.com/event-info/disrupt-sf-2018?ref=announcementbar#tickets" data-ga-event="click" data-ga-event-category="Marketing - Internal" data-ga-event-action="Announcement Bar" data-ga-event-label="Disrupt SF">
<span class="announcement-text">
<span class="announcement-headline">Disrupt SF</span>All new attendee passes now available for Disrupt SF starting at $149 <span class="announcement-link-text">
Get yours today! <span class="icon-caret-right"></span>
</span>
</span>
</a>
</div>
</div>
</div>
</div>
<!-- Begin: Article Body Content - Main -->
<div role="main" class="fluid" style="">
<!-- Begin: Article - Primary -->
<article class="article lc">
<div class="l-two-col-expose">
<!-- Begin: Article Content - Body Right Column -->
<div class="l-main-container">
<div class="l-main">
<!-- Begin: Article Header -->
<header class="article-header page-title">
<!-- Begin: Article Eyebrows -->
<div class="tags">
<div class="tag-item">
<a href="https://techcrunch.com/collaborative-consumption/" class="tag" data-omni-sm="art_articlecategory">Collaborative Consumption</a>
<div class="links" id="tc-tag-item-collaborative-consumption">
<ul class="recirc-river river-small g g-1-2-1">
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2018/03/06/mit-to-revisit-ride-sharing-study-after-uber-rebuttal/">
<img src="https://tctechcrunch2011.files.wordpress.com/2017/01/gettyimages-541025592.jpg?w=150" alt="MIT to revisit ride-sharing study after Uber rebuttal" />
<div class="block-content">
<h3>MIT to revisit ride-sharing study after Uber rebuttal</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2018-03-06 06:39:11"></time>
</div>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2018/03/02/mit-study-shows-how-much-driving-for-uber-or-lyft-sucks/">
<img src="https://tctechcrunch2011.files.wordpress.com/2017/07/gettyimages-696625076.jpg?w=150" alt="MIT study shows how much driving for Uber or Lyft sucks" />
<div class="block-content">
<h3>MIT study shows how much driving for Uber or Lyft sucks</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2018-03-02 07:45:38"></time>
</div>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2018/02/22/about-grab-uber/">
<img src="https://tctechcrunch2011.files.wordpress.com/2017/11/gettyimages-651077472.jpg?w=150" alt="Is Uber selling its Southeast Asia business to Grab?" />
<div class="block-content">
<h3>Is Uber selling its Southeast Asia business to Grab?</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2018-02-22 22:52:07"></time>
</div>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/collaborative-consumption/">
<div class="block-content">
<h3>Browse more...</h3>
</div>
</a>
</div>
</li>
</ul>
</div>
</div>
<div class="tag-item">
<a href="https://techcrunch.com/tag/obike/" class="tag" data-omni-sm="art_articlecategory">obike</a>
<div class="links" id="tc-tag-item-obike">
<ul class="recirc-river river-small g g-1-2-1">
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2018/01/21/grab-obike-grab-cycle/">
<img src="https://tctechcrunch2011.files.wordpress.com/2018/01/grab-cycle-1.jpeg?w=150" alt="Grab is adding bike-sharing to its ride-hailing service in Southeast Asia" />
<div class="block-content">
<h3>Grab is adding bike-sharing to its ride-hailing service in Southeast Asia</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2018-01-21 21:01:58"></time>
</div>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2017/09/27/grab-obike/">
<img src="https://tctechcrunch2011.files.wordpress.com/2017/09/obike.jpg?w=150" alt="Uber rival Grab quietly backed dock-less bike service oBike" />
<div class="block-content">
<h3>Uber rival Grab quietly backed dock-less bike service oBike</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2017-09-27 23:07:47"></time>
</div>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/tag/obike/">
<div class="block-content">
<h3>Browse more...</h3>
</div>
</a>
</div>
</li>
</ul>
</div>
</div>
<div class="tag-item">
<a href="https://techcrunch.com/tag/ofo/" class="tag" data-omni-sm="art_articlecategory">ofo</a>
<div class="links" id="tc-tag-item-ofo">
<ul class="recirc-river river-small g g-1-2-1">
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2018/01/23/beijing-based-ofo-wants-to-launch-its-stationless-bike-sharing-service-in-sf-but-its-not-allowed-to/">
<img src="https://tctechcrunch2011.files.wordpress.com/2017/07/photo-18-06-2017-11-38-19-am.jpg?w=150" alt="Beijing-based Ofo wants to launch its stationless bike-sharing service in SF, but it’s not allowed to" />
<div class="block-content">
<h3>Beijing-based Ofo wants to launch its stationless bike-sharing service in SF, but it’s not allowed to</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2018-01-23 09:51:13"></time>
</div>
</div>
</div>
</a>
</div>
</li>
<li>
<div class="block-small">
<a class="block-wrapper" href="https://techcrunch.com/2018/01/17/didi-platform-bike-sharing-threat/">
<img src="https://tctechcrunch2011.files.wordpress.com/2017/07/photo-18-06-2017-11-41-06-am.jpg?w=150" alt="Didi has a brilliant plan to contain the threat of China’s bike-sharing services" />
<div class="block-content">
<h3>Didi has a brilliant plan to contain the threat of China’s bike-sharing services</h3>
<div class="block-meta">
<div class="byline">
<time datetime="2018-01-17 03:24:37"></time>
</div>
</div>
</div>
</a>
</div>
</li>