-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1619 lines (1524 loc) · 54.3 KB
/
index.html
File metadata and controls
executable file
·1619 lines (1524 loc) · 54.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: about
---
<header id="top">
<br /><br />
<div
style="
margin: auto;
padding: 30px;
border-radius: 25px;
width: 80%;
max-width: 540px;
background-color: white;
"
>
<img
src="./avatar.png"
style="width: 150px; border-radius: 50%; vertical-align: middle"
/>
<br /><br />
<div class="wow fadeIn">
<h1 class="wow fadeIn">Maxx Turing</h1>
<i class="fa-regular fa-file-lines"></i>
<br />
<p class="wow fadeIn">
Founder at
<a href="https://startbook.co.uk/" target="_blank">⚡ Startbook</a>
</p>
<p class="wow fadeIn"">
COO at
<a href="https://britishprogress.org/" target="_blank">
Centre for British Progress</a
>
</p>
<div class="container" style="line-height: 1.6">
<div class="row text-center">
<div class="col-md-12" style="padding: 0">
<section class="contact">
<ul>
{% if site.social-linkedin %}
<li class="linkedin">
<a
href="https://linkedin.com/in/{{site.social-linkedin}}"
target="_blank"
><i class="fab fa-linkedin fa-fw fa-lg"></i
></a>
</li>
{% else %}
<li class="linkedin">
<a href="https://linkedin.com/" target="_blank"
><i
class="fab fa-linkedin fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% endif %} {% if site.social-twitter %}
<li>
<a
href="https://x.com/{{ site.social-twitter }}"
target="_blank"
><i
class="fab fa-x-twitter fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% else %}
<li>
<a href="https://x.com/" target="_blank"
><i
class="fab fa-x-twitter fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% endif %} {% if site.social-instagram %}
<li>
<a
href="https://instagram.com/{{ site.social-instagram }}"
target="_blank"
><i
class="fab fa-instagram fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% else %}
<li>
<a href="https://instagram.com/" target="_blank"
><i
class="fab fa-instagram fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% endif %} {% if site.social-github %}
<li class="github">
<a
href="https://github.com/{{site.social-github}}"
target="_blank"
><i class="fab fa-github fa-fw fa-lg"></i
></a>
</li>
{% else %}
<li class="github">
<a href="https://github.com/" target="_blank"
><i class="fab fa-github fa-fw fa-lg" aria-hidden="true"></i
></a>
</li>
{% endif %} {% if site.social-cv %}
<li class="cv">
<a
href="https://maxxturing.com/{{site.social-cv}}"
target="_blank"
><i class="fa-regular fa-file-lines fa-fw fa-lg"></i
></a>
</li>
{% else %}
<li class="cv">
<a href="https://maxxturing.com/" target="_blank"
><i
class="fa-regular fa-file-lines fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% endif %} {% if site.social-email %}
<li class="email">
<a href="mailto:{{site.social-email}}"
><i class="far fa-envelope fa-fw fa-lg"></i
></a>
</li>
{% else %}
<li class="email">
<a href="mailto:maxx@maxxturing.com"
><i
class="far fa-envelope fa-fw fa-lg"
aria-hidden="true"
></i
></a>
</li>
{% endif %}
</ul>
</section>
</div>
</div>
</div>
<br />
<p style="text-transform: none; font-weight: 500">
Tech entrepreneur helping other founders succeed.
</p>
<p
class="d-none d-md-block"
style="
text-transform: none;
font-weight: 300;
text-align: justify;
margin: auto;
width: 93%;
"
>
Entrepreneurially-minded, resourceful and driven creative problem solver
with a decade of experience as an operational leader in early-stage.
Intellectually curious, highly organised and detail-oriented. Diverse
skill set paired with a growth mindset and a strong focus on the
customer. He holds an MBA (Hons) from
<span style="font-weight: bold"
><a href="https://quantic.edu/" target="_blank">Quantic</a></span
>
and an MA (Hons) in Cell and Systems Biology from the
<span style="font-weight: bold"
><a href="https://www.ox.ac.uk/" target="_blank"
>University of Oxford</a
></span
>.
</p>
<p
class="d-block d-md-none"
style="text-transform: none; font-weight: 300; text-align: center"
>
Entrepreneurially-minded, resourceful and driven creative problem solver
with a decade of experience as an operational leader in early-stage.
Intellectually curious, highly organised and detail-oriented. Diverse
skill set paired with a growth mindset and a strong focus on the
customer. He holds an MBA (Hons) from
<span style="font-weight: bold"
><a href="https://quantic.edu/" target="_blank">Quantic</a></span
>
and an MA (Hons) in Cell and Systems Biology from the
<span style="font-weight: bold"
><a href="https://www.ox.ac.uk/" target="_blank"
>University of Oxford</a
></span
>.
</p>
</div>
</div>
<br /><br />
</header>
<a href="#beginning"
><p style="text-align: center; margin: 25px">Start at the beginning ⬇️</p></a
>
<section id="cd-timeline" class="cd-container">
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fa-solid fa-star-of-life fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fa-solid fa-star-of-life fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Joined
<a href="https://britishprogress.org/" target="_blank"
>Centre for British Progress</a
>
as COO
</h2>
<p>
Whilst continuing to run Startbook I decided it was time to jump back
into the world of policy and joined
<a href="https://britishprogress.org/" target="_blank"
>Centre for British Progress</a
>
as their founding COO. Starting off this involved launching a new
website, rebrand and setting up operational processes and payroll. CBP
is a non-partisan think tank accelerating and shaping an era of British
growth and progress. The mission of the organisation is for the UK to
achieve the highest living standards in the world and lead at the
frontier of global scientific, technological, and industrial progress.
We produce research, concrete ideas and implementation-ready
policies to make it easier to build the future in Britain - read more
<a target="_blank" href="https://britishprogress.org/about">here</a>.
</p>
<span class="cd-date">Feb 2025</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fa-brands fa-airbnb fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fa-brands fa-airbnb fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Started an Airbnb business</h2>
<p>
I decided to start renting my flat on a short-let basis utilising
platforms such as Airbnb, which gave me an opportunity to focus on
redecorating and improving my flat. I quickly became a Superhost with a
★ 4.95 rating. Since starting I've hosted close to 100 days of stays
with guests from around the world.
</p>
<span class="cd-date">May 2024</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fa-solid fa-people-group fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fa-solid fa-people-group fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
<a target="_blank" href="https://startbook.co.uk/">Startbook</a> Hires
its First Full-time Employee
</h2>
<p>
After bootstrapping for ~3 years with the company supporting myself and
a number of part-time contractors,
<a target="_blank" href="https://startbook.co.uk/">Startbook</a> had
finally grown enough to hire and support its first full-time employee
besides myself - a growth of
<a target="_blank" href="https://startbook.co.uk/team/#team"
>the team</a
>
by 100%!
</p>
<p>
This milestone was a turning point for the company - allowing us to
expand our product offering and giving us more capacity to continue to
grow the business.
</p>
<span class="cd-date">Aug 2023</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-pause fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-pause fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Took Hiatus From Political Campaigning</h2>
<p>
Having spent ~2 years dipping my toes into the world of local politics,
I decided to renew my focus as 2023 approached. I hit pause on the
part-time political campaigning work I had been doing with the Islington
Liberal Democrats in order to spend more of my time growing my business,
<a target="_blank" href="https://startbook.co.uk/">Startbook</a>.
</p>
<span class="cd-date">Dec 2022</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-bolt fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-bolt fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
<a target="_blank" href="https://jointhetribe.app/">The Tribe</a>
rebrands to
<a target="_blank" href="https://startbook.co.uk/">Startbook</a>
</h2>
<p>
We decided to adapt our brand to lean more towards our focus of creating
software for incubators and accelerators.
<a target="_blank" href="https://startbook.co.uk/platform/"
>The Startbook Platform</a
>
allows our clients to easily digitise, share and manage the data of
their entrepreneurial ecosystems.
</p>
<span class="cd-date">Jun 2022</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-vote-yea fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-vote-yea fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Secured 991 Votes in May 2022 Local Elections</h2>
<p>
We didn't win, but we collectively achieved the best electoral result
the Liberal Democrats had in Islington since 2014, taking home ~32% of
the vote in
<a href="https://stmstj.votemaxx.com/" target="_blank"
>St Mary's & St James'</a
>.
</p>
<p>
Individually, I achieved a similar level of votes to my co-candidates,
despite the fact that they had been established candidates for several
years.
</p>
<p>
You can view the full electoral results here:<br /><a
href="https://votemaxx.com/2022-results"
target="_blank"
>votemaxx.com/2022-results</a
>
</p>
<p>
You can read the manifesto for the campaign here:
<a href="https://votemaxx.com/manifesto" target="_blank"
>votemaxx.com/manifesto</a
>
</p>
<p>
We campaigned over several months on a number of issues including
reducing litter and improving affordable cycle parking. The overarching
theme of the campaign focused on ensuring residents were being heard and
respected via methods such as citizen's assemblies; a big issue present
at the time was the divisiveness of the newly-introduced 'Low-traffic
Neighbourhoods' in Islington.
</p>
<span class="cd-date">May 2022</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-vote-yea fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-vote-yea fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Selected as Target Ward Candidate in 2022 Local Elections</h2>
<p>
After consolidating the vote in the Islington Bunhill by-election in May
2021, I was selected again by the
<a href="https://www.liberalislington.com/" target="_blank"
>Islington Liberal Democrats</a
>
as a candidate for the campaign's target ward,
<a href="https://stmstj.votemaxx.com/" target="_blank"
>St Mary's & St James'</a
>, alongside Kate Pothalingam and Terry Stacy MBE as part of the 2022
Local Elections in
<a href="https://islington.votemaxx.com/" target="_blank">Islington</a>.
</p>
<span class="cd-date">Apr 2022</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-vote-yea fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-vote-yea fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Secured 572 Votes in Local By-election</h2>
<p>
I didn't win, but improved on the previous 2018 Bunhill campaign by
increasing the vote percentage by 2.7%.
</p>
<p>
The by-election was also the same day (Thu, 6 May) as the 2021 London
Mayoral Elections. The Liberal Democrat candidate for the London Mayor
seat achieved
<a
target="_blank"
href="https://www.londonelects.org.uk/sites/default/files/2021-05/2021%20London%20Elects%20-%20Ward%20Level%20Data%20Release.xlsx"
>121 votes</a
>
in the Bunhill ward - I received 472% more votes than the 'baseline' of
the comparable candidate.
</p>
<p>
You can view the full electoral results here:<br /><a
href="https://votemaxx.com/2021-results"
target="_blank"
>votemaxx.com/2021-results</a
>
</p>
<p>
My campaign focussed on highlighting a need for better local
representation and improved accountability within the local council, as
well as better health and safety and an improved local environment for
residents.
</p>
<p>Highlights of the campaign included:</p>
<ul>
<li>Creating an informational campaign website:</li>
<ul>
<li>
Website:
<a href="https://votemaxx.com/" target="_blank">votemaxx.com</a>
</li>
</ul>
<li>Designing and printing 6,500 z-fold leaflets and stickers:</li>
<ul>
<li>
Leaflet:
<a href="https://votemaxx.com/leaflet/" target="_blank"
>votemaxx.com/leaflet</a
>
</li>
<li>
Sticker:
<a href="https://votemaxx.com/sticker/" target="_blank"
>votemaxx.com/sticker</a
>
</li>
</ul>
<li>Filming and editing a campaign video:</li>
<ul>
<li>
Video:
<a href="https://votemaxx.com/video" target="_blank"
>votemaxx.com/video</a
>
</li>
</ul>
<li>Raising £1,420 of donations for the campaign:</li>
<ul>
<li>
Donate:
<a href="https://votemaxx.com/donate" target="_blank"
>votemaxx.com/donate</a
>
</li>
</ul>
<li>Running a digital marketing campaign:</li>
<ul>
<li>
Instagram:
<a href="https://instagram.votemaxx.com/" target="_blank"
>@VoteMaxx</a
>
|
<a
href="https://www.instagram.com/explore/tags/votemaxx/"
target="_blank"
>#VoteMaxx</a
>
</li>
<li>
Facebook:
<a href="https://facebook.votemaxx.com/" target="_blank"
>@VoteMaxx</a
>
|
<a href="https://www.facebook.com/hashtag/VoteMaxx" target="_blank"
>#VoteMaxx</a
>
</li>
<li>
X: <a href="https://x.votemaxx.com/" target="_blank">@VoteMaxx</a> |
<a href="https://x.com/hashtag/VoteMaxx" target="_blank"
>#VoteMaxx</a
>
</li>
</ul>
</ul>
<span class="cd-date">May 2021</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-vote-yea fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-vote-yea fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Selected as Local By-election Candidate</h2>
<p>
With my business growing and profitable, I decided to spend some of my
spare time giving back to the local community where I live in EC1.
</p>
<p>
I became aware that there was an oligopoly of broadband provision by BT
and Virgin Media in my local area, so I attempted to lobby the local
council to improve broadband connectivity in the area and was ignored.
In the process I became aware of several issues with the local
Labour-run Islington Council, I decided to join forces with the
<a href="https://www.liberalislington.com/" target="_blank"
>Islington Liberal Democrats</a
>
to run for local councillor in the Thu 6 May 2021 by-election for the
electoral ward of
<a href="https://bunhill-2021.votemaxx.com/" target="_blank">Bunhill</a>
in the
<a href="https://islington-2021.votemaxx.com/" target="_blank"
>London Borough of Islington</a
>.
</p>
<p style="font-style: italic">
<b>Spoiler:</b> Islington Council's Housing Scrutiny Committee later
responded to my campaigning by highlighing the broadband provision issue
in their meeting on 28/6/21 (following the by-election) and resolved to
launch a tender to tackle the problem.
</p>
<span class="cd-date">Mar 2021</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fas fa-business-time fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fas fa-business-time fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Started Working on
<a target="_blank" href="https://jointhetribe.app/">The Tribe</a>
Full-time
</h2>
<p>
The business was starting to pick up pace, so I decided to leave my
full-time role at
<a href="http://kantan.co.uk/" target="_blank">Kantan</a> and jump into
my startup full-time.
</p>
<p>
We would provide software and operational services to incubators and
accelerators, allowing them to easily digitise, share and manage the
data of their entrepreneurial ecosystems. One of our first major clients
was the
<a target="_blank" href="https://centreforentrepreneurs.org/nef/"
>Centre for Entrepreneurs NEF+ Programme</a
>.
</p>
<span class="cd-date">Oct 2020</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fas fa-campground fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fas fa-campground fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
<a target="_blank" href="https://foundertribe.org/">Founder Tribe</a>
rebrands to
<a target="_blank" href="https://jointhetribe.app/">The Tribe</a>
</h2>
<p>
To prevent confusion with our initial B2C founder-focussed community
offering, we rebranded the B2B business from 'Founder Tribe' to 'The
Tribe' and used this as our trading name.
</p>
<span class="cd-date">Sep 2020</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fas fa-file-lines fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fas fa-file-lines fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Incorporated
<a target="_blank" href="https://foundertribe.org/">Founder Tribe</a>
</h2>
<p>
Whilst still working at my full-time day job, I officially incorporated
<a
target="_blank"
href="https://find-and-update.company-information.service.gov.uk/search?q=FOUNDER+TRIBE+LTD"
>FOUNDER TRIBE LTD</a
>
and set up a bank account to receive the £20,000 grant and revenue from
our first clients. I continued to work on Founder Tribe part-time and
contracted a software engineering consultancy to build out the next
iteration of the product.
</p>
<span class="cd-date">Jul 2020</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-trophy fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-trophy fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Won CVC Young Innovator Award (£20,000 Grant)</h2>
<p>
I was selected as one of four finalists to pitch
<a target="_blank" href="https://foundertribe.org/">Founder Tribe</a> at
the 2020
<a
href="https://www.cvc.com/responsibility/cvc-foundation"
target="_blank"
>CVC Young Innovator Awards</a
>
in London, UK. I was selected as a co-winner alongside
<a
href="https://www.linkedin.com/in/joel-gujral-7824ab90/"
target="_blank"
>Joel Gujral</a
>, Founder of
<a href="https://www.myndup.com/" target="_blank">MYNDUP</a>. We were
both awarded grants of £20,000 to support the growth of our businesses.
</p>
<span class="cd-date">Jul 2020</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fas fa-award fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fas fa-award fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Won Centre for Entrepreneurs NEF Fast Track CEO's Award (£500 Prize)
</h2>
<p>
I was selected by
<a target="_blank" href="https://neetapatel.com/">Neeta Patel CBE</a> to
receive the CEO's Award for my hard work and efforts on the NEF Fast
Track Programme and my contributions to CFE and the NEF community.
</p>
<span class="cd-date">Jun 2020</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fa fa-share fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fa fa-share fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>Founder Tribe Pivots to B2B</h2>
<p>
I decided to focus my efforts on Founder Tribe, but struggled to
establish a suitable go-to-market strategy and B2C business model. As a
result I instead pivoted to providing services (operational services and
SaaS) to entrepreneurship programmes.
</p>
<p>
Have you ever heard the phrase,
<span style="font-style: italic"
>"it takes a village to raise a child"</span
>? The same is true for startups. Companies that attend accelerators
raise 44% more money than those that don’t and are 75% more valuable.<br />[<span
style="font-style: italic"
>UK Accelerator Programmes - Beauhurst (2017)</span
>]
</p>
<p>
The initial SaaS offering was an app that could feature profiles of
entrepreneurs taking part in a programme and track their attendance to
workshops. This initial offering was well-received, but quickly became
redundant when the COVID-19 pandemic started - preventing in-person
workshops from happening.
</p>
<p>
In response, I pivoted the SaaS offering a second time - building a new
web MVP that instead focused on showcasing founder and venture profiles
that could be easily updated and shared at a virtual demo day event.
</p>
<span class="cd-date">Mar 2020</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fa fa-rocket fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fa fa-rocket fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Started the
<a
href="https://centreforentrepreneurs.org/nef-fast-track/"
target="_blank"
>NEF Fast Track</a
>
2020 Programme
</h2>
<p>
After being accepted in April, the part-time learning programme kicked
off in September with a 3.5-day bootcamp, followed by regular workshops
and training every two weeks. As part of the programme I began working
on various startup ideas.
</p>
<p>
<b>Track Repair</b> - a platform for tenants and landlords to report and
manage residential repairs and seek remedial action, ensuring both
parties comply with their legal obligations.
</p>
<p>
<a target="_blank" href="https://foundertribe.org/"
><b>Founder Tribe</b></a
>
- a community for early-stage solo founders providing tools, events and
deals from startup suppliers allowing members to grow their support
network and stay accountabile with their ambitions when getting their
idea off the ground.
</p>
<p>
<a target="_blank" href="https://x.com/NameChangerUK"
><b>Name Changer</b></a
>
- a platform to help the tens of thousands of people that change their
name every year due to marriage, divorce or preference (deed poll) and
struggle with the legal process and administrative burden of updating it
at 100+ touchpoints.
</p>
<span class="cd-date">Sep 2019</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fa fa-briefcase fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fa fa-briefcase fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Joined <a href="https://www.kantan.co.uk/" target="_blank">Kantan</a> as
Founder Associate
</h2>
<p>
I selected
<a href="https://www.kantan.co.uk/" target="_blank">Kantan</a> as my
placement company for the
<a
href="https://centreforentrepreneurs.org/nef-fast-track/"
target="_blank"
>NEF Fast Track</a
>
programme. The role was cross-functional and required me to work across
all areas of the business including operations, software engineering,
quality assurance and business development.
</p>
<p>
Kantan is changing the lives of tradespeople by giving them the tools to
excel in a competitive marketplace.
</p>
<span class="cd-date">Aug 2019</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fa fa-star fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fa fa-star fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Accepted onto
<a
href="https://centreforentrepreneurs.org/nef-fast-track/"
target="_blank"
>NEF Fast Track</a
>
2020 Programme
</h2>
<p>
I was selected as one of 40 people from a pool of over 3500 candidates
(~1% acceptance rate) through an 8-part assessment process to join the
<a href="https://centreforentrepreneurs.org/" target="_blank"
>Centre for Entrepreneurs</a
>
<a
href="https://centreforentrepreneurs.org/nef-fast-track/"
target="_blank"
>NEF Fast Track</a
>
<a
href="https://centreforentrepreneurs.org/nef-fast-track/alumni/"
target="_blank"
>2020 Cohort</a
>.
</p>
<p>
The programme develops the entrepreneurial leaders of the future with a
placement role in a tech startup, 12-month training programme, mentor
and executive coach.
</p>
<span class="cd-date">Apr 2019</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i class="fa fa-briefcase fa-fw d-block d-md-none" aria-hidden="true"></i>
<i
class="fa fa-briefcase fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Joined <a href="https://www.thefamily.co/">The Family</a> as Head of
Events (London)
</h2>
<p>
I joined <a href="https://www.thefamily.co/">The Family</a>, a
strategic, minority, long-term shareholder providing education, advisory
services and access to capital to its Pan-European network of
entrepreneurs.
</p>
<p>
In this role I organised our educational and community events in London.
The events all featured entrepreneurs and senior startup employees and
covered topics such as
<a href="https://www.youtube.com/watch?v=u37c-8T-uho" target="_blank"
>growth and internationalisation</a
>,
<a href="https://www.youtube.com/watch?v=5k1VgCoZXt0" target="_blank"
>when to quit your startup</a
>
and
<a href="https://www.youtube.com/watch?v=oKiWQgvMVA4" target="_blank"
>building a data team</a
>.
</p>
<p>
In addition to the standard events, I also organised a
<a href="http://labsofthefuture.com" target="_blank"
>biotech enterprise innovation conference</a
>
featuring
<a href="https://www.youtube.com/watch?v=WL7Kl_ViCJc" target="_blank"
>10 senior life sciences speakers</a
>.
</p>
<span class="cd-date">Nov 2018</span>
</div>
</div>
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<i
class="fas fa-user-graduate fa-fw d-block d-md-none"
aria-hidden="true"
></i>
<i
class="fas fa-user-graduate fa-fw fa-2x d-none d-md-block"
aria-hidden="true"
></i>
</div>
<div class="cd-timeline-content">
<h2>
Graduated
<a href="https://quantic.mba/" target="_blank">Quantic MBA</a> with
Honours
</h2>
<p>
I placed in the top 10% of my cohort and graduated the
<a href="https://quantic.mba/" target="_blank">Quantic MBA</a> programme
with honours.