-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathblog.html
More file actions
2490 lines (2008 loc) Β· 125 KB
/
blog.html
File metadata and controls
2490 lines (2008 loc) Β· 125 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>Insights | Monadical</title>
<!-- Meta Tags Start -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Insights | Monadical">
<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="Insights | Monadical">
<meta property="og:type" content="website">
<meta property="og:url" content=https://monadical.com/blog.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="Insights | Monadical">
<meta property="twitter:url" content=https://monadical.com/blog.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/blog.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/insights.css">
<script src="/static/core/js/newsletter.js" defer></script>
<script src="/static/core/js/insights.js" defer></script>
</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 "
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 active"
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">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h1 class="insights-title">Insights from the Monadical Team</h1>
<div class="insights-filters">
<button class="filter-btn active" data-type="article">ARTICLES</button>
<button class="filter-btn" data-type="report">REPORTS</button>
<button class="filter-btn" data-type="webinar">WEBINARS</button>
<button class="filter-btn" data-type="podcast">PODCASTS</button>
<button class="filter-btn" data-type="resource">RESOURCES</button>
<button class="filter-btn" data-type="newsletter">NEWSLETTERS</button>
</div>
</div>
</div>
<!-- Newsletter Signup -->
<div class="newsletter-signup">
<div class="row">
<div class="col-md-6">
<div class="signup-content">
<h3>Our latest thinking on AI, in your inbox.</h3>
<p>Be the most AI-savvy person on your team.<br>
Get the Monadical newsletter and stay up to date.</p>
</div>
</div>
<div class="col-md-6">
<form class="newsletter-form" onsubmit="handleNewsletterSubmit(event)">
<div class="signup-form">
<input type="email" name="email" placeholder="Your Email" required>
<button type="submit" class="subscribe-btn">SUBSCRIBE</button>
</div>
<div class="success-message" style="display: none;">
Thank you for your submission, we will get back to you as soon as possible.
</div>
<small>We don't share your info with anyone, ever.</small>
</form>
</div>
</div>
</div>
<!-- Articles Grid -->
<div class="insights-grid" id="articles-grid">
<div class="insight-card "
data-type="article
">
<a href="/posts/vibe-code-how-to-stay-in-control.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/vibe-code-how-to-stay-in-control-robot-destroying-man-2.png')"></div>
<div class="card-content">
<h2>Vibe code isn't meant to be reviewed *</h2>
<p>How to stay in control of codebase and not lose vibe code productivity boost. Explicit vibe/human code separation through modular approach</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/The-scraping-with-cookies-dilemma.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/archiving.png')"></div>
<div class="card-content">
<h2>The Scraping-With-Cookies Dilemma</h2>
<p>The internet archiving and scraping industries have a growing problem. We don't know how to handle cookies</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/conversations-are-the-new-oil.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/oil.png')"></div>
<div class="card-content">
<h2>Conversations are the New Oil</h2>
<p>Strategic considerations for protecting communication assets through systematic safeguards.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="webinar
">
<a href="/webinars/building-ai-powered-operational-assistants.html" class="card-link">
<div class="content-type">
WEBINAR
</div>
<div class="card-image" style="background-image: url('/static/webinar_slides/ai-assistants.png')"></div>
<div class="card-content">
<h2>Building AI-Powered Operational Assistants</h2>
<p>From Simple Automation to Strategic Implementation</p>
<div class="card-action">
<button class="action-btn">WATCH WEBINAR REPLAY β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/if-else-1.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/else.png')"></div>
<div class="card-content">
<h2>Mindfulness in Typescript code branching. Exhaustiveness, pattern matching, and side effects</h2>
<p>1/2: βExhaustive absurdβ, Or how to if/else</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/don't-give-big-tech-your-papaya.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/papayaya.png')"></div>
<div class="card-content">
<h2>Don't Give Big Tech Your Papaya</h2>
<p>A strategic guide on how to avoid becoming beholden to big tech while still reaping the benefits</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/so-you-want-to-build-a-social-network.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/network.png')"></div>
<div class="card-content">
<h2>So you want to build a social network?</h2>
<p>Here's what I've discovered about how online communities build trust or don't.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/mastering-project-estimation.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/projectm.png')"></div>
<div class="card-content">
<h2>Mastering Project Estimation</h2>
<p>Strategies for developing a framework around accurate project timeline estimations.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/typescript-validators-jamboree.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/typescriptvalidators.png')"></div>
<div class="card-content">
<h2>Typescript Validators Jamboree</h2>
<p>A Fair(ly cruel) Review of Typescript Validation Libraries</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/build-a-digital-human-with-large-language-models.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/aiavatar.png')"></div>
<div class="card-content">
<h2>Revolutionize Animation: Build a Digital Human with Large Language Models</h2>
<p>A Step-by-Step Guide to Creating Your Next AI-Powered Avatar</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="podcast
">
<a href="https://open.spotify.com/episode/0Uuwb38MKt4ec3r06YVXPj?si=69a3e7180a8e4eb0" class="card-link">
<div class="content-type">
PODCAST
</div>
<div class="card-image" style="background-image: url('/static/podcast/paradigmatic.png')"></div>
<div class="card-content">
<h2>Risk and Regulation</h2>
<p>Max McCrea is joined by Stephanie Losi, the founder of Losi Consulting and creator of Risk Musings, to discuss regulation. </p>
<div class="card-action">
<button class="action-btn">LISTEN β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="podcast
">
<a href="https://open.spotify.com/episode/47gL8wGUIOdHQ6CRpjl1eC?si=31b6e1a6e30f4c1c" class="card-link">
<div class="content-type">
PODCAST
</div>
<div class="card-image" style="background-image: url('/static/podcast/paradigmatic.png')"></div>
<div class="card-content">
<h2>Internet Archiving</h2>
<p>Max and Co-Founder Nick discuss their journeys in tech, the transformative power of open-source technology, and the ethical considerations that guide Nick's work in digital archiving.</p>
<div class="card-action">
<button class="action-btn">LISTEN β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/the-essential-guide-to-rays-anatomy.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/ray-post-cover-image.png')"></div>
<div class="card-content">
<h2>The Essential Guide to Ray.io's Anatomy</h2>
<p>A Journey Through Ray's Capabilities in GPU Management and Scalable AI Development</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="report
">
<a href="/reports/ai-as-new-standard-healthcare-innovation.html" class="card-link">
<div class="content-type">
REPORT
</div>
<div class="card-image" style="background-image: url('/static/covers/ai-healthcare-innovation.webp')"></div>
<div class="card-content">
<h2>Beyond the Cutting-Edge: AI as the New Standard in Healthcare Innovation</h2>
<p>Exploring the AI-driven technologies and strategies poised to reshape the healthcare landscape.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/reflector-elevate-communication-with-our-real-time-translation-tool.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/re.png')"></div>
<div class="card-content">
<h2>Reflector: Elevate Communication with Our Real-Time Translation Tool</h2>
<p>Explore Monadical's Open-Source Solution for Online Meetings.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/building-a-ticketing-system-with-solana-mobile-and-metaplex-foundation-umi.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/solanaticket.png')"></div>
<div class="card-content">
<h2>Building a Ticketing System with Solana Mobile and Metaplex Foundation Umi</h2>
<p>Learn how to create an NFT-based application on the Solana blockchain.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/how-to-build-a-talking-avatar-with-azure-cognitive-langchain-and-openai.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/zippyo.png')"></div>
<div class="card-content">
<h2>Kraken the Code: How to Build a Talking Avatar</h2>
<p>Create your own conversational avatar with Azure Cognitive, LangChain, and OpenAI.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/the-ai-evolution-transforming-zulip-bots-part-3.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/robot7.png')"></div>
<div class="card-content">
<h2>The AI Evolution: Transforming Zulip Bots, Part 3</h2>
<p>Discover how AI reshapes chat automation in Zulip bots</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/how-to-make-llms-speak-your-language.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/llms.png')"></div>
<div class="card-content">
<h2>How to Make LLMs Speak Your Language</h2>
<p>A Review of the Top Tools for Generating Structured Output.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card "
data-type="article
">
<a href="/posts/property-based-testing-for-temporal-graph-storage.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/goctopus.png')"></div>
<div class="card-content">
<h2>Property-Based Testing for Temporal Graph Storage</h2>
<p>A motley of functional techniques to allow isomorphic and deterministic graph generation.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/from-chaos-to-cohesion.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/tree.png')"></div>
<div class="card-content">
<h2>From Chaos to Cohesion: Architecting Your Own Monorepo</h2>
<p>Build a simple monorepo using GitHub Actions as a CI/CD tool.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/minecraft-skingenerator-announcement.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/skingenerator.png')"></div>
<div class="card-content">
<h2>Beauty Really Is Skin-Deep?</h2>
<p>Introducing the Minecraft Skins Generator.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/morpheus-announcement.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/morpheus.png')"></div>
<div class="card-content">
<h2>Morpheus: A Dream Machine for AI Art Generation</h2>
<p>Giving you the power to create stunning and beautiful generative art.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/zulip-ai-bot-2.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/zulip-ai-bot-2.png')"></div>
<div class="card-content">
<h2>Integrating AI Models into Zulip Chatbots Using FastAPI: Part 2</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/minecraft-skins-part2.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/minecraft-skins-part2.png')"></div>
<div class="card-content">
<h2>Digging Deeper Into Minecraft Skin Generation</h2>
<p>Learn how to generate custom Minecraft skins from text prompts using a Stable Diffusion model.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/mincraft-skin-generation.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/mincraft-skin-generation.jpg')"></div>
<div class="card-content">
<h2>Digging into Stable Diffusion-Generated Minecraft Skins</h2>
<p>Fine-tune a Stable Diffusion model on a Minecraft dataset and create custom Minecraft-style characters using text prompts.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/demystifying-databases.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/demystifying-databases.jpeg')"></div>
<div class="card-content">
<h2>Demystifying Databases: Cracking the Code of Efficient Data Storage</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/fine-tune-or-not-llm-ai-business-transformation.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/fine-tune-or-not-llm-ai-business-transformation.jpg')"></div>
<div class="card-content">
<h2>To Fine-Tune or Not Fine-Tune: Large Language Models for AI-Driven Business Transformation</h2>
<p>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. </p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/shades-of-rust-gui-library-list.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/shades-of-rust-gui-library-list.jpg')"></div>
<div class="card-content">
<h2>50 Shades of Rust, or emerging Rust GUIs in a WASM world</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/filters-github-actions.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/filters-github-actions.png')"></div>
<div class="card-content">
<h2>Filters with Github Actions</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/zulip-ia-bot-1.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/zulip-ia-bot-1.jpeg')"></div>
<div class="card-content">
<h2>Integrating AI models into Zulip bots using FastAPI: Part 1</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/strategy-backtracking-using-python-generators.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/strategy-backtracking-using-python-generators.jpg')"></div>
<div class="card-content">
<h2>A pattern for strategy backtracking using Python generators</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/minting-nft-solana-mobile.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/minting-nft-solana-mobile.jpg')"></div>
<div class="card-content">
<h2>How to mint NFTs using Solana's mobile wallet adapter</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/modular-arithmetic.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/modular-arithmetic.jpg')"></div>
<div class="card-content">
<h2>How to build a modular arithmetic library in Python</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/ramping-up-solana-phone.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/ramping-up-solana-phone.jpg')"></div>
<div class="card-content">
<h2>Ramping up on Solana Phone: Crypto for mobile</h2>
<p>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.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/blog-ideas-for-developers.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/blog-ideas-for-developers.jpg')"></div>
<div class="card-content">
<h2>How to get blog post ideas as a developer</h2>
<p>Whenever I hit writer's block, I explore these four areas. They've never failed to help me find ideas for my next article.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/python-vs-javascript-dealing-with-the-quirks-of-async-await.html" class="card-link">
<div class="content-type">
ARTICLE
</div>
<div class="card-image" style="background-image: url('/static/python-vs-javascript-dealing-with-the-quirks-of-async-await.jpg')"></div>
<div class="card-content">
<h2>Python vs Javascript: Dealing with the quirks of async/await</h2>
<p>As someone who's used to implementing asynchronous programming in JS, implementing it in Python came as a surprise. Here's what I learned.</p>
<div class="card-action">
<button class="action-btn">READ MORE β</button>
</div>
</div>
</a>
</div>
<div class="insight-card hidden"
data-type="article
">
<a href="/posts/fastapi-for-functions.html" class="card-link">
<div class="content-type">
ARTICLE
</div>