-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontent.json
2619 lines (2619 loc) · 90.6 KB
/
content.json
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
{
"SITE_TITLE": "Monadical Consulting",
"SITE_DESCRIPTION": "Monadical is a full-stack software development consultancy. We specialize in full-stack web development and custom software solutions.",
"SITE_IMG": "https://monadical.com/static/core/img/og.jpg",
"SITE_TYPE": "website",
"SITE_DOMAIN": "monadical.com",
"PAGES": {
"index": {
"title": "Home",
"url": "/index.html",
"template": "index.html"
},
"about": {
"title": "About",
"url": "/about.html",
"template": "about.html"
},
"blog": {
"title": "Insights",
"url": "/blog.html",
"template": "blog.html"
},
"team": {
"title": "Team",
"url": "/team.html",
"template": "team.html"
},
"sales": {
"title": "Sales",
"url": "/sales.html",
"template": "sales.html"
},
"services": {
"title": "Web Dev",
"url": "/services.html",
"template": "services.html"
},
"ai-services": {
"title": "AI",
"url": "/ai-services.html",
"template": "ai-services.html"
},
"projects": {
"title": "Projects",
"url": "/projects.html",
"template": "projects.html"
},
"contact": {
"title": "Contact us",
"url": "/contact-us.html",
"template": "contact-us.html"
},
"portfolio": {
"title": "Portfolio",
"url": "/portfolio.html",
"template": "portfolio.html"
},
"principles": {
"title": "Principles",
"url": "/principles.html",
"template": "posts/principles-handbook.html"
},
"yak": {
"title": "Lightning Yak",
"url": "/yak.html",
"template": "yak.html"
},
"jasette": {
"title": "Jasette Éclair",
"url": "/jasette.html",
"template": "jasette.html"
},
"privacy": {
"title": "Privacy",
"url": "/privacy.html",
"template": "privacy.html"
}
},
"POSTS": {
"so-you-want-to-build-a-social-network": {
"title": "So you want to build a social network?",
"description": "Here's what I've discovered about how online communities build trust or don't.",
"date": "2024-12-03",
"img": "/static/social.png",
"tags": [
"Social Networks",
"Group Dynamics",
"Diversity and Conflict",
"Reputation Systems",
"Social dynamics"
],
"length": "30 min read",
"source": "https://docs.monadical.com/s/so-you-want-to-build-a-social-network",
"url": "/posts/so-you-want-to-build-a-social-network.html",
"template": "so-you-want-to-build-a-social-network.html",
"authors": [
{
"name": "Nick Sweeting",
"title": "Co-Founder",
"handle": "@theSquashSH",
"url": "https://twitter.com/theSquashSH",
"image": "/static/nick.jpg"
}
]
},
"mastering-project-estimation": {
"title": "Mastering Project Estimation",
"description": "Strategies for developing a framework around accurate project timeline estimations.",
"date": "2024-11-25",
"img": "/static/mastering.png",
"tags": [
"Project estimation techniques",
"Software project estimation",
"Project timeline estimation",
"Project estimation best practices",
"Team capacity planning"
],
"length": "7 min read",
"source": "https://docs.monadical.com/s/hADf0nyHx",
"url": "/posts/mastering-project-estimation.html",
"template": "mastering-project-estimation.html",
"authors": [
{
"name": "Max",
"title": "Monadical Co-Founder",
"url": "/team.html",
"image": "/static/max.jpg"
}
]
},
"typescript-validators-jamboree": {
"title": "Typescript Validators Jamboree",
"description": "A Fair(ly cruel) Review of Typescript Validation Libraries",
"date": "2024-08-21",
"img": "/static/typescriptvalidators.png",
"tags": [
"typescript",
"validators",
"parsers",
"ajv",
"arktype",
"effect-ts",
"effect-schema",
"rescript-schema",
"superstruct",
"typebox",
"valita",
"valibot",
"yup",
"zod"
],
"length": "28 min read",
"source": "https://docs.monadical.com/s/typescript-validators-jamboree",
"url": "/posts/typescript-validators-jamboree.html",
"template": "typescript-validators-jamboree.html",
"authors": [
{
"name": "Igor Loskutov",
"title": "Monsieur Validateur",
"handle": "@dearlordylord",
"url": "https://github.com/dearlordylord",
"image": "/static/core/img/img-team-037.png"
}
]
},
"if-else-1": {
"title": "Mindfulness in Typescript code branching. Exhaustiveness, pattern matching, and side effects",
"description": "1/2: “Exhaustive absurd”, Or how to if/else",
"date": "2025-01-09",
"img": "/static/ifelse-catdog-splash-2.jpg",
"tags": [
"typescript",
"types",
"branching",
"programming",
"pattern-matching"
],
"length": "5 min read",
"source": "https://docs.monadical.com/s/if-else-1",
"url": "/posts/if-else-1.html",
"template": "if-else-1.html",
"authors": [
{
"name": "Igor Loskutov",
"title": "Senior If/Else Architect",
"handle": "@dearlordylord",
"url": "https://github.com/dearlordylord",
"image": "/static/core/img/img-team-037.png"
}
]
},
"revolutionize-animation": {
"title": "Revolutionize Animation: Build a Digital Human with Large Language Models",
"description": "A Step-by-Step Guide to Creating Your Next AI-Powered Avatar",
"date": "2024-07-02",
"img": "/static/aiavatar.png",
"tags": [
"Digital-Humans",
"Ai-avatars",
"Openai",
"Gpt",
"Llm",
"Langchain",
"Eleven-labs",
"Lips-sync"
],
"length": "60 min read",
"source": "https://docs.monadical.com/s/yVtP8kPst",
"url": "/posts/build-a-digital-human-with-large-language-models.html",
"template": "build-a-digital-human-with-large-language-models.html",
"authors": [
{
"name": "Alejandro Sánchez Yalí",
"title": "Full-stack developer",
"handle": "@asanchezyali",
"url": "https://twitter.com/asanchezyali",
"image": "/static/core/img/img-team-019.png"
}
]
},
"the-essential-guide-to-rays-anatomy": {
"title": "The Essential Guide to Ray.io’s Anatomy",
"description": "A Journey Through Ray’s Capabilities in GPU Management and Scalable AI Development",
"date": "2024-04-29",
"img": "/static/ray-post-cover-image.png",
"tags": [
"Distributed computing",
"Ray.io",
"Machine learning with Ray.io",
"Scalable AI projects",
"Ray.io advantages "
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/rays-anatomy",
"url": "/posts/the-essential-guide-to-rays-anatomy.html",
"template": "the-essential-guide-to-rays-anatomy.html",
"authors": [
{
"name": "Angel Rey",
"title": "Devops & Cloud engineer",
"handle": "@afreydev",
"url": "https://twitter.com/afreydev",
"image": "/static/angel.png"
}
]
},
"reflector-elevate-communication-with-our-real-time-translation-tool": {
"title": "Reflector: Elevate Communication with Our Real-Time Translation Tool",
"description": "Explore Monadical's Open-Source Solution for Online Meetings.",
"date": "2024-04-18",
"img": "/static/re.png",
"tags": [
"real-time",
"speech-to-text (STT)",
"open-source",
"translation solution/tool"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/gSiylu-FN",
"url": "/posts/reflector-elevate-communication-with-our-real-time-translation-tool.html",
"template": "reflector-elevate-communication-with-our-real-time-translation-tool.html",
"authors": [
{
"name": "Gokul Mohanarangan",
"title": "Machine Learning Developer",
"handle": "@leafshikamaru",
"url": "",
"image": "/static/core/img/gokul.png"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"building-a-ticketing-system-with-solana-mobile-and-metaplex-foundation-umi": {
"title": "Building a Ticketing System with Solana Mobile and Metaplex Foundation Umi",
"description": "Learn how to create an NFT-based application on the Solana blockchain.",
"date": "2024-04-15",
"img": "/static/solanaticket.png",
"tags": [
"Solana Mobile Stack",
"Solana blockchain",
"Android",
"NFTs",
"Ticketing systems"
],
"length": "55 min read",
"source": "https://docs.monadical.com/s/9wiX6YBBV",
"url": "/posts/building-a-ticketing-system-with-solana-mobile-and-metaplex-foundation-umi.html",
"template": "building-a-ticketing-system-with-solana-mobile-and-metaplex-foundation-umi.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-stack dev/PM",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
}
]
},
"how-to-build-a-talking-avatar-with-azure-cognitive-langchain-and-openai": {
"title": "Kraken the Code: How to Build a Talking Avatar",
"description": "Create your own conversational avatar with Azure Cognitive, LangChain, and OpenAI.",
"date": "2024-02-19",
"img": "/static/zippyo.png",
"tags": [
"ai avatars",
"azure cognitive services",
"openai",
"gpt",
"tts api",
"llm",
"langchain"
],
"length": "47 min read",
"source": "https://docs.monadical.com/s/talking-avatar",
"url": "/posts/how-to-build-a-talking-avatar-with-azure-cognitive-langchain-and-openai.html",
"template": "posts/how-to-build-a-talking-avatar-with-azure-cognitive-langchain-and-openai.html",
"authors": [
{
"name": "Alejandro Sánchez Yalí",
"title": "Full-stack developer",
"handle": "@asanchezyali",
"url": "https://twitter.com/asanchezyali",
"image": "/static/core/img/img-team-019.png"
}
]
},
"the-ai-evolution-transforming-zulip-bots-part-3": {
"title": "The AI Evolution: Transforming Zulip Bots, Part 3",
"description": "Discover how AI reshapes chat automation in Zulip bots",
"date": "2024-01-31",
"img": "/static/robot7.png",
"tags": [
"LLM",
"Stable Diffusion",
"Hugging Face",
"FastAPI",
"Celery",
"Chatbot"
],
"length": "30 min read",
"source": "https://docs.monadical.com/s/zulip-ai-bot-3",
"url": "/posts/the-ai-evolution-transforming-zulip-bots-part-3.html",
"template": "posts/the-ai-evolution-transforming-zulip-bots-part-3.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-stack dev/PM",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"how-to-make-llms-speak-your-language": {
"title": "How to Make LLMs Speak Your Language",
"description": "A Review of the Top Tools for Generating Structured Output.",
"date": "2023-12-20",
"img": "/static/llms.png",
"tags": [
"llm",
"cfg",
"structured output",
"constrained generation"
],
"length": "25 min read",
"source": "https://docs.monadical.com/s/structured-output-from-LLMs",
"url": "/posts/how-to-make-llms-speak-your-language.html",
"template": "posts/how-to-make-llms-speak-your-language.html",
"authors": [
{
"name": "Michał Flak",
"title": "Full-stack developer",
"handle": "@mflakdev",
"url": "https://github.com/elo-siema",
"image": "/static/core/img/img-team-028.png"
},
{
"name": "JDC",
"title": "Partner",
"handle": "@jdcaballerov",
"url": "",
"image": "/static/core/img/img-team-012.jpg"
}
]
},
"property-based-testing-for-temporal-graph-storage": {
"title": "Property-Based Testing for Temporal Graph Storage",
"description": "A motley of functional techniques to allow isomorphic and deterministic graph generation.",
"date": "2023-12-05",
"img": "/static/goctopus.png",
"tags": [
"nx",
"monorepo",
"monads",
"state monad",
"newtypes",
"fp",
"functional programing",
"typescript",
"event sourcing",
"metadata"
],
"length": "22 min read",
"source": "https://docs.monadical.com/s/deterministic-graph-generation",
"url": "/posts/property-based-testing-for-temporal-graph-storage.html",
"template": "posts/property-based-testing-for-temporal-graph-storage.html",
"authors": [
{
"name": "Igor Loskutov",
"title": "Count Graphula",
"handle": "@dearlordylord",
"url": "https://github.com/dearlordylord",
"image": "/static/core/img/img-team-037.png"
}
]
},
"from-chaos-to-cohesion": {
"title": "From Chaos to Cohesion: Architecting Your Own Monorepo",
"description": "Build a simple monorepo using GitHub Actions as a CI/CD tool.",
"date": "2023-10-23",
"img": "/static/tree.png",
"tags": [
"Monorepos",
"GitHubActions",
"Devops",
"ContinuousIntegration",
"ContinuousDeployment",
"TrunkBasedDevelopment"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/monorepo",
"url": "/posts/from-chaos-to-cohesion.html",
"template": "posts/from-chaos-to-cohesion.html",
"authors": [
{
"name": "Angel Rey",
"title": "Devops, Technology and Innovation",
"handle": "@afreydev",
"url": "https://twitter.com/afreydev",
"image": "/static/angel.png"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"skin-generator-annoucement": {
"title": "Beauty Really Is Skin-Deep?",
"description": "Introducing the Minecraft Skins Generator.",
"date": "2023-10-14",
"img": "/static/skingenerator.png",
"tags": [
"Computer Vision",
"Generative AI",
"Machine Learning",
"Deep Learning",
"FastAPI",
"Minecraft",
"Stable Diffusion"
],
"length": "3 min read",
"source": "https://docs.monadical.com/s/mc-skin-generator",
"url": "/posts/minecraft-skingenerator-announcement.html",
"template": "posts/minecraft-skingenerator-announcement.html",
"authors": [
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"morpheus-announcement": {
"title": "Morpheus: A Dream Machine for AI Art Generation",
"description": "Giving you the power to create stunning and beautiful generative art.",
"date": "2023-09-26",
"img": "/static/morpheus.png",
"tags": [
"AIart",
"Generative Art",
"Machine Learning",
"Stable Diffusion"
],
"length": "8 min read",
"source": "https://docs.monadical.com/s/morpheus",
"url": "/posts/morpheus-announcement.html",
"template": "posts/morpheus-announcement.html",
"authors": [
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"zulip-ai-bot-2": {
"title": "Integrating AI Models into Zulip Chatbots Using FastAPI: Part 2",
"description": "Learn how to use N-tier architecture and FastAPI to build a scalable Zulip bot that can retrieve messages, links, and images from Zulip streams and topics.",
"date": "2023-08-09",
"img": "/static/zulip-ai-bot-2.png",
"tags": [
"Zulip",
"OOP",
"Bots",
"FastAPI",
"N-tiers"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/zulip-bot-pt2",
"url": "/posts/zulip-ai-bot-2.html",
"template": "posts/zulip-ai-bot-2.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-stack dev/PM",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
},
{
"name": "Cesar Uribe",
"title": "Full-stack developer",
"handle": "@curibe",
"url": "https://github.com/curibe",
"image": "/static/core/img/img-team-020.png"
}
]
},
"minecraft-skins-part2": {
"title": "Digging Deeper Into Minecraft Skin Generation",
"description": "Learn how to generate custom Minecraft skins from text prompts using a Stable Diffusion model.",
"date": "2023-07-25",
"img": "/static/minecraft-skins-part2.png",
"tags": [
"Minecraft",
"StableDiffusion",
"AI",
"CustomSkins",
"GenerativeModels"
],
"length": "10 min read",
"source": "https://docs.monadical.com/s/minecraft-skins-part2",
"url": "/posts/minecraft-skins-part2.html",
"template": "posts/minecraft-skins-part2.html",
"authors": [
{
"name": "Cory Spencer",
"title": "",
"handle": "@cspencer",
"url": "",
"image": "/static/core/img/img-home-001.png"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"mincraft-skin-generation": {
"title": "Digging into Stable Diffusion-Generated Minecraft Skins",
"description": "Fine-tune a Stable Diffusion model on a Minecraft dataset and create custom Minecraft-style characters using text prompts.",
"date": "2023-06-27",
"img": "/static/mincraft-skin-generation.jpg",
"tags": [
"Minecraft",
"StableDiffusion",
"AI",
"CustomSkins",
"GenerativeModels"
],
"length": "10 min read",
"source": "https://docs.monadical.com/s/minecraft-skins-part-one",
"url": "/posts/mincraft-skin-generation.html",
"template": "posts/mincraft-skin-generation.html",
"authors": [
{
"name": "Cory Spencer",
"title": "Monadical",
"handle": "@cspencer",
"url": "",
"image": "/static/core/img/img-home-001.png"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"demystifying-databases": {
"title": "Demystifying Databases: Cracking the Code of Efficient Data Storage",
"description": "Unlock the power of data with comprehensive insights and practical guidance on selecting the ideal database for your projects, from relational databases to cutting-edge blockchain technologies.",
"date": "2023-05-30",
"img": "/static/demystifying-databases.jpeg",
"tags": [
"Database",
"DatabaseParadigms",
"DatabaseDesign",
"Relational",
"TimeSeries",
"Blockchain",
"Queue",
"Document"
],
"length": "14 min read",
"source": "https://docs.monadical.com/s/demystifying-databases",
"url": "/posts/demystifying-databases.html",
"template": "posts/demystifying-databases.html",
"authors": [
{
"name": "Jose Benitez",
"title": "Web developer",
"handle": "@yojosebenitez",
"url": "https://twitter.com/yojosebenitez",
"image": "/static/jose.jpg"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"fine-tune-or-not-llm-ai-business-transformation": {
"title": "To Fine-Tune or Not Fine-Tune: Large Language Models for AI-Driven Business Transformation",
"description": "Discover the transformative power of LLMs for your business in our comprehensive roadmap, from their origins to the training processes, safety considerations, and current trends. ",
"date": "2023-05-18",
"img": "/static/fine-tune-or-not-llm-ai-business-transformation.jpg",
"tags": [
"LargeLanguageModels",
"LLMs",
"NLP",
"NaturalLanguageProcessing",
"BusinessTransformation",
"Productivity",
"Business"
],
"length": "16 min read",
"source": "https://docs.monadical.com/s/LLMs",
"url": "/posts/fine-tune-or-not-llm-ai-business-transformation.html",
"template": "posts/fine-tune-or-not-llm-ai-business-transformation.html",
"authors": [
{
"name": "JDC",
"title": "Partner",
"handle": "@jdcaballerov",
"url": "",
"image": "/static/core/img/img-team-012.jpg"
},
{
"name": "Hanna Jodrey",
"title": "Writer",
"handle": "@hannashoshana",
"url": "https://www.linkedin.com/in/hanna-r-jodrey-956721ab/",
"image": "/static/core/img/hanna.png"
}
]
},
"shades-of-rust-gui-library-list": {
"title": "50 Shades of Rust, or emerging Rust GUIs in a WASM world",
"description": "An overview of Rust GUI libraries and frameworks, focused on WASM. Discover the latest GUI toolkit options for Rust, increase your programming skills, and create efficient WebAssembly bundles that will help you build comprehensive applications.",
"date": "2023-04-26",
"img": "/static/shades-of-rust-gui-library-list.jpg",
"tags": [
"rust",
"gui",
"ui",
"wasm",
"wgpu",
"WebGPU",
"tauri",
"dioxus",
"xilem",
"elm",
"react",
"sycamore",
"yew",
"leptos"
],
"length": "11 min read",
"source": "https://docs.monadical.com/s/shades-of-rust-gui-library-list",
"url": "/posts/shades-of-rust-gui-library-list.html",
"template": "posts/shades-of-rust-gui-library-list.html",
"authors": [
{
"name": "Igor Loskutov",
"title": "Crabber",
"handle": "@dearlordylord",
"url": "https://github.com/dearlordylord",
"image": "/static/core/img/img-team-037.png"
}
]
},
"filters-github-actions": {
"title": "Filters with Github Actions",
"description": "In this tutorial, you will learn how to implement your version of [skip ci] of GitHub Actions to control when executing a workflow or jobs.",
"date": "2023-04-04",
"img": "/static/filters-github-actions.png",
"tags": [
"Github",
"GithubActions",
"skipci",
"customfilters",
"workflows",
"jobs"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/filters-github-actions-workflow",
"url": "/posts/filters-github-actions.html",
"template": "posts/filters-github-actions.html",
"authors": [
{
"name": "Cesar Alfredo Uribe Leon",
"title": "Monadical",
"handle": "@curibe",
"url": "https://github.com/curibe",
"image": "/static/core/img/img-team-020.png"
}
]
},
"zulip-ia-bot-1": {
"title": "Integrating AI models into Zulip bots using FastAPI: Part 1",
"description": "Artificial intelligence is a powerful tool for automating tasks and improving the efficiency of your business. In this series, we'll explore how to integrate AI models into Zulip bots using FastAPI.",
"date": "2023-01-31",
"img": "/static/zulip-ia-bot-1.jpeg",
"tags": [
"RPA",
"Bots",
"Zulip",
"FastAPI"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/vlbu-RcwA",
"url": "/posts/zulip-ia-bot-1.html",
"template": "posts/zulip-ia-bot-1.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-stack dev/PM",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
},
{
"name": "Cesar Uribe",
"title": "Full-stack developer",
"handle": "@curibe",
"url": "https://github.com/curibe",
"image": "/static/core/img/img-team-020.png"
}
]
},
"strategy-backtracking-using-python-generators": {
"title": "A pattern for strategy backtracking using Python generators",
"description": "While fixing a bug that was affecting an ETL pipeline, we found a clean and simple pattern for strategy backtracking using Python Generators and generator expressions.",
"date": "2022-10-25",
"img": "/static/strategy-backtracking-using-python-generators.jpg",
"tags": [
"python",
"backtracking",
"ETL pipeline",
"generators",
"generator expressions"
],
"length": "6 min read",
"source": "https://docs.monadical.com/s/F9szicbHq",
"url": "/posts/strategy-backtracking-using-python-generators.html",
"template": "posts/strategy-backtracking-using-python-generators.html",
"authors": [
{
"name": "Juan Diego Caballero",
"title": "Full-stack dev/PM",
"handle": "@jdcaballerov",
"url": "https://github.com/jdcaballerov",
"image": "/static/core/img/img-team-012.jpg"
}
]
},
"minting-nft-solana-mobile": {
"title": "How to mint NFTs using Solana’s mobile wallet adapter",
"description": "React Native is a powerful tool for developing mobile apps that make use of Solana’s mobile wallet adapter. Here’s how to use the tech to mint an NFT.",
"date": "2022-10-19",
"img": "/static/minting-nft-solana-mobile.jpg",
"tags": [
"solana mobile",
"candy machine",
"secure element",
"mobile wallet adapter",
"android",
"react native",
"nft"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/-P2XrryNb",
"url": "/posts/minting-nft-solana-mobile.html",
"template": "posts/minting-nft-solana-mobile.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-stack dev",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
},
{
"name": "Jose Benitez",
"title": "Full-stack dev",
"handle": "@josezy",
"url": "https://github.com/josezy",
"image": "/static/core/img/img-team-005.jpg"
}
]
},
"modular-arithmetic": {
"title": "How to build a modular arithmetic library in Python",
"description": "In this tutorial, we're going to learn how to create a library for modular arithmetic, using operator overloading and redefining the built-in functions for NumPy.",
"date": "2022-10-05",
"img": "/static/modular-arithmetic.jpg",
"tags": [
"python",
"operator overloading",
"numpy",
"numpy ufuncs",
"modular arithmetic",
"lights out game"
],
"length": "18 min read",
"source": "https://docs.monadical.com/s/asanchezyali-modular-arithmetic",
"url": "/posts/modular-arithmetic.html",
"template": "posts/modular-arithmetic.html",
"authors": [
{
"name": "Alejandro Sánchez Yalí",
"title": "Full-stack developer",
"handle": "@asanchezyali",
"url": "https://twitter.com/asanchezyali",
"image": "/static/core/img/img-team-019.png"
}
]
},
"ramping-up-solana-phone": {
"title": "Ramping up on Solana Phone: Crypto for mobile",
"description": "The upcoming launch of Solana Mobile has a lot of us intrigued! We run you through what this new tech is and how to get set up.",
"date": "2022-09-06",
"img": "/static/ramping-up-solana-phone.jpg",
"tags": [
"solana",
"mobile",
"sms",
"saga",
"web3",
"NFT",
"crypto"
],
"length": "13 min read",
"source": "https://docs.monadical.com/s/_XrJlS31G",
"url": "/posts/ramping-up-solana-phone.html",
"template": "posts/ramping-up-solana-phone.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-Stack Dev",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
},
{
"name": "Jose Benitez",
"title": "Full-Stack Dev",
"handle": "@yojosebenitez",
"url": "https://twitter.com/yojosebenitez",
"image": "/static/core/img/img-team-005.jpg"
}
]
},
"blog-ideas-for-developers": {
"title": "How to get blog post ideas as a developer",
"description": "Whenever I hit writer’s block, I explore these four areas. They’ve never failed to help me find ideas for my next article.",
"date": "2022-08-31",
"img": "/static/blog-ideas-for-developers.jpg",
"tags": [
"blog",
"ideas",
"dev"
],
"length": "7 min read",
"source": "https://docs.monadical.com/s/blog-ideas-for-developers",
"url": "/posts/blog-ideas-for-developers.html",
"template": "posts/blog-ideas-for-developers.html",
"authors": [
{
"name": "Gourav Goyal",
"title": "Monadical",
"handle": "@gorvgoyl",
"url": "https://gourav.io",
"image": "/static/core/img/gourav_goyal.png"
}
]
},
"python-vs-javascript-dealing-with-the-quirks-of-async-await": {
"title": "Python vs Javascript: Dealing with the quirks of async/await",
"description": "As someone who’s used to implementing asynchronous programming in JS, implementing it in Python came as a surprise. Here’s what I learned.",
"date": "2022-08-22",
"img": "/static/python-vs-javascript-dealing-with-the-quirks-of-async-await.jpg",
"tags": [
"async",
"await",
"python",
"javascript"
],
"length": "8 min read",
"source": "https://docs.monadical.com/s/python-vs-javascript-dealing-with-the-quirks-of-async-await",
"url": "/posts/python-vs-javascript-dealing-with-the-quirks-of-async-await.html",
"template": "posts/python-vs-javascript-dealing-with-the-quirks-of-async-await.html",
"authors": [
{
"name": "Joyce Obi",
"title": "Full-stack developer",
"handle": "@Joyce-O",
"url": "https://github.com/Joyce-O",
"image": "/static/core/img/img-team-035.png"
}
]
},
"fastapi-for-functions": {
"title": "Building a FastAPI Server to Evaluate Mathematical Functions",
"description": "We make an already-powerful program for plotting mathematical functions even better using three steps.",
"date": "2022-08-04",
"img": "/static/fastapi-for-functions.jpg",
"tags": [
"fastapi",
"python",
"OOP",
"graphs"
],
"length": "15 min read",
"source": "https://docs.monadical.com/s/wqw5tNyjz",
"url": "/posts/fastapi-for-functions.html",
"template": "posts/fastapi-for-functions.html",
"authors": [
{
"name": "Juan David Arias",
"title": "Full-stack developer",
"handle": "@juanArias8",
"url": "https://github.com/juanArias8",
"image": "/static/core/img/img-team-022.png"
}
]
},
"math-matching": {
"title": "How math makes matches meaningful",
"description": "In this blog, we show you how finding the right algorithm can make the difference when it comes to creating meaningful, professional connections virtually.",
"date": "2022-07-18",
"img": "/static/math-matching.jpg",
"tags": [
"algorithm",
"gale-shapley matching",
"rank matching",
"networking"
],
"length": "10 min read",
"source": "https://docs.monadical.com/s/mathmatching",
"url": "/posts/math-matching.html",
"template": "posts/math-matching.html",
"authors": [
{
"name": "Ben Dichter",
"title": "CatalystNeuro",
"handle": "@bendichter",
"url": "https://github.com/bendichter",
"image": "/static/core/img/ben.png"
},