-
Notifications
You must be signed in to change notification settings - Fork 0
/
frank_feed.xml
1328 lines (1294 loc) · 128 KB
/
frank_feed.xml
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
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<atom:link href="http://feeds.soundcloud.com/users/soundcloud:users:248722812/sounds.rss" rel="self" type="application/rss+xml"/>
<atom:link href="http://feeds.soundcloud.com/users/soundcloud:users:248722812/sounds.rss?before=279180686" rel="next" type="application/rss+xml"/>
<title>Best Of Tech & Startups 2</title>
<link>http://soundcloud.com/best-of-tech-startups</link>
<pubDate>Tue, 28 Mar 2017 09:00:00 +0000</pubDate>
<lastBuildDate>Tue, 28 Mar 2017 09:00:00 +0000</lastBuildDate>
<ttl>60</ttl>
<language>en</language>
<copyright>All rights reserved</copyright>
<webMaster>[email protected] (SoundCloud Feeds)</webMaster>
<description>Curating & reposting the ~2 best podcasts per week from the likes of a16z, recode, Tim Ferriss, TED, etc.
There are simply too many good podcasts out there, let us pick the best two each week for you.
Copyright is owned by the publisher, not this podcast, audio is streamed directly from publisher's servers.</description>
<itunes:subtitle>Curating & reposting the ~2 best podcasts per wee…</itunes:subtitle>
<itunes:owner>
<itunes:name>Best Of Tech & Startups</itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
<image>
<url>http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg</url>
<title>Best Of Tech & Startups</title>
<link>http://soundcloud.com/best-of-tech-startups</link>
</image>
<itunes:category text="Technology"/>
<item>
<title>
Internet History: Chamath Palihapitiya @chamath on Facebook, AIM and WinAmp
</title>
<description>
Most of you know Chamath Palihapitiya as one of the most prominent and progressive venture capitalists working today. But before forming Social Capital, Chamath was an early employee at a startup we've already covered, WinAmp; was the head of AOL's Instant Messenger product; and of course, was an early employee at Facebook.
</description>
<pubDate>Tue, 28 Mar 2017 09:00:00 +0000</pubDate>
<itunes:author>Brian McCullough @brianmcc</itunes:author>
<itunes:subtitle>
Most of you know Chamath Palihapitiya as one of the most prominent and progressive venture capitalists working today. But before forming Social Capital, Chamath was an early employee at a startup we've already covered, WinAmp; was the head of AOL's Instant Messenger product; and of course, was an early employee at Facebook.
</itunes:subtitle>
<itunes:summary>
Most of you know Chamath Palihapitiya as one of the most prominent and progressive venture capitalists working today. But before forming Social Capital, Chamath was an early employee at a startup we've already covered, WinAmp; was the head of AOL's Instant Messenger product; and of course, was an early employee at Facebook.
</itunes:summary>
<itunes:duration>56:14</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/internethistorypodcast/121._Chamath_Palihapitiya_chamath_on_Facebook_AIM_and_WinAmp.mp3" length="40830819"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/314605113</guid>
<title>Eztra Klein: Yuval Harari, author of “Sapiens,” on AI, religion, and 60-day meditation retreats</title>
<pubDate>Sun, 26 Mar 2017 22:19:04 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/eztra-klein-yuval-harari-author-of-sapiens-on-ai-religion-and-60-day-meditation-retreats</link>
<itunes:duration>01:10:36</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Yuval Noah Harari’s first book, “Sapiens,” was an international sensation. The Israeli historian’s mind-bending tour through the trump of Homo sapiens is a favorite of, among others, Bill Gates, Mark Zuckerberg, and Barack Obama. His new book, Homo Deus, is about what comes next for humanity — and the threat our own intelligence and creative capacity poses to our future. And it, too, is fantastically interesting. I’ve wanted to talk to Harari since reading Sapiens. I’ve had one big question about him: what kind of mind creates a book like that? And now I know. A clear one.</itunes:summary>
<itunes:subtitle>Yuval Noah Harari’s first book, “Sapiens,” was an…</itunes:subtitle>
<description>Yuval Noah Harari’s first book, “Sapiens,” was an international sensation. The Israeli historian’s mind-bending tour through the trump of Homo sapiens is a favorite of, among others, Bill Gates, Mark Zuckerberg, and Barack Obama. His new book, Homo Deus, is about what comes next for humanity — and the threat our own intelligence and creative capacity poses to our future. And it, too, is fantastically interesting.&nbsp;<br><br>I’ve wanted to talk to Harari since reading Sapiens. I’ve had one big question about him: what kind of mind creates a book like that? And now I know. A clear one.</description>
<enclosure type="audio/mpeg" url="http://analytics.owltail.com/podcast/Best%20Of%20Tech%20&%20Startups%202/redirect.mp3/feeds.soundcloud.com/stream/314605113-best-of-tech-startups-eztra-klein-yuval-harari-author-of-sapiens-on-ai-religion-and-60-day-meditation-retreats.mp3" length="0"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000214785840-iey0qf-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/314143018</guid>
<title>How I Built This: Atari & Chuck E. Cheese's: Nolan Bushnell</title>
<pubDate>Thu, 23 Mar 2017 20:08:41 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-i-built-this-atari-chuck-e-cheeses-nolan-bushnell</link>
<itunes:duration>00:51:15</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Before he turned 40, Nolan Bushnell founded two brands that permanently shaped the way Americans amuse themselves: the iconic video game system Atari, and the frenetic family restaurant Chuck E. Cheese's.</itunes:summary>
<itunes:subtitle>Before he turned 40, Nolan Bushnell founded two b…</itunes:subtitle>
<description>Before he turned 40, Nolan Bushnell founded two brands that permanently shaped the way Americans amuse themselves: the iconic video game system Atari, and the frenetic family restaurant Chuck E. Cheese's.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/314143018-best-of-tech-startups-how-i-built-this-atari-chuck-e-cheeses-nolan-bushnell.mp3" length="49088678"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/313683272</guid>
<title>HBR Ideacast: Why You Should Buy a Business (and How to Do It)</title>
<pubDate>Tue, 21 Mar 2017 23:09:16 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/hbr-ideacast-why-you-should-buy-a-business-and-how-to-do-it</link>
<itunes:duration>00:34:15</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Richard S. Ruback and Royce Yudkoff, professors at Harvard Business School, spell out an overlooked career path: buying a business and running it as CEO. Purchasing a small company lets you become your own boss and reap financial rewards without the risks of founding a start-up. Still, there are things you need to know. Ruback and Yudkoff are the authors of the “HBR Guide to Buying a Small Business.”</itunes:summary>
<itunes:subtitle>Richard S. Ruback and Royce Yudkoff, professors a…</itunes:subtitle>
<description>Richard S. Ruback and Royce Yudkoff, professors at Harvard Business School, spell out an overlooked career path: buying a business and running it as CEO. Purchasing a small company lets you become your own boss and reap financial rewards without the risks of founding a start-up. Still, there are things you need to know. Ruback and Yudkoff are the authors of the “HBR Guide to Buying a Small Business.”</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/313683272-best-of-tech-startups-hbr-ideacast-why-you-should-buy-a-business-and-how-to-do-it.mp3" length="33056315"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000213830380-8a6tm1-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/313297286</guid>
<title>Gary Vee: A Keynote - Dublin Tech Summit</title>
<pubDate>Sun, 19 Mar 2017 21:53:09 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/gary-vee-a-keynote-dublin-tech-summit</link>
<itunes:duration>00:54:24</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>This must be my year because I've said this a few times but this definitely one of my strongest keynotes to-date. Not only is it a massive talk but it's followed by a super strong Q&A. In this episode, I discuss the beauty of entrepreneurship, the dangers of down-playing social media, my biggest failures to-date, and why a real practitioner isn’t afraid to get their hands dirty. Thanks to everyone who showed me love in Dublin !</itunes:summary>
<itunes:subtitle>This must be my year because I've said this a few…</itunes:subtitle>
<description>This must be my year because I've said this a few times but this definitely one of my strongest keynotes to-date. Not only is it a massive talk but it's followed by a super strong Q&A. In this episode, I discuss the beauty of entrepreneurship, the dangers of down-playing social media, my biggest failures to-date, and why a real practitioner isn’t afraid to get their hands dirty. Thanks to everyone who showed me love in Dublin !</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/313297286-best-of-tech-startups-gary-vee-a-keynote-dublin-tech-summit.mp3" length="78341351"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/312815559</guid>
<title>Mixergy: Andy Rachleff on founding Benchmark & Wealthfront</title>
<pubDate>Thu, 16 Mar 2017 21:12:44 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/mixergy-andy-rachleff-on-founding-benchmark-wealthfront</link>
<itunes:duration>01:04:19</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>I did this interview because I wanted to know happens when one of the most successful venture capitalists becomes a startup founder.
Andy Rachleff is the founder of Benchmark Capital, whose investments include Uber, Snap, eBay, and Juniper Networks.
More recently, he founded Wealthfront, the automated investment firm. It invests your money with minimal amount of work from you. Then it monitors your portfolio daily to look for opportunities to rebalance or harvest tax losses.
Mixergy listeners can get their first $15K managed for free when they sign up at wealthfront.com/mixergy.</itunes:summary>
<itunes:subtitle>I did this interview because I wanted to know hap…</itunes:subtitle>
<description>I did this interview because I wanted to know happens when one of the most successful venture capitalists becomes a startup founder.
Andy Rachleff is the founder of Benchmark Capital, whose investments include Uber, Snap, eBay, and Juniper Networks.
More recently, he founded Wealthfront, the automated investment firm. It invests your money with minimal amount of work from you. Then it monitors your portfolio daily to look for opportunities to rebalance or harvest tax losses.
Mixergy listeners can get their first $15K managed for free when they sign up at wealthfront.com/mixergy.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/312815559-best-of-tech-startups-mixergy-andy-rachleff-on-founding-benchmark-wealthfront.mp3" length="39246004"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000212973593-k81d44-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/312419329</guid>
<title>The Journal: Elon Musk Interview + Kevin Reboots The Old Foundation Series</title>
<pubDate>Tue, 14 Mar 2017 21:04:03 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-journal-elon-musk-interview-kevin-reboots-the-old-foundation-series</link>
<itunes:duration>00:23:34</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Kevin Rose talks with Elon Musk about his comics, favorite books, starting a company, and more. This is a "best of" broadcast from Kevin's Foundation series.</itunes:summary>
<itunes:subtitle>Kevin Rose talks with Elon Musk about his comics,…</itunes:subtitle>
<description>Kevin Rose talks with Elon Musk about his comics, favorite books, starting a company, and more. This is a "best of" broadcast from Kevin's Foundation series.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/312419329-best-of-tech-startups-the-journal-elon-musk-interview-kevin-reboots-the-old-foundation-series.mp3" length="16971552"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/312068634</guid>
<title>A16z: Marc Andreessen & Reed Hastings talk Tech And Entertainment In The 'Era Of Mass Customization'</title>
<pubDate>Sun, 12 Mar 2017 23:50:30 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-marc-andreessen-reed-hastings-talk-tech-and-entertainment-in-the-era-of-mass-customization</link>
<itunes:duration>00:45:30</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Imagine, for a moment, an alternative universe: One where Netflix got disrupted by some other streaming-content company that made its DVD rental business irrelevant. But that's just a counterfactual. What happened instead is that Netflix cannibalized (or rather, "hybridized") its own core business to make room for a more strategic one given where the tech was going.
Given how rare it is for companies to successfully disrupt themselves like this, Reed Hastings, CEO and co-founder of Netflix, shares how they did it in this episode of the a16z Podcast (based on a conversation with Marc Andreessen that took place at our inaugural summit event). But please don't say "only the paranoid survive" -- Hastings believes business leaders need more sophisticated metaphors "to anticipate the paths, and all the judgment it takes, of deciding which competitive path to most explore". It also turns out that sourcing, managing, and supporting creative ideas and creators is not unlike the questions VCs ask themselves -- like figuring out just how much experience first-time entrepreneurs (or directors) need when creating something (like, say, "Stranger Things").
Finally, is there a "Netflix brand" or genre of content -- and if so, just how far can you stretch it so the same brand can produce something like "Orange Is the New Black" one day and then "Fuller House" the next day? Or are we entering an "era of mass customization" where we only see content suited to our interests -- dark and dystopian if that's your thing, sunny and funny if not? How is the industry ecosystem evolving; where do telcos, Silicon Valley, Hollywood fit in? All this and more in this episode.</itunes:summary>
<itunes:subtitle>Imagine, for a moment, an alternative universe: O…</itunes:subtitle>
<description>Imagine, for a moment, an alternative universe: One where Netflix got disrupted by some other streaming-content company that made its DVD rental business irrelevant. But that's just a counterfactual. What happened instead is that Netflix cannibalized (or rather, "hybridized") its own core business to make room for a more strategic one given where the tech was going.
Given how rare it is for companies to successfully disrupt themselves like this, Reed Hastings, CEO and co-founder of Netflix, shares how they did it in this episode of the a16z Podcast (based on a conversation with Marc Andreessen that took place at our inaugural summit event). But please don't say "only the paranoid survive" -- Hastings believes business leaders need more sophisticated metaphors "to anticipate the paths, and all the judgment it takes, of deciding which competitive path to most explore". It also turns out that sourcing, managing, and supporting creative ideas and creators is not unlike the questions VCs ask themselves -- like figuring out just how much experience first-time entrepreneurs (or directors) need when creating something (like, say, "Stranger Things").
Finally, is there a "Netflix brand" or genre of content -- and if so, just how far can you stretch it so the same brand can produce something like "Orange Is the New Black" one day and then "Fuller House" the next day? Or are we entering an "era of mass customization" where we only see content suited to our interests -- dark and dystopian if that's your thing, sunny and funny if not? How is the industry ecosystem evolving; where do telcos, Silicon Valley, Hollywood fit in? All this and more in this episode.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/312068634-best-of-tech-startups-a16z-marc-andreessen-reed-hastings-talk-tech-and-entertainment-in-the-era-of-mass-customization.mp3" length="32762298"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/311620712</guid>
<title>How To Build The Future - Drew Houston</title>
<pubDate>Fri, 10 Mar 2017 01:19:37 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-to-build-the-future-drew-houston</link>
<itunes:duration>00:31:00</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Technology companies have become a powerful way to build the future. Our goal with this series is to share advice about how you can do it, too.</itunes:summary>
<itunes:subtitle>Technology companies have become a powerful way t…</itunes:subtitle>
<description>Technology companies have become a powerful way to build the future. Our goal with this series is to share advice about how you can do it, too.</description>
<enclosure type="audio/x-m4a" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/311620712-best-of-tech-startups-how-to-build-the-future-drew-houston.m4a" length="58053082"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/311247994</guid>
<title>TWisT - All #AskJason, PT1 VC Ethics, Investing Strategies & More</title>
<pubDate>Tue, 07 Mar 2017 21:51:26 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/twist-all-askjason-pt1-vc-ethics-investing-strategies-patents-more</link>
<itunes:duration>00:48:17</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>As an angel investor, as a founder, and as host of 700+ episodes of TWiST, Jason constantly receives questions from founders and superfans. Today, he answers 15 -- from how to passively support viable startups if you have a day job to best fundraising advice, from how much confidentiality founders should expect, to tips for female entrepreneurs to successfully navigate the tricky waters of owning and running a company in a male-dominated landscape. Plus, find out some of Jason’s investment strategies to choosing winners to invest in. This is only the first of two parts, so stay tuned for much more.</itunes:summary>
<itunes:subtitle>As an angel investor, as a founder, and as host o…</itunes:subtitle>
<description>As an angel investor, as a founder, and as host of 700+ episodes of TWiST, Jason constantly receives questions from founders and superfans. Today, he answers 15 -- from how to passively support viable startups if you have a day job to best fundraising advice, from how much confidentiality founders should expect, to tips for female entrepreneurs to successfully navigate the tricky waters of owning and running a company in a male-dominated landscape. Plus, find out some of Jason’s investment strategies to choosing winners to invest in. This is only the first of two parts, so stay tuned for much more.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/311247994-best-of-tech-startups-twist-all-askjason-pt1-vc-ethics-investing-strategies-patents-more.mp3" length="46503236"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/310879658</guid>
<title>Exponent: The Most Political</title>
<pubDate>Sun, 05 Mar 2017 21:46:33 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/exponent-the-most-political</link>
<itunes:duration>01:09:50</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Ben and James discuss Mark Zuckerberg’s manifesto, the problem with regulation, and why Facebook needs exactly that.</itunes:summary>
<itunes:subtitle>Ben and James discuss Mark Zuckerberg’s manifesto…</itunes:subtitle>
<description>Ben and James discuss Mark Zuckerberg’s manifesto, the problem with regulation, and why Facebook needs exactly that.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/310879658-best-of-tech-startups-exponent-the-most-political.mp3" length="67051921"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/310397632</guid>
<title>The Art of Charm: Peter Diamandis | Bold in Abundance</title>
<pubDate>Thu, 02 Mar 2017 21:21:40 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-art-of-charm-peter-diamandis-bold-in-abundance</link>
<itunes:duration>01:00:17</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Peter Diamandis is the founder of the XPRIZE Foundation and co-author of Bold: How to Go Big, Create Wealth and Impact the World and Abundance: The Future Is Better Than You Think
The Cheat Sheet: What does the future hold for human longevity, space colonization, artificial intelligence, and beyond? How can we adapt -- individually and as a society -- to deal with increased automation in the workforce? What is linear thinking and why does it cause us to miss the mark when coping with technology, innovation, and the advancement of the human race? If you don't know your calling in life, your calling in life is to discover what that is. What experiments can kids curious about science do that won't get them put on a no-fly list for the foreseeable future?</itunes:summary>
<itunes:subtitle>Peter Diamandis is the founder of the XPRIZE Foun…</itunes:subtitle>
<description>Peter Diamandis is the founder of the XPRIZE Foundation and co-author of Bold: How to Go Big, Create Wealth and Impact the World and Abundance: The Future Is Better Than You Think
The Cheat Sheet: What does the future hold for human longevity, space colonization, artificial intelligence, and beyond? How can we adapt -- individually and as a society -- to deal with increased automation in the workforce? What is linear thinking and why does it cause us to miss the mark when coping with technology, innovation, and the advancement of the human race? If you don't know your calling in life, your calling in life is to discover what that is. What experiments can kids curious about science do that won't get them put on a no-fly list for the foreseeable future?</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/310397632-best-of-tech-startups-the-art-of-charm-peter-diamandis-bold-in-abundance.mp3" length="30733176"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000210457800-toktl2-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/310000448</guid>
<title>A16z Podcast- Startups, Pivots, Culture, And Timing (Oh Shit!)</title>
<pubDate>Tue, 28 Feb 2017 22:01:02 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-podcast-startups-pivots-culture-and-timing-oh-shit</link>
<itunes:duration>00:32:06</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The hardest thing about pivots (major shifts in company/product direction) isn't just the actual pivot. It's the courage to make the decision... and being honest with yourself as a CEO. Especially since, no matter how great the team or board or even customers may be, it's lonely: You're the only one in the position to synthesize the knowledge; nobody else has the data and the insight put together in the same way.
And sigh, "pivot" has also become such an overused word, it's certainly lost nuance, and perhaps even meaning. So what does "pivoting" a startup really mean? For decision making? Timing (or time left until you run out of cash)? Culture? Are things different for so-called “hard tech” or deep research-based startups?
Finally, how do you know when things are working, that you really do have product-market fit? a16z co-founder Ben Horowitz and Lytro CEO Jason Rosenthal discuss (in conversation with Sonal Chokshi) all this and more in this episode of the a16z podcast, sharing war stories and lessons learned. Both witnessed first-hand -- and drove -- pivots: Jason watching Ben at Loudcloud/Opsware post-IPO, and conversely, Ben watching Jason at Lytro. Maybe, all startups -- and ultimately, successful companies -- are really just a series of pivots...</itunes:summary>
<itunes:subtitle>The hardest thing about pivots (major shifts in c…</itunes:subtitle>
<description>The hardest thing about pivots (major shifts in company/product direction) isn't just the actual pivot. It's the courage to make the decision... and being honest with yourself as a CEO. Especially since, no matter how great the team or board or even customers may be, it's lonely: You're the only one in the position to synthesize the knowledge; nobody else has the data and the insight put together in the same way.
And sigh, "pivot" has also become such an overused word, it's certainly lost nuance, and perhaps even meaning. So what does "pivoting" a startup really mean? For decision making? Timing (or time left until you run out of cash)? Culture? Are things different for so-called “hard tech” or deep research-based startups?
Finally, how do you know when things are working, that you really do have product-market fit? a16z co-founder Ben Horowitz and Lytro CEO Jason Rosenthal discuss (in conversation with Sonal Chokshi) all this and more in this episode of the a16z podcast, sharing war stories and lessons learned. Both witnessed first-hand -- and drove -- pivots: Jason watching Ben at Loudcloud/Opsware post-IPO, and conversely, Ben watching Jason at Lytro. Maybe, all startups -- and ultimately, successful companies -- are really just a series of pivots...</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/310000448-best-of-tech-startups-a16z-podcast-startups-pivots-culture-and-timing-oh-shit.mp3" length="23115904"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/309677224</guid>
<title>Recode Decode: Uber's looming 'existential crisis' (Brad Stone, author, 'The Upstarts’)</title>
<pubDate>Sun, 26 Feb 2017 20:55:22 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-decode-ubers-looming-existential-crisis-brad-stone-author-the-upstarts</link>
<itunes:duration>01:14:48</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Bloomberg Tech journalist Brad Stone talks with Recode's Kara Swisher about his latest book, "The Upstarts: How Uber, Airbnb, and the Killer Companies of the New Silicon Valley Are Changing the World." Stone argues that the stories of Uber and Airbnb are intertwined tales of competition, disruption and regulatory drama, and that both companies have driven CEOs who have found tremendous success despite several early missteps. Stone calls self-driving cars an "existential crisis" for Uber, and also talks about the future of Amazon, which he wrote about in his previous book, "The Everything Store." Stone says Amazon CEO Jeff Bezos might have a business problem under President Trump, as Bezos is also the owner of The Washington Post.</itunes:summary>
<itunes:subtitle>Bloomberg Tech journalist Brad Stone talks with R…</itunes:subtitle>
<description>Bloomberg Tech journalist Brad Stone talks with Recode's Kara Swisher about his latest book, "The Upstarts: How Uber, Airbnb, and the Killer Companies of the New Silicon Valley Are Changing the World." Stone argues that the stories of Uber and Airbnb are intertwined tales of competition, disruption and regulatory drama, and that both companies have driven CEOs who have found tremendous success despite several early missteps. Stone calls self-driving cars an "existential crisis" for Uber, and also talks about the future of Amazon, which he wrote about in his previous book, "The Everything Store." Stone says Amazon CEO Jeff Bezos might have a business problem under President Trump, as Bezos is also the owner of The Washington Post.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/309677224-best-of-tech-startups-recode-decode-ubers-looming-existential-crisis-brad-stone-author-the-upstarts.mp3" length="72122936"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000209732090-hxpk1d-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/309236156</guid>
<title>The Tim Ferriss Show: Lessons From Warren Buffett, Bobby Fischer, And Other Outliers</title>
<pubDate>Thu, 23 Feb 2017 21:29:03 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-tim-ferriss-show-lessons-from-warren-buffett-bobby-fischer-and-other-outliers</link>
<itunes:duration>01:58:04</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Adam Robinson has made a lifelong study of outflanking and outsmarting the competition. He is a rated chess master who was awarded a Life Title by the United States Chess Federation. As a teenager, he was personally mentored by Bobby Fischer in the 18 months leading up to his winning the world championship.
Then, in his first career, he developed a revolutionary approach to taking standardized tests as one of the two original co-founders of The Princeton Review. His paradigm-breaking -- or "category killing," as they say in publishing -- test-prep book, The SAT: Cracking the System, is the only test-prep book ever to have become a New York Times bestseller. After selling his interest in The Princeton Review, Adam turned his attention in the early '90s to the then-emerging field of artificial intelligence, developing a program that could analyze text and provide human-like commentary. He was later invited to join a well-known quant fund to develop statistical trading models, and since, he has established himself as an independent global macro advisor to the chief investment officers of a select group of the world's most successful hedge funds and family offices.
In his spare time, he's also become pen pals with Warren Buffett.</itunes:summary>
<itunes:subtitle>Adam Robinson has made a lifelong study of outfla…</itunes:subtitle>
<description>Adam Robinson has made a lifelong study of outflanking and outsmarting the competition. He is a rated chess master who was awarded a Life Title by the United States Chess Federation. As a teenager, he was personally mentored by Bobby Fischer in the 18 months leading up to his winning the world championship.
Then, in his first career, he developed a revolutionary approach to taking standardized tests as one of the two original co-founders of The Princeton Review. His paradigm-breaking -- or "category killing," as they say in publishing -- test-prep book, The SAT: Cracking the System, is the only test-prep book ever to have become a New York Times bestseller. After selling his interest in The Princeton Review, Adam turned his attention in the early '90s to the then-emerging field of artificial intelligence, developing a program that could analyze text and provide human-like commentary. He was later invited to join a well-known quant fund to develop statistical trading models, and since, he has established himself as an independent global macro advisor to the chief investment officers of a select group of the world's most successful hedge funds and family offices.
In his spare time, he's also become pen pals with Warren Buffett.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/309236156-best-of-tech-startups-the-tim-ferriss-show-lessons-from-warren-buffett-bobby-fischer-and-other-outliers.mp3" length="85007808"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/308878365</guid>
<title>TWiST: Vinod Khosla On His Journey From Entrepreneur To VC, and more</title>
<pubDate>Tue, 21 Feb 2017 20:08:20 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/twist-vinod-khosla-on-his-journey-from-entrepreneur-to-vc-early-days-at-sun-microsystems-and-more</link>
<itunes:duration>00:34:35</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Filmed at the Upfront Summit 2017, Jason sits down with legendary entrepreneur-turned-investor, Vinod Khosla. In 1980, Vinod co-founded Daisy Systems, the first significant computer-aided design system for electrical engineers. In 1982, he made his early fortune as one of the co-founders of Sun Microsystems, and in 1987, he switched gears to join the venture capital firm Kleiner Perkins Caufield & Byers, where he gained huge recognition and appreciation as a venture capitalist. He is also widely known for launching Juniper Networks, a company which is believed to be the next Cisco. Currently, he is the founder of Khosla Ventures, a firm focused on assisting entrepreneurs to build impactful new energy and technology companies. Join us as Vinod Khosla shares his inspiring story of mistakes, lessons learned, and advice for entrepreneurs building technology-based businesses.</itunes:summary>
<itunes:subtitle>Filmed at the Upfront Summit 2017, Jason sits dow…</itunes:subtitle>
<description>Filmed at the Upfront Summit 2017, Jason sits down with legendary entrepreneur-turned-investor, Vinod Khosla. In 1980, Vinod co-founded Daisy Systems, the first significant computer-aided design system for electrical engineers. In 1982, he made his early fortune as one of the co-founders of Sun Microsystems, and in 1987, he switched gears to join the venture capital firm Kleiner Perkins Caufield &amp; Byers, where he gained huge recognition and appreciation as a venture capitalist. He is also widely known for launching Juniper Networks, a company which is believed to be the next Cisco. Currently, he is the founder of Khosla Ventures, a firm focused on assisting entrepreneurs to build impactful new energy and technology companies. Join us as Vinod Khosla shares his inspiring story of mistakes, lessons learned, and advice for entrepreneurs building technology-based businesses.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/308878365-best-of-tech-startups-twist-vinod-khosla-on-his-journey-from-entrepreneur-to-vc-early-days-at-sun-microsystems-and-more.mp3" length="33391260"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/308602535</guid>
<title>A16z Podcast: Cars And Cities, The Autonomy Edition</title>
<pubDate>Mon, 20 Feb 2017 04:05:36 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-podcast-cars-and-cities-the-autonomy-edition</link>
<itunes:duration>00:35:55</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Thanks to freeways, cities became something to get through instead of something to get to. Now, as the next transportation revolution -- from rivers to trains to cars to autonomous cars -- promises to change the face of our cities, what happens to car culture, infrastructure, and more?
Who owns what, who pays? And what about the design -- and product management -- challenges, whether it's designing for user trust, city adoption, or an ever-moving target thanks to constantly evolving tech?
This episode of the podcast (in conversation with Sonal) covers all this and more, featuring: a16z's Frank Chen, who recently shared 16 questions about autonomous cars; Taggart Matthiesen, director of product at Lyft who covers the core platform as well as development/strategy for autonomous vehicles; and Carl Pope, former executive director and chairman of the Sierra Club -- and author (with former NYC mayor Mike Bloomberg) of the upcoming book Climate of Hope: How Cities Businesses and Citizens Can Save the Planet. Will curb space be the new shelf space? When we value the "iPhone-ness" over the "carness" of cars, what changes? And... will we all drive less, walk more?</itunes:summary>
<itunes:subtitle>Thanks to freeways, cities became something to ge…</itunes:subtitle>
<description>Thanks to freeways, cities became something to get through instead of something to get to. Now, as the next transportation revolution -- from rivers to trains to cars to autonomous cars -- promises to change the face of our cities, what happens to car culture, infrastructure, and more?
Who owns what, who pays? And what about the design -- and product management -- challenges, whether it's designing for user trust, city adoption, or an ever-moving target thanks to constantly evolving tech?
This episode of the podcast (in conversation with Sonal) covers all this and more, featuring: a16z's Frank Chen, who recently shared 16 questions about autonomous cars; Taggart Matthiesen, director of product at Lyft who covers the core platform as well as development/strategy for autonomous vehicles; and Carl Pope, former executive director and chairman of the Sierra Club -- and author (with former NYC mayor Mike Bloomberg) of the upcoming book Climate of Hope: How Cities Businesses and Citizens Can Save the Planet. Will curb space be the new shelf space? When we value the "iPhone-ness" over the "carness" of cars, what changes? And... will we all drive less, walk more?</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/308602535-best-of-tech-startups-a16z-podcast-cars-and-cities-the-autonomy-edition.mp3" length="25864404"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/308168249</guid>
<title>This Week In Startups: Sam Harris, “Waking Up” host, on dawn of A.I. & Trump’s lies – PART 1</title>
<pubDate>Fri, 17 Feb 2017 06:17:25 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/this-week-in-startups-sam-harris-waking-up-host-on-dawn-of-ai-trumps-lies-part-1</link>
<itunes:duration>01:00:47</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>This Week In Startups: Sam Harris, “Waking Up” host, on dawn of A.I. & Trump’s lies – PART 1 by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>This Week In Startups: Sam Harris, “Waking Up” ho…</itunes:subtitle>
<description>This Week In Startups: Sam Harris, “Waking Up” host, on dawn of A.I. & Trump’s lies – PART 1 by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/308168249-best-of-tech-startups-this-week-in-startups-sam-harris-waking-up-host-on-dawn-of-ai-trumps-lies-part-1.mp3" length="58492726"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/307759534</guid>
<title>Internet History Podcast: Jim McCann of 1800Flowers</title>
<pubDate>Tue, 14 Feb 2017 21:31:03 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/internet-history-podcast-jim-mccann-of-1800flowers</link>
<itunes:duration>00:51:43</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Would it surprise you to learn that 1800Flowers was not only one of the first ecommerce pioneers but quite possibly, the first to be profitable in a meaningful way? You wouldn't be surprised if you knew the story of 1800Flowers and its founder, Jim McCann. Today we speak with Jim to hear that story, to learn about a company that was fearless in trying any new thing that came along... so long as it brought them closer to their customers. And, since Jim has been at this for quite a while, toward the end, he also tells us where he thinks commerce—in general—is going.</itunes:summary>
<itunes:subtitle>Would it surprise you to learn that 1800Flowers w…</itunes:subtitle>
<description>Would it surprise you to learn that 1800Flowers was not only one of the first ecommerce pioneers but quite possibly, the first to be profitable in a meaningful way? You wouldn't be surprised if you knew the story of 1800Flowers and its founder, Jim McCann. Today we speak with Jim to hear that story, to learn about a company that was fearless in trying any new thing that came along... so long as it brought them closer to their customers. And, since Jim has been at this for quite a while, toward the end, he also tells us where he thinks commerce—in general—is going.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/307759534-best-of-tech-startups-internet-history-podcast-jim-mccann-of-1800flowers.mp3" length="37378976"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000207797811-5tcipb-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/307409277</guid>
<title>A16z Podcast: The Why, How, And When Of PR</title>
<pubDate>Sun, 12 Feb 2017 21:23:44 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-podcast-the-why-how-and-when-of-pr</link>
<itunes:duration>00:42:08</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>"Punch above your weight" -- If there's one thing public relations (PR) should help startups and founders do, it's that. Unfortunately, some companies are actually punching below their weight when there's a strong company, founder, product ... yet nobody knows about let alone talks about you. Or worse, someone else defines you first. Or you just become a hype machine.</itunes:summary>
<itunes:subtitle>"Punch above your weight" -- If there's one thing…</itunes:subtitle>
<description>"Punch above your weight" -- If there's one thing public relations (PR) should help startups and founders do, it's that. Unfortunately, some companies are actually punching below their weight when there's a strong company, founder, product ... yet nobody knows about let alone talks about you. Or worse, someone else defines you first. Or you just become a hype machine.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/307409277-best-of-tech-startups-a16z-podcast-the-why-how-and-when-of-pr.mp3" length="30341374"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/306975315</guid>
<title>Noah Kagan Presents: How to Come up With a Business Idea</title>
<pubDate>Fri, 10 Feb 2017 00:10:47 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/noah-kagan-presents-how-to-come-up-with-a-business-idea</link>
<itunes:duration>00:09:40</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>In this episode of Noah Kagan Presents I break down my formula for creating new business ideas. By simply recognizing the things you want, you’re guaranteed to always have at least one customer and that’s you.
I also break down and debunk 3 common myths of “The Wantrepreneur” and give you a better way to start.</itunes:summary>
<itunes:subtitle>In this episode of Noah Kagan Presents I break do…</itunes:subtitle>
<description>In this episode of Noah Kagan Presents I break down my formula for creating new business ideas. By simply recognizing the things you want, you’re guaranteed to always have at least one customer and that’s you.
I also break down and debunk 3 common myths of “The Wantrepreneur” and give you a better way to start.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/306975315-best-of-tech-startups-noah-kagan-presents-how-to-come-up-with-a-business-idea.mp3" length="7359074"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000207067508-sm8xuc-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/306637331</guid>
<title>How I Built This: Warby Parker- Dave Gilboa & Neil Blumenthal</title>
<pubDate>Wed, 08 Feb 2017 01:05:54 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-i-built-this-warby-parker-dave-gilboa-neil-blumenthal</link>
<itunes:duration>00:32:26</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>In 2008, it was nearly impossible to buy a fashionable, affordable pair of glasses online. That simple frustration inspired the idea behind Warby Parker – and disrupted the eyewear industry.</itunes:summary>
<itunes:subtitle>In 2008, it was nearly impossible to buy a fashio…</itunes:subtitle>
<description>In 2008, it was nearly impossible to buy a fashionable, affordable pair of glasses online. That simple frustration inspired the idea behind Warby Parker – and disrupted the eyewear industry.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/306637331-best-of-tech-startups-how-i-built-this-warby-parker-dave-gilboa-neil-blumenthal.mp3" length="31075974"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/306289859</guid>
<title>Ask Gary Vee: A Talk At Wieden + Kennedy London</title>
<pubDate>Sun, 05 Feb 2017 22:11:54 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/ask-gary-vee-a-talk-at-wieden-kennedy-london</link>
<itunes:duration>01:13:00</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>This was a blast of an interview I did when I was out in London for my book tour. In these 20 minutes we cover a lot, including media agencies, my thoughts on rebates, and even English "football" :) But in all seriousness, we discuss VaynerMedia's expansion plans, our move into London, media rebate investigations, and a bunch more.</itunes:summary>
<itunes:subtitle>This was a blast of an interview I did when I was…</itunes:subtitle>
<description>This was a blast of an interview I did when I was out in London for my book tour. In these 20 minutes we cover a lot, including media agencies, my thoughts on rebates, and even English "football" :) But in all seriousness, we discuss VaynerMedia's expansion plans, our move into London, media rebate investigations, and a bunch more.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/306289859-best-of-tech-startups-ask-gary-vee-a-talk-at-wieden-kennedy-london.mp3" length="80549816"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/305806996</guid>
<title>Recode Decode - Social media makes us miserable (Tim Ferriss, author, "Tools of Titans")</title>
<pubDate>Thu, 02 Feb 2017 19:32:20 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-decode-social-media-makes-us-miserable-tim-ferriss-author-tools-of-titans</link>
<itunes:duration>01:08:25</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Decode - Social media makes us miserable (Tim Ferriss, author, "Tools of Titans") by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Decode - Social media makes us miserable (…</itunes:subtitle>
<description>Recode Decode - Social media makes us miserable (Tim Ferriss, author, "Tools of Titans") by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/305806996-best-of-tech-startups-recode-decode-social-media-makes-us-miserable-tim-ferriss-author-tools-of-titans.mp3" length="65981442"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000205951947-sbucf3-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/305502584</guid>
<title>How I Built This: Radio One - Cathy Hughes</title>
<pubDate>Tue, 31 Jan 2017 23:48:05 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-i-built-this-radio-one-cathy-hughes</link>
<itunes:duration>00:33:31</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>As a kid, Cathy Hughes practiced her DJ routine while her siblings banged on the bathroom door. As an adult, she founded Radio One, the country's largest African-American owned broadcasting company.</itunes:summary>
<itunes:subtitle>As a kid, Cathy Hughes practiced her DJ routine w…</itunes:subtitle>
<description>As a kid, Cathy Hughes practiced her DJ routine while her siblings banged on the bathroom door. As an adult, she founded Radio One, the country's largest African-American owned broadcasting company.</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/305502584-best-of-tech-startups-how-i-built-this-radio-one-cathy-hughes.mp3" length="32100300"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/305195743</guid>
<title>Secrets For Scaling - How Wordstream Doubles Its Revenue Every Year- An Interview With Larry Kim</title>
<pubDate>Mon, 30 Jan 2017 05:13:45 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/secrets-for-scaling-how-wordstream-doubles-its-revenue-every-year-an-interview-with-larry-kim</link>
<itunes:duration>00:40:58</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>For this episode of Secrets for Scaling, we spoke with Larry Kim, Founder & CEO of Wordstream, the leading industry provider of search marketing management software and services. Wordstream sees a compound yearly revenue growth rate and has more than doubled revenue every year on average since 2011. They earned $30 million in revenue in 2016 alone!</itunes:summary>
<itunes:subtitle>For this episode of Secrets for Scaling, we spoke…</itunes:subtitle>
<description>For this episode of Secrets for Scaling, we spoke with Larry Kim, Founder &amp; CEO of Wordstream, the leading industry provider of search marketing management software and services. Wordstream sees a compound yearly revenue growth rate and has more than doubled revenue every year on average since 2011. They earned $30 million in revenue in 2016 alone!</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/305195743-best-of-tech-startups-secrets-for-scaling-how-wordstream-doubles-its-revenue-every-year-an-interview-with-larry-kim.mp3" length="39334973"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/304691018</guid>
<title>The Economist Radio: Babbage - The automation game</title>
<pubDate>Thu, 26 Jan 2017 21:42:56 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-economist-radio-babbage-the-automation-game</link>
<itunes:duration>00:23:41</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>How quickly will robots disrupt global industries and what will the implications be? We explore with economist Andrew McAfee at the World Economic Forum in Davos. Also, neuroscientists often compare the human brain to a computer chip, so what happened when the idea was put into practice?</itunes:summary>
<itunes:subtitle>How quickly will robots disrupt global industries…</itunes:subtitle>
<description>How quickly will robots disrupt global industries and what will the implications be? We explore with economist Andrew McAfee at the World Economic Forum in Davos. Also, neuroscientists often compare the human brain to a computer chip, so what happened when the idea was put into practice?</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/304691018-best-of-tech-startups-the-economist-radio-babbage-the-automation-game.mp3" length="22740462"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/304341408</guid>
<title>The Tim Ferris Show - Arnold Schwarzenegger Part 2! Bodybuilding, Investing, And Online Battles</title>
<pubDate>Tue, 24 Jan 2017 20:56:42 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-tim-ferris-show-arnold-schwarzenegger-part-2-bodybuilding-investing-and-online-battles</link>
<itunes:duration>01:17:20</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Tim Ferris Show - Arnold Schwarzenegger Part 2! Bodybuilding, Investing, And Online Battles by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Tim Ferris Show - Arnold Schwarzenegger Part …</itunes:subtitle>
<description>The Tim Ferris Show - Arnold Schwarzenegger Part 2! Bodybuilding, Investing, And Online Battles by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/304341408-best-of-tech-startups-the-tim-ferris-show-arnold-schwarzenegger-part-2-bodybuilding-investing-and-online-battles.mp3" length="55682496"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/304013725</guid>
<title>The Startup Chat - Founders Dilemma: How to Make Decisions When All Options Suck</title>
<pubDate>Sun, 22 Jan 2017 21:05:12 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-startup-chat-founders-dilemma-how-to-make-decisions-when-all-options-suck</link>
<itunes:duration>00:24:32</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Startup Chat - Founders Dilemma: How to Make Decisions When All Options Suck by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Startup Chat - Founders Dilemma: How to Make …</itunes:subtitle>
<description>The Startup Chat - Founders Dilemma: How to Make Decisions When All Options Suck by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/304013725-best-of-tech-startups-the-startup-chat-founders-dilemma-how-to-make-decisions-when-all-options-suck.mp3" length="24624278"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000204168310-yusnvd-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/303548339</guid>
<title>The Ezra Klein Show: You Ask, Ezra Answers</title>
<pubDate>Thu, 19 Jan 2017 21:09:03 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-ezra-klein-show-you-ask-ezra-answers</link>
<itunes:duration>01:36:23</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Ezra Klein Show: You Ask, Ezra Answers by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Ezra Klein Show: You Ask, Ezra Answers by Bes…</itunes:subtitle>
<description>The Ezra Klein Show: You Ask, Ezra Answers by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/303548339-best-of-tech-startups-the-ezra-klein-show-you-ask-ezra-answers.mp3" length="0"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000203722263-plo4i0-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/303191009</guid>
<title>Debrief by Bloomberg: Obama wants to start a business after office?</title>
<pubDate>Tue, 17 Jan 2017 20:16:43 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/debrief-by-bloomberg-obama-wants-to-start-a-business-after-office</link>
<itunes:duration>00:55:28</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Debrief by Bloomberg: Obama wants to start a business after office? by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Debrief by Bloomberg: Obama wants to start a busi…</itunes:subtitle>
<description>Debrief by Bloomberg: Obama wants to start a business after office? by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/303191009-best-of-tech-startups-debrief-by-bloomberg-obama-wants-to-start-a-business-after-office.mp3" length="39950380"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/302893673</guid>
<title>Recode Decode: Doctors should think like mechanics (Othman Laraki, CEO, Color)</title>
<pubDate>Mon, 16 Jan 2017 01:22:43 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-decode-doctors-should-think-like-mechanics-othman-laraki-ceo-color</link>
<itunes:duration>00:42:12</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Decode: Doctors should think like mechanics (Othman Laraki, CEO, Color) by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Decode: Doctors should think like mechanic…</itunes:subtitle>
<description>Recode Decode: Doctors should think like mechanics (Othman Laraki, CEO, Color) by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/302893673-best-of-tech-startups-recode-decode-doctors-should-think-like-mechanics-othman-laraki-ceo-color.mp3" length="40821962"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000203139469-svgb9r-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/302434013</guid>
<title>A16z Podcast: How To Be Original And Make Big Ideas Happen</title>
<pubDate>Fri, 13 Jan 2017 00:28:25 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-podcast-how-to-be-original-and-make-big-ideas-happen</link>
<itunes:duration>00:39:36</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>A16z Podcast: How To Be Original And Make Big Ideas Happen by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>A16z Podcast: How To Be Original And Make Big Ide…</itunes:subtitle>
<description>A16z Podcast: How To Be Original And Make Big Ideas Happen by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/302434013-best-of-tech-startups-a16z-podcast-how-to-be-original-and-make-big-ideas-happen.mp3" length="28511966"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/301930600</guid>
<title>Exponent: Fate Has a Sense of Irony</title>
<pubDate>Tue, 10 Jan 2017 21:43:38 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/exponent-fate-has-a-sense-of-irony</link>
<itunes:duration>01:00:31</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Exponent: Fate Has a Sense of Irony by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Exponent: Fate Has a Sense of Irony by Best Of Te…</itunes:subtitle>
<description>Exponent: Fate Has a Sense of Irony by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/301930600-best-of-tech-startups-exponent-fate-has-a-sense-of-irony.mp3" length="58109077"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/301579396</guid>
<title>Freakonomics Radio: How to Be More Productive (Rebroadcast)</title>
<pubDate>Sun, 08 Jan 2017 22:00:23 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/freakonomics-radio-how-to-be-more-productive-rebroadcast</link>
<itunes:duration>00:39:23</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Freakonomics Radio: How to Be More Productive (Rebroadcast) by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Freakonomics Radio: How to Be More Productive (Re…</itunes:subtitle>
<description>Freakonomics Radio: How to Be More Productive (Rebroadcast) by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/301579396-best-of-tech-startups-freakonomics-radio-how-to-be-more-productive-rebroadcast.mp3" length="28718117"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000201829479-414vnb-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/301188075</guid>
<title>How I Built This: David Gilboa & Neil Blumenthal, Warby Parker</title>
<pubDate>Fri, 06 Jan 2017 09:23:48 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-i-built-this-david-gilboa-neil-blumenthal-warby-parker</link>
<itunes:duration>00:32:07</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>How I Built This: David Gilboa & Neil Blumenthal, Warby Parker by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>How I Built This: David Gilboa & Neil Blumenthal,…</itunes:subtitle>
<description>How I Built This: David Gilboa & Neil Blumenthal, Warby Parker by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/301188075-best-of-tech-startups-how-i-built-this-david-gilboa-neil-blumenthal-warby-parker.mp3" length="30763341"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/300782607</guid>
<title>Growth Everywhere - How Canva Grew From 1K To 10M Users Without Paid Advertising</title>
<pubDate>Tue, 03 Jan 2017 21:39:12 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/growth-everywhere-how-canva-grew-from-1k-to-10m-users-without-paid-advertising</link>
<itunes:duration>00:30:19</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Growth Everywhere - How Canva Grew From 1K To 10M Users Without Paid Advertising by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Growth Everywhere - How Canva Grew From 1K To 10M…</itunes:subtitle>
<description>Growth Everywhere - How Canva Grew From 1K To 10M Users Without Paid Advertising by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/300782607-best-of-tech-startups-growth-everywhere-how-canva-grew-from-1k-to-10m-users-without-paid-advertising.mp3" length="29113826"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/300498700</guid>
<title>The Top Entrepreneurs: B2B SaaS DiscoverOrg Passes $70M ARR with CEO Henry Schuck</title>
<pubDate>Sun, 01 Jan 2017 23:13:01 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-top-entrepreneurs-b2b-saas-discoverorg-passes-70m-arr-with-ceo-henry-schuck</link>
<itunes:duration>00:19:24</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Top Entrepreneurs: B2B SaaS DiscoverOrg Passes $70M ARR with CEO Henry Schuck by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Top Entrepreneurs: B2B SaaS DiscoverOrg Passe…</itunes:subtitle>
<description>The Top Entrepreneurs: B2B SaaS DiscoverOrg Passes $70M ARR with CEO Henry Schuck by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/300498700-best-of-tech-startups-the-top-entrepreneurs-b2b-saas-discoverorg-passes-70m-arr-with-ceo-henry-schuck.mp3" length="37255253"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/300108530</guid>
<title>The Twenty Minute VC: Parker Thompson, Partner @ AngelList</title>
<pubDate>Thu, 29 Dec 2016 22:10:39 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-twenty-minute-vc-parker-thompson-partner-angellist</link>
<itunes:duration>00:32:56</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Twenty Minute VC: Parker Thompson, Partner @ AngelList by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Twenty Minute VC: Parker Thompson, Partner @ …</itunes:subtitle>
<description>The Twenty Minute VC: Parker Thompson, Partner @ AngelList by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/300108530-best-of-tech-startups-the-twenty-minute-vc-parker-thompson-partner-angellist.mp3" length="27701186"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000200523029-z56r8w-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/299826843</guid>
<title>Recode Replay: Jim VandeHei, founder, Axios (Code Media 2016)</title>
<pubDate>Tue, 27 Dec 2016 22:37:15 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-replay-jim-vandehei-founder-axios-code-media-2016</link>
<itunes:duration>00:34:55</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Replay: Jim VandeHei, founder, Axios (Code Media 2016) by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Replay: Jim VandeHei, founder, Axios (Code…</itunes:subtitle>
<description>Recode Replay: Jim VandeHei, founder, Axios (Code Media 2016) by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/299826843-best-of-tech-startups-recode-replay-jim-vandehei-founder-axios-code-media-2016.mp3" length="33636556"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000200286519-4pmxvv-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/299583697</guid>
<title>Startup Podcast: Dov Charney - Anger (Season 4, Episode 9)</title>
<pubDate>Sun, 25 Dec 2016 21:32:22 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/startup-podcast-dov-charney-anger-season-4-episode-9</link>
<itunes:duration>00:59:24</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Startup Podcast: Dov Charney - Anger (Season 4, Episode 9) by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Startup Podcast: Dov Charney - Anger (Season 4, E…</itunes:subtitle>
<description>Startup Podcast: Dov Charney - Anger (Season 4, Episode 9) by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/299583697-best-of-tech-startups-startup-podcast-dov-charney-anger-season-4-episode-9.mp3" length="0"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000200077774-mzvnzo-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/299201756</guid>
<title>App Guy Podcast : Dmitry Dragilev - How To Get Free Press for Your App Startup</title>
<pubDate>Thu, 22 Dec 2016 21:15:01 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/app-guy-podcast-dmitry-dragilev-how-to-get-free-press-for-your-app-startup</link>
<itunes:duration>00:35:54</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>App Guy Podcast : Dmitry Dragilev - How To Get Free Press for Your App Startup by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>App Guy Podcast : Dmitry Dragilev - How To Get Fr…</itunes:subtitle>
<description>App Guy Podcast : Dmitry Dragilev - How To Get Free Press for Your App Startup by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/299201756-best-of-tech-startups-app-guy-podcast-dmitry-dragilev-how-to-get-free-press-for-your-app-startup.mp3" length="52253470"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000199736152-z8r910-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/298889371</guid>
<title>Tim Ferriss: Testing The "Impossible"- 17 Questions That Changed My Life</title>
<pubDate>Wed, 21 Dec 2016 00:43:58 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/tim-ferriss-testing-the-impossible-17-questions-that-changed-my-life</link>
<itunes:duration>00:52:56</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Tim Ferriss: Testing The "Impossible"- 17 Questions That Changed My Life by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Tim Ferriss: Testing The "Impossible"- 17 Questio…</itunes:subtitle>
<description>Tim Ferriss: Testing The "Impossible"- 17 Questions That Changed My Life by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/298889371-best-of-tech-startups-tim-ferriss-testing-the-impossible-17-questions-that-changed-my-life.mp3" length="50826388"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/298519315</guid>
<title>VB Engage: Alexis Ohanian, Reddit's influence, and predicting the future</title>
<pubDate>Sun, 18 Dec 2016 21:24:59 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/vb-engage-alexis-ohanian-reddits-influence-and-predicting-the-future</link>
<itunes:duration>00:36:13</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>VB Engage: Alexis Ohanian, Reddit's influence, and predicting the future by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>VB Engage: Alexis Ohanian, Reddit's influence, an…</itunes:subtitle>
<description>VB Engage: Alexis Ohanian, Reddit's influence, and predicting the future by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/298519315-best-of-tech-startups-vb-engage-alexis-ohanian-reddits-influence-and-predicting-the-future.mp3" length="39844598"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000199047500-87psvt-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/298111559</guid>
<title>The Ezra Klein Show: Stripe CEO Patrick Collison on management, rationalism, and the enlightenment</title>
<pubDate>Thu, 15 Dec 2016 23:35:52 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-ezra-klein-show-stripe-ceo-patrick-collison-on-management-rationalism-and-the-enlightenment</link>
<itunes:duration>01:31:27</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Ezra Klein Show: Stripe CEO Patrick Collison on management, rationalism, and the enlightenment by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Ezra Klein Show: Stripe CEO Patrick Collison …</itunes:subtitle>
<description>The Ezra Klein Show: Stripe CEO Patrick Collison on management, rationalism, and the enlightenment by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/298111559-best-of-tech-startups-the-ezra-klein-show-stripe-ceo-patrick-collison-on-management-rationalism-and-the-enlightenment.mp3" length="0"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000198632613-8nphuu-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/297766802</guid>
<title>Recode Decode: Vic Gundotra - Wearables can save your life</title>
<pubDate>Tue, 13 Dec 2016 20:59:57 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-decode-vic-gundotra-wearables-can-save-your-life</link>
<itunes:duration>01:02:30</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Decode: Vic Gundotra - Wearables can save your life by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Decode: Vic Gundotra - Wearables can save …</itunes:subtitle>
<description>Recode Decode: Vic Gundotra - Wearables can save your life by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/297766802-best-of-tech-startups-recode-decode-vic-gundotra-wearables-can-save-your-life.mp3" length="60312649"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000198297127-ff0yqi-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/297446384</guid>
<title>How I Built This: Mark Cuban</title>
<pubDate>Sun, 11 Dec 2016 22:55:11 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-i-built-this-mark-cuban</link>
<itunes:duration>00:35:27</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>How I Built This: Mark Cuban by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>How I Built This: Mark Cuban by Best Of Tech & St…</itunes:subtitle>
<description>How I Built This: Mark Cuban by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/297446384-best-of-tech-startups-how-i-built-this-mark-cuban.mp3" length="33963644"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/296892043</guid>
<title>A16z: Old Food, New Tech -- 'Clean Meat'</title>
<pubDate>Thu, 08 Dec 2016 21:24:26 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-old-food-new-tech-clean-meat</link>
<itunes:duration>00:25:25</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>A16z: Old Food, New Tech -- 'Clean Meat' by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>A16z: Old Food, New Tech -- 'Clean Meat' by Best …</itunes:subtitle>
<description>A16z: Old Food, New Tech -- 'Clean Meat' by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/296892043-best-of-tech-startups-a16z-old-food-new-tech-clean-meat.mp3" length="18304776"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/296609957</guid>
<title>Recode Replay: Jeff Weiner, CEO, LinkedIn (Code Enterprise 2016)</title>
<pubDate>Wed, 07 Dec 2016 03:09:38 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-replay-jeff-weiner-ceo-linkedin-code-enterprise-2016</link>
<itunes:duration>00:37:11</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Replay: Jeff Weiner, CEO, LinkedIn (Code Enterprise 2016) by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Replay: Jeff Weiner, CEO, LinkedIn (Code E…</itunes:subtitle>
<description>Recode Replay: Jeff Weiner, CEO, LinkedIn (Code Enterprise 2016) by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/296609957-best-of-tech-startups-recode-replay-jeff-weiner-ceo-linkedin-code-enterprise-2016.mp3" length="35820814"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000197216369-tjjuub-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/296235932</guid>
<title>Recode Replay: Marc Benioff, CEO, Salesforce (Code Enterprise 2016)</title>
<pubDate>Mon, 05 Dec 2016 02:38:25 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-replay-marc-benioff-ceo-salesforce-code-enterprise-2016</link>
<itunes:duration>01:01:14</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Replay: Marc Benioff, CEO, Salesforce (Code Enterprise 2016) by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Replay: Marc Benioff, CEO, Salesforce (Cod…</itunes:subtitle>
<description>Recode Replay: Marc Benioff, CEO, Salesforce (Code Enterprise 2016) by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/296235932-best-of-tech-startups-recode-replay-marc-benioff-ceo-salesforce-code-enterprise-2016.mp3" length="58905957"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000196868378-o524k0-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/295770995</guid>
<title>Startup: Dov Charney</title>
<pubDate>Thu, 01 Dec 2016 21:30:20 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/startup-dov-charney</link>
<itunes:duration>00:37:33</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Startup: Dov Charney by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Startup: Dov Charney by Best Of Tech & Startups</itunes:subtitle>
<description>Startup: Dov Charney by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/295770995-best-of-tech-startups-startup-dov-charney.mp3" length="0"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000196375440-rjr5f6-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/295374740</guid>
<title>A16z Podcast: What's Next For Technology And National Security?</title>
<pubDate>Tue, 29 Nov 2016 21:34:29 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/a16z-podcast-whats-next-for-technology-and-national-security</link>
<itunes:duration>00:34:16</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>A16z Podcast: What's Next For Technology And National Security? by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>A16z Podcast: What's Next For Technology And Nat…</itunes:subtitle>
<description>A16z Podcast: What's Next For Technology And National Security? by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/295374740-best-of-tech-startups-a16z-podcast-whats-next-for-technology-and-national-security.mp3" length="24676668"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/295034798</guid>
<title>Mixergy: Sam Altman On Y Combinator, Loopt & Work Habits</title>
<pubDate>Sun, 27 Nov 2016 20:41:15 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/mixergy-sam-altman-on-y-combinator-loopt-work-habits</link>
<itunes:duration>00:49:21</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Mixergy: Sam Altman On Y Combinator, Loopt & Work Habits by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Mixergy: Sam Altman On Y Combinator, Loopt & Work…</itunes:subtitle>
<description>Mixergy: Sam Altman On Y Combinator, Loopt & Work Habits by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/295034798-best-of-tech-startups-mixergy-sam-altman-on-y-combinator-loopt-work-habits.mp3" length="30273085"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000195573635-ewgj48-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/294626098</guid>
<title>StartupCTO.io: Scaling the Rocket Ship w. Julia Austin of DigitalOcean</title>
<pubDate>Thu, 24 Nov 2016 19:52:48 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/startupctoio-julia-austin</link>
<itunes:duration>00:43:45</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>StartupCTO.io: Scaling the Rocket Ship w. Julia Austin of DigitalOcean by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>StartupCTO.io: Scaling the Rocket Ship w. Julia A…</itunes:subtitle>
<description>StartupCTO.io: Scaling the Rocket Ship w. Julia Austin of DigitalOcean by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/294626098-best-of-tech-startups-startupctoio-julia-austin.mp3" length="26253617"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/294306148</guid>
<title>Bloomberg Studio 1.0: Jack Ma</title>
<pubDate>Tue, 22 Nov 2016 21:04:13 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/bloomberg-studio-10-jack-ma</link>
<itunes:duration>00:23:51</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Bloomberg Studio 1.0: Jack Ma by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Bloomberg Studio 1.0: Jack Ma by Best Of Tech & S…</itunes:subtitle>
<description>Bloomberg Studio 1.0: Jack Ma by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/294306148-best-of-tech-startups-bloomberg-studio-10-jack-ma.mp3" length="34878206"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000194862895-j8phbw-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/293968857</guid>
<title>VB Engage 027 - Alexis Fogel, Hillary's emails, and telling the truth at all times</title>
<pubDate>Sun, 20 Nov 2016 21:06:06 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/vb-engage-027-alexis-fogel-hillarys-emails-and-telling-the-truth-at-all-times</link>
<itunes:duration>00:33:37</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>VB Engage 027 - Alexis Fogel, Hillary's emails, and telling the truth at all times by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>VB Engage 027 - Alexis Fogel, Hillary's emails, a…</itunes:subtitle>
<description>VB Engage 027 - Alexis Fogel, Hillary's emails, and telling the truth at all times by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/293968857-best-of-tech-startups-vb-engage-027-alexis-fogel-hillarys-emails-and-telling-the-truth-at-all-times.mp3" length="37356069"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000194525245-47l4t4-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/293550969</guid>
<title>Bloomberg Studo 1.0 - Steve Ballmer</title>
<pubDate>Thu, 17 Nov 2016 22:45:02 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/bloomberg-studo-10-steve-ballmer</link>
<itunes:duration>00:24:13</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Bloomberg Studo 1.0 - Steve Ballmer by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Bloomberg Studo 1.0 - Steve Ballmer by Best Of Te…</itunes:subtitle>
<description>Bloomberg Studo 1.0 - Steve Ballmer by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/293550969-best-of-tech-startups-bloomberg-studo-10-steve-ballmer.mp3" length="34823233"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/293200803</guid>
<title>Mixergy: Anand Sanwal on building CB Insights without VC funding</title>
<pubDate>Tue, 15 Nov 2016 21:20:34 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/mixergy-anand-sanwal-on-building-cb-insights-without-vc-funding</link>
<itunes:duration>01:14:35</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Mixergy: Anand Sanwal on building CB Insights without VC funding by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Mixergy: Anand Sanwal on building CB Insights wit…</itunes:subtitle>
<description>Mixergy: Anand Sanwal on building CB Insights without VC funding by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/293200803-best-of-tech-startups-mixergy-anand-sanwal-on-building-cb-insights-without-vc-funding.mp3" length="45397252"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000193740889-386d2o-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/292877587</guid>
<title>Exponent: Should Apple Buy Netflix?</title>
<pubDate>Sun, 13 Nov 2016 21:02:27 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/exponent-should-apple-buy-netflix</link>
<itunes:duration>01:18:18</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Exponent: Should Apple Buy Netflix? by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Exponent: Should Apple Buy Netflix? by Best Of Te…</itunes:subtitle>
<description>Exponent: Should Apple Buy Netflix? by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/292877587-best-of-tech-startups-exponent-should-apple-buy-netflix.mp3" length="75188583"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/292671158</guid>
<title>Recode Decode: Why Ashton Kutcher didn't invest in Snapchat</title>
<pubDate>Sat, 12 Nov 2016 08:57:04 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/recode-decode-why-ashton-kutcher-didnt-invest-in-snapchat</link>
<itunes:duration>00:59:31</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Recode Decode: Why Ashton Kutcher didn't invest in Snapchat by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Recode Decode: Why Ashton Kutcher didn't invest i…</itunes:subtitle>
<description>Recode Decode: Why Ashton Kutcher didn't invest in Snapchat by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/292671158-best-of-tech-startups-recode-decode-why-ashton-kutcher-didnt-invest-in-snapchat.mp3" length="57448360"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000193199703-or7lrt-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/292311937</guid>
<title>Freakonomics: This Is Your Brain on Podcasts</title>
<pubDate>Thu, 10 Nov 2016 00:21:09 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/freakonomics-this-is-your-brain-on-podcasts</link>
<itunes:duration>00:46:18</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Freakonomics: This Is Your Brain on Podcasts by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Freakonomics: This Is Your Brain on Podcasts by B…</itunes:subtitle>
<description>Freakonomics: This Is Your Brain on Podcasts by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/292311937-best-of-tech-startups-freakonomics-this-is-your-brain-on-podcasts.mp3" length="33696113"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000192848671-kryc6q-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/291966820</guid>
<title>How I Built This: Airbnb- Joe Gebbia</title>
<pubDate>Mon, 07 Nov 2016 20:44:42 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/how-i-built-this-airbnb-joe-gebbia</link>
<itunes:duration>00:42:40</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>How I Built This: Airbnb- Joe Gebbia by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>How I Built This: Airbnb- Joe Gebbia by Best Of T…</itunes:subtitle>
<description>How I Built This: Airbnb- Joe Gebbia by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/291966820-best-of-tech-startups-how-i-built-this-airbnb-joe-gebbia.mp3" length="40866590"/>
<itunes:image href="http://i1.sndcdn.com/avatars-000247541827-5y7ul7-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/291726487</guid>
<title>The Twenty Minute VC: Lindel Eakman, Managing Director @ Foundry Group</title>
<pubDate>Sun, 06 Nov 2016 06:18:48 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/the-twenty-minute-vc-lindel-eakman-managing-director-foundry-group</link>
<itunes:duration>00:23:18</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>The Twenty Minute VC: Lindel Eakman, Managing Director @ Foundry Group by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>The Twenty Minute VC: Lindel Eakman, Managing Dir…</itunes:subtitle>
<description>The Twenty Minute VC: Lindel Eakman, Managing Director @ Foundry Group by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/291726487-best-of-tech-startups-the-twenty-minute-vc-lindel-eakman-managing-director-foundry-group.mp3" length="19607879"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000192315497-sh84p6-original.jpg"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/291243646</guid>
<title>StartUp Season 4, #2: You Can't Wear a Suit Here</title>
<pubDate>Thu, 03 Nov 2016 00:01:00 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/startup-season-4-2-you-cant-wear-a-suit-here</link>
<itunes:duration>00:35:24</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>StartUp Season 4, #2: You Can't Wear a Suit Here by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>StartUp Season 4, #2: You Can't Wear a Suit Here …</itunes:subtitle>
<description>StartUp Season 4, #2: You Can't Wear a Suit Here by Best Of Tech & Startups</description>
<enclosure type="audio/mpeg" url="http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/291243646-best-of-tech-startups-startup-season-4-2-you-cant-wear-a-suit-here.mp3" length="0"/>
<itunes:image href="http://i1.sndcdn.com/artworks-000191812395-psl9vq-original.png"/>
</item>
<item>
<guid isPermaLink="false">tag:soundcloud,2010:tracks/290882038</guid>
<title>Stratechery: Google's New Business Model</title>
<pubDate>Mon, 31 Oct 2016 23:05:21 +0000</pubDate>
<link>https://soundcloud.com/best-of-tech-startups/stratechery-googles-new-business-model</link>
<itunes:duration>01:07:19</itunes:duration>
<itunes:author>Best Of Tech & Startups</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>Stratechery: Google's New Business Model by Best Of Tech & Startups</itunes:summary>
<itunes:subtitle>Stratechery: Google's New Business Model by Best …</itunes:subtitle>