-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathportfolio.html
More file actions
1214 lines (993 loc) · 54.2 KB
/
portfolio.html
File metadata and controls
1214 lines (993 loc) · 54.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio | Monadical Consulting</title>
<!-- Meta Tags Start -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Portfolio | Monadical Consulting">
<meta name="description" content="Monadical is a full-stack software development consultancy. We specialize in full-stack web development and custom software solutions.">
<meta property="og:locale" content="en_US" />
<meta property="og:description" content="Monadical is a full-stack software development consultancy. We specialize in full-stack web development and custom software solutions.">
<meta property="og:image" name="image" content="https://monadical.com/static/core/img/og.jpg">
<meta property="og:title" content="Portfolio | Monadical Consulting">
<meta property="og:type" content="website">
<meta property="og:url" content=https://monadical.com/portfolio.html />
<meta property="og:site_name" content="Monadical Consulting" />
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:description" content="Monadical is a full-stack software development consultancy. We specialize in full-stack web development and custom software solutions.">
<meta property="twitter:image" content="https://monadical.com/static/core/img/og.jpg">
<meta property="twitter:site" content="@MonadicalHQ">
<meta property="twitter:title" content="Portfolio | Monadical Consulting">
<meta property="twitter:url" content=https://monadical.com/portfolio.html />
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Meta Tags End -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans|Ubuntu" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fjalla+One" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" type="text/css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/font-hack/2.020/css/hack.min.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css">
<link rel="stylesheet" href="/static/bootstrap4-pleasant.min.css" type="text/css">
<link rel="stylesheet" href="/static/core/css/base.css" type="text/css">
<link rel="canonical" href="https://monadical.com/portfolio.html" />
<link rel="apple-touch-icon" sizes="76x76" href="/static/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon/favicon-16x16.png">
<link rel="mask-icon" href="/static/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/atom-one-light.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"
integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="/static/core/css/portfolio/portfolio.css" />
</head>
<body>
<header>
<div id="header-container" class="container">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" id="monadical-brand" href="/index.html">
<img srcset="/static/core/img/logo@3x.png 3x,
/static/core/img/logo@2x.png 2x"
src="/static/core/img/logo.png"
id="brand-img" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="navbar-content-container">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link "
href="/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active"
href="/portfolio.html">Portfolio</a>
</li>
<div class="nav-item dropdown">
<button class="nav-link btn-link dropdown-toggle" type="button"
id="dropdownservicesButton" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Services
</button>
<div class="dropdown-menu" aria-labelledby="dropdownservicesButton">
<a class="dropdown-item nav-link"
href="/ai-services.html">AI</a>
<a class="dropdown-item nav-link"
href="/services.html">Web Dev</a>
</div>
</div>
<li class="nav-item">
<a class="nav-link "
href="/about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank"
href="https://careers.monadical.com/">Careers</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/blog.html">Insights</a>
</li>
<li class="nav-item">
<a class="nav-link"
href="/contact-us.html">LET'S TALK</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<article>
<div class="container-full portfolio-full">
<!------------ Header: main view ------------>
<div id="header" class="container portfolio-container">
<div class="row">
<!-- title -->
<div class="title col-12 col-md-10">Monadical Portfolio</div>
<!-- slogan -->
<div class="slogan col-12 col-md-12">We build software that outlasts us</div>
<div class="slogan col-12 col-md-12">
<a href="https://monadical.com/contact-us.html">
<button class="btn btn-info-inverse">BOOK A FREE AI STRATEGY CALL</button>
</a>
</div>
</div>
<!-- list -->
<div class="scroll-down text-center">
<p class="portfolio-scroll-link">
<a href="#why-hire-monadical" class="scroll-down">
<span>Why Hire Monadical</span> <i class="fa fa-chevron-down"></i>
</a>
</p>
<p class="portfolio-scroll-link">
<a href="#ai-projects" class="scroll-down">
<span>AI Projects</span> <i class="fa fa-chevron-down"></i>
</a>
</p>
<p class="portfolio-scroll-link">
<a href="#web-projects" class="scroll-down">
<span>Web Dev & Blockchain Projects</span> <i class="fa fa-chevron-down"></i>
</a>
</p>
</div>
</div>
<!------------ Why Hire Monadical ------------>
<div id="why-hire-monadical" class="portfolio-container">
<div class="row">
<!-- title -->
<div class="section-title col-12">Why Hire Monadical</div>
</div>
<div class="row content-row flex-column flex-md-row">
<!-- list -->
<div class="contrast-wrapper col-10 offset-1 col-md-8 offset-md-2">
<ul>
<li><strong>Expertise:</strong> We bring extensive, ever-evolving knowledge of technical architecture and strategic thinking to every project we touch.</li>
<li><strong>Ease:</strong> We’re a full-stack team with batteries included. That includes everything from project management and design to server deployment.</li>
<li><strong>Flexibility:</strong> We understand the changing demands of a project, and we can scale your team up or down at a moment's notice.</li>
<li><strong>Care:</strong> We're all about the details, and we're 100% committed to building reliable products, both inside and out.</li>
</ul>
<div class="section-buttons d-flex justify-content-center align-items-center flex-wrap">
<a href="https://monadical.com/contact-us.html">
<button class="btn btn-info">SCHEDULE A CALL</button>
</a>
</div>
</div>
</div>
</div>
<!------------ AI Projects ------------>
<div class="monadical-projects-wrapper" id="ai-projects">
<!------------ Projects ------------>
<div id="monadical-projects" class="container-fluid portfolio-container">
<div class="row flex-column">
<!-- title -->
<div class="section-title col-12">AI Projects</div>
<div class="row main-image-wrapper-1 col-12 col-md-12">
<img
src="/static/core/img/img-portfolio-octopus-with-figures.png"
class="main-image-1"
alt="Monadical's octopus mascot with figures."
/>
</div>
<img
src="/static/core/img/img-portfolio-cube-right-full.png"
class="main-image-3"
alt="Monadical's octopus mascot with figures."
/>
<img
src="/static/core/img/img-portfolio-cloud-3.png"
class="main-image-4"
alt="Monadical's octopus mascot with figures."
/>
</div>
</div>
<div id="monadical-projects" class="container portfolio-container">
<div id="Minecraft Skin Generator-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img
src="/static/core/img/skingenerator.png"
class="project-img"
alt="A screenshot of Minecraft Skin Generator main page."
/>
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">Minecraft Skin Generator</div>
<div class="subtitle">An app that creates original Minecraft skins</div>
<p>
Monadical’s Minecraft Skin Generator spins up original skins using text prompts fed into a fine-tuned Stable Diffusion model. Trained using composite images that combine the skin itself with a 3D rendering of that same skin, it taps into the backend of Morpheus Monadical’s AI art generator, and maps different parts of the 3D renderings to their specific locations in the skin file. Available in both free and subscription-based plans.
</p>
<div class="project-stack">
Stable Diffusion, Generative AI, Computer Vision, Deep Learning, FastAPI, Minecraft.
</div>
<a class="align-self-center align-self-lg-start" href="https://skingenerator.io/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
<div id="Reflector-project" class="row project-row flex-column-reverse flex-lg-row">
<div class="project-text col-12 col-lg-5 pr-lg-5">
<div class="project-title">Reflector</div>
<div class="subtitle">A secure transcription and summarization pipeline</div>
<p>
Reflector transforms your audio into knowledge on your own infrastructure - keeping your data private, secure, and organized. Two custom deployments are available: Reflector Media for instant meeting minutes and topic summaries, and Projector Reflector for live on-screen capture of key points, translations, and agenda comparison for conferences. Reflector integrates smoothly with your custom tools.
</p>
<div class="project-stack">
React NextJS, Tailwind CSS, OpenAPI, SQLite, Alembic, FIEF, Sentry, Prometheus, Grafana, Websockets, WebRTC, Modal, Facebook m2m100_418, vicuna-13b-v1.5, Whisper Large-V2.
</div>
</div>
<div class="img-wrapper col-12 col-lg-7">
<img
src="/static/core/img/reflector.png"
class="project-img"
alt="A screenshot of Reflector main page."
/>
</div>
</div>
<div id="Morpheus-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img
src="/static/core/img/morpheus.png"
class="project-img"
alt="A screenshot of Morpheus page."
/>
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">Morpheus</div>
<div class="subtitle">Our own open-source, self-hosted AI art generator</div>
<p>
A BYOM (“Bring Your Own Model”) generative WebUI, built with Python, JavaScript, a NextJs/React frontend and a FastAPI backend. Use one of the built-in models or upload your own Stable Diffusion model to generate and modify images. PostgreSQL stores and manages data and AWS S3 holds images and models, while Ray handles the GPU, runs the models, and generates the art. AWS EKS (Kubernetes cluster) deploys everything online and scales up/down as needed. Switch between cloud providers or platforms easily.
</p>
<div class="project-stack">
Python, FastAPI, Node.js, Next.js, TypeScript, Ray, Celery, Stable Diffusion, Transformers, Torch, PostgreSQL, Terraform, Helm, Docker, Kubernetes, AWS, S3.
</div>
<a class="align-self-center align-self-lg-start" href="https://morpheus.monadical.io/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
</div>
<!------------ Web Dev & Blockchain Projects ------------>
<div class="monadical-projects-wrapper" id="web-projects">
<!------------ Projects ------------>
<div id="monadical-projects" class="container-fluid portfolio-container">
<div class="row flex-column">
<!-- title -->
<div class="section-title col-12">Web Dev & Blockchain Projects</div>
<div class="row main-image-wrapper-1 col-12 col-md-12">
<img src="/static/core/img/img-portfolio-octopus-with-figures.png" class="main-image-1"
alt="Monadical's octopus mascot with figures." />
</div>
<img src="/static/core/img/img-portfolio-cube-right-full.png" class="main-image-3"
alt="Monadical's octopus mascot with figures." />
<img src="/static/core/img/img-portfolio-cloud-3.png" class="main-image-4"
alt="Monadical's octopus mascot with figures." />
</div>
</div>
<div id="monadical-projects" class="container portfolio-container">
<div id="zohuddle-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/zohuddle-example.png" class="project-img" alt="An example of ZoHuddle's video-conferencing feature, showcasing a man in business-casual attire giving a presentation to four attendees." />
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">ZoHuddle</div>
<div class="subtitle">Rank-matching conference application</div>
<p>
A video conferencing application where participants create profiles and rank one another based on mutual interests. Implemented with Django in the backend, integrating the Twilio video conferencing API, and a React frontend. Websocket communication via django channels.
</p>
<div class="project-stack">
Full-stack web development, react, django, webrtc, websockets, devops
</div>
<a class="align-self-center align-self-lg-start" href="https://zohuddle.monadical.io/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
<div id="solana-project" class="row project-row flex-column-reverse flex-lg-row">
<div class="project-text col-12 col-lg-5 pr-lg-5">
<div class="project-title">Solana</div>
<div class="subtitle">The fastest blockchain in the world and the fastest growing ecosystem in crypto.</div>
<p>
Solana is a fast, secure, and censorship-resistant blockchain providing the open infrastructure required for global adoption. Work includes frontend for Swap protocol, lending protocol and NFT marketplace (Metaplex)
</p>
<div class="project-stack">
solana web3, metaplex, rust, python, nextjs, devops, gemfarm
</div>
<a class="align-self-center align-self-lg-start" href="https://solana.com/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/solana-page.png" class="project-img" alt="A screenshot Solana page" />
</div>
</div>
<div id="opensea-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/opensea-page.png" class="project-img" alt="A screenshot OpenSea page" />
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">OpenSea</div>
<div class="subtitle">The world's first and largest NFT marketplace</div>
<p>
OpenSea integrated the Solana NFTs into their platform. We helped build and design the ETL infrastructure code to ingest the NFTs, watch for updates, the testing infrastructure and interaction with the different onchain programs(contracts)
</p>
<div class="project-stack">
solana web3, rust, python, nextjs, devops
</div>
<a class="align-self-center align-self-lg-start" href="https://opensea.io/explore-solana" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
<div id="currents-fm-project" class="row project-row flex-column-reverse flex-lg-row">
<div class="project-text col-12 col-lg-5 pr-lg-5">
<div class="project-title">Currents.fm</div>
<div class="subtitle">Music streaming and federated royalty distribution platform</div>
<p>
A novel music distribution platform placing the emphasis on playlist curation, seeking to disrupt the music industry with a federating monetization model in which users sponsor curators who distribute funds among artists they choose.
</p>
<div class="project-stack">
NodeJS backend, React MobX (javascript) frontend, social media, payments, audio streaming
</div>
<a class="align-self-center align-self-lg-start" href="https://a.currents.fm/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/currents.png" class="project-img" alt="A partial screenshot from currents.fm homepage focused on the title and subtitle, which read ‘Currents is a playlist platform that directly supports the music community. Get a personal space to publish music lists to fans and subscribers via web and email. Keep it free or accept tips from subscribers to directly support your work.’" />
</div>
</div>
<div id="syncroplicity-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/img-cases-001.png" class="project-img" alt="A screenshot showing a patient profile filled with test data being updated in Syncroplicity." />
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">Syncroplicity</div>
<div class="subtitle">Medical data sync and BI platform</div>
<p>
An API-agnostic medical record syncing platform, designed to eliminate double entry by linking EHRs, doctors, authorization departments, insurance companies, etc.
</p>
<div class="project-stack">
Data engineering, data hygiene, Django (python) backend, React Redux(javascript) frontend, API integration, HIPAA compliant, security
</div>
<a class="align-self-center align-self-lg-start" href="https://syncroplicity.com/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
<div id="neurocaas-project" class="row project-row flex-column-reverse flex-lg-row">
<div class="project-text col-12 col-lg-5 pr-lg-5">
<div class="project-title">NeuroCAAS</div>
<div class="subtitle">Drag-and-drop data analysis platform for neuroscience</div>
<p>
An open-source scientific tool that uses cloud resources to run powerful modern data analyses. NeuroCAAS packages these analyses into portable blueprints, which can then be deployed to analyze data on demand and automatically. Analyzing data with NeuroCAAS does not require any hardware purchases, installation, or dependency management.
</p>
<div class="project-stack">
Django, python, bash, devops
</div>
<a class="align-self-center align-self-lg-start" href="http://neurocaas.com/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
<div class="img-wrapper img-wrapper-scaled col-12 col-lg-7">
<img src="/static/core/img/neuroCAAS-example.png" class="project-img project-img-scaled" alt="A diagram that outlines the user and NeuroCAAS workflows, and their interactions with one another. Having logged into the NeuroCAAS website, a user can select an algorithm, review or modify parameters, and choose or upload datasets. NeuroCAAS then loads the blueprints, allowing for on-demand deployment. NeuroCASS analyses the user-provided data sets in an immutable environment and allows for instant infrastructure scaling. The user is provided with live job status logging and automatic result delivery." />
</div>
</div>
<div id="oddslingers-poker-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/img-cases-002.png" class="project-img" alt="A hand of poker being played on OddSlingers. There are 3 players, Nanonapoleon, Rom Jeremy, and DLL cool J. The flop shows king of diamonds, jack of hearts, three of spades. There is $24 in the pot. The dealer button is on Nanonapoleon. Rom Jeremy just checked, DLL cool J is next to act." />
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">OddSlingers Poker</div>
<div class="subtitle">Modern, performant in-browser online poker platform</div>
<p>
A modern take on the aging online poker platform offering new game variants and ad-free online games for desktop and mobile. Leverages bleeding edge technology including a custom library that handles functional reactive front-end animations, an in-house system for time travel debugging and introspection, and MOVE-like architecture
</p>
<div class="project-stack">
MOVE architecture, event-stream architecture, time-travel debugging, pure-functional code, functional reactive animations, Django (python), backend, React (javascript) frontend, mobile, security
</div>
<a class="align-self-center align-self-lg-start" href="https://oddslingers.com" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
<div id="resero-analytics-project" class="row project-row flex-column-reverse flex-lg-row">
<div class="project-text col-12 col-lg-5 pr-lg-5">
<div class="project-title">Resero Analytics</div>
<div class="subtitle">Toxicology study analysis and reporting platform</div>
<p>
A statistical colletion, analysis, and reporting toolkit for large-scale toxicology studies.
</p>
<div class="project-stack">
Data science, data engineering, Pandas, data hygiene, Django (python) backend
</div>
<a class="align-self-center align-self-lg-start" href="https://reseroanalytics.com/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/resero-example.png" class="project-img" alt="A screenshot of the Resero Analytics homepage. The featured text reads ‘Resero increases the quality and speed of toxicology data interpretation and reporting. Unlock your data. Resero Analytics — data, analytics, reporting.’ The text is followed by a prominent Contact Us button" />
</div>
</div>
<div id="nwb-project" class="row project-row">
<div class="img-wrapper col-12 col-lg-7">
<img src="/static/core/img/buffalo_screenshot.png" class="project-img" alt="A 3D visualization of the paths of an array of electrodes moving through the subject's brain towards the hippocampus" />
</div>
<div class="project-text col-12 col-lg-5 pl-lg-5">
<div class="project-title">Neurodata Without Borders</div>
<div class="subtitle">Data standard for neurophysiology</div>
<p>
NWB provides neuroscientists with a common standard to share, archive, use, and build analysis tools for neurophysiology data. This project involved extending the Alyx database for primate-based neuroscience research.
</p>
<div class="project-stack">
Python, Jupyter Notebook, Apache Superset
</div>
<a class="align-self-center align-self-lg-start" href="https://www.nwb.org/" target="_blank">
<button class="btn btn-info-inverse">Learn more</button>
</a>
</div>
</div>
</div>
<!------------ Crypto ------------>
<div id="crypto-header" class="container-fluid portfolio-container" >
<div class="row">
<!--subtitle-->
<div class="col-12 text-center project-title">NFT launches</div>
</div>
<div id="crypto" class="container portfolio-container" >
<!-- crypto cards -->
<div class="row d-flex justify-content-center">
<div class="col-md-4 col-10 my-3">
<a href="https://blockasset.co/" target="_blank">
<div class="card">
<div class="card-img-top">
<img
src="/static/core/img/img-portfolio-blockasset-4x-extended.png"
aria-hidden="true"
/>
</div>
<div class="card-link">
<a href="https://blockasset.co/" target="_blank">Blockasset</a>
</div>
</div>
</a>
</div>
<div class="col-md-4 col-10 my-3">
<a href="https://www.immutableimage.com/" target="_blank">
<div class="card">
<div class="card-img-top">
<img
src="/static/core/img/img-portfolio-inmmutable-4x.png"
aria-hidden="true"
/>
</div>
<div class="card-link">
<a href="https://www.immutableimage.com/" target="_blank">ImmutableImage</a>
</div>
</div>
</a>
</div>
<div class="col-md-4 col-10 my-3">
<a href="https://oddkey.com/" target="_blank">
<div class="card">
<div class="card-img-top">
<img
src="/static/core/img/img-portfolio-oddkey-4x-extended.png"
aria-hidden="true"
/>
</div>
<div class="card-link">
<a href="https://oddkey.com/" target="_blank">Oddkey</a>
</div>
</div>
</a>
</div>
<div class="col-md-4 col-10 my-3">
<a href="https://streetdreamscafe.com/" target="_blank">
<div class="card">
<div class="card-img-top">
<img
src="/static/core/img/img-portfolio-sdcafe-4x.png"
aria-hidden="true"
/>
</div>
<div class="card-link">
<a href="https://streetdreamscafe.com/" target="_blank">StreetDreamsCafe</a>
</div>
</div>
</a>
</div>
<div class="col-md-4 col-10 my-3">
<a href="https://samuraiarmy.com/" target="_blank">
<div class="card">
<div class="card-img-top">
<img
src="/static/core/img/img-portfolio-samurayarmy-4x-extended.png"
aria-hidden="true"
/>
</div>
<div class="card-link">
<a href="https://samuraiarmy.com/" target="_blank">SamuraiArmy</a>
</div>
</div>
</a>
</div>
</div>
</div>
<!------------ Open Source Work ------------>
<div id="opensource-projects-header" class="container-fluid portfolio-container">
<div class="row flex-column bg-transparent">
<!-- title -->
<div class="section-title col-12">Open Source Work</div>
<div class="main-image-wrapper-2">
<img
src="/static/core/img/img-portfolio-octopus-laptop.png"
class="main-image-2"
alt="Monadical's octopus mascot typing in a laptop."
/>
<img
src="/static/core/img/img-portfolio-cloud-right-2.png"
class="main-image-5"
alt="Monadical cloud"
/>
</div>
<img
src="/static/core/img/img-portfolio-cloud-right-2.png"
class="main-image-6"
alt="Monadical cloud"
/>
<img
src="/static/core/img/img-portfolio-cube-left-full.png"
class="main-image-7"
alt="Background cube left"
/>
</div>
</div>
<div id="opensource-projects" class="container portfolio-container">
<div id="state-sync-oss" class="row project-row">
<div class="img-wrapper col-12 col-md-7">
<img
src="/static/core/img/redux-time-example2.png"
class="project-img"
alt="A screenshot of a snippet of Redux Time’s documentation. The image representing the project shows the stages of a jump animation using a posed stick person on a height-over-time graph."
/>
</div>
<div class="project-text col-12 col-md-5 pl-md-5">
<div class="subtitle">Real-time state syncronization and animations</div>
<ul>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/redux-time">redux-time</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/inferno-redux-time">inferno-redux-time</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/warped-time">warped-time</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/netviz">netviz</a>
</li>
</ul>
</div>
</div>
<div id="python-django-oss" class="row project-row flex-column-reverse flex-md-row">
<div class="project-text col-12 col-md-5 pr-md-5">
<div class="subtitle">Django and Python packages released on PyPI</div>
<ul>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/django-http2-middleware">django-http2-middleware</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/django-channels-router">django-channels-router</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/mesh-networking">mesh-networking</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/gzint">gzint</a>
</li>
</ul>
</div>
<div class="img-wrapper col-12 col-md-7">
<img
src="/static/core/img/packages-example.png"
class="project-img"
alt="The Python Package Index page for mesh-networking 0.06. The project description reads ‘This library helps you test large networks of nodes across physical and simulated links."
/>
</div>
</div>
<div id="archiving-oss" class="row project-row">
<div class="img-wrapper col-12 col-md-7">
<img
src="/static/core/img/archive-box-example2.png"
class="project-img"
alt="A screenshot of the ArchiveBox homepage. The featured text reads ‘ARCHIVEBOX — Open source, self-hosted web archiving. Takes URLs, browser history, bookmarks, Pocket, Pinboard, etc., saves HTML, JS, PDFs, media, and more.’"
/>
</div>
<div class="project-text col-12 col-md-5 pl-md-5">
<div class="subtitle">Archiving and digital preservation</div>
<ul>
<li>
<a class="col-6 col-md-12" href="https://archivebox.io/">ArchiveBox</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/pirate/wikipedia-mirror">wikipedia-mirror</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/ArchiveBox/good-karma-kit">good-karma-kit</a>
</li>
</ul>
</div>
</div>
<div id="mesh-networking-oss" class="row project-row flex-column-reverse flex-md-row">
<div class="project-text col-12 col-md-5 pr-md-5">
<div class="subtitle">Mesh networking and security</div>
<ul>
<li>
<a class="col-6 col-md-12" href="https://monadical-sas.github.io/solana-dns/">solana-dns</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/pirate/wireguard-docs">wireguard-docs</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/mesh-networking">mesh-networking</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/security-growler">security-growler</a>
</li>
</ul>
</div>
<div class="img-wrapper col-12 col-md-7">
<img
src="/static/core/img/wire-guard-example.png"
class="project-img"
alt="Screenshot of the unofficial WireGuard documentation header, which credits the contributors to the WireGuard project and introduces the document as an ‘unofficial attempt at providing more comprehensive documentation, API references, and examples’"
/>
</div>
</div>
<div id="devops-oss" class="row project-row">
<div class="img-wrapper col-12 col-md-7">
<img
src="/static/core/img/zervice-example.png"
class="project-img"
alt="Screenshot of the project documentation that highlights the ability to visualize and explore data, or manage and administer the elastic stack."
/>
</div>
<div class="project-text col-12 col-md-5 pl-md-5">
<div class="subtitle">Devops deployment templates and utilities</div>
<ul>
<li>
<a class="col-6 col-md-12" href="https://github.com/Monadical-SAS/zervice.elk">zervice.elk</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/pirate/fish-utils">fish-functions</a>
</li>
<li>
<a class="col-6 col-md-12" href="https://github.com/pirate/bash-utils">bash-utils</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!------------ Writing & Talks ------------>
<div id="writing-and-talks" class="container-fluid portfolio-container">
<!-- title -->
<div class="row flex-column">
<div class="section-title col-12">Some of Our Writing & Talks</div>
<div class="main-image-talks-wrapper">
<img
src="/static/core/img/img-portfolio-tentacles-with-pens.png"
class="main-image-talks-1"
alt="Monadical's octopus mascot using pens."
/>
<img
src="/static/core/img/img-portfolio-cube-center.png"
class="main-image-talks-2"
alt="cube on the right."
/>
<img
src="/static/core/img/img-portfolio-cloud-2.png"
class="main-image-talks-3"
alt="Monadical's cloud left."
/>
</div>
<div class="col-12 text-center subtitle">Conference Talks</div>
</div>
<div id="writing-and-talks" class="container portfolio-container">
<!-- conference talks (md+) -->
<div class="row image-row d-none d-md-flex">
<div class="col-12 col-md-4">
<div class="text-center card">
<img
src="/static/core/img/img-portfolio-010.png"
alt="The cover of a talk titled 'Archiving the internet before it rots away' by Nick Sweeting, given at PyCon Columbia, 2020"
/>
<a href="https://www.youtube.com/watch?v=LZ7TNQjG74g" class="card-title my-3">Archiving the internet before it rots away</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="text-center card">
<img
src="/static/core/img/img-portfolio-011.png"
alt="The cover of a talk titled 'How I learned to stop worrying and love Atomic() - Database Integrity Fundamentals in Django' by Nick Sweeting"
/>
<a href="https://www.youtube.com/watch?v=VJSznZMvA1M" class="card-title my-3">Concurrent banking systems</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="text-center card">
<img
src="/static/core/img/img-portfolio-009.png"
alt="A screenshot from Monadical's 2020 PyCon.co coding challenge. Problem 1 involves sending vehicles and passengers from Bogotá to Medellin in the most efficient way possible. Problem 2 involves decoding secret messages."
/>
<a href="https://docs.monadical.com/s/pycon-puzzle" class="card-title my-3">PyCon.CO 2020 coding challenge</a>
</div>
</div>
</div>
<!-- conference talks (mobile) -->
<div id="talks-carousel" class="carousel slide d-md-none" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#talks-carousel" data-slide-to="0" class="rounded-circle active"></li>
<li data-target="#talks-carousel" data-slide-to="1" class="rounded-circle"></li>
<li data-target="#talks-carousel" data-slide-to="2" class="rounded-circle"></li>
</ol>
<div class=carousel-inner>
<div class="carousel-item active">
<div class="text-center card">
<img src="/static/core/img/img-portfolio-010.png" alt="The cover of a talk titled 'Archiving the internet before it rots away' by Nick Sweeting, given at PyCon Columbia, 2020" />
<a href="https://www.youtube.com/watch?v=LZ7TNQjG74g" class="card-title my-3">Archiving the internet before it rots away</a>
</div>
</div>
<div class="carousel-item">
<div class="text-center card">
<img src="/static/core/img/img-portfolio-011.png" alt="The cover of a talk titled 'How I learned to stop worrying and love Atomic() - Database Integrity Fundamentals in Django' by Nick Sweeting" />
<a href="https://www.youtube.com/watch?v=VJSznZMvA1M" class="card-title my-3">Concurrent banking systems</a>
</div>
</div>
<div class="carousel-item">
<div class="text-center card">
<img src="/static/core/img/img-portfolio-009.png" alt="A screenshot from Monadical's 2020 PyCon.co coding challenge. Problem 1 involves sending vehicles and passengers from Bogotá to Medellin in the most efficient way possible. Problem 2 involves decoding secret messages." />
<a href="https://docs.monadical.com/s/pycon-puzzle" class="card-title my-3">PyCon.CO 2020 coding challenge</a>
</div>
</div>
</div>
</div>
<!-- blog posts -->
<div class="row">
<div class="col-12 text-center subtitle">Technical & Non-Technical Blog Posts</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/drone-web-platform.html">Drone Web Platform</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/Trustless-is-A-Myth.html">The Myth of Trustlessness</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/Downswings-and-the-Information-Game.html">Feedback Game Theory</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/security-breach-response-guidelines.html">Our Breach Response Guidelines</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/full-stack-developer-checklist.html">Full-Stack Engineering Checklist</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/set-up-ci-workflow.html">Our Approach to DevOps</a>
</div>
</div>
<div class="col-12 col-md-4">
<div class="blog-capsule">
<a href="https://monadical.com/posts/human-systems.html">All Systems are Human Systems</a>
</div>
</div>
<div class="col-12 col-md-4">