-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1209 lines (1140 loc) · 51.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" data-bs-theme="auto">
<head>
<script src="assets/js/color-modes.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#317EFB" />
<meta name="robots" content="index, follow">
<meta name="description"
content="Stephan is a Boston based devCTO and seasoned startup founder, who helps CEOs get revenue positive.">
<title>Stephan Smith (dev+CTO, Boston)</title>
<link href="assets/css/[email protected]" rel="stylesheet">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/min.css" rel="stylesheet">
<link href="assets/css/pricing.css" rel="stylesheet">
<link rel="manifest" href="assets/manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<!-- Hotjar Tracking Code -->
<script>
(function (h, o, t, j, a, r) {
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
h._hjSettings = { hjid: 3823763, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script'); r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<meta property="og:title" content="devCTO Stephan Smith">
<meta property="og:description" content="When your CEO needs help making tech decisions that impact revenue.">
<meta property="og:image" content="assets/brand/banner5.png">
<!-- <script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="8b23c794-97b3-4c46-8564-17512d23c7aa";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script> -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<!-- Calendly link widget begin -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<!-- Calendly link widget end -->
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2PZBLYK6BX"></script>
<script>
if (window.location.hostname !== "localhost" && window.location.hostname !== "127.0.0.1") {
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-2PZBLYK6BX');
} else {
console.log('GA is off.');
}
</script>
<body>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check2" viewBox="0 0 16 16">
<path
d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z" />
</symbol>
<symbol id="circle-half" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z" />
</symbol>
<symbol id="moon-stars-fill" viewBox="0 0 16 16">
<path
d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z" />
<path
d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z" />
</symbol>
<symbol id="sun-fill" viewBox="0 0 16 16">
<path
d="M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z" />
</symbol>
</svg>
<div class="dropdown position-fixed bottom-0 end-0 mb-3 me-3 bd-mode-toggle">
<button class="btn btn-bd-primary py-2 dropdown-toggle d-flex align-items-center" id="bd-theme" type="button"
aria-expanded="false" data-bs-toggle="dropdown" aria-label="Toggle theme (auto)">
<svg class="bi my-1 theme-icon-active" width="1em" height="1em">
<use href="#circle-half"></use>
</svg>
<span class="visually-hidden" id="bd-theme-text">Toggle theme</span>
</button>
<ul class="dropdown-menu dropdown-menu-end shadow" aria-labelledby="bd-theme-text">
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light"
aria-pressed="false">
<svg class="bi me-2 opacity-50 theme-icon" width="1em" height="1em">
<use href="#sun-fill"></use>
</svg>
Light
<svg class="bi ms-auto d-none" width="1em" height="1em">
<use href="#check2"></use>
</svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark"
aria-pressed="false">
<svg class="bi me-2 opacity-50 theme-icon" width="1em" height="1em">
<use href="#moon-stars-fill"></use>
</svg>
Dark
<svg class="bi ms-auto d-none" width="1em" height="1em">
<use href="#check2"></use>
</svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center active" data-bs-theme-value="auto"
aria-pressed="true">
<svg class="bi me-2 opacity-50 theme-icon" width="1em" height="1em">
<use href="#circle-half"></use>
</svg>
Auto
<svg class="bi ms-auto d-none" width="1em" height="1em">
<use href="#check2"></use>
</svg>
</button>
</li>
</ul>
</div>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check" viewBox="0 0 16 16">
<title>Check</title>
<path
d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z" />
</symbol>
</svg>
<div class="container py-3">
<header>
<div class="d-flex flex-column flex-md-row align-items-center pb-3 mb-4 border-bottom">
<a href="/" class="d-flex align-items-center link-body-emphasis text-decoration-none">
<span class="badge bg-secondary" style="background-color:#000 !important; padding: 5px;">devCTO</span>
<!-- <svg xmlns="http://www.w3.org/2000/svg" width="40" height="32" class="me-2" viewBox="0 0 118 94" role="img"><title>Bootstrap</title><path fill-rule="evenodd" clip-rule="evenodd" d="M24.509 0c-6.733 0-11.715 5.893-11.492 12.284.214 6.14-.064 14.092-2.066 20.577C8.943 39.365 5.547 43.485 0 44.014v5.972c5.547.529 8.943 4.649 10.951 11.153 2.002 6.485 2.28 14.437 2.066 20.577C12.794 88.106 17.776 94 24.51 94H93.5c6.733 0 11.714-5.893 11.491-12.284-.214-6.14.064-14.092 2.066-20.577 2.009-6.504 5.396-10.624 10.943-11.153v-5.972c-5.547-.529-8.934-4.649-10.943-11.153-2.002-6.484-2.28-14.437-2.066-20.577C105.214 5.894 100.233 0 93.5 0H24.508zM80 57.863C80 66.663 73.436 72 62.543 72H44a2 2 0 01-2-2V24a2 2 0 012-2h18.437c9.083 0 15.044 4.92 15.044 12.474 0 5.302-4.01 10.049-9.119 10.88v.277C75.317 46.394 80 51.21 80 57.863zM60.521 28.34H49.948v14.934h8.905c6.884 0 10.68-2.772 10.68-7.727 0-4.643-3.264-7.207-9.012-7.207zM49.948 49.2v16.458H60.91c7.167 0 10.964-2.876 10.964-8.281 0-5.406-3.903-8.178-11.425-8.178H49.948z" fill="currentColor"></path></svg> -->
<span class="fs-4">developer+CTO</span>
</a>
<style>
.fs-7 {
font-size: 14px;
}
</style>
<nav class="d-inline-flex mt-2 mt-md-0 ms-md-auto">
<a class="me-3 py-2 link-body-emphasis text-decoration-none fs-7" href="#packages">Solutions</a>
<a class="me-3 py-2 link-body-emphasis text-decoration-none fs-7" href="#tools">Tools</a>
<a class="me-3 py-2 link-body-emphasis text-decoration-none fs-7" href="#references">References</a>
<a class="me-3 py-2 link-body-emphasis text-decoration-none fs-7" href="recipes">Low-Code</a>
<a class="py-2 link-body-emphasis text-decoration-none fs-7" href="#on-demand">
<span class="link-secondary" data-bs-toggle="popover" data-bs-placement="top"
data-bs-trigger="hover"
data-bs-content="Some tech questions only take an hour. Book the time you need, as you need it.">
<span class="badge text-bg-success">New</span>
</span>
</a>
</nav>
</div>
<div class="pricing-header p-3 pb-md-4 mt-5 mx-auto text-center">
<h1 class="display-4 fw-normal text-body-emphasis">
I am a fractional CTO who helps <b>CEOs</b> solve
problems <b>quickly</b> and <b>practically</b>.
</h1>
<p class="fs-5 mt-4 text-body-secondary">
Think of me as your <b>On-Demand</b> technical co-founder. As a serial founder, I know the challenges
of coupling vision and technology. Every tech decision needs to drive ROI.
<!-- As a serial founder, I know the value of rapid solutions and experimentation. I
know the challenge that CEOs have in making healthy ROI focused technology decisions. -->
</p>
<br>
<a class="btn btn-lg d-block d-md-inline btn-success" target="calendly"
onclick="Calendly.initPopupWidget({url: 'https://calendly.com/stephan-smith/introduction'});return false;">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-calendar-check" viewBox="0 0 16 16">
<path
d="M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0" />
<path
d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z" />
</svg>
Schedule a Call
</a>
<a class="btn btn-lg d-block d-md-inline btn-outline-success" href="#tldr" class="small text-muted">TL;DR</a>
</div>
<hr>
<div class="row featurette">
<div class="col-md-8 order-md-2">
<h2 class="featurette-heading fw-normal lh-1">
Stephan Smith
</h2>
<p>
devCTO | CISO | Founder
</p>
<p>
Boston based. I am taking a series of long deep breaths since leaving my last
startup, and focusing on new projects. My last company was part of the <b><a href="https://aacarr.com/meenta" target="designs"></a>Techstars Boston</a></b> cohort in 2018.
We have benefited from Techstars vision of <b>'Give First'</b>.
</p>
<p>
<span class="badge text-bg-dark">ML/AI</span>
<span class="badge text-bg-dark">No-Code</span>
<span class="badge text-bg-dark">Full-Stack Solutions</span>
<span class="badge text-bg-dark">API Prototypes</span>
<span class="badge text-bg-dark">Vue/React/Swelt</span>
</p>
<p class="lead">
<a href="https://www.linkedin.com/in/stephansmithbc93/" title="Stephan Smith, on LinkedIn"
aria-label="Stephan's LinkedIn Profile">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-linkedin"
viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z" />
</svg></a>
<a href="https://github.com/d1b1" aria-label="See what I have on github.com"
title="Github Profile for Stephan Smith">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" kfill="currentColor" class="bi bi-github"
viewBox="0 0 16 16">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8" />
</svg>
</a>
</p>
</div>
<div class="col-md-3 order-md-1">
<img class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto avatar"
alt="Stephan Smith, Fractional fCTO" src="assets/clients/stephan-smith-avatar.png">
</div>
</div>
<hr>
<div class="pricing-header p-3 pb-md-4 mx-auto text-center">
<h2 class="display-6 text-center mb-4">
Why use a fractional CTO?
</h1>
<p class="fs-5 text-body-secondary">
You seek out a fractional CTO (aka fCTO) when you can <b>not find</b> or <b>afford</b> a
full-time, salaried and equity motivated technical co-founder. When you need
point solutions, an outside perspective, and options.
</p>
</div>
</header>
<main>
<hr>
<div class="pricing-header p-3 pb-md-4 mx-auto text-center">
<h2 class="display-6 text-center mb-4">
How I engage.
</h2>
<p class="fs-5 text-body-secondary">
I offer packages and solutions. Packages are monthly recurring
services designed to fit into a budget.
Solutions are special products or services that fit specific needs.
</p>
</div>
<hr>
<div class="pricing-headerk pb-3 kpb-md-4 mx-auto" style="width: 90% !important;">
<a name="tools"></a>
<h2 class="display-6 text-center mb-4">
What tools do I use?
</h2>
<p class="fs-5 pb-3 text-body-secondary text-center">
Every application is unique, and fitting the tech
stack to the project and the business need takes experience.
</p>
<style>
.button-label {
display: none
}
.features {
-webkit-column-count: 2;
/* Chrome, Safari, Opera */
-moz-column-count: 2;
/* Firefox */
column-count: 2;
/* standard syntax */
}
@media (max-width: 768px) {
.features {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
}
.badge {
border: 1px solid #000;
padding: 4px;
}
</style>
<table class="table" style="width: 100%;">
<tr>
<td width="45%">
<b>On the Back-end</b>
<p>
Backend systems provide the business logic, identity
management and control processes.
</p>
</td>
<td width="55%">
<ul class="features">
<li>
Fastify/ExpressJS
</li>
<li>
NestJS
</li>
<li>
Flask + Python
</li>
<li>
GoLang+Gin <span class="badge text-dark">♥</span>
</li>
</ul>
</td>
</tr>
<tr>
<td>
<b>On Front-end</b>
<p>
When a UI is needed solve a problem, I start
with no-code and phase in the minimum front-end
frameworks.
</p>
</td>
<td>
<ul class="features">
<li>
React <span class="badge text-dark">♥</span>
</li>
<li>
Vue.js (2/3)
</li>
<li>
AngularJS
</li>
<li>
Retool for No-code Admin UIs
</li>
</ul>
</td>
</tr>
<tr>
<td>
<b>Persistence</b>
<p>
When storage is needed, I default to SQLLite, then
scale into schema vs No-SQL depending upon the need.
</p>
<!-- <p>
<a href="/articles/databases_for_rapid_solutions">Databases for rapid solutions</a>
</p> -->
</td>
<td>
<ul class="features">
<li>
MongoDB <span class="badge text-dark">♥</span>
</li>
<li>
Firebase RTD
</li>
<li>
Firestore/Suprabase
</li>
<li>
Postgres <span class="badge text-dark">♥</span>
</li>
</ul>
</td>
</tr>
<tr>
<td>
<b>
For Code Delivery
</b>
<p>
The landscape for deployment is rich and mature.
</p>
<!-- <p>
<a href="/articles/turn_key_deployment_options">Turn-key Deployment options</a>
</p> -->
</td>
<td>
<ul class="features">
<li>
Codeship.io
</li>
<li>
Github Actions <span class="badge text-dark">♥</span>
</li>
<li>
Travis CI
</li>
</ul>
</td>
</tr>
<tr>
<td>
<b>
On the Cloud
</b>
<p>
Hosting on EC and burning budget and credits
is the last step. Start with hosting options that
avoid devOps requirements.
</p>
<!-- <p>
<a href="/articles/low_friction_hosting_patterns">Low Friction Hosting Patterns</a>
</p> -->
</td>
<td>
<ul class="features">
<li>
Fly.io <span class="badge text-dark">♥</span>
</li>
<li>
Heroku
</li>
<li>
Firebase Hosting
</li>
<li>
AWS Cloudfront
</li>
<li>
Vercel
</li>
<li>
Render.com (UIs)
</li>
<li>
Github Pages
</li>
</ul>
</td>
</tr>
<tr>
<td>
<b>
For Operations
</b>
<p>
Operations is the foundation of any scalable solution. Empowering
a team with access and tooling that met them where they are is
key to proving a technology stack.
</p>
<!-- <p>
<a href="/articles/slack_power_patterns">Slack power tools</a>
</p> -->
</td>
<td>
<ul class="features">
<li>
Slack API Integrations <span class="badge text-dark">♥</span>
</li>
<li>
FreshDesk API
</li>
<li>
New Relic
</li>
<li>
Loggly
</li>
<li>
Keen.io
</li>
</ul>
</td>
</tr>
<tr>
<td>
<b>
Rapid Tool Recipes
</b>
<p>
The right technology stack items can drive
innovation and scalable patterns.
</p>
<!-- <p>
<a href="/articles/schema_powered_apis">Schema powered APIs</a>
</p> -->
</td>
<td>
<ul>
<li>
<a href="https://platformatic.dev" target="_blank">Platformatic.dev</a> for rapid APIs <span
class="badge text-dark">♥</span>
</li>
<li>
<a href="https://www.prisma.io/" target="_blank">Prisma</a> for scalable schemas.
</li>
<li>
<a href="https://www.algolia.com/" target="_blank">Algolia</a> for facetted search.
</li>
<li>
<a href="https://www.retool.com/" target="_blank">Retool</a> for codeless admin UIs.
</li>
</ul>
</td>
</tr>
</table>
<br>
</div>
<a name="packages"></a>
<!--
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm border-success equal">
<div class="card-header py-3 text-bg-success border-success">
<h3 class="my-0 fw-normal">Advisory</h3>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">
</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>CEO needs an outside perspective.</li>
<li>Weekly calls.</li>
<li>Background Research.</li>
<li>Not visible to team.</li>
<li> </li>
<li><b>Recommended</b> starting point.</li>
</ul>
</div>
<div class="card-footer">
<a type="button" class="w-100 btn btn-success" target="_blank"
href="https://calendly.com/stephan-smith/introduction">
Schedule Time
</a>
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm equal">
<div class="card-header py-3">
<h3 class="my-0 fw-normal">Point Solutions</h3>
</div>
<div class="card-body">
<ul class="list-unstyled mt-3 mb-4">
<li>Specific problems.</li>
<li>Finite timelines.</li>
<li>Set prices.</li>
<li> </li>
<li>Below are a list of common packages for common startup team <b>challenges</b>.</li>
</ul>
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm equal">
<div class="card-header py-3">
<h3 class="my-0 fw-normal">Full Engagement</h3>
</div>
<div class="card-body">
<ul class="list-unstyled mt-3 mb-4">
<li>When you need an <b>interim CTO</b> to take a day-to-day role.</li>
<li>Provide strategy.</li>
<li>Run a dev team and process.</li>
<li>Tune a tech stack.</li>
<li>Price dependent upon time and level of commitment.</li>
<li> </li>
<li>Often is a combination of all the packages and <b>hands-on</b> operations.</li>
</ul>
</div>
</div>
</div>
</div>
-->
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3 bg-success text-bg-success border-success">
<h4 class="my-0 fw-normal">Advisory Package</h4>
</div>
<div class="card-body">
<p>
"When the <b>CEO</b> needs an options and patterns to understand
the challenges they are facing around revenue and ROI of tech decisions."
</p>
<hr>
<div class="row">
<div class="col-md-9 col-12">
<ul class="list-unstyled mt-3 kmb-4">
<li><b>Time frame:</b> 2-3 months</li>
<li><b>Engagement:</b> Weekly or Bi-weekly calls</li>
<li><b>Summary:</b>
Weekly calls, background Research, not visible to team, bottom up review of existing code,
tools, patterns and stack components. Good for the CEO who needs background before
dealing with board, investors or internal leadership.
</li>
</ul>
</div>
<div class="col-md-3 col-12">
<span class="badge text-bg-success">Perspective</span>
<span class="badge text-bg-success">Revenue Blockers</span>
</div>
<!--
<div class="col-md-3 col-12">
<a type="button" class="w-100 btn btn-success" target="_blank"
href="https://calendly.com/stephan-smith/introduction?utm_source=site&utm_medium=cta&utm_campaign=calendly">
Schedule
</a>
</div>
-->
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Technology-Stack Review</h4>
</div>
<div class="card-body">
<p>
"When the <b>CEO</b> needs an outside <b>perspective</b> on what is ready being
built and is looking for deeper insights into the impact of tech
decisions on revenue.",
"What have we built that we can retire?", "
"What can we turn from features into core services?"
</p>
<hr>
<div class="row">
<div class="col-md-9 col-12">
<ul class="list-unstyled mt-3 mb-4">
<li><b>Time frame:</b> 2-3 weeks</li>
<li><b>Engagement:</b> 5-10 calls or zoom sessions.</li>
<li>
<b>Summary:</b>
Bottom up review of existing code, tools, patterns and stack components.
</li>
</ul>
</div>
<div class="col-md-3 col-12">
<span class="badge text-bg-success">CI/CD</span>
<span class="badge text-bg-success">Code Review</span>
<span class="badge text-bg-success">Code ROI</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Agile/Dev Process Tuning</h4>
</div>
<div class="card-body">
<p>
"When a team needs a <b>CTO</b> level
assessment and tuning of their agile, CI/CD processes and
<b>engineering rigor</b>. When tech teams <b>increase headcount</b>,
but the teams throughput remains the same.",
"How do we tune our processes for more velocity?"
</p>
<hr>
<div class="row">
<div class="col-md-9 col-12">
<ul class="list-unstyled mt-3 mb-4">
<li><b>Time frame:</b> ~4 weeks</li>
<li><b>Engagement:</b> 5-10 calls or zoom sessions.</li>
<li>
<b>Summary:</b>
Set of agile process changes, scored by
ROI, risk, and timeline impacts.
</li>
</ul>
</div>
<div class="col-md-3 col-12">
<span class="badge text-bg-success">Code Review</span>
<span class="badge text-bg-success">Code ROI</span>
<span class="badge text-bg-success">Github Actions</span>
<span class="badge text-bg-success">Docker Builds</span>
<span class="badge text-bg-success">Ticket Rigor</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">SOC2 Audit Preparation</h4>
</div>
<div class="card-body">
<p>
"When a <b>Leadership teams</b>
needs to speed up their SOC work to <b>enable</b> their enterprise
sales, train their team and demonstrate leadership around
data security concerns."
</p>
<hr>
<div class="row">
<div class="col-md-9 col-12">
<ul class="list-unstyled mt-3 mb-4">
<li><b>Time frame:</b> 2-3 months</li>
<li><b>Engagement:</b> 5-10 calls or zoom sessions.</li>
<li>
<b>Summary:</b>
Set of the processes & changes, to get teams ready for SOC and Cybersecurity Review.
Setup processes that match the state of a given startup, for staffing, tech and funding.
</li>
</ul>
</div>
<div class="col-md-3 col-12">
<span class="badge text-bg-success">Password Policy</span>
<span class="badge text-bg-success">Audit Prep</span>
<span class="badge text-bg-success">2FA/Passcode Setup</span>
<span class="badge text-bg-success">Stack Tuning</span>
<span class="badge text-bg-success">SOC2/HIPAA</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">MVP & POC Solution</h4>
</div>
<div class="card-body">
<div class="row">
<div class="col-12 col-md-9">
<p>
"When a <b>startup/company/team</b> needs to quick and practical proof-of-concept
to <b>enable</b> an investment pitch, technology decision or simply prove
an idea will work."
</p>
</div>
<div class="col-md-3 col-12">
<span class="badge text-bg-success">No-Code</span>
<span class="badge text-bg-success">Low-Code Patterns</span>
<span class="badge text-bg-success">NLP-to-Schema</span>
<span class="badge text-bg-success">Operations Integrations</span>
<span class="badge text-bg-success">Funding MVPs</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Interim CTO Engagement</h4>
</div>
<div class="card-body">
<div class="row">
<div class="col-12 col-md-9">
<p>
"When you need an interim CTO to take a <b>day-to-day</b> role; provide strategy,
run a dev team and processes, and provide execution to reach revenue goals."
</p>
<p>
Price dependent upon time and level of commitment.
Often is a combination of all the packages and hands-on operations.
</p>
</div>
<div class="col-md-3 col-12">
<span class="badge text-bg-success">Short Term</span>
<span class="badge text-bg-success">Rapid Integration</span>
<span class="badge text-bg-success">Team Evals</span>
<span class="badge text-bg-success">Roadmaps</span>
</div>
</div>
</div>
</div>
</div>
</div>
<a name="on-demand"></a>
<div class="row mb-3">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Pay-As-You-Go</h4>
</div>
<div class="card-body">
<div class="row">
<div class="col-12 col-md-9">
<p>
When you need access the perspective of an on-demand technical
founder, you can book time. A package can seem like too much,
so start with an hour.
</p>
<p>
Here are some common topics:
<ul>
<li>
Tech Stack Review.
</li>
<li>
CISO Questions.
</li>
<li>
Team Dynamics Challenges.
</li>
<li>
Low-code Patterns?
</li>
<li>
How do I message and sell to CTOs?
</li>
<li>
How does a coder learn to sell?
</li>
</ul>
A good starting point is review what I have written!
</p>
</div>
<div class="col-md-3 col-12">
<a type="button" class="w-100 btn btn-success" target="_blank"
href="https://calendly.com/stephan-smith/on-demand?utm_source=site&utm_medium=cta&utm_campaign=calendly">
Schedule
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<h2 class="display-6 text-center mb-4">My Perspective</h2>
<p class="fs-5 text-body-secondary">
Startups are all unique, but the pathways, pitfalls and
blockers are not. Constant reinvention is a requirement
to turn a vision into a reality. To understand how I approach
the startup condition, here are some of the patterns and
anti-patterns I have encountered and how I address them.
</p>
<div class="table-responsive">
<table class="table text-centerk table-hover">
<thead>
<tr>
<th class="d-none d-md-table-cell" style="width: 15%;"> </th>
<th style="width: 40%;">Observed</th>
<th style="width: 5%;"> </th>
<th style="width: 40%;">Solution</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">Context</th>
<td>
When a founding team is heads down and building, context is hard
to get, and learnings can get lost in the rush to market.
</td>
<td>→</td>
<td>
"Context is KING". A fractional CTO can help
bridge the gap when tech challenges are impacting
revenue and growth. It can build in source of new patterns
and solutions.
</td>
</tr>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">Perspective</th>
<td>
Founding teams build on what they know when they
get started. When driving for revenue, its hard to
justify a huge set of skill changes or framework refactor.
</td>
<td>→</td>
<td>
Changing tech stack and processes requires
a different technique, patterns and approaches.
Assuming a complete refactor will solve problems
is a common anti-pattern.
</td>
</tr>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">Mental</th>
<td>
"What got you here, will not get you there"
This is a common warning to founders. Your assumptions
about your customers and their needs can be a huge
blocker to getting your company to <b>revenue positive</b>.
</td>
<td>→</td>
<td>
A framework for scoring solutions can help
break the founder assumption problem and
breaking the 'this worked so far' approach.
<br>
<br>
And tech debt is not bad, its just
<span class="link-secondary" data-bs-toggle="popover" data-bs-placement="top" data-bs-trigger="hover"
data-bs-content="If tech debt is worrying you, rethink it. Read about how I help with this">misunderstood!</span>
</td>
</tr>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">Myths</th>
<td>
Startup founders and tech leaders often have myths and tropes that
drive tech decisions.
</td>
<td>→</td>
<td>
The less tech used the better!
<span class="link-secondary" data-bs-toggle="popover" data-bs-placement="top" data-bs-trigger="hover"
data-bs-content="Developers often poop-poop no-code solutions, for valid reasons, but ignore the business values.">No-code
patterns</span>
is cheap, fast and too valuable to pass up or ignore. Startups raise money to hire tech.
Tech costs often do not correlate to revenue growth. Tech decisions
can enable teams break assumptions about their customers needs.
</td>
</tr>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">Experimentation</th>
<td>
Founders know that experiments are important, but
find that making them happen can challenge any agile
team.
</td>
<td>→</td>
<td>
Promoting an <b>experiment and measure</b> mindset
can help break the assumptions deadlock that leads
startups to miss productivity gains.
</td>
</tr>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">Tuning</th>
<td>
Teams grow, but founders can find productivity
remaining <b>stagnant</b>. How can things no speed
up with more people working on a problem?
</td>
<td>→</td>
<td>
Teams and processes need tuning. They need to
assessed against metrics that align with milestones.
Frameworks can help score solutions. Frameworks
can promote tech decision making patterns that align
with revenue growth.
</td>
</tr>
<tr>
<th scope="row" class="d-none d-md-table-cell text-start">
Code
</th>
<td class="text-left">
Code is the default for B2B startups. We raise
VC funds to hire coders. We give equity to find
tech resources. CEOs think they need dedicated