-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml
More file actions
1426 lines (1426 loc) · 107 KB
/
Copy pathrss.xml
File metadata and controls
1426 lines (1426 loc) · 107 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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Awesome Technical Accounting</title>
<link>https://andrewfowl.github.io/Awesome_Technical_Accounting/</link>
<atom:link href="https://andrewfowl.github.io/Awesome_Technical_Accounting/rss.xml" rel="self" type="application/rss+xml"/>
<description>A curated list of high-quality resources for technical accounting and financial reporting under US GAAP and IFRS.</description>
<language>en-us</language>
<lastBuildDate>Fri, 19 Jun 2026 02:30:22 GMT</lastBuildDate>
<generator>scripts/build-site.mjs</generator>
<item>
<title>FASB Accounting Standards Codification</title>
<link>https://asc.fasb.org/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-fasb-accounting-standards-codification</guid>
<category>Standards & Authoritative Sources</category>
<description>The single source of authoritative US GAAP, searchable online (free Basic View).</description>
</item>
<item>
<title>Financial Accounting Standards Board (FASB)</title>
<link>https://www.fasb.org/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-financial-accounting-standards-board-fasb</guid>
<category>Standards & Authoritative Sources</category>
<description>Standard setter for US GAAP; publishes Accounting Standards Updates, exposure drafts, and project updates.</description>
</item>
<item>
<title>IFRS Foundation (IASB)</title>
<link>https://www.ifrs.org/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-ifrs-foundation-iasb</guid>
<category>Standards & Authoritative Sources</category>
<description>Issuer of IFRS Accounting Standards used in 140+ jurisdictions, with a free register of issued standards.</description>
</item>
<item>
<title>SEC EDGAR Full-Text Search</title>
<link>https://www.sec.gov/edgar/search/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-sec-edgar-full-text-search</guid>
<category>Standards & Authoritative Sources</category>
<description>Full-text search across public company filings; the primary corpus for disclosure research and benchmarking.</description>
</item>
<item>
<title>SEC Financial Reporting Manual</title>
<link>https://www.sec.gov/about/divisions-offices/division-corporation-finance/financial-reporting-manual</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-sec-financial-reporting-manual</guid>
<category>Standards & Authoritative Sources</category>
<description>Division of Corporation Finance staff guidance on SEC financial statement requirements.</description>
</item>
<item>
<title>SEC Staff Accounting Bulletins</title>
<link>https://www.sec.gov/rules-regulations/staff-guidance/staff-accounting-bulletins</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-sec-staff-accounting-bulletins</guid>
<category>Standards & Authoritative Sources</category>
<description>SEC staff interpretations on accounting and disclosure (e.g., materiality and revenue).</description>
</item>
<item>
<title>AICPA & CIMA</title>
<link>https://www.aicpa-cima.com/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#standards-authoritative-sources-aicpa-cima</guid>
<category>Standards & Authoritative Sources</category>
<description>Audit and accounting guides, Technical Questions and Answers, and the Center for Plain English Accounting.</description>
</item>
<item>
<title>BDO Accounting Standards & Reporting Matters</title>
<link>https://www.bdo.com/accounting-and-sec-matters</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-bdo-accounting-standards-reporting-matters</guid>
<category>Firm Reference Libraries</category>
<description>Blueprints, bulletins, and newsletters on US GAAP and SEC developments.</description>
</item>
<item>
<title>Deloitte Accounting Research Tool (DART)</title>
<link>https://dart.deloitte.com/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-deloitte-accounting-research-tool-dart</guid>
<category>Firm Reference Libraries</category>
<description>Deloitte's Roadmap series and manuals, much of it free with registration.</description>
</item>
<item>
<title>Deloitte IAS Plus</title>
<link>https://www.iasplus.com/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-deloitte-ias-plus</guid>
<category>Firm Reference Libraries</category>
<description>Free global IFRS and US GAAP news, standards summaries, and resources.</description>
</item>
<item>
<title>EY AccountingLink</title>
<link>https://www.ey.com/en_us/technical/accountinglink</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-ey-accountinglink</guid>
<category>Firm Reference Libraries</category>
<description>EY's Financial Reporting Developments publications, Technical Line guidance, and quarterly briefs.</description>
</item>
<item>
<title>Grant Thornton Insights</title>
<link>https://www.grantthornton.com/insights</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-grant-thornton-insights</guid>
<category>Firm Reference Libraries</category>
<description>Accounting and reporting bulletins, New Developments Summaries, and quarterly updates.</description>
</item>
<item>
<title>KPMG Financial Reporting View</title>
<link>https://kpmg.com/us/en/frv.html</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-kpmg-financial-reporting-view</guid>
<category>Firm Reference Libraries</category>
<description>KPMG's hub of handbooks, hot topics, and CPE-eligible insights on US GAAP, IFRS, and SEC reporting.</description>
</item>
<item>
<title>PwC Viewpoint</title>
<link>https://viewpoint.pwc.com/</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-pwc-viewpoint</guid>
<category>Firm Reference Libraries</category>
<description>PwC's accounting and reporting guides, In briefs, and In depths (free registration).</description>
</item>
<item>
<title>RSM Financial Reporting Resource Center</title>
<link>https://rsmus.com/insights/financial-reporting.html</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#firm-reference-libraries-rsm-financial-reporting-resource-center</guid>
<category>Firm Reference Libraries</category>
<description>Bi-weekly Financial Reporting Insights and topic-organized accounting guidance.</description>
</item>
<item>
<title>Revenue recognition</title>
<link>https://dart.deloitte.com/USDART/home/codification/revenue/asc606-10/roadmap-revenue-recognition</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-deloitte-revenue-recognition</guid>
<category>Big Four Accounting & Reporting Guides / Deloitte</category>
<description>Roadmap to applying ASC 606.</description>
</item>
<item>
<title>Accounting changes and error corrections</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb2752-07-25-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-accounting-changes-and-error-corrections</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 250.</description>
</item>
<item>
<title>Asset retirement obligations</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1026-06-27-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-asset-retirement-obligations</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 410.</description>
</item>
<item>
<title>Business combinations</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1616-08-21-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-business-combinations</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 805.</description>
</item>
<item>
<title>Certain investments in debt and equity securities</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd03623-181us-09-18-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-certain-investments-in-debt-and-equity-securities</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 320 and ASC 321.</description>
</item>
<item>
<title>Consolidation</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd02856-161us-08-22-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-consolidation</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 810.</description>
</item>
<item>
<title>Credit impairment under ASC 326</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd04488-181us-09-25-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-credit-impairment-under-asc-326</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on the CECL model.</description>
</item>
<item>
<title>Derivatives and hedging</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd05712-191us-06-05-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-derivatives-and-hedging</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 815.</description>
</item>
<item>
<title>Disaggregation of income statement expenses</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd27503-251us-05-05-2026.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-disaggregation-of-income-statement-expenses</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASU 2024-03 (DISE).</description>
</item>
<item>
<title>Earnings per share</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1971-09-17-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-earnings-per-share</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 260.</description>
</item>
<item>
<title>Equity method investments and joint ventures</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd02230-161us-06-27-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-equity-method-investments-and-joint-ventures</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 323.</description>
</item>
<item>
<title>Fair value measurement</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1462-09-30-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-fair-value-measurement</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 820.</description>
</item>
<item>
<title>Foreign currency matters</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/frdbb2103-09-18-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-foreign-currency-matters</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 830.</description>
</item>
<item>
<title>Gains and losses from the derecognition of nonfinancial assets</title>
<link>https://www.ey.com/en_us/technical/accountinglink/financial-reporting-developments-gains-and-losses-from-the-der</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-gains-and-losses-from-the-derecognition-of-nonfinancial-assets</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 610-20.</description>
</item>
<item>
<title>Impairment or disposal of long-lived assets</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1887-08-27-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-impairment-or-disposal-of-long-lived-assets</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 360.</description>
</item>
<item>
<title>Income taxes</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1150-09-11-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-income-taxes</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 740.</description>
</item>
<item>
<title>Intangibles, goodwill and other</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1499-08-25-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-intangibles-goodwill-and-other</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 350.</description>
</item>
<item>
<title>Issuer's accounting for debt and equity financings</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd13740-211us-09-30-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-issuer-s-accounting-for-debt-and-equity-financings</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on debt and equity financings.</description>
</item>
<item>
<title>Lease accounting</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd00195-171us-08-27-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-lease-accounting</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 842.</description>
</item>
<item>
<title>Pro forma financial information</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-sec29171-251us-12-04-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-pro-forma-financial-information</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Guide to applying Article 11 of Regulation S-X.</description>
</item>
<item>
<title>Real estate project costs</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1883-05-13-24.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-real-estate-project-costs</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on real estate project costs.</description>
</item>
<item>
<title>Revenue from contracts with customers</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb3043-08-07-2025-v2.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-revenue-from-contracts-with-customers</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 606.</description>
</item>
<item>
<title>Share-based payment</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd06440-191us-09-11-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-share-based-payment</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 718.</description>
</item>
<item>
<title>Statement of cash flows</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frd42856-07-30-2024-v2.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-statement-of-cash-flows</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 230.</description>
</item>
<item>
<title>Transfers and servicing of financial assets</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-frdbb1921-09-24-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-transfers-and-servicing-of-financial-assets</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Financial Reporting Developments on ASC 860.</description>
</item>
<item>
<title>US GAAP versus IFRS: the basics</title>
<link>https://www.ey.com/content/dam/ey-unified-site/ey-com/en-us/technical/accountinglink/documents/ey-ifrs29540-261us-01-21-2026.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-ey-us-gaap-versus-ifrs-the-basics</guid>
<category>Big Four Accounting & Reporting Guides / EY</category>
<description>Comparison of US GAAP and IFRS Accounting Standards.</description>
</item>
<item>
<title>Accounting changes and error corrections</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-dpp-book-acct-changes-frv.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-accounting-changes-and-error-corrections</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 250.</description>
</item>
<item>
<title>Accounting for bankruptcies</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-accounting-for-bankruptcies.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-accounting-for-bankruptcies</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 852 reorganizations and liquidations.</description>
</item>
<item>
<title>Accounting for income taxes</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/accounting-for-income-taxes-frv.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-accounting-for-income-taxes</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 740.</description>
</item>
<item>
<title>AI and automation in financial reporting</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-ai-and-automation-financial-reporting.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-ai-and-automation-in-financial-reporting</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Guide to applying AI and automation in the reporting process.</description>
</item>
<item>
<title>Asset acquisitions</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-asset-acquisitions.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-asset-acquisitions</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 805-50.</description>
</item>
<item>
<title>Bitcoin custodians</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/pdf/2024/019191-1A-the-importance-of-custodians-whitepaper-v2.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-bitcoin-custodians</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Whitepaper on the role of custodians in bitcoin adoption and ownership.</description>
</item>
<item>
<title>Business combinations</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/accounting-for-business-combinations-and-noncontrolling-interests.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-business-combinations</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 805 and noncontrolling interests.</description>
</item>
<item>
<title>Climate risk in the financial statements</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-climate-risk-financial-statements.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-climate-risk-in-the-financial-statements</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on the effects of climate risk on the financial statements.</description>
</item>
<item>
<title>Consolidation</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-consolidation.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-consolidation</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 810 (VIE and voting interest models).</description>
</item>
<item>
<title>Contingencies, commitments and guarantees</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-dpp-book-contingencies-frv.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-contingencies-commitments-and-guarantees</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 450 and ASC 460.</description>
</item>
<item>
<title>Credit impairment</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-credit-impairment.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-credit-impairment</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on the ASC 326 CECL model.</description>
</item>
<item>
<title>Crypto asset lending</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2023/hot-topic-crypto-asset-lending.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-crypto-asset-lending</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Lenders' accounting for loans of crypto intangible assets.</description>
</item>
<item>
<title>Crypto intangible assets</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/issues-in-depth-crypto-intangible-asset-non-ic.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-crypto-intangible-assets</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Accounting and reporting for crypto intangible assets under ASC 350-60.</description>
</item>
<item>
<title>Crypto intangible assets (investment companies)</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/issues-in-depth-crypto-intangible-asset-inv-co.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-crypto-intangible-assets-investment-companies</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Investment company accounting for crypto intangible assets.</description>
</item>
<item>
<title>Crypto staking activities</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/hot-topic-accounting-for-crypto-staking-ativities.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-crypto-staking-activities</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Accounting for crypto staking rewards.</description>
</item>
<item>
<title>Debt and equity financing</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/debt-and-equity.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-debt-and-equity-financing</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on debt versus equity classification and financing transactions.</description>
</item>
<item>
<title>Derivatives and hedging</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-derivatives-hedging-accounting.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-derivatives-and-hedging</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 815.</description>
</item>
<item>
<title>Digital assets: IFRS vs US GAAP</title>
<link>https://kpmg.com/us/en/articles/2024/digital-assets-under-ifrs-accounting-standards.html</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-digital-assets-ifrs-vs-us-gaap</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>How digital-asset accounting differs between IFRS and US GAAP.</description>
</item>
<item>
<title>Discontinued operations and held-for-sale disposal groups</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-discontinued-operations.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-discontinued-operations-and-held-for-sale-disposal-groups</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 205-20 and ASC 360-10.</description>
</item>
<item>
<title>Earnings per share</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-earnings-per-share.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-earnings-per-share</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 260.</description>
</item>
<item>
<title>Economic disruption</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-dpp-handbook-ecomomic-disruption.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-economic-disruption</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on accounting through economic disruption and uncertainty.</description>
</item>
<item>
<title>Employee benefits</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-dpp-book-employee-benefits-new.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-employee-benefits</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 712 and ASC 715.</description>
</item>
<item>
<title>Equity method of accounting</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-equity-method-of-accounting-1224.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-equity-method-of-accounting</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 323.</description>
</item>
<item>
<title>Fair value measurement</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/FVM%20Handbook%202025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-fair-value-measurement</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 820.</description>
</item>
<item>
<title>Financial statement presentation</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-dpp-handbook-fsp.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-financial-statement-presentation</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on overall financial statement presentation.</description>
</item>
<item>
<title>Foreign currency</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-foreign-currency.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-foreign-currency</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 830.</description>
</item>
<item>
<title>GHG emissions reporting</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-ghg-emissions-reporting-dec-2024.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-ghg-emissions-reporting</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on greenhouse gas emissions reporting.</description>
</item>
<item>
<title>Going concern</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-going-concern.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-going-concern</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on the ASC 205-40 going concern assessment.</description>
</item>
<item>
<title>IFRS compared to US GAAP</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/ifrs-us-gaap-2024-final.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-ifrs-compared-to-us-gaap</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook comparing IFRS Accounting Standards to US GAAP.</description>
</item>
<item>
<title>IFRS vs US GAAP: CARES Act</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2020/ifrs-us-cares-act.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-ifrs-vs-us-gaap-cares-act</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>CARES Act accounting under IFRS compared to US GAAP.</description>
</item>
<item>
<title>Impairment of nonfinancial assets</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/impairment-of-nonfinancial-assets.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-impairment-of-nonfinancial-assets</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on goodwill, intangible, and long-lived asset impairment.</description>
</item>
<item>
<title>Internal control over financial reporting</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2023/handbook-internal-controls-over-financial-reporting.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-internal-control-over-financial-reporting</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on designing and evaluating ICFR.</description>
</item>
<item>
<title>Inventory</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/inventory.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-inventory</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 330.</description>
</item>
<item>
<title>Investment companies</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-investment-companies.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-investment-companies</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 946.</description>
</item>
<item>
<title>Investments</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-investments.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-investments</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on debt and equity securities (ASC 320 and ASC 321).</description>
</item>
<item>
<title>Leases</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/leases-handbook.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-leases</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 842.</description>
</item>
<item>
<title>Long-duration contracts (insurance)</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/fn-iid19-02-frv.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-long-duration-contracts-insurance</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on the LDTI insurance standard (ASU 2018-12).</description>
</item>
<item>
<title>NFTs</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/issues-in-depth-accounting-for-nfts.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-nfts</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Accounting for nonfungible tokens.</description>
</item>
<item>
<title>Public offerings: non-US issuers</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/non-us-issuers-public-offerings-filing-requirements.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-public-offerings-non-us-issuers</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Filing requirements for non-US issuers in US public offerings.</description>
</item>
<item>
<title>Public offerings: US issuers</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-issuers-public-offerings-filing-requirements.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-public-offerings-us-issuers</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Filing requirements for US issuers in public offerings.</description>
</item>
<item>
<title>Real estate lessor guide</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2023/leases-real-estate-lessors-2.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-real-estate-lessor-guide</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>ASC 842 lessor accounting for real estate.</description>
</item>
<item>
<title>Real estate revenue</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/revenue-real-estate-2024.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-real-estate-revenue</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>ASC 606 revenue for real estate.</description>
</item>
<item>
<title>Reference rate reform</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-reference-rate-reform-3.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-reference-rate-reform</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 848 (LIBOR transition).</description>
</item>
<item>
<title>Research and development</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/research-and-development.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-research-and-development</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 730.</description>
</item>
<item>
<title>Revenue for franchisors</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2021/us-dpp-ris-franchisors.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-revenue-for-franchisors</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>ASC 606 revenue for franchisors.</description>
</item>
<item>
<title>Revenue for software and SaaS</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-revenue-software-saas.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-revenue-for-software-and-saas</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>ASC 606 revenue for software and SaaS.</description>
</item>
<item>
<title>Revenue recognition</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-revenue-recognition-1224.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-revenue-recognition</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 606.</description>
</item>
<item>
<title>SEC reporting for business combinations</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-sec-business-combinations-2025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-sec-reporting-for-business-combinations</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Regulation S-X Rule 3-05 and Article 11 pro forma requirements.</description>
</item>
<item>
<title>Segment reporting</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/us-dpp-segment-reporting-handbook-post-asu-frv.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-segment-reporting</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 280 (post ASU 2023-07).</description>
</item>
<item>
<title>Service concession arrangements</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-service-concessions.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-service-concession-arrangements</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 853.</description>
</item>
<item>
<title>Share-based payment</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/handbook-share-based-payments.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-share-based-payment</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 718.</description>
</item>
<item>
<title>Software and website costs</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/pdf/2024/handbook-software-website-costs-2.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-software-and-website-costs</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 350-40 and ASC 985-20.</description>
</item>
<item>
<title>Stablecoins</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/pdf/2025/stablecoins-kpmg.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-stablecoins</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Accounting and reporting considerations for stablecoins.</description>
</item>
<item>
<title>Statement of cash flows</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2024/handbook-statement-cash-flows.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-statement-of-cash-flows</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 230.</description>
</item>
<item>
<title>Tax credits</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/tax-credits.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-tax-credits</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on accounting for tax credits and credit investments.</description>
</item>
<item>
<title>Transfers and servicing of financial assets</title>
<link>https://kpmg.com/kpmg-us/content/dam/kpmg/frv/pdf/2025/transfers-servicing-financial-assets.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-kpmg-transfers-and-servicing-of-financial-assets</guid>
<category>Big Four Accounting & Reporting Guides / KPMG</category>
<description>Handbook on ASC 860.</description>
</item>
<item>
<title>Bankruptcies and liquidations</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/bankruptcies_and_liq/assets/blguide0625.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-bankruptcies-and-liquidations</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 852.</description>
</item>
<item>
<title>Business combinations and noncontrolling interests</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/business_combination/assets/pwcbuscombguide0226.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-business-combinations-and-noncontrolling-interests</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 805 and ASC 810.</description>
</item>
<item>
<title>Consolidation</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/consolidation_and_eq/assets/pwcconsolidations1225.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-consolidation</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 810 (VIEs and voting interests).</description>
</item>
<item>
<title>Crypto assets</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/crypto-assets-guide/assets/pwccryptoassetsguide0825.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-crypto-assets</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide to accounting for crypto assets.</description>
</item>
<item>
<title>Derivatives and hedging</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/derivatives_and_hedg/assets/dhguide0126.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-derivatives-and-hedging</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 815.</description>
</item>
<item>
<title>Equity method investments and joint ventures</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/equity_method_of_accounting/assets/pwcequitymethod0426.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-equity-method-investments-and-joint-ventures</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 323.</description>
</item>
<item>
<title>Fair value measurements</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/fair_value_measureme/assets/pwcfairvalueguide0922.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-fair-value-measurements</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 820.</description>
</item>
<item>
<title>Financial statement presentation</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/financial_statement_/assets/fspguide0526.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-financial-statement-presentation</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on overall financial statement presentation.</description>
</item>
<item>
<title>Financing transactions</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/financing_transactio/assets/pwcfinancingguide1225.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-financing-transactions</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on debt, equity, and financing arrangements.</description>
</item>
<item>
<title>Foreign currency</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/foreign_currency/assets/pwcforeigncurrency0522.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-foreign-currency</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 830.</description>
</item>
<item>
<title>Health care entities</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/health-care/asset/pwchealthcare0323.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-health-care-entities</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Industry guide for health care entities.</description>
</item>
<item>
<title>IFRS and US GAAP: similarities and differences</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/ifrs_and_us_gaap_sim/assets/pwcifrsusgaap0326.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-ifrs-and-us-gaap-similarities-and-differences</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Comparison of IFRS and US GAAP.</description>
</item>
<item>
<title>Income taxes</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/income_taxes/assets/pwcincometaxguide0326.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-income-taxes</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 740.</description>
</item>
<item>
<title>Insurance contracts</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/insurance-contracts/assets/pwcinsurguide0524.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-insurance-contracts</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 944 for insurance entities (post ASU 2018-12).</description>
</item>
<item>
<title>Inventory</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/inventory/assets/ivguide0425.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-inventory</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 330.</description>
</item>
<item>
<title>Investment companies</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_and_repor/accounting_and_repor__6_US/9652_investment_comp_US/1_accounting_practic_US.html</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-investment-companies</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Industry guidance for investment companies (ASC 946).</description>
</item>
<item>
<title>Leases</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/leases/assets/pwcleasesguide1224.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-leases</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 842.</description>
</item>
<item>
<title>Loans and investments</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/loans_and_investment/assets/pwcloansinvestments0126.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-loans-and-investments</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on loans and debt and equity investments.</description>
</item>
<item>
<title>Not-for-profit entities</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/not-for-profit-entities/assets/pwcnotforprofitguide0126.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-not-for-profit-entities</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 958.</description>
</item>
<item>
<title>Pensions and other employee benefits</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/pensions-and-employee-benefitspeb/assets/pwcpensionsguide0126.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-pensions-and-other-employee-benefits</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 715.</description>
</item>
<item>
<title>Pharmaceutical and life sciences</title>
<link>https://www.pwc.com/us/en/industries/health-industries/library/assets/pwc-2025-us-gaap-issues-and-solutions-for-pharmaceutical-and-life-sciences.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-pharmaceutical-and-life-sciences</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Industry GAAP issues and solutions.</description>
</item>
<item>
<title>Property, plant, equipment and other assets</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/property_plant_equip/assets/ppeguide1224.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-property-plant-equipment-and-other-assets</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 360.</description>
</item>
<item>
<title>Reference rate reform</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/reference-rate-reform/Asset/rrrguide0924.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-reference-rate-reform</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 848.</description>
</item>
<item>
<title>Revenue from contracts with customers</title>
<link>https://viewpoint.pwc.com/content/dam/pwc-madison/ditaroot/us/en/pwc/accounting_guides/revenue_from_contrac/assets/rrguide092025.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-revenue-from-contracts-with-customers</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 606.</description>
</item>
<item>
<title>Stock-based compensation</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/stockbased_compensat/assets/stockcompguide1225.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-stock-based-compensation</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 718.</description>
</item>
<item>
<title>Transfers and servicing of financial assets</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/transfers_and_servic/assets/pwcts022026.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-transfers-and-servicing-of-financial-assets</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Guide on ASC 860.</description>
</item>
<item>
<title>Utilities and power companies</title>
<link>https://viewpoint.pwc.com/dt/us/en/pwc/accounting_guides/utilities_and_power_/utilities_and_power__US/upfm.html</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#big-four-accounting-reporting-guides-pwc-utilities-and-power-companies</guid>
<category>Big Four Accounting & Reporting Guides / PwC</category>
<description>Industry guide for utilities and power companies.</description>
</item>
<item>
<title>ASC 606 revenue recognition e-book</title>
<link>https://www.bakertilly.com/insights/asc-606-revenue-recognition-ebook</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-baker-tilly-asc-606-revenue-recognition-e-book</guid>
<category>Other Firm Accounting & Reporting Guides / Baker Tilly</category>
<description>E-book on applying ASC 606.</description>
</item>
<item>
<title>ASC 606 revenue recognition resource page</title>
<link>https://www.bakertilly.com/specialties/asc-606-revenue-recognition</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-baker-tilly-asc-606-revenue-recognition-resource-page</guid>
<category>Other Firm Accounting & Reporting Guides / Baker Tilly</category>
<description>Hub of ASC 606 revenue recognition resources.</description>
</item>
<item>
<title>ASC 842 compliance for nonpublic entities</title>
<link>https://www.bakertilly.com/insights/breaking-down-the-complexities-of-asc-842</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-baker-tilly-asc-842-compliance-for-nonpublic-entities</guid>
<category>Other Firm Accounting & Reporting Guides / Baker Tilly</category>
<description>What nonpublic entities can expect under ASC 842.</description>
</item>
<item>
<title>ASC 842 leases guidebook</title>
<link>https://www.bakertilly.com/insights/are-you-uncertain-where-to-start-in-adapting-your-leases-accounting-to-the-</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-baker-tilly-asc-842-leases-guidebook</guid>
<category>Other Firm Accounting & Reporting Guides / Baker Tilly</category>
<description>Guidebook on adapting lease accounting to ASC 842.</description>
</item>
<item>
<title>Lease accounting resource page</title>
<link>https://www.bakertilly.com/specialties/asc-842-lease-accounting</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-baker-tilly-lease-accounting-resource-page</guid>
<category>Other Firm Accounting & Reporting Guides / Baker Tilly</category>
<description>Hub of ASC 842 and GASB 87 lease accounting resources.</description>
</item>
<item>
<title>Accounting for cryptocurrencies</title>
<link>https://arch.bdo.com/getContentAsset/0e733aae-351f-4d6f-b697-39ebb6f76767/bb620d56-5e9c-4774-8d17-fb9323eefdf4/ASSR-Accounting-for-Cryptocurrencies.pdf?language=en</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-accounting-for-cryptocurrencies</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Blueprint on accounting for crypto assets.</description>
</item>
<item>
<title>Accounting for leases under ASC 842</title>
<link>https://www.bdo.com/getmedia/1b712239-4dfc-4cab-b110-0055962b25d8/ASSR-Accounting-for-Leases-under-ASC842-FINAL.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-accounting-for-leases-under-asc-842</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Guide on lessee and lessor accounting under ASC 842.</description>
</item>
<item>
<title>COVID-19 accounting and reporting considerations</title>
<link>https://www.bdo.com/getmedia/e94e95a6-369f-4600-a83d-458859397b78/COVID-19-Accounting-Reporting-and-Other-Related-Considerations-%281%29.pdf?ext=.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-covid-19-accounting-and-reporting-considerations</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Accounting and reporting considerations arising from COVID-19.</description>
</item>
<item>
<title>Financial reporting considerations for tariffs</title>
<link>https://arch.bdo.com/getContentAsset/eda42da4-d9cd-4ee6-afc1-47081c4ede33/bb620d56-5e9c-4774-8d17-fb9323eefdf4/Financial-Reporting-Implications-For-Tariffs-BDO-03-2026.pdf?language=en</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-financial-reporting-considerations-for-tariffs</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Financial reporting implications of tariffs.</description>
</item>
<item>
<title>Identifying performance obligations in the software industry</title>
<link>https://arch.bdo.com/getContentAsset/e393e069-6960-44fd-839a-4aacb86a70d1/bb620d56-5e9c-4774-8d17-fb9323eefdf4/Rev-Rec-Software-Industry.pdf?language=en</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-identifying-performance-obligations-in-the-software-industry</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Supplement to the ASC 606 Blueprint for software.</description>
</item>
<item>
<title>Lease accounting for the retail and restaurant industries</title>
<link>https://arch.bdo.com/getContentAsset/72ff1cc4-01ec-4700-a2f2-8b564ad3edc1/bb620d56-5e9c-4774-8d17-fb9323eefdf4/Lease-Accounting-for-Retail-and-Restaurant-Industries-BDO-Blueprint-01-2026.pdf?language=en</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-lease-accounting-for-the-retail-and-restaurant-industries</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Blueprint on ASC 842 for retail and restaurant entities.</description>
</item>
<item>
<title>Revenue recognition under ASC 606</title>
<link>https://arch.bdo.com/getContentAsset/118430f1-fe4d-4112-adf6-884d6a0347f3/bb620d56-5e9c-4774-8d17-fb9323eefdf4/Revenue-Recognition-Under-ASC-606-BDO-Blueprint-10-2025.pdf?language=en</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-revenue-recognition-under-asc-606</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Blueprint on ASC 606.</description>
</item>
<item>
<title>Understanding GASB Implementation Guide No. 2025-1</title>
<link>https://www.bdo.com/getmedia/b96e5eba-d5af-4b4b-afd5-04787f76389c/PS-Understanding-GASB-Implementation-Guide-No-2025-1-Insight.pdf?ext=.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-bdo-understanding-gasb-implementation-guide-no-2025-1</guid>
<category>Other Firm Accounting & Reporting Guides / BDO</category>
<description>Public sector guidance on GASB Implementation Guide 2025-1.</description>
</item>
<item>
<title>Applying Topic 606 using various contract examples</title>
<link>https://www.claconnect.com/-/media/files/white-papers/white-paper--revenue-recognion-applications-for-he.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-cla-applying-topic-606-using-various-contract-examples</guid>
<category>Other Firm Accounting & Reporting Guides / CLA</category>
<description>ASC 606 illustrated with contract examples.</description>
</item>
<item>
<title>How to apply new revenue recognition rules to your construction company</title>
<link>https://www.claconnect.com/-/media/files/white-papers/how-to-apply-new-revenue-recognition-rules-to-your-construction-company-cli.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-cla-how-to-apply-new-revenue-recognition-rules-to-your-construction-company</guid>
<category>Other Firm Accounting & Reporting Guides / CLA</category>
<description>ASC 606 for construction companies.</description>
</item>
<item>
<title>Impact of revenue recognition standards</title>
<link>https://www.claconnect.com/-/media/files/presentations/impact-of-revenue-recognition-standards--cliftonlarsonallen-final.pdf</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-cla-impact-of-revenue-recognition-standards</guid>
<category>Other Firm Accounting & Reporting Guides / CLA</category>
<description>Overview of the impact of ASC 606.</description>
</item>
<item>
<title>Independent school revenue recognition for tuition</title>
<link>https://www.claconnect.com/-/media/files/white-papers/independent-schools-white-paper.pdf?la=en</link>
<guid isPermaLink="false">https://andrewfowl.github.io/Awesome_Technical_Accounting/#other-firm-accounting-reporting-guides-cla-independent-school-revenue-recognition-for-tuition</guid>
<category>Other Firm Accounting & Reporting Guides / CLA</category>
<description>Tuition revenue recognition for independent schools.</description>
</item>
<item>
<title>PPP FAQ accounting questions</title>
<link>https://www.claconnect.com/-/media/files/events-supporting/ppp-faq-accounting-questions.pdf</link>