forked from ruby0x1/machinery_blog_archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1048 lines (463 loc) · 58.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="./_static/js/bundle-playback.js@v=KTqwAcYd" charset="utf-8"></script>
<script type="text/javascript" src="./_static/js/wombat.js@v=UHAOicsW" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="./_static/css/banner-styles.css@v=fantwOh2.css" />
<link rel="stylesheet" type="text/css" href="./_static/css/iconochive.css@v=qtvMKcIJ.css" />
<!-- End Wayback Rewrite JS Include -->
<link rel="apple-touch-icon" sizes="180x180" href="http://web.archive.org/web/20220529231010im_/https://ourmachinery.com/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="http://web.archive.org/web/20220529231010im_/https://ourmachinery.com/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="http://web.archive.org/web/20220529231010im_/https://ourmachinery.com/images/favicon.ico">
<link rel="apple-touch-icon" href="http://web.archive.org/web/20220529231010im_/https://ourmachinery.com/images/apple-touch-icon.png"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Makers of a new kind of 3D game engine. The Machinery, a lightweight hackable Engine. Take what you need, Pay what you use."/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="http://web.archive.org/web/20220529231010im_/https://ourmachinery.com/images/machinery-logo.png"/>
<meta name="twitter:title" content="Our Machinery">
<meta name="twitter:description" content="Our Machinery"/>
<meta name="twitter:site" content="@ourmachinery"/>
<meta property="og:title" content=" · Our Machinery"/>
<meta property="og:site_name" content="Our Machinery"/>
<meta property="og:url" content="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/"/>
<meta property="og:image" content="http://web.archive.org/web/20220529231010im_/https://ourmachinery.com/images/machinery-logo.png"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="Our Machinery"/>
<title> · Our Machinery</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" media="screen, print"/>
<link type="text/css" rel="stylesheet" href="css/style.min.css" media="screen, print"/>
<link href="index.xml" rel="alternate" type="application/rss+xml" title="Our Machinery"/>
<link rel="canonical" href="post.html"/>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<link rel="stylesheet" href="../../../20220529231010cs_/https%253A/cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/styles/default.min.css">
<script src="../../../20220529231010js_/https%253A/cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script type="text/javascript" src="../../../20220529231010js_/https%253A/ourmachinery.com/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="../../../20220529231010js_/https%253A/ourmachinery.com/js/page.min.js@v=1.16"></script>
</head>
<body class="d-flex flex-column min-vh-100">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="images/full-logo.png" alt="Our Machinery Logo" width="250" height="75">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#sidebar" aria-controls="sidebar-1" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="d-none d-lg-block" id="navbarCollapse">
<ul class="navbar-nav ms-auto mb-2 mb-md-0 align-items-center">
<li class="nav-item dropdown" style="height:40px;min-width:58px;">
<a class="text-yellow fs-1 signed-in-only" style="line-height: 1;" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<ion-icon name="person-circle-outline"></ion-icon>
</a>
<a class="text-yellow fs-1 signed-out-only" style="line-height: 1;" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<ion-icon name="log-in-outline"></ion-icon>
</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item signed-out-only d-flex align-items-center" href="sign-in.html">Sign In <ion-icon class="ms-auto" name="log-in-outline"></ion-icon></a></li>
<li><a class="dropdown-item signed-out-only d-flex align-items-center" href="sign-up.html">Sign Up <ion-icon class="ms-auto" name="create-outline"></ion-icon></a></li>
<li><a class="dropdown-item signed-in-only d-flex align-items-center" href="profile.html">Profile <ion-icon class="ms-auto" name="person-outline"></ion-icon></a></li>
<li><a class="dropdown-item signed-in-only d-flex align-items-center" role="button" onclick="signOut(); return false;">Sign Out <ion-icon class="ms-auto" name="log-out-outline"></ion-icon></a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="sidebar" tabindex="-1" role="dialog" aria-modal="false" class="b-sidebar b-sidebar-right collapse shadow bg-dark text-light vh-100">
<header class="b-sidebar-header">
<button type="button" aria-label="Close" class="fs-1 btn btn-default text-light float-start" data-bs-toggle="collapse" data-bs-target="#sidebar" aria-controls="sidebar-1" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon icon-close"></span>
</button>
<div class=" d-flex justify-content-center">
<a href="index.html"><img src="images/full-logo.png" class="om-logo p-2 mb-2 mt-2" alt="Our Machinery Logo" width="100" height="75"></a>
</div>
</header>
<div class="b-sidebar-body overflow-auto">
<div class="card text-primary">
<div class="card-body d-flex justify-content-center signed-out-only">
<a href="sign-in.html" aria-label="Login" class="btn btn-outline-primary me-2" style="flex: 1;"><span class="icon icon-user align-middle"></span> <span class="align-middle text-uppercase font-monospace">Sign In</span></a>
<a href="sign-up.html" aria-label="Register Account" class="btn btn-outline-primary" style="flex: 1;"><span class="icon icon-edit align-middle"></span> <span class="align-middle text-uppercase font-monospace">Sign Up</span></a>
</div>
<div class="card-body d-flex justify-content-center signed-in-only">
<a href="profile.html" aria-label="Open Profile" class="btn btn-outline-primary me-2 d-flex" style="max-height: 56; min-height: 56px;"><span class="align-middle align-self-center text-uppercase font-monospace">Profile</span></a>
<a onclick="signOut(); return false;" class="btn btn-outline-primary d-flex" style="max-height: 56; min-height: 56px;"><span class="icon icon-lock align-middle align-self-center"></span> <span class="align-middle align-self-center text-uppercase font-monospace">Logout</span></a>
</div>
</div>
<div class="accordion mt-0" id="accordion-menu">
<div class="accordion-item bg-light">
<h2 class="accordion-header" id="heading-id2">
<button class="accordion-button bg-light collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse-id2" aria-expanded="false" aria-controls="#collapse-id2">
About
</button>
</h2>
<div id="collapse-id2" class="accordion-collapse collapse" aria-labelledby="heading-id2" data-bs-parent="#accordion-menu">
<div class="accordion-body p-0">
<div class="list-group border-0">
<a class="list-group-item list-group-item-action border-0 " href="product.html">The Machinery</a>
<a class="list-group-item list-group-item-action border-0 " href="roadmap.html">Roadmap</a>
<a class="list-group-item list-group-item-action border-0 " href="about.html">About Us</a>
<a class="list-group-item list-group-item-action border-0 " href="press.html">Press Kit</a>
</div>
</div>
</div>
</div>
<div class="accordion-item bg-light">
<h2 class="accordion-header" id="heading-id3">
<button class="accordion-button bg-light collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse-id3" aria-expanded="false" aria-controls="#collapse-id3">
Learning & Support
</button>
</h2>
<div id="collapse-id3" class="accordion-collapse collapse" aria-labelledby="heading-id3" data-bs-parent="#accordion-menu">
<div class="accordion-body p-0">
<div class="list-group border-0">
<a class="list-group-item list-group-item-action border-0 " href="apidoc/apidoc.html">API Documentation</a>
<a class="list-group-item list-group-item-action border-0 " href="http://web.archive.org/web/20220529231010/https://ourmachinery.github.io/themachinery-books/">Books</a>
<a class="list-group-item list-group-item-action border-0 " href="videos.html">Videos</a>
<a class="list-group-item list-group-item-action border-0 " href="samples.html">Sample Projects</a>
<a class="list-group-item list-group-item-action border-0 " href="http://web.archive.org/web/20220529231010/https://github.com/OurMachinery/themachinery-public/issues">Issue Tracker</a>
<a class="list-group-item list-group-item-action border-0 " href="academic.html">Academic License</a>
</div>
</div>
</div>
</div>
<div class="accordion-item bg-light">
<h2 class="accordion-header" id="heading-id4">
<button class="accordion-button bg-light collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse-id4" aria-expanded="false" aria-controls="#collapse-id4">
Community
</button>
</h2>
<div id="collapse-id4" class="accordion-collapse collapse" aria-labelledby="heading-id4" data-bs-parent="#accordion-menu">
<div class="accordion-body p-0">
<div class="list-group border-0">
<a class="list-group-item list-group-item-action border-0 " href="post.html">Blog</a>
<a class="list-group-item list-group-item-action border-0 " href="http://web.archive.org/web/20220529231010/https://discord.gg/SHHSZaH">Discord</a>
<a class="list-group-item list-group-item-action border-0 " href="http://web.archive.org/web/20220529231010/https://github.com/OurMachinery/themachinery-public/discussions">Forum</a>
<a class="list-group-item list-group-item-action border-0 " href="http://web.archive.org/web/20220529231010/https://anchor.fm/ourmachinery">Podcast</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="b-sidebar-footer w-100">
<div class="d-flex flex-row">
<a href="http://web.archive.org/web/20220529231010/https://ourmachinery.github.io/themachinery-books/" aria-label="Opens Books" type="button" class="btn btn-outline-light m-1" style="flex: 1"> <span class="align-middle text-uppercase font-monospace">Books</span></a>
<a href="apidoc/apidoc.html" aria-label="Opens API Documentation" type="button" class="btn btn-outline-light m-1" style="flex: 1"> <span class="align-middle text-uppercase font-monospace">Documentation</span></a>
</div>
<div class="d-grid gap-2 text-light text-center">
<a href="pricing.html" aria-label="Opens Pricing Page" type="button" class="btn btn-outline-light m-2"><span class="align-middle text-uppercase font-monospace">Pricing</span></a>
</div>
<div class="bg-yellow d-grid gap-2 text-light text-center">
<a href="download.html" aria-label="Opens Download Page" type="button" class="btn btn-outline-light m-2"><span class="icon icon-download align-middle"></span> <span class="align-middle text-uppercase font-monospace">Download Now</span></a>
</div>
</footer>
</div>
</nav>
<main>
<section class="container mt-5">
<div class="d-grid d-md-flex gap-2 pb-3 pb-md-0 border-bottom">
<div class="flex-grow-1">
<h1>Dev Blog</h1>
</div>
</div>
<article class="post mt-5 flex-md-row row shadow-sm p-3 mb-5 bg-white rounded">
<div class="col p-4 d-flex flex-column position-static">
<header class="post-header">
<h2 class="post-title"><a class="text-decoration-none" href="post/release-2022-4/index.html">The Machinery — April 2022 (version 2022.4)</a></h2>
<div class="post-meta mt-3">
<a href="authors/team.html">The Machinery Team</a>
–
<time class="post-date" datetime="2022-04-28T00:00:00Z">
28 Apr 2022
</time>
<small class="post-date">(4 min)</small>
</div>
</header>
<section class="post-excerpt lead">
<p><p>We are deep at work on a bunch of bigger features spanning all the way from a new improved document
editing model, to support for handling very large worlds. Unfortunately they aren’t ready to be
rolled out just yet, but rest assured they are well worth waiting for.</p>
<p>In the meantime we still have the April release for you with a some smaller features and bunch of
fixes and improvements.</p> <a class="text-decoration-none yellow-color" href="post/release-2022-4/index.html"><span class="text-uppercase fs-6 font-monospace">More</span> »</a></p>
</section>
</div>
<div class="col-auto d-none d-lg-block">
<a href="post/release-2022-4/index.html"><img src="images/release_22_4__xyz.png" class="om-post-preview-image img-thumbnail" alt="..."></a>
</div>
</article>
<article class="post mt-5 flex-md-row row shadow-sm p-3 mb-5 bg-white rounded">
<div class="col p-4 d-flex flex-column position-static">
<header class="post-header">
<h2 class="post-title"><a class="text-decoration-none" href="post/a-taxonomy-of-bugs/index.html">A Taxonomy of Bugs</a></h2>
<div class="post-meta mt-3">
<a href="authors/niklas.html">Niklas Gray</a>
–
<time class="post-date" datetime="2022-04-08T00:00:00Z">
8 Apr 2022
</time>
<small class="post-date">(34 min)</small>
</div>
</header>
<section class="post-excerpt lead">
<p><p>Debugging is often an undervalued skill. It’s not really taught in schools (as far as I know),
instead, you kind of have to pick it up as you go along. Today, I’ll try to remedy that by looking
at some common bugs and what to do about them.</p> <a class="text-decoration-none yellow-color" href="post/a-taxonomy-of-bugs/index.html"><span class="text-uppercase fs-6 font-monospace">More</span> »</a></p>
</section>
</div>
<div class="col-auto d-none d-lg-block">
<a href="post/a-taxonomy-of-bugs/index.html"><img src="images/a-taxonomy-of-bugs.png" class="om-post-preview-image img-thumbnail" alt="..."></a>
</div>
</article>
<article class="post mt-5 flex-md-row row shadow-sm p-3 mb-5 bg-white rounded">
<div class="col p-4 d-flex flex-column position-static">
<header class="post-header">
<h2 class="post-title"><a class="text-decoration-none" href="post/release-2022-3/index.html">The Machinery — March 2022 (version 2022.3)</a></h2>
<div class="post-meta mt-3">
<a href="authors/team.html">The Machinery Team</a>
–
<time class="post-date" datetime="2022-03-31T00:00:00Z">
31 Mar 2022
</time>
<small class="post-date">(12 min)</small>
</div>
</header>
<section class="post-excerpt lead">
<p><p>Thanks to everyone who ventured outside of the Moscone area for our GDC meetup! It was great to see
you, and also great for parts of our team to be able to meet physically for the first time since
the pandemic started. We understand that everybody makes different risk assessments and that, for
many, going to something like GDC doesn’t make a lot of sense, so we’ll try to do more virtual
events too. For example, on the 29th of April, Niklas will be giving a prerecorded talk at the
<a href="http://web.archive.org/web/20220529231010/https://www.hytradboi.com/">Hytradboi</a> conference.</p> <a class="text-decoration-none yellow-color" href="post/release-2022-3/index.html"><span class="text-uppercase fs-6 font-monospace">More</span> »</a></p>
</section>
</div>
<div class="col-auto d-none d-lg-block">
<a href="post/release-2022-3/index.html"><img src="images/release_22_3__clouds.png" class="om-post-preview-image img-thumbnail" alt="..."></a>
</div>
</article>
<article class="post fs-3 shortlist">
<label for="search">Search blogs:</label>
<input type="search" class="w-100 rounded form-control" name="q" placeholder="press Enter for full text search" id="search">
</article>
<div class="list-group mt-3 mb-5">
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2022-4/index.html">The Machinery — April 2022 (version 2022.4)<span class="post-date d-none d-sm-none d-md-block float-end">28 Apr 2022</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/a-taxonomy-of-bugs/index.html">A Taxonomy of Bugs<span class="post-date d-none d-sm-none d-md-block float-end">8 Apr 2022</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2022-3/index.html">The Machinery — March 2022 (version 2022.3)<span class="post-date d-none d-sm-none d-md-block float-end">31 Mar 2022</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2022-2/index.html">The Machinery — February 2022 (version 2022.2)<span class="post-date d-none d-sm-none d-md-block float-end">28 Feb 2022</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2022-1/index.html">The Machinery — January 2022 (version 2022.1)<span class="post-date d-none d-sm-none d-md-block float-end">27 Jan 2022</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-network-frontier-part-2/index.html">The (Machinery) Network Frontier, Part 2<span class="post-date d-none d-sm-none d-md-block float-end">14 Jan 2022</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/2021-recap/">2021 Recap<span class="post-date d-none d-sm-none d-md-block float-end">20 Dec 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/compiling-the-machinery-with-emscripten-part-2/index.html">Compiling The Machinery with Emscripten: Part 2 — Graphics<span class="post-date d-none d-sm-none d-md-block float-end">6 Dec 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2021-11/index.html">The Machinery — November 2021 (version 2021.11)<span class="post-date d-none d-sm-none d-md-block float-end">30 Nov 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/compiling-the-machinery-with-emscripten-part-1/index.html">Compiling The Machinery with Emscripten: Part 1<span class="post-date d-none d-sm-none d-md-block float-end">11 Nov 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2021-10/index.html">The Machinery — October 2021 (version 2021.10)<span class="post-date d-none d-sm-none d-md-block float-end">28 Oct 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-network-frontier-part-1/index.html">The (Machinery) Network Frontier -- Part 1<span class="post-date d-none d-sm-none d-md-block float-end">25 Oct 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2021-9/index.html">The Machinery — September 2021 (version 2021.9)<span class="post-date d-none d-sm-none d-md-block float-end">30 Sep 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/api-versioning/index.html">API Versioning<span class="post-date d-none d-sm-none d-md-block float-end">22 Sep 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/save-game-system-part-3/index.html">One-Click Save Game System -- Part 3<span class="post-date d-none d-sm-none d-md-block float-end">10 Sep 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/procedural-forest-sample/index.html">Procedural Forest Sample<span class="post-date d-none d-sm-none d-md-block float-end">3 Sep 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2021-8/index.html">The Machinery — August 2021 (version 2021.8)<span class="post-date d-none d-sm-none d-md-block float-end">26 Aug 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/roadmap/index.html">The Machinery Roadmap Update!<span class="post-date d-none d-sm-none d-md-block float-end">24 Aug 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/accessibility-in-the-machinery/index.html">Accessibility in The Machinery<span class="post-date d-none d-sm-none d-md-block float-end">18 Aug 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/release-2021-7/index.html">The Machinery — July 2021 (version 2021.7)<span class="post-date d-none d-sm-none d-md-block float-end">29 Jul 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/early-adopters-program/index.html">Early Adopters Program<span class="post-date d-none d-sm-none d-md-block float-end">7 Jul 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/save-game-system-part-2/index.html">One-Click Save Game System -- Part 2<span class="post-date d-none d-sm-none d-md-block float-end">2 Jul 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2021-6/index.html">The Machinery Beta — June 2021 (version 2021.6)<span class="post-date d-none d-sm-none d-md-block float-end">25 Jun 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/save-game-system-part-1/index.html">One-Click Save Game System -- Part 1<span class="post-date d-none d-sm-none d-md-block float-end">21 Jun 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/supporting-native-hdr-monitors/index.html">Supporting Native HDR Monitors<span class="post-date d-none d-sm-none d-md-block float-end">15 Jun 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2021-5/index.html">The Machinery Beta — May 2021 (version 2021.5)<span class="post-date d-none d-sm-none d-md-block float-end">27 May 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/a-debugging-story/index.html">A Debugging Story<span class="post-date d-none d-sm-none d-md-block float-end">3 May 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2021-4/index.html">The Machinery Beta — April 2021 (version 2021.4)<span class="post-date d-none d-sm-none d-md-block float-end">29 Apr 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/gamepad-implementation-on-linux/index.html">Gamepad Implementation on Linux<span class="post-date d-none d-sm-none d-md-block float-end">26 Apr 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/dig-shallow-graves/index.html">Dig Shallow Graves<span class="post-date d-none d-sm-none d-md-block float-end">8 Apr 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2021-3/index.html">The Machinery Beta — March 2021 (version 2021.3)<span class="post-date d-none d-sm-none d-md-block float-end">31 Mar 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/porting-the-machinery-to-linux/index.html">Porting The Machinery to Linux<span class="post-date d-none d-sm-none d-md-block float-end">8 Mar 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2021-2/index.html">The Machinery Beta — February 2021 (version 2021.2)<span class="post-date d-none d-sm-none d-md-block float-end">26 Feb 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/moving-the-machinery-to-bindless/index.html">Moving The Machinery to Bindless<span class="post-date d-none d-sm-none d-md-block float-end">22 Feb 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/dino-dino/index.html">Dino! Dino!<span class="post-date d-none d-sm-none d-md-block float-end">3 Feb 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2021-1/index.html">The Machinery Beta — January 2021 (version 2021.1)<span class="post-date d-none d-sm-none d-md-block float-end">28 Jan 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/summer-fun-with-creation-graphs/index.html">Summer Fun with Creation Graphs<span class="post-date d-none d-sm-none d-md-block float-end">14 Jan 2021</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-12/index.html">The Machinery Beta — December 2020 (version 2020.12)<span class="post-date d-none d-sm-none d-md-block float-end">16 Dec 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/interns-at-our-machinery-simon/index.html">Interns at Our Machinery: Simon<span class="post-date d-none d-sm-none d-md-block float-end">15 Dec 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/interns-at-our-machinery-frank/index.html">Interns at Our Machinery: Frank<span class="post-date d-none d-sm-none d-md-block float-end">4 Dec 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-11/index.html">The Machinery Beta — November 2020 (version 2020.11)<span class="post-date d-none d-sm-none d-md-block float-end">20 Nov 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/interns-at-our-machinery/index.html">Interns at Our Machinery<span class="post-date d-none d-sm-none d-md-block float-end">17 Nov 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/linear-algebra-shenanigans-gizmo-repair/index.html">Linear Algebra Shenanigans: Gizmo Repair<span class="post-date d-none d-sm-none d-md-block float-end">2 Nov 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-goes-open-beta/index.html">The Machinery Goes Open Beta<span class="post-date d-none d-sm-none d-md-block float-end">28 Oct 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/step-by-step-programming-incrementally/index.html">Step-by-step: Programming incrementally<span class="post-date d-none d-sm-none d-md-block float-end">7 Oct 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-9/index.html">The Machinery Beta — September 2020 (version 2020.9)<span class="post-date d-none d-sm-none d-md-block float-end">30 Sep 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/borderland-part-3-selection-highlighting/index.html">Borderland between Rendering and Editor — Part 3: Selection Highlighting<span class="post-date d-none d-sm-none d-md-block float-end">22 Sep 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/wasabi-part-5-making-it-wfh/index.html">WaSaBi Part 5: Making it WFH<span class="post-date d-none d-sm-none d-md-block float-end">2 Sep 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-8/index.html">The Machinery Beta — August 2020 (version 2020.8)<span class="post-date d-none d-sm-none d-md-block float-end">28 Aug 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-7/index.html">The Machinery Beta — July 2020 (version 2020.7)<span class="post-date d-none d-sm-none d-md-block float-end">20 Jul 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/prototypes-in-the-machinery/index.html">Prototypes in The Machinery<span class="post-date d-none d-sm-none d-md-block float-end">29 Jun 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-6/index.html">The Machinery Beta — June 2020 (version 2020.6)<span class="post-date d-none d-sm-none d-md-block float-end">17 Jun 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/subgraphs-and-function-graphs/index.html">Subgraphs and Function Graphs<span class="post-date d-none d-sm-none d-md-block float-end">15 Jun 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/borderland-part-2-picking/index.html">Borderland between Rendering and Editor — Part 2: Picking<span class="post-date d-none d-sm-none d-md-block float-end">26 May 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-5/index.html">The Machinery Beta — May 2020 (version 2020.5)<span class="post-date d-none d-sm-none d-md-block float-end">15 May 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/wasabi-part-4-working-from-home/index.html">WaSaBi Part 4: Working From Home<span class="post-date d-none d-sm-none d-md-block float-end">7 May 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/recording-statistics/index.html">Recording Statistics — An Exercise in Minimalism<span class="post-date d-none d-sm-none d-md-block float-end">27 Apr 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/gpu-simulation/index.html">GPU Simulation<span class="post-date d-none d-sm-none d-md-block float-end">14 Apr 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta-2020-4/index.html">The Machinery Beta — April 2020 (version 2020.4)<span class="post-date d-none d-sm-none d-md-block float-end">10 Apr 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/wasabi-part-3-accessibility/index.html">WaSaBi Part 3: Accessibility<span class="post-date d-none d-sm-none d-md-block float-end">3 Apr 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/beta/index.html">The Machinery Beta — March 2020 (version 2020.3)<span class="post-date d-none d-sm-none d-md-block float-end">18 Mar 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/writing-a-low-level-sound-system/index.html">Writing a Low-Level Sound System — You Can Do It!<span class="post-date d-none d-sm-none d-md-block float-end">17 Mar 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/borderland-between-rendering-and-editor-part-1/index.html">Borderland between Rendering and Editor - Part 1<span class="post-date d-none d-sm-none d-md-block float-end">6 Mar 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/gdc-2020/index.html">GDC 2020<span class="post-date d-none d-sm-none d-md-block float-end">3 Feb 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/time-tracking-in-2020/index.html">Time Tracking In 2020<span class="post-date d-none d-sm-none d-md-block float-end">20 Jan 2020</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/see-ya-later-2019/index.html">See Ya Later 2019!<span class="post-date d-none d-sm-none d-md-block float-end">25 Dec 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/alpha-update/index.html">Alpha Update<span class="post-date d-none d-sm-none d-md-block float-end">19 Dec 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/more-on-creation-graphs/index.html">More on Creation Graphs<span class="post-date d-none d-sm-none d-md-block float-end">2 Dec 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/wasabi-part-2-defining-culture/index.html">WaSaBi Part 2: Defining Culture<span class="post-date d-none d-sm-none d-md-block float-end">30 Oct 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/data-structures-part-3-arrays-of-arrays/index.html">Data Structures Part 3: Arrays of arrays<span class="post-date d-none d-sm-none d-md-block float-end">18 Sep 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/vertex-assembly-and-skinning/index.html">Vertex Assembly and Skinning<span class="post-date d-none d-sm-none d-md-block float-end">17 Sep 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/wasabi-part-1/">We are Starting a Business, ideally -- Part 1<span class="post-date d-none d-sm-none d-md-block float-end">5 Sep 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/data-structures-part-2-indices/index.html">Data Structures Part 2: Indices<span class="post-date d-none d-sm-none d-md-block float-end">14 Aug 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/data-structures-part-1-bulk-data/index.html"> Data Structures Part 1: Bulk Data <span class="post-date d-none d-sm-none d-md-block float-end">23 Jul 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/summertime-rolls/">Summertime Rolls<span class="post-date d-none d-sm-none d-md-block float-end">24 Jun 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/syncing-a-data-oriented-ecs/index.html">Syncing a data-oriented ECS with a stateful external system<span class="post-date d-none d-sm-none d-md-block float-end">8 Jun 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-asset-pipeline/index.html">The Machinery Asset Pipeline<span class="post-date d-none d-sm-none d-md-block float-end">29 May 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/quick-update/">Quick Update<span class="post-date d-none d-sm-none d-md-block float-end">14 May 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/creating-cross-language-apis/index.html">Creating Cross-Language APIs<span class="post-date d-none d-sm-none d-md-block float-end">29 Apr 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/referencing-objects-names-vs-guids/index.html">Referencing Objects: Names vs GUIDs<span class="post-date d-none d-sm-none d-md-block float-end">17 Apr 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/creation-graphs/index.html">Creation Graphs<span class="post-date d-none d-sm-none d-md-block float-end">4 Apr 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/our-machinery-meetup/">Our Machinery Meetup<span class="post-date d-none d-sm-none d-md-block float-end">7 Mar 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/whats-happening-this-year/">What's happening this year<span class="post-date d-none d-sm-none d-md-block float-end">1 Feb 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/localization-in-the-machinerys-ui/index.html">Localization in The Machinery’s UI<span class="post-date d-none d-sm-none d-md-block float-end">14 Jan 2019</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-anti-feature-dream/index.html">The Anti-Feature Dream<span class="post-date d-none d-sm-none d-md-block float-end">5 Dec 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/vasa/">Vasa<span class="post-date d-none d-sm-none d-md-block float-end">21 Nov 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-story-behind-the-truth-designing-a-data-model/index.html">The Story behind The Truth: Designing a Data Model<span class="post-date d-none d-sm-none d-md-block float-end">7 Nov 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/ecs-and-rendering/index.html">Entity-Component-Systems and Rendering<span class="post-date d-none d-sm-none d-md-block float-end">23 Oct 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/our-machinery-podcast/index.html">Our Machinery Podcast<span class="post-date d-none d-sm-none d-md-block float-end">11 Oct 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/marketing-miniseries-part-10-community-management/">Part 10: Community Management<span class="post-date d-none d-sm-none d-md-block float-end">2 Oct 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/a-tale-of-two-bugs/">A Tale of Two Bugs<span class="post-date d-none d-sm-none d-md-block float-end">18 Sep 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/device-memory-management/index.html">Device Memory Management<span class="post-date d-none d-sm-none d-md-block float-end">29 Aug 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/marketing-mini-series-part-9-internal-marketing/index.html">Marketing Mini Series Part 9: Internal Marketing<span class="post-date d-none d-sm-none d-md-block float-end">28 Jun 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/making-the-move-rotate-scale-gizmos-work-with-any-component/index.html">Making the move/rotate/scale gizmos work with any component<span class="post-date d-none d-sm-none d-md-block float-end">11 Jun 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-shader-system-part-3/index.html">The Machinery Shader System (part 3)<span class="post-date d-none d-sm-none d-md-block float-end">29 May 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/marketing-mini-series-part-8-online-marketing/index.html">Marketing Mini Series Part 8: Online Marketing 101: The Four Pillars<span class="post-date d-none d-sm-none d-md-block float-end">17 May 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/implementing-drag-and-drop-in-an-imgui/index.html">Implementing drag-and-drop in an IMGUI<span class="post-date d-none d-sm-none d-md-block float-end">1 May 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-shader-system-part-2/index.html">The Machinery Shader System (part 2)<span class="post-date d-none d-sm-none d-md-block float-end">17 Apr 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/gdc-meetup/">GDC meetup!<span class="post-date d-none d-sm-none d-md-block float-end">6 Mar 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/marketing-mini-series-part-7-websites/">Marketing Mini Series Part 7: Websites<span class="post-date d-none d-sm-none d-md-block float-end">27 Feb 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-document-model-and-the-machinery/index.html">The Document Model and The Machinery<span class="post-date d-none d-sm-none d-md-block float-end">18 Feb 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/the-machinery-shader-system-part-1/index.html">The Machinery Shader System (part 1)<span class="post-date d-none d-sm-none d-md-block float-end">12 Feb 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/marketing-mini-series-part-6-co-marketing-partner-efforts/index.html">Marketing Mini Series Part 6: Co-Marketing/Partner Efforts<span class="post-date d-none d-sm-none d-md-block float-end">5 Feb 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/minimalist-container-library-in-c-part-2/index.html">Minimalist container library in C (part 2)<span class="post-date d-none d-sm-none d-md-block float-end">29 Jan 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/explicit-multi-gpu-programming/index.html">Explicit Multi-GPU Programming<span class="post-date d-none d-sm-none d-md-block float-end">22 Jan 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/marketing-mini-series-part-5-demos/index.html">Marketing Mini Series Part 5: Demos<span class="post-date d-none d-sm-none d-md-block float-end">16 Jan 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/minimalist-container-library-in-c-part-1/index.html">Minimalist container library in C (part 1)<span class="post-date d-none d-sm-none d-md-block float-end">8 Jan 2018</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/a-year-in-review/index.html">A year in review<span class="post-date d-none d-sm-none d-md-block float-end">18 Dec 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/vulkan-pipelines-and-render-states/index.html">Vulkan: Pipelines and Render States<span class="post-date d-none d-sm-none d-md-block float-end">11 Dec 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/marketing-mini-series-part-4-pr-public-relations/">Marketing Mini Series Part 4: PR (Public Relations)<span class="post-date d-none d-sm-none d-md-block float-end">4 Dec 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/should-entities-support-multiple-instances-of-the-same-component/index.html">Should entities support multiple instances of the same component?<span class="post-date d-none d-sm-none d-md-block float-end">27 Nov 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/vulkan-command-buffer-management/index.html">Vulkan: Command Buffer Management<span class="post-date d-none d-sm-none d-md-block float-end">20 Nov 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/marketing-mini-series-part-3-branding/">Marketing Mini Series Part 3: Branding<span class="post-date d-none d-sm-none d-md-block float-end">13 Nov 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/virtual-memory-tricks/index.html">Virtual Memory Tricks<span class="post-date d-none d-sm-none d-md-block float-end">6 Nov 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/vulkan-descriptor-sets-management/index.html">Vulkan: Descriptor Sets Management<span class="post-date d-none d-sm-none d-md-block float-end">30 Oct 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/marketing-miniseries-part-2-user-groups-and-user-conferences/index.html">Marketing Miniseries: Part 2 User Groups and User Conferences<span class="post-date d-none d-sm-none d-md-block float-end">24 Oct 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/multi-threading-the-truth/index.html">Multi-Threading The Truth<span class="post-date d-none d-sm-none d-md-block float-end">16 Oct 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/its-all-about-the-data/index.html">It’s All About The Data<span class="post-date d-none d-sm-none d-md-block float-end">9 Oct 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/keyboard-focus-and-event-trickling-in-immediate-mode-guis/index.html">Keyboard Focus and Event Trickling in Immediate Mode GUIs<span class="post-date d-none d-sm-none d-md-block float-end">25 Sep 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/simple-parallel-rendering/index.html">Simple Parallel Rendering<span class="post-date d-none d-sm-none d-md-block float-end">18 Sep 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/how-to-marketing-events/index.html">How to Marketing (A 10-Part Mini Series)<span class="post-date d-none d-sm-none d-md-block float-end">11 Sep 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/moving-away-from-git-flow/index.html">Moving away from GitFlow<span class="post-date d-none d-sm-none d-md-block float-end">5 Sep 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/high-level-rendering-using-render-graphs/index.html">High-Level Rendering Using Render Graphs<span class="post-date d-none d-sm-none d-md-block float-end">28 Aug 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/lets-all-go-to-the-conference/index.html">Let's All Go to the Conference<span class="post-date d-none d-sm-none d-md-block float-end">21 Aug 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/dll-hot-reloading-in-theory-and-practice/index.html">DLL Hot Reloading in Theory and Practice<span class="post-date d-none d-sm-none d-md-block float-end">14 Aug 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/dpi-aware-imgui/index.html">DPI-aware IMGUI<span class="post-date d-none d-sm-none d-md-block float-end">7 Aug 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/interviewing-part-2-the-interviewer/index.html">Interviewing Part 2: The Interviewer<span class="post-date d-none d-sm-none d-md-block float-end">24 Jul 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/one-draw-call-ui/index.html">One Draw Call UI<span class="post-date d-none d-sm-none d-md-block float-end">17 Jul 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/interviewing-part-1-the-interviewee/index.html">Interviewing Part 1: The Interviewee<span class="post-date d-none d-sm-none d-md-block float-end">5 Jul 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/defaulting-to-zero/index.html">Defaulting to Zero<span class="post-date d-none d-sm-none d-md-block float-end">26 Jun 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/ui-rendering-using-primitive-buffers/index.html">UI rendering using Primitive Buffers<span class="post-date d-none d-sm-none d-md-block float-end">19 Jun 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="http://web.archive.org/web/20220529231010/https://ourmachinery.com/post/the-importance-of-diversity/">The Importance of Diversity<span class="post-date d-none d-sm-none d-md-block float-end">12 Jun 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/little-machines-working-together-part-2/index.html">Little Machines Working Together (Part 2)<span class="post-date d-none d-sm-none d-md-block float-end">5 Jun 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/efficient-binding-of-shader-resources/index.html">Efficient binding of shader resources<span class="post-date d-none d-sm-none d-md-block float-end">30 May 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/finding-alignment/index.html">Finding Alignment<span class="post-date d-none d-sm-none d-md-block float-end">22 May 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/little-machines-working-together-part-1/index.html">Little Machines Working Together (Part 1)<span class="post-date d-none d-sm-none d-md-block float-end">16 May 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/a-modern-rendering-architecture/index.html">A modern rendering architecture<span class="post-date d-none d-sm-none d-md-block float-end">9 May 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/quality-life-quality-work/index.html">Quality Life, Quality Work<span class="post-date d-none d-sm-none d-md-block float-end">1 May 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/one-button-source-code-builds/index.html">One-button source code builds<span class="post-date d-none d-sm-none d-md-block float-end">24 Apr 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/our-development-methodology/index.html">Our development methodology<span class="post-date d-none d-sm-none d-md-block float-end">18 Apr 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/our-origin-story/index.html">Our Origin Story<span class="post-date d-none d-sm-none d-md-block float-end">10 Apr 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/physical-design/index.html">Physical Design of The Machinery<span class="post-date d-none d-sm-none d-md-block float-end">3 Apr 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/fiber-based-job-system/index.html">Fiber based job system<span class="post-date d-none d-sm-none d-md-block float-end">27 Mar 2017</span></a>
<a class="text-decoration-none list-group-item shortlist-filter post" href="post/day-1-blog/index.html">Day 1 Blog<span class="post-date d-none d-sm-none d-md-block float-end">22 Mar 2017</span></a>
</div>
<script>
let s = document.getElementById("search")
s.onkeyup = function(e) {
if (e.keyCode == 13) {
let st = encodeURIComponent(s.value);
window.location.href = "http://web.archive.org/web/20220529231010/https://www.google.com/search?q=site:ourmachinery.com+" + st;
} else {
let items = document.getElementsByClassName("shortlist-filter")
for (let item of items) {
let visible = item.innerText.toLowerCase().includes(s.value.toLowerCase());
item.style.display = (visible ? "block" : "none");
}
}
}
</script>
</section>
</main>
<footer class="container-fluid mt-auto page-footer-bg">
<div class="mx-auto d-flex justify-content-center w-100 pt-5 pb-5">