-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
1717 lines (1311 loc) · 60.5 KB
/
blog.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 src="https://use.fontawesome.com/afd448ce82.js"></script>
<!-- Meta Tag -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- SEO -->
<meta name="author" content="Bruno Rocha">
<meta name="keywords" content="Software, Engineering, Blog, Posts, iOS, Xcode, Swift, Articles, Tutorials, OBJ-C, Objective-C, Apple">
<meta name="description" content="All SwiftRocks's articles.">
<meta name="title" content="SwiftRocks - All Posts">
<meta name="url" content="https://swiftrocks.com/blog">
<meta name="image" content="https://swiftrocks.com/images/thumbs/thumb.jpg?4">
<meta name="copyright" content="Bruno Rocha">
<meta name="robots" content="index,follow">
<meta property="og:title" content="SwiftRocks - All Posts"/>
<meta property="og:image" content="https://swiftrocks.com/images/thumbs/thumb.jpg?4"/>
<meta property="og:description" content="All SwiftRocks's articles."/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://swiftrocks.com/blog"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://swiftrocks.com/images/thumbs/thumb.jpg?4"/>
<meta name="twitter:image:alt" content="Page Thumbnail"/>
<meta name="twitter:title" content="SwiftRocks - All Posts"/>
<meta name="twitter:description" content="All SwiftRocks's articles."/>
<meta name="twitter:site" content="@rockbruno_"/>
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/favicon/iconsmall2.png" sizes="32x32" />
<link rel="apple-touch-icon" href="images/favicon/iconsmall2.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<!-- Bootstrap CSS Plugins -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<!-- Prism CSS Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/prism4.css">
<!-- Main CSS Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/style48.css">
<link rel="stylesheet" type="text/css" href="css/sponsor4.css">
<!-- HTML5 shiv and Respond.js support IE8 or Older for HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://swiftrocks.com/blog"
},
"image": [
"https://swiftrocks.com/images/thumbs/thumb.jpg"
],
"datePublished": "2024-09-02T12:21:52+00:00",
"dateModified": "2024-10-14T21:00:00+02:00",
"author": {
"@type": "Person",
"name": "Bruno Rocha"
},
"publisher": {
"@type": "Organization",
"name": "SwiftRocks",
"logo": {
"@type": "ImageObject",
"url": "https://swiftrocks.com/images/thumbs/thumb.jpg"
}
},
"headline": "SwiftRocks - All Posts",
"abstract": "All SwiftRocks's articles."
}
</script>
</head>
<body>
<div id="main">
<!-- Blog Header -->
<!-- Blog Post (Right Sidebar) Start -->
<div class="container">
<div class="col-xs-12">
<div class="page-body">
<div class="row">
<div><a href="https://swiftrocks.com">
<img id="logo" class="logo" alt="SwiftRocks" src="images/bg/logo2light.png">
</a>
<div class="menu-large">
<div class="menu-arrow-right"></div>
<div class="menu-header menu-header-large">
<div class="menu-item">
<a href="blog">blog</a>
</div>
<div class="menu-item">
<a href="about">about</a>
</div>
<div class="menu-item">
<a href="talks">talks</a>
</div>
<div class="menu-item">
<a href="projects">projects</a>
</div>
<div class="menu-item">
<a href="software-engineering-book-recommendations">book recs</a>
</div>
<div class="menu-item">
<a href="games">game recs</a>
</div>
<div class="menu-arrow-right-2"></div>
</div>
</div>
<div class="menu-small">
<div class="menu-arrow-right"></div>
<div class="menu-header menu-header-small-1">
<div class="menu-item">
<a href="blog">blog</a>
</div>
<div class="menu-item">
<a href="about">about</a>
</div>
<div class="menu-item">
<a href="talks">talks</a>
</div>
<div class="menu-item">
<a href="projects">projects</a>
</div>
<div class="menu-arrow-right-2"></div>
</div>
<div class="menu-arrow-right"></div>
<div class="menu-header menu-header-small-2">
<div class="menu-item">
<a href="software-engineering-book-recommendations">book recs</a>
</div>
<div class="menu-item">
<a href="games">game recs</a>
</div>
<div class="menu-arrow-right-2"></div>
</div>
</div>
</div>
<div class="content-page" id="WRITEIT_DYNAMIC_CONTENT"><!--WRITEIT_POST_NAME=SwiftRocks - All Posts-->
<!--WRITEIT_POST_HTML_NAME=blog-->
<!--WRITEIT_POST_SITEMAP_DATE_LAST_MOD=2024-10-14T21:00:00+02:00-->
<!--WRITEIT_POST_SITEMAP_DATE=2024-09-02T12:21:52+00:00-->
<!--WRITEIT_POST_DONT_RSS=true-->
<!--Add here the additional properties that you want each page to possess.-->
<!--These properties can be used to change content in the template page or in the page itself as shown here.-->
<!--Properties must start with 'WRITE_IT_POST'.-->
<!--Writeit provides and injects WRITEIT_POST_NAME and WRITEIT_POST_HTML_NAME by default.-->
<!--WRITEIT_POST_SHORT_DESCRIPTION=All SwiftRocks's articles.-->
<title>SwiftRocks - All Posts</title>
<div class="blog-post">
<div class="sponsor-article-ad-auto hidden" style="margin-top: 32px;"></div>
<div class="articles-header" style="display: flex;/* align-content: center; */align-items: center; margin-bottom: -32px;">
<h1 style="margin-right: 16px;/* justify-content: center; */">All Posts</h1>
<p style="
/* text-align: center; */
margin-top: 12px;
font-size: 1.5rem;
"><a href="https://swiftrocks.com/rss.xml"><i class="fa fa-rss"></i></a></p>
</div>
</div>
<!-- <div style="margin-top: 30px;" class="sponsor-article-ad-auto hidden"></div> -->
<!-- Blog Post Start -->
<div class="blog-post">
<h2 class="blog-year">2025</h2>
<div class="post-title-index">
<a href="my-home-automation-setup"><h3>My Home Automation setup</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 04 Jan 2025
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<h2 class="blog-year">2024</h2>
<div class="post-title-index">
<a href="what-happens-when-you-move-a-file-in-git"><h3>What happens when you move a file in git?</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 02 Dec 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="focus-not-on-the-task-but-on-the-problem-behind-the-task"><h3>Focus not on the task, but on the problem behind the task</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 18 Nov 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="working-at-startups-vs-large-companies"><h3>Working at startups vs large companies</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 14 Oct 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="my-process-for-learning-new-languages"><h3>My process for learning new languages</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 1 Sep 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/what-are-mobile-release-engineering-teams-and-when-do-you-need-one"><h3>What are mobile release engineering teams and when do you need one? (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 28 Jun 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="recommended-wwdc24-sessions"><h3>Recommended WWDC24 Sessions</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 17 Jun 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="using-silgenname-to-call-private-swift-code"><h3>Using @_silgen_name to forward declare functions in Swift and improve build times</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 14 Mar 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="software-engineering-book-recommendations"><h3>Software engineering book recommendations</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 03 Mar 2024
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/an-introduction-to-passkeys"><h3>What the hell are passkeys? (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 22 Feb 2024
</div>
</div>
<!-- Blog Post Start -->
<!-- Blog Post Start -->
<div class="blog-post">
<h2 class="blog-year">2023</h2>
<div class="post-title-index">
<a href="there-is-no-right-or-wrong-in-software-engineering"><h3>There is no right or wrong in software engineering</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 28 Dec 2023
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/what-even-is-code-signing-in-ios"><h3>What even is code signing in iOS? (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 15 Dec 2023
</div>
</div>
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-im-using-chatgpt-for-software-engineering"><h3>How I'm using ChatGPT for software engineering</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 11 Dec 2023
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-necessary-are-the-programming-fundamentals"><h3>How necessary are the programming fundamentals?</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Reworked on 05 Nov 2023
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-async-await-works-internally-in-swift"><h3>How async/await works internally in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 28 Sep 2023
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="faster-performance-debugging-with-ettrace"><h3>Faster iOS performance debugging with ETTrace</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 11 Sep 2023
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="debugging-ios-performance-issues-you-cant-reproduce-with-performance-trace-profiles"><h3>Performance Trace Profiles in iOS: Debugging performance issues you can't reproduce</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 01 Jun 2023
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<h2 class="blog-year">2022</h2>
<div class="post-title-index">
<a href="my-experience-with-swiftui"><h3>Thoughts on SwiftUI vs UIKit</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 20 Oct 2022
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="whats-any-understanding-type-erasure-in-swift"><h3>What's the "any" keyword? Understanding Type Erasure in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 12 Sep 2022
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/how-to-improve-ios-build-times-with-modularization"><h3>Architecting iOS apps for fast build times (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 31 Aug 2022
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="are-your-frameworks-bulletproof"><h3>Are your frameworks bulletproof?</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 18 Jul 2022
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/why-when-mobile-platform-teams"><h3>Mobile Platform Teams (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 15 Jul 2022
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="using-a-macbook-pro-as-a-gaming-console"><h3>Using a Macbook Pro as a gaming console</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 08 Jul 2022
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="sentiment-analysis-reddit-negativity"><h3>Sentiment Analysis with NSTagger: Ranking popular subreddits by the negativity/hostility of its comments</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 12 Jun 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/ios-certificates-provisioning-profiles-large-teams"><h3>Managing Provisioning Profiles as your team grows (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 26 May 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-certificates-work"><h3>Understanding Certificates and iOS Provisioning Profiles</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 24 May 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/how-why-mobile-app-versioning"><h3>How — and why — to think about mobile app versioning (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 28 Apr 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/avoiding-release-anxiety-part-ii"><h3>Avoiding release anxiety, part II (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 14 Mar 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/avoiding-release-anxiety-part-i-testing-automation"><h3>Avoiding release anxiety, part I (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 08 Mar 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/merge-queues-intro-for-mobile-engineers"><h3>Merge queues: An intro for mobile engineers (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 09 Feb 2022</div>
</div>
</div>
<!-- Blog Post End -->
<div class="blog-post">
<div class="post-title-index">
<a href="https://www.runway.team/blog/how-successful-mobile-teams-release-apps-at-scale"><h3>How successful mobile teams release apps at scale (Runway)</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 25 Jan 2022</div>
</div>
</div>
<!-- Blog Post End -->
<div class="blog-post">
<div class="post-title-index">
<a href="focus-on-concepts-not-approaches"><h3>Focus on concepts, not approaches</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 06 Jan 2022</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<h2 class="blog-year">2021</h2>
<div class="post-title-index">
<a href="detecting-broken-constraints-in-swift"><h3>Detecting Broken Constraints in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 22 Nov 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-to-solve-any-ios-crash-ever"><h3>How To Solve Any iOS Crash Ever</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 01 Nov 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="enabling-module-stability-in-swift-package-manager-projects"><h3>Enabling Module Stability in Swift Package Manager Projects</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 26 Oct 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="unit-testing-weak-references--deallocation-in-swift"><h3>Unit Testing Weak References / Retain Cycles in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 13 Oct 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="debug-cpu-exceptions-xcode-energy-reports"><h3>Solving CPU Usage Crashes with Xcode's Energy Organizer</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 28 Sep 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-asyncsequence-works-internally-in-swift"><h3>How AsyncSequence works internally in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 20 Sep 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="reverse-engineering-xcode-issue-crash-symbol"><h3>Reverse engineering a 5 year old Xcode issue</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 31 Aug 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="swifts-documentation-markup"><h3>Swift's Documentation Markup</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 17 Aug 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="code-generation-with-sourcekit"><h3>Adding Intelligent Code Generation to Swift Projects with SourceKit</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 10 Aug 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="staticstring-in-swift"><h3>StaticString, and how it works internally in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 03 Aug 2021</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="extending-creating-publishers-the-right-way"><h3>Extending / Creating Combine Publishers the Right Way</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 27 Jul 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="benchmarking-swift-code-properly-with-attabench"><h3>Benchmarking Swift Code Properly with Attabench</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 20 Jul 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-actors-work-internally-in-swift"><h3>How Actors Work Internally in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 06 Jul 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="creating-3d-models-out-of-anything-with-realitykit-in-swift"><h3>Creating 3D Models from Photographs with RealityKit in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 22 Jun 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="thread-safety-in-swift"><h3>Thread Safety in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 11 May 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="creating-a-license-system-for-paid-apps-in-swift"><h3>Creating a licensing system for paid apps in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 06 Apr 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="be-careful-with-objc-bridging-in-swift"><h3>Be careful with Obj-C bridging in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 02 Mar 2021
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<h2 class="blog-year">2020</h2>
<div class="post-title-index">
<a href="understanding-inlinable-in-swift"><h3>Understanding @inlinable in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 22 Dec 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="dispatchsource-detecting-changes-in-files-and-folders-in-swift"><h3>DispatchSource: Detecting changes in files and folders in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 24 Nov 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-availability-works-internally-in-swift"><h3>How Swift API Availability Works Internally</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 29 Sep 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="ui-testing-deeplinks-and-universal-links-in-ios"><h3>UI Testing Deeplinks and Universal Links in iOS</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 15 Sep 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="improving-observer-pattern-apis-in-swift-with-weak-collections"><h3>Improving Observer Pattern APIs in Swift With Weak Collections</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 25 Aug 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="app-attest-apple-protect-ios-jailbreak"><h3>App Attest: How to prevent an iOS app's APIs from being abused</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 11 Aug 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="entry-points-swift-uiapplicationmain-main"><h3>Entry Points in Swift: How @main and @UIApplicationMain work internally</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 21 Jul 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="adapting-objectivec-apis-for-swift-using-nsrefinedforswift"><h3>Adapting Objective-C APIs to Swift with NS_REFINED_FOR_SWIFT</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 14 Jul 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="creating-debug-menus-in-swift-with-uicontextmenuinteraction"><h3>Creating Debug Menus in Swift with UIContextMenuInteraction</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 30 Jun 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="ios-14-widget-tutorial-mini-apps"><h3>How to create Widgets in iOS 14 in Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 23 June 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="benefits-of-throwing-functions-try-swift-underrated-feature"><h3>Benefits of using throwing functions (try) - Swift's most underrated feature?</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 16 June 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">
<div class="post-title-index">
<a href="how-random-numbers-work-in-swift"><h3>How Random Numbers Work In Swift</h3></a>
</div>
<div class="post-info">
<div class="post-info-text">Published on 12 May 2020
</div>
</div>
</div>
<!-- Blog Post End -->
<!-- Blog Post Start -->
<div class="blog-post">