-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
984 lines (968 loc) · 559 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<!DOCTYPE html>
<html>
<head>
<title>Rss - Crawled using Github Action</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Float four columns side by side */
.column {
float: left;
width: 20%;
padding: 0 10px;
}
/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
margin-bottom: 20px;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
/* Style the counter cards */
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 8px;
text-align: center;
background-color: #f1f1f1;
min-height: 162px;
max-height: 162px;
overflow: hidden;
}
.card .feed-img-wrapper{
width: 100%;
max-height: 100px;
overflow: hidden;
}
.card .feed-img-wrapper img {
width: 100%;
}
.card .feed-title{
font-weight: 300;
font-size: 14px;
padding: 10px 0;
text-align: left;
}
h2.channel-title{
margin: 40px 0 10px 0;
}
</style>
</head>
<body>
<h3>Hello world, I'm Jin </h3>
<h5><span id="randomKey">Loading...</span></h5>
<p style="font-weight: 400; color: red">📝📝📝 This page is generated automatically, source code here: <a href="https://github.com/minhhungit/github-action-rss-crawler">https://github.com/minhhungit/github-action-rss-crawler</a></p>
<div style="margin: 30px 0">
<!-- RSSDATA:START -->
<h2 class='channel-title'># <a href='https://damienbod.com' target='_blank'>https://damienbod.com</a></h2>
<ul class='feed-items'>
<li><a href='https://damienbod.com/2025/01/15/asp-net-core-user-delegated-access-token-management/'>ASP.NET Core user delegated access token management</a></li><li><a href='https://damienbod.com/2024/12/09/using-entra-external-id-with-an-auth0-openid-connect-identity-provider/'>Using Entra External ID with an Auth0 OpenID Connect identity provider</a></li><li><a href='https://damienbod.com/2024/12/02/using-asp-net-core-with-azure-key-vault/'>Using ASP.NET Core with Azure Key Vault</a></li><li><a href='https://damienbod.com/2024/11/18/asp-net-core-bff-using-openid-connect-and-vue-js/'>ASP.NET Core BFF using OpenID Connect and Vue.js</a></li><li><a href='https://damienbod.com/2024/11/04/asp-net-core-and-angular-bff-using-a-yarp-downstream-api-protected-using-certificate-authentication/'>ASP.NET Core and Angular BFF using a YARP downstream API protected using certificate authentication</a></li></ul>
<h2 class='channel-title'># <a href='https://vuejsfeed.com' target='_blank'>https://vuejsfeed.com</a></h2>
<ul class='feed-items'>
<li><a href='https://vuejsfeed.com/blog/inspira-ui-building-interfaces-with-stunning-animations'>Inspira UI: Building Interfaces with Stunning Animations</a></li><li><a href='https://vuejsfeed.com/blog/48-hours-of-unlimited-vue-js-learning-your-guide-to-vue-school-s-free-weekend'>48 Hours of Unlimited Vue.js Learning: Your Guide to Vue School's Free Weekend</a></li><li><a href='https://vuejsfeed.com/blog/floating-ui-build-tooltips-popovers-and-more'>Floating UI - Build tooltips, popovers and more</a></li><li><a href='https://vuejsfeed.com/blog/vue-fundamentals-with-the-composition-api-course'>Vue Fundamentals with the Composition API Course</a></li><li><a href='https://vuejsfeed.com/blog/sorting-lists-with-vue-js-composition-api-computed-properties'>Sorting Lists with Vue.js Composition API Computed Properties</a></li></ul>
<h2 class='channel-title'># <a href='https://www.stevejgordon.co.uk' target='_blank'>https://www.stevejgordon.co.uk</a></h2>
<ul class='feed-items'>
<li><a href='https://www.stevejgordon.co.uk/how-dotnet-muxer-resolves-and-loads-the-hostfxr-library'>How dotnet.exe resolves and loads the hostfxr library – Exploring the .NET muxer</a></li><li><a href='https://www.stevejgordon.co.uk/a-brief-introduction-to-the-dotnet-muxer'>A Brief Introduction to the .NET Muxer (aka dotnet.exe)</a></li><li><a href='https://www.stevejgordon.co.uk/implementing-aspnetcore-span-linking-for-redirects-with-middleware'>Implementing ASP.NET Core Automatic Span (Activity) Linking for Internal Redirects with Middleware on .NET 9</a></li><li><a href='https://www.stevejgordon.co.uk/efficient-dictionary-for-ipaddress-tracking-using-net-9-with-alternatelookup-and-ialternateequalitycomparer'>An Efficient Dictionary for IPAddress Tracking using .NET 9 with AlternateLookup and IAlternateEqualityComparer</a></li><li><a href='https://www.stevejgordon.co.uk/receiving-github-webhooks-when-using-the-aspnetcore-developer-certificate'>Receiving GitHub Webhooks When Using the ASP.NET Core Developer Certificate</a></li></ul>
<h2 class='channel-title'># <a href='http://blog.jonathanoliver.com' target='_blank'>http://blog.jonathanoliver.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.jonathanoliver.com/ebs-scares-me/'>AWS Elastic Block Storage Scares Me</a></li><li><a href='https://blog.jonathanoliver.com/golang-has-generics/'>Golang Has Generics—Why I Don't Miss Generics Anymore</a></li><li><a href='https://blog.jonathanoliver.com/hacker-news-page-one/'>I Was On Page One of Hacker News—Here's What I Learned</a></li><li><a href='https://blog.jonathanoliver.com/celebrating-the-death-of-comcast-net/'>Celebrating the Death of Comcast: The Case for Net Neutrality</a></li><li><a href='https://blog.jonathanoliver.com/why-i-left-dot-net/'>Why I Left the .NET Framework</a></li></ul>
<h2 class='channel-title'># <a href='http://codeclimber.net.nz/' target='_blank'>http://codeclimber.net.nz/</a></h2>
<ul class='feed-items'>
<li><a href='http://codeclimber.net.nz/archive/2020/03/12/how-to-uninstall-old-versions-of-net-core/'>How to uninstall old versions of .NET Core</a></li><li><a href='http://codeclimber.net.nz/archive/2019/07/15/7-easy-steps-to-install-miniprofiler-on-an-aspnet-mvc-website/'>7 easy steps to install MiniProfiler on an ASP.NET MVC website</a></li><li><a href='http://codeclimber.net.nz/archive/2019/06/24/how-to-run-micro-benchmarking-with-benchmarkdotnet-bonus-post-from-the-ray-tracer-challenge-series/'>How to run micro-benchmarking with BenchmarkDotNet - Bonus post from The Ray Tracer Challenge series</a></li><li><a href='http://codeclimber.net.nz/archive/2019/06/21/free-ebook-on-aspnet-core-2-2-is-available-for-download/'>Free eBook on ASP.Net Core 2.2 is available for download</a></li><li><a href='http://codeclimber.net.nz/archive/2019/06/10/the-ray-tracer-challenge-drawing-to-a-canvas-and-saving-the-image-to-a-file/'>The Ray Tracer Challenge - Drawing to a canvas and saving the image to a file</a></li></ul>
<h2 class='channel-title'># <a href='https://codeopinion.com' target='_blank'>https://codeopinion.com</a></h2>
<ul class='feed-items'>
<li><a href='https://codeopinion.com/processing-large-payloads-with-the-claim-check-pattern/'>Processing Large Payloads with the Claim Check Pattern</a></li><li><a href='https://codeopinion.com/event-sourced-aggregate-design-focus-on-business-logic/'>Event Sourced Aggregate Design: Focus on Business Logic</a></li><li><a href='https://codeopinion.com/restructuring-to-a-vertical-slice-architecture/'>Restructuring to a Vertical Slice Architecture</a></li><li><a href='https://codeopinion.com/software-architecture-qa-microservices-cqrs-more/'>Software Architecture Q&A: Microservices, CQRS & More!</a></li><li><a href='https://codeopinion.com/architecture-decision-records-adr-as-a-log-that-answers-why/'>Architecture Decision Records (ADR) as a LOG that answers “WHY?”</a></li></ul>
<h2 class='channel-title'># <a href='http://mattwarren.org' target='_blank'>http://mattwarren.org</a></h2>
<ul class='feed-items'>
<li><a href='http://www.mattwarren.org/2020/03/03/Analysing-.NET-Runtime-Startup-with-Flamegraphs/'>Analysing .NET start-up time with Flamegraphs</a></li><li><a href='http://www.mattwarren.org/2020/02/19/Under-the-hood-of-Default-Interface-Methods/'>Under the hood of "Default Interface Methods"</a></li><li><a href='http://www.mattwarren.org/2019/10/25/Research-based-on-the-.NET-Runtime/'>Research based on the .NET Runtime</a></li><li><a href='http://www.mattwarren.org/2019/09/26/Stubs-in-the-.NET-Runtime/'>"Stubs" in the .NET Runtime</a></li><li><a href='http://www.mattwarren.org/2019/04/25/ASCII-Art-in-.NET-Code/'>ASCII Art in .NET Code</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.maartenballiauw.be' target='_blank'>https://blog.maartenballiauw.be</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.maartenballiauw.be/post/2021/06/01/custom-bindings-with-azure-functions-dotnet-isolated-worker.html'>Custom bindings with Azure Functions .NET Isolated Worker</a></li><li><a href='https://blog.maartenballiauw.be/post/2021/05/25/running-a-net-application-as-a-service-on-linux-with-systemd.html'>Running a .NET application as a service on Linux with Systemd</a></li><li><a href='https://blog.maartenballiauw.be/post/2021/05/05/building-a-supply-chain-attack-with-dotnet-nuget-dns-source-generators-and-more.html'>Building a supply chain attack with .NET, NuGet, DNS, source generators, and more!</a></li><li><a href='https://blog.maartenballiauw.be/post/2021/01/13/the-process-thought-and-technology-behind-building-a-friendly-net-sdk-for-jetbrains-space.html'>The process, thought and technology behind building a friendly .NET SDK for JetBrains Space</a></li><li><a href='https://blog.maartenballiauw.be/post/2020/12/01/export-office365-calendar-events-to-space-using-graph-api-and-space-sdk.html'>Export Office 365 calendar events to JetBrains Space using the Microsoft Graph API, the JetBrains Space SDK, and automation</a></li></ul>
<h2 class='channel-title'># <a href='https://haacked.com/' target='_blank'>https://haacked.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feeds.haacked.com/~r/haacked/~3/gf3qkqbIImI/'>IntelliSense for Hosted C# Script</a></li><li><a href='http://feeds.haacked.com/~r/haacked/~3/k1vggLSs9JQ/'>HTTPS with LetsEncrypt for Azure Functions</a></li><li><a href='http://feeds.haacked.com/~r/haacked/~3/8WMkpgy5isc/'>Subscribing to cloud events with Abbot</a></li><li><a href='http://feeds.haacked.com/~r/haacked/~3/TmN4SUhfKDQ/'>Writing Sparkly Abbot Skills With C#</a></li><li><a href='http://feeds.haacked.com/~r/haacked/~3/QteZ69wtC0I/'>Argument parsing with Abbot</a></li></ul>
<h2 class='channel-title'># <a href='https://odetocode.com/' target='_blank'>https://odetocode.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://odetocode.com/blogs/scott/archive/2020/01/30/markdown-front-matter-for-metadata.aspx'>Markdown Front Matter For Metadata</a></li><li><a href='http://odetocode.com/blogs/scott/archive/2020/01/26/automatic-image-uploads-with-markdig-processing.aspx'>Automatic Image Uploads with Markdig Processing</a></li><li><a href='http://odetocode.com/blogs/scott/archive/2020/01/23/a-custom-renderer-extension-for-markdig.aspx'>A Custom Renderer Extension for Markdig</a></li><li><a href='http://odetocode.com/blogs/scott/archive/2020/01/21/the-c-interactive-window.aspx'>The C# Interactive Window</a></li><li><a href='http://odetocode.com/blogs/scott/archive/2020/01/19/avoiding-the-debugger-with-better-logging.aspx'>Avoiding the Debugger with Better Logging</a></li></ul>
<h2 class='channel-title'># <a href='https://www.mikesdotnetting.com/' target='_blank'>https://www.mikesdotnetting.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.mikesdotnetting.com/article/337/whats-new-in-net-core-3-0-for-razor-pages'>What's New In .NET Core 3.0 For Razor Pages</a></li><li><a href='https://www.mikesdotnetting.com/article/338/using-razor-components-in-a-razor-page'>Using Razor Components In A Razor Page</a></li><li><a href='https://www.mikesdotnetting.com/article/339/optional-parameters-in-razor-pages-routing'>Optional Parameters in Razor Pages Routing</a></li><li><a href='https://www.mikesdotnetting.com/article/340/working-with-query-strings-in-blazor'>Working With Query Strings In Blazor</a></li><li><a href='https://www.mikesdotnetting.com/article/341/uploading-files-in-blazor'>Uploading Files In Blazor</a></li></ul>
<h2 class='channel-title'># <a href='https://www.hanselman.com/blog' target='_blank'>https://www.hanselman.com/blog</a></h2>
<ul class='feed-items'>
<li><a href='http://feeds.hanselman.com/~/667191922/0/scotthanselman~How-to-detect-if-the-Users-OS-prefers-dark-mode-and-change-your-site-with-CSS-and-JS'>How to detect if the User's OS prefers dark mode and change your site with CSS and JS</a></li><li><a href='http://feeds.hanselman.com/~/667169074/0/scotthanselman~Minimal-APIs-in-NET-but-where-are-the-Unit-Tests'>Minimal APIs in .NET 6 but where are the Unit Tests?</a></li><li><a href='http://feeds.hanselman.com/~/666293876/0/scotthanselman~Minimal-APIs-at-a-glance-in-NET'>Minimal APIs at a glance in .NET 6</a></li><li><a href='http://feeds.hanselman.com/~/665533426/0/scotthanselman~A-NET-Minimal-API-Todo-example-Playground'>A .NET 6 Minimal API Todo example Playground</a></li><li><a href='http://feeds.hanselman.com/~/664597384/0/scotthanselman~My-Ultimate-PowerShell-prompt-with-Oh-My-Posh-and-the-Windows-Terminal'>My Ultimate PowerShell prompt with Oh My Posh and the Windows Terminal</a></li></ul>
<h2 class='channel-title'># <a href='http://dontcodetired.com/blog/' target='_blank'>http://dontcodetired.com/blog/</a></h2>
<ul class='feed-items'>
<li><a href='http://dontcodetired.com/blog/post/New-Pluralsight-Course-Update-Working-with-Nulls-in-C'>New Pluralsight Course Update: Working with Nulls in C#</a></li><li><a href='http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Reduce-Boilerplate-Constructor-Code-with-Init-Only-Property-Setters'>ICYMI C# 9 New Features: Reduce Boilerplate Constructor Code with Init Only Property Setters</a></li><li><a href='http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Adding-foreach-Support-To-Any-Type'>ICYMI C# 9 New Features: Adding foreach Support To Any Type</a></li></ul>
<h2 class='channel-title'># <a href='https://andrewlock.net' target='_blank'>https://andrewlock.net</a></h2>
<ul class='feed-items'>
<li><a href='https://andrewlock.net/exploring-dotnet-6-part-1-looking-inside-configurationmanager-in-dotnet-6/'>Looking inside ConfigurationManager in .NET 6: Exploring .NET Core 6 - Part 1</a></li><li><a href='https://andrewlock.net/using-source-generators-with-blazor-in-dotnet-6/'>Using Source Generators with Blazor components in .NET 6</a></li><li><a href='https://andrewlock.net/downloading-artifacts-from-azure-devops-using-dotnet/'>Downloading artifacts from Azure DevOps using .NET</a></li><li><a href='https://andrewlock.net/rebuilding-stongly-typed-id-as-a-source-generator-1-0-0-beta-release/'>Rebuilding StronglyTypedId as a source generator - 1.0.0-beta release: Using strongly-typed entity IDs to avoid primitive obsession - Part 7</a></li><li><a href='https://andrewlock.net/a-deep-dive-on-stringbuilder-part-6-VauleStringBuilder-a-stack-based-string-builder/'>ValueStringBuilder: a stack-based string-builder: A deep dive on StringBuilder - Part 6</a></li></ul>
<h2 class='channel-title'># <a href='https://viblo.asia' target='_blank'>https://viblo.asia</a></h2>
<ul class='feed-items'>
<li><a href='https://viblo.asia/p/custom-react-hooks-OeVKB6pyKkW'>Custom React Hooks</a></li><li><a href='https://viblo.asia/p/tim-hieu-ve-cac-property-wrappers-trong-swiftui-1Je5E6gYKnL'>Tìm hiểu về các property wrappers trong SwiftUI</a></li><li><a href='https://viblo.asia/p/mot-so-thao-tac-co-ban-tren-mysql-ma-testerqa-nen-biet-phan-6-YWOZr3v7lQ0'>MỘT SỐ THAO TÁC CƠ BẢN TRÊN MYSQL MÀ TESTER/QA NÊN BIẾT (Phần 6)</a></li><li><a href='https://viblo.asia/p/gioi-thieu-ve-type-hints-trong-python-gGJ596JrKX2'>Giới thiệu về type hints trong python</a></li><li><a href='https://viblo.asia/p/moviedb-app-xamarin-forms-mvvm-part-2-djeZ1j1YlWz'>MovieDB App Xamarin Forms Mvvm (Part 2)</a></li></ul>
<h2 class='channel-title'># <a href='https://blogs.msdn.microsoft.com/visualstudio/' target='_blank'>https://blogs.msdn.microsoft.com/visualstudio/</a></h2>
<ul class='feed-items'>
<li><a href='https://devblogs.microsoft.com/visualstudio/discover-quick-action-intellicode/'>Discover quick actions for common tasks as you type, with IntelliCode</a></li><li><a href='https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-4-is-now-available/'>Visual Studio 2022 Preview 4 is now available!</a></li><li><a href='https://devblogs.microsoft.com/visualstudio/the-future-of-visual-studio-extensibility-is-here/'>The Future of Visual Studio Extensibility is Here!</a></li><li><a href='https://devblogs.microsoft.com/visualstudio/new-improved-attach-to-process-dialog-experience/'>New Improved Attach to Process Dialog Experience</a></li><li><a href='https://devblogs.microsoft.com/visualstudio/boost-your-productivity-with-productivity-power-tools-extensions-in-visual-studio-2022/'>Boost your productivity with Productivity Power Tools Extensions in Visual Studio 2022!</a></li></ul>
<h2 class='channel-title'># <a href='https://blogs.msdn.microsoft.com/dotnet/' target='_blank'>https://blogs.msdn.microsoft.com/dotnet/</a></h2>
<ul class='feed-items'>
<li><a href='https://devblogs.microsoft.com/dotnet/announcing-net-6-release-candidate-1/'>Announcing .NET 6 Release Candidate 1</a></li><li><a href='https://devblogs.microsoft.com/dotnet/september-2021-updates/'>.NET September 2021 Updates – 5.0.10 and 3.1.19</a></li><li><a href='https://devblogs.microsoft.com/dotnet/update-on-dotnet-maui/'>Update on .NET Multi-platform App UI (.NET MAUI)</a></li><li><a href='https://devblogs.microsoft.com/dotnet/taking-the-ef-core-azure-cosmos-db-provider-for-a-test-drive/'>Taking the EF Core Azure Cosmos DB Provider for a Test Drive</a></li><li><a href='https://devblogs.microsoft.com/dotnet/file-io-improvements-in-dotnet-6/'>File IO improvements in .NET 6</a></li></ul>
<h2 class='channel-title'># <a href='https://blogs.msdn.microsoft.com/webdev/' target='_blank'>https://blogs.msdn.microsoft.com/webdev/</a></h2>
<ul class='feed-items'>
<li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-rc-1/'>ASP.NET Core updates in .NET 6 Release Candidate 1</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-7/'>ASP.NET Core updates in .NET 6 Preview 7</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-6/'>ASP.NET Core updates in .NET 6 Preview 6</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-5/'>ASP.NET Core updates in .NET 6 Preview 5</a></li><li><a href='https://devblogs.microsoft.com/aspnet/building-contextual-experiences-w-blazor/'>Building Contextual Experiences w/ Blazor</a></li></ul>
<h2 class='channel-title'># <a href='http://blog.cwa.me.uk/' target='_blank'>http://blog.cwa.me.uk/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/ReflectivePerspective/~3/U3tJ5hV6M2U/'>The Morning Brew #3318</a></li><li><a href='http://feedproxy.google.com/~r/ReflectivePerspective/~3/bvGMuAL_Ji8/'>The Morning Brew #3317</a></li><li><a href='http://feedproxy.google.com/~r/ReflectivePerspective/~3/dDL79azr1lI/'>The Morning Brew #3316</a></li><li><a href='http://feedproxy.google.com/~r/ReflectivePerspective/~3/ok_B_XLKOUU/'>The Morning Brew #3315</a></li><li><a href='http://feedproxy.google.com/~r/ReflectivePerspective/~3/_sYMSE-jFeo/'>The Morning Brew #3314</a></li></ul>
<h2 class='channel-title'># <a href='https://www.alvinashcraft.com/' target='_blank'>https://www.alvinashcraft.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.alvinashcraft.com/2021/09/20/dew-drop-september-20-2021-3520/'>Dew Drop – September 20, 2021 (#3520)</a></li><li><a href='https://www.alvinashcraft.com/2021/09/17/dew-drop-september-17-2021-3519/'>Dew Drop – September 17, 2021 (#3519)</a></li><li><a href='https://www.alvinashcraft.com/2021/09/16/dew-drop-september-16-2021-3518/'>Dew Drop – September 16, 2021 (#3518)</a></li><li><a href='https://www.alvinashcraft.com/2021/09/15/dew-drop-september-15-2021-3517/'>Dew Drop – September 15, 2021 (#3517)</a></li><li><a href='https://www.alvinashcraft.com/2021/09/14/dew-drop-september-14-2021-3516/'>Dew Drop – September 14, 2021 (#3516)</a></li></ul>
<h2 class='channel-title'># <a href='http://blog.developers.ba/' target='_blank'>http://blog.developers.ba/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.radenkozec.com/net-core-signalr-automatic-reconnects/'>.NET Core SignalR Automatic Reconnects</a></li><li><a href='https://www.radenkozec.com/enable-unobtrusive-jquery-validation-on-hidden-input-fields-in-asp-net-mvc/'>Enable Unobtrusive JQuery Validation on Hidden Input Fields in ASP.NET MVC</a></li><li><a href='https://www.radenkozec.com/how-to-enable-unobtrusive-client-validation-using-jquery-in-asp-net-mvc6/'>How to enable Unobtrusive Client Validation using JQuery in ASP.NET 5</a></li><li><a href='https://www.radenkozec.com/getting-user-friendly-routes-with-aurelia-in-asp-net-5/'>Getting user-friendly routes with Aurelia in ASP.NET 5</a></li><li><a href='https://www.radenkozec.com/localdb-for-database-integration-testing-in-asp-net-5-project-and-xunit-net/'>LocalDB for Database Integration Testing in ASP.NET 5 project and XUnit.net</a></li></ul>
<h2 class='channel-title'># <a href='https://codetot.net' target='_blank'>https://codetot.net</a></h2>
<ul class='feed-items'>
<li><a href='https://codetot.net/huong-dan-cai-wp-cli-tren-may-tinh-windows/'>Hướng dẫn cài WP CLI trên máy tính Windows</a></li><li><a href='https://codetot.net/cach-xoa-thu-muc-trong-windows-tren-powershell-visual-studio-code/'>Cách xóa thư mục trong Windows trên Powershell (Visual Studio Code)</a></li><li><a href='https://codetot.net/fix-loi-tren-git-remote-rejected-shallow-update-not-allowed/'>Fix lỗi trên Git: Remote rejected (shallow update not allowed)</a></li><li><a href='https://codetot.net/chuyen-thu-muc-giua-hai-may-chu-su-dung-ssh-va-rsync/'>Chuyển thư mục giữa hai máy chủ sử dụng SSH và rsync</a></li><li><a href='https://codetot.net/htaccess-chuyen-www-ve-khong-www-tu-khong-ssl-sang-ssl/'>HTACCESS chuyển www về không www, từ không SSL sang SSL</a></li></ul>
<h2 class='channel-title'># <a href='https://dotnetcodr.com' target='_blank'>https://dotnetcodr.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dotnetcodr.com/2020/10/28/how-to-reverse-a-string-with-c-net/'>How to reverse a string with C# .NET</a></li><li><a href='https://dotnetcodr.com/2020/10/23/find-the-most-frequent-character-in-a-string-with-c-net/'>Find the most frequent character in a string with C# .NET</a></li><li><a href='https://dotnetcodr.com/2020/10/22/determine-if-two-strings-are-anagrams-with-c-net/'>Determine if two strings are anagrams with C# .NET</a></li><li><a href='https://dotnetcodr.com/2020/10/21/how-to-build-a-circular-matrix-with-c-net/'>How to build a circular matrix with C# .NET</a></li><li><a href='https://dotnetcodr.com/2020/10/20/how-to-reverse-integers-with-c-net/'>How to reverse integers with C# .NET</a></li></ul>
<h2 class='channel-title'># <a href='http://asp.net-hacker.rocks/' target='_blank'>http://asp.net-hacker.rocks/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/jgutsch/~3/EZVMnfs9op4/aspnetcore6-async-stream.html'>ASP.NET Core in .NET 6 - Async streaming</a></li><li><a href='http://feedproxy.google.com/~r/jgutsch/~3/6GGEk8K0RsA/aspnetcore6-minimal-apis.html'>ASP.NET Core in .NET 6 - Introducing minimal APIs</a></li><li><a href='http://feedproxy.google.com/~r/jgutsch/~3/rG24Dw8BRcU/aspnetcore6-shaddow-copy-iis.html'>ASP.NET Core in .NET 6 - Shadow-copying in IIS</a></li><li><a href='http://feedproxy.google.com/~r/jgutsch/~3/_42Gny4XntM/aspnetcore6-hot-reload.html'>ASP.NET Core in .NET 6 - Hot Reload</a></li><li><a href='http://feedproxy.google.com/~r/jgutsch/~3/w4Pf4QGDQOM/aspnetcore6-http3-tls.html'>ASP.NET Core in .NET 6 - HTTP/3 endpoint TLS configuration</a></li></ul>
<h2 class='channel-title'># <a href='http://dotnetkicks.com/' target='_blank'>http://dotnetkicks.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://dotnetkicks.com/r/567228?url=http://mscodingblog.blogspot.com/2021/09/devops-links-for-992021.html'>DevOps Links for 9/9/2021</a></li><li><a href='https://dotnetkicks.com/r/567193?url=https://blog.ploeh.dk/2021/09/09/the-specification-contravariant-functor/'>The Specification contravariant functor</a></li><li><a href='https://dotnetkicks.com/r/567184?url=https://www.troyhunt.com/you-dont-need-to-burn-off-your-fingertips-and-other-biometric-myths/'>You Don't Need to Burn off Your Fingertips (and Other Biometric Authentication Myths)</a></li><li><a href='https://dotnetkicks.com/r/567177?url=https://www.kunal-chowdhury.com/2021/09/teams-subscription-plan.html'>You will soon be able to purchase 3rd-party apps through the Teams store</a></li><li><a href='https://dotnetkicks.com/r/567156?url=https://www.dotnetrocks.com/default.aspx?ShowNum=1756'>DotNetRocks #1756 Developing for Office 365 with Dan Wahlin</a></li></ul>
<h2 class='channel-title'># <a href='https://stackify.com/' target='_blank'>https://stackify.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://stackify.com/laravel-logging-tutorial/'>Laravel Logging Tutorial</a></li><li><a href='https://stackify.com/netreo-launches-prefix-premium-real-time-application-profiler/'>Netreo Launches Prefix Premium Real-Time Application Profiler</a></li><li><a href='https://stackify.com/node-js-performance-monitoring/'>Node.js Performance Monitoring</a></li><li><a href='https://stackify.com/java-memory-leaks-solutions/'>What to Do About Java Memory Leaks: Tools, Fixes, and More</a></li><li><a href='https://stackify.com/the-top-5-node-js-performance-measurement-metrics/'>The Top 5 Node.js Performance Measurement Metrics</a></li></ul>
<h2 class='channel-title'># <a href='http://thebillwagner.com/Blog' target='_blank'>http://thebillwagner.com/Blog</a></h2>
<ul class='feed-items'>
<li><a href='http://thebillwagner.com/Blog/Item/2016-02-23-ThrowingthingsinC'>Throwing things in C#</a></li><li><a href='http://thebillwagner.com/Blog/Item/2016-03-02-C7FeatureProposalLocalFunctions'>C# 7 Feature Proposal: Local Functions</a></li><li><a href='http://thebillwagner.com/Blog/Item/2016-03-28-NewAdventures'>New Adventures</a></li><li><a href='http://thebillwagner.com/Blog/Item/2016-04-02-BuildRecap'>Build Recap</a></li><li><a href='http://thebillwagner.com/Blog/Item/2016-04-06-C7FeatureProposalNewAccessModifier'>C# 7 Feature Proposal: New Access Modifier</a></li></ul>
<h2 class='channel-title'># <a href='http://joeduffyblog.com' target='_blank'>http://joeduffyblog.com</a></h2>
<ul class='feed-items'>
<li><a href='http://joeduffyblog.com/2019/09/05/journey-to-pulumi-1-0/'>Journey to Pulumi 1.0</a></li><li><a href='http://joeduffyblog.com/2018/07/25/program-the-cloud-with-12-pulumi-pearls/'>Program the Cloud with 12 Pulumi Pearls</a></li><li><a href='http://joeduffyblog.com/2018/06/18/hello-pulumi/'>Hello, Pulumi!</a></li><li><a href='http://joeduffyblog.com/2017/06/01/an-update-on-me-pulumi/'>A Brief Update on Me (in a Word, Pulumi)</a></li><li><a href='http://joeduffyblog.com/2016/11/30/15-years-of-concurrency/'>15 Years of Concurrency</a></li></ul>
<h2 class='channel-title'># <a href='https://www.genuitec.com/community/blog' target='_blank'>https://www.genuitec.com/community/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://www.genuitec.com/codetogether-4-2-sneak-peek/'>CodeTogether 4.2 with Test Running—Sneak Peek</a></li><li><a href='https://www.genuitec.com/codetogether-4-1-2/'>CodeTogether 4.1.2—Summer Refresh</a></li><li><a href='https://www.genuitec.com/codetogether-4-1/'>CodeTogether 4.1—Server Sharing, SAP ABAP Support & Coding Enhancements</a></li><li><a href='https://www.genuitec.com/myeclipse-2021-5-24/'>MyEclipse 2021.5.24—Refreshed and Refined!</a></li><li><a href='https://www.genuitec.com/myeclipse-2021-sneak-peek/'>MyEclipse 2021 Sneak Peek—Awesome AF</a></li></ul>
<h2 class='channel-title'># <a href='http://dotnetdetail.com/category/typescript' target='_blank'>http://dotnetdetail.com/category/typescript</a></h2>
<ul class='feed-items'>
<li><a href='http://dotnetdetail.com/learn-typescript-step-by-step-with-suitable-example/'>Learn typescript step by step with suitable examples(Part 2)</a></li><li><a href='http://dotnetdetail.com/learn-typescript-from-basic/'>Learn typescript step by step with suitable examples</a></li><li><a href='http://dotnetdetail.com/typescript-introduction/'>Introduction to typescript with some core features</a></li></ul>
<h2 class='channel-title'># <a href='http://dotnetdetail.com/category/net-core/' target='_blank'>http://dotnetdetail.com/category/net-core/</a></h2>
<ul class='feed-items'>
<li><a href='http://dotnetdetail.com/asp-net-web-api/'>asp.net web api</a></li><li><a href='http://dotnetdetail.com/asp-net-core-tutorial/'>asp.net core tutorial</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-tutorial-2/'>asp.net mvc tutorial</a></li><li><a href='http://dotnetdetail.com/asp-net-core/'>asp.net core</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc/'>asp.net mvc</a></li><li><a href='http://dotnetdetail.com/asp-net-tutorial/'>asp.net tutorial</a></li><li><a href='http://dotnetdetail.com/asp-net-core-angular-2-project-folder-structure/'>ASP.NET Core 2.0 and Angular 2 Project Folder Structure</a></li><li><a href='http://dotnetdetail.com/asp-net-core-angular-2-visual-studio-code-yeoman/'>ASP.NET Core and Angular 2 using Visual Studio Code Yeoman</a></li><li><a href='http://dotnetdetail.com/asp-net-core-mvc/'>Basic OverView of ASP.NET Core MVC</a></li></ul>
<h2 class='channel-title'># <a href='http://dotnetdetail.com/category/asp-dotnet-mvc/' target='_blank'>http://dotnetdetail.com/category/asp-dotnet-mvc/</a></h2>
<ul class='feed-items'>
<li><a href='http://dotnetdetail.com/how-to-setup-angular-2-with-asp-net-mvc-5/'>How to setup Angular 2 in ASP NET MVC 5</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-5-authentication-using-google-account/'>ASP.NET MVC 5 Authentication Using Google+ Account</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-5-authentication-using-twitter-account/'>ASP.NET MVC 5 Authentication using twitter account</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-authentication-using-microsoft-account/'>ASP.NET MVC Authentication using Microsoft Account?</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-google-recaptcha/'>Google reCaptcha In ASP.NET MVC</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-two-factor-authentication/'>ASP.NET MVC Two Factor Authentication using Google Authenticator</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-validation-tutorial/'>Tutorial 10 : ASP.NET MVC Validations</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-entity-framework-tutorial/'>Tutorial 9: ASP.NET MVC Entity Framework Code First</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-filters-tutorial/'>Tutorial 8: ASP.NET MVC filters</a></li><li><a href='http://dotnetdetail.com/asp-net-mvc-selectors-tutorial/'>Tutorial 7: ASP.NET MVC Selectors</a></li></ul>
<h2 class='channel-title'># <a href='https://code.tutsplus.com/' target='_blank'>https://code.tutsplus.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://webdesign.tutsplus.com/articles/best-wordpress-search-plugins--cms-37634'>Best WordPress Search Plugins</a></li><li><a href='https://webdesign.tutsplus.com/tutorials/change-the-wordpress-logo-size--cms-37455'>Change the WordPress Logo Size</a></li><li><a href='https://webdesign.tutsplus.com/articles/best-wordpress-timeline-plugins--cms-37484'>Best WordPress Timeline Plugins</a></li><li><a href='https://code.tutsplus.com/tutorials/how-to-change-the-favicon-in-wordpress--cms-37454'>How to Change the Favicon in WordPress</a></li><li><a href='https://code.tutsplus.com/tutorials/understanding-and-configuring-the-wordpress-robotstxt-file--cms-37456'>Understanding and Configuring the WordPress robots.txt File</a></li><li><a href='https://code.tutsplus.com/tutorials/how-to-check-if-a-file-exists-in-php--cms-37074'>How to Check if a File Exists in PHP</a></li><li><a href='https://code.tutsplus.com/tutorials/how-to-make-your-first-app-in-java--cms-37534'>How to Make Your First App in Java</a></li><li><a href='https://code.tutsplus.com/tutorials/confirm-yes-or-no-with-javascript--cms-37532'>Confirm Yes or No With JavaScript</a></li><li><a href='https://code.tutsplus.com/tutorials/how-to-use-android-studio--cms-37378'>How to Use Android Studio</a></li><li><a href='https://code.tutsplus.com/tutorials/how-to-add-and-subtract-time-from-a-date-in-javascript--cms-37207'>How to Add and Subtract Time From a Date in JavaScript</a></li><li><a href='https://code.tutsplus.com/articles/best-ecommerce-android-app-templates--cms-31887'>18 Best eCommerce Android App Templates</a></li><li><a href='https://code.tutsplus.com/articles/best-android-app-templates-with-maps-integration--cms-30815'>9 Best Android App Templates With Maps Integration</a></li></ul>
<h2 class='channel-title'># <a href='https://www.toptal.com/developers/blog' target='_blank'>https://www.toptal.com/developers/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://www.toptal.com/express-js/routes-js-promises-error-handling'>Using Express.js Routes for Promise-based Error Handling</a></li><li><a href='https://www.toptal.com/react/react-state-management-tools-enterprise'>The Best React State Management Tools for Enterprise Applications</a></li><li><a href='https://www.toptal.com/aws/ssh-log-with-ssm'>SSH Logging and Session Management Using AWS SSM</a></li><li><a href='https://www.toptal.com/engineering-management/written-communication-workplace'>The Importance of Written Communication for Engineering Teams</a></li><li><a href='https://www.toptal.com/scala/writing-an-interpreter'>How to Approach Writing an Interpreter From Scratch</a></li><li><a href='https://www.toptal.com/web-qa/ui-visual-regression-testing'>Visual Regression Testing with Cypress: A Pragmatic Approach</a></li><li><a href='https://www.toptal.com/linux/university-of-minnesota-linux-open-source-security'>University of Minnesota Linux Ban Prompts Questions About Open Source</a></li><li><a href='https://www.toptal.com/express-js/nodejs-typescript-rest-api-pt-3'>Building a Node.js/TypeScript REST API, Part 3: MongoDB, Authentication, and Automated Tests</a></li><li><a href='https://www.toptal.com/react/react-seo-best-practices'>React SEO Strategies and Best Practices</a></li><li><a href='https://www.toptal.com/database/sql-indexes-explained-pt-3'>Solving Bottlenecks With SQL Indexes and Partitions</a></li><li><a href='https://www.toptal.com/angular/why-use-ngrx'>A Deep Dive Into NgRx Advantages and Features</a></li><li><a href='https://www.toptal.com/engineering-management/a-day-in-life-engineering-manager'>A Day in the Life of an Engineering Manager</a></li><li><a href='https://www.toptal.com/engineering-management/scaling-remote-engineering-team'>Toptal Webinar: How to Build and Scale a Remote Engineering Team</a></li><li><a href='https://www.toptal.com/react/picasso-component-testing-library'>Picasso: How to Test a Component Library</a></li><li><a href='https://www.toptal.com/ruby/ruby-lint-libraries'>Linters Implemented by Ruby Libraries</a></li><li><a href='https://www.toptal.com/engineering-team-manager/engineering-manager-role-explained'>People, Product, and Technology: A Beginner’s Guide to Engineering Management</a></li><li><a href='https://www.toptal.com/scala/macros-quasiquotes-reduce-boilerplate'>Reduce Boilerplate Code With Scala Macros and Quasiquotes</a></li><li><a href='https://www.toptal.com/kubernetes/service-mesh-comparison'>A Kubernetes Service Mesh Comparison</a></li><li><a href='https://www.toptal.com/engineering-team-manager/leading-distributed-team-webinar'>Watch Our Webinar: Leading a Distributed Engineering Team</a></li><li><a href='https://www.toptal.com/react/dashboard-airtable-react'>Creating Live Dashboards With Airtable and React</a></li></ul>
<h2 class='channel-title'># <a href='http://blog.novanet.no/' target='_blank'>http://blog.novanet.no/</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.novanet.no/azure-cli-and-dotnet-user-secrets-part-2/'>Azure CLI and dotnet user-secrets part 2</a></li><li><a href='https://blog.novanet.no/azure-cli-and-dotnet-user-secrets/'>Azure CLI and dotnet user-secrets</a></li><li><a href='https://blog.novanet.no/implementing-bankid-for-net-core-using-oidc/'>Implementing BankID on .NET Core using OpenID Connect</a></li><li><a href='https://blog.novanet.no/ghost-on-azure-with-docker/'>Ghost on Azure with docker</a></li><li><a href='https://blog.novanet.no/never-idle-state-with-azure-application-insights/'>Never IDLE state with Azure Application Insights</a></li><li><a href='https://blog.novanet.no/how-to-create-a-database-copy-using-azure-automation/'>How to create a database copy using Azure Automation</a></li><li><a href='https://blog.novanet.no/julekalender2019/'>Julekalender 2019 - Løsningsforslag</a></li><li><a href='https://blog.novanet.no/hackaton/'>Hackaton - The Novanet Way</a></li><li><a href='https://blog.novanet.no/appservices-k8s-vnet-integration/'>Connecting your Azure App Services with Azure AKS Kubernetes</a></li><li><a href='https://blog.novanet.no/ndc-2019-recommendations/'>NDC 2019 - Our recommendations</a></li><li><a href='https://blog.novanet.no/managed-identity-and-microsoft-azure-services-appauthentication/'>Managed Identity and AppAuthentication</a></li><li><a href='https://blog.novanet.no/exploring-azure-app-service-managed-identity/'>Exploring Azure App Service Managed identity</a></li><li><a href='https://blog.novanet.no/asp-net-core-memory-cache-is-get-or-create-thread-safe/'>ASP.NET Core Memory Cache - Is the GetOrCreate method thread-safe?</a></li><li><a href='https://blog.novanet.no/language-please/'>Language please!</a></li><li><a href='https://blog.novanet.no/microservice-ish-architecture-with-net-core-and-azure-service-bus/'>Microservice-ish architecture with .NET Core and Azure Service Bus</a></li></ul>
<h2 class='channel-title'># <a href='http://codetunnel.io/' target='_blank'>http://codetunnel.io/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.chevtek.io/how-dare-you-be-nice-on-a-qa-site/'>"How dare you be cordial on a Q&A site."</a></li><li><a href='https://www.chevtek.io/how-to-create-versatile-loading-spinner-management-in-react/'>How to do loading spinners, the React way.</a></li><li><a href='https://www.chevtek.io/npm-5-changes-to-npm-link/'>Npm 5 changes to npm link.</a></li><li><a href='https://www.chevtek.io/how-to-do-loading-spinners-the-angular-2/'>How to do loading spinners, the Angular 2+ way.</a></li><li><a href='https://www.chevtek.io/you-can-finally-npm-link-packages-that-contain-peer-dependencies/'>You can finally "npm link" packages that contain peer dependencies!</a></li><li><a href='https://www.chevtek.io/why-i-think-micro-packages-are-a-good-thing/'>Why I think "micro-packages" are a good thing.</a></li><li><a href='https://www.chevtek.io/its-always-something-stupid/'>It's Always Something Stupid</a></li><li><a href='https://www.chevtek.io/an-intuitive-way-to-organize-your-expressjs-routes/'>An Intuitive Way To Organize Your ExpressJS Routes</a></li><li><a href='https://www.chevtek.io/how-to-do-loading-spinners-the-angular-way-2/'>How to do loading spinners, the Angular way.</a></li><li><a href='https://www.chevtek.io/my-development-setup/'>My Development Setup</a></li><li><a href='https://www.chevtek.io/how-to-properly-preserve-legacy-urls-in-your-express-app/'>How To Properly Preserve Legacy URLs In Your Express App</a></li><li><a href='https://www.chevtek.io/merge-vs-rebase-part-3-what-is-a-rebase/'>Merge vs Rebase: Part 3 - What is a rebase?</a></li><li><a href='https://www.chevtek.io/merge-vs-rebase-part-2-what-is-a-merge/'>Merge vs Rebase: Part 2 - What is a merge?</a></li><li><a href='https://www.chevtek.io/merge-vs-rebase-part-1-what-is-a-commit-hash/'>Merge vs Rebase: Part 1 - What is a commit hash?</a></li><li><a href='https://www.chevtek.io/how-to-persist-url-hash-fragments-across-a-login-redirect/'>How to persist URL hash fragments across a login redirect.</a></li></ul>
<h2 class='channel-title'># <a href='https://www.mesta-automation.com/' target='_blank'>https://www.mesta-automation.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.mesta-automation.com/hmi-with-c-from-zero-to-hero-a-guide-for-desktop-apps-from-the-beginning-to-advanced-level/'>HMI with C# from Zero to Hero: a guide for desktop apps from the beginning to advanced level</a></li><li><a href='https://www.mesta-automation.com/how-to-communicate-to-an-allen-bradley-plc-with-c-and-libplctag-ethernet-ip-library/'>How to communicate to an Allen Bradley Plc with C# and LibPlcTag Ethernet/IP library</a></li><li><a href='https://www.mesta-automation.com/how-to-record-a-video-with-c-wpf-and-aforge/'>How to record a video with C# – WPF and AForge</a></li><li><a href='https://www.mesta-automation.com/hmi-with-c-and-wpf-part-3-communicating-with-multiple-plc-s7-and-modbus/'>HMI with C# and WPF part 3: Communicating with multiple plc (S7 and Modbus)</a></li><li><a href='https://www.mesta-automation.com/hmi-with-c-and-wpf-part-2-navigation-with-prism/'>HMI with C# and WPF part 2: Navigation with PRISM</a></li><li><a href='https://www.mesta-automation.com/how-fast-is-a-plc-driver-in-c/'>How fast is a PLC driver with C#?</a></li><li><a href='https://www.mesta-automation.com/how-to-write-an-hmi-with-c-and-wpf-part-1-of-x/'>HMI with C# and WPF part 1: getting started with MVVM and plc communication</a></li><li><a href='https://www.mesta-automation.com/how-to-write-a-siemens-s7-plc-driver-with-c-and-sharp7/'>How to write a Siemens S7 plc driver with C# and Sharp7</a></li><li><a href='https://www.mesta-automation.com/wpf-navigation-with-dependency-injection-diioc-part-2/'>WPF navigation with dependency injection (DI/IOC): part 2</a></li><li><a href='https://www.mesta-automation.com/wpf-navigation-with-dependency-injection-diioc-part-1/'>WPF navigation with dependency injection (DI/IOC): part 1</a></li></ul>
<h2 class='channel-title'># <a href='http://blog.bartdemeyer.be/' target='_blank'>http://blog.bartdemeyer.be/</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.bartdemeyer.be/2019/07/unit-testing-entity-framework-core-mocking-dbset-async-methods/'>Unit testing Entity Framework Core–Mocking DBSet Async methods</a></li><li><a href='https://blog.bartdemeyer.be/2017/10/automatic-deploy-your-website-from-teamcity-to-azure/'>Automatic deploy your website from Teamcity to Azure</a></li><li><a href='https://blog.bartdemeyer.be/2016/04/personal-devintersections-review/'>Personal DEVIntersections review</a></li><li><a href='https://blog.bartdemeyer.be/2015/05/create-your-own-greenshot-plugin/'>Create your own Greenshot plugin</a></li><li><a href='https://blog.bartdemeyer.be/2014/10/xamarin-evolve-2014/'>Xamarin Evolve 2014</a></li><li><a href='https://blog.bartdemeyer.be/2014/01/searching-with-a-lucene-net-wrapper/'>Searching with a Lucene.NET wrapper</a></li><li><a href='https://blog.bartdemeyer.be/2013/11/create-an-installer-for-website-with-wix-part-4/'>Create an installer for website with WIX, part 4</a></li><li><a href='https://blog.bartdemeyer.be/2013/10/create-an-installer-for-website-with-wix-part-3/'>Create an installer for website with WIX, part 3</a></li><li><a href='https://blog.bartdemeyer.be/2013/10/create-an-installer-for-website-with-wix-part-2/'>Create an installer for website with WIX, part 2</a></li><li><a href='https://blog.bartdemeyer.be/2013/10/create-an-installer-for-website-with-wix-part-1/'>Create an installer for website with WIX, part 1</a></li></ul>
<h2 class='channel-title'># <a href='https://tutorialzine.com/' target='_blank'>https://tutorialzine.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://tutorialzine.com/2020/05/10-interesting-javascript-and-css-libraries-for-may-2020'>10 Interesting JavaScript and CSS Libraries for May 2020</a></li><li><a href='https://tutorialzine.com/2020/04/10-interesting-javascript-and-css-libraries-for-april-2020'>10 Interesting JavaScript and CSS Libraries for April 2020</a></li><li><a href='https://tutorialzine.com/2020/03/10-interesting-javascript-and-css-libraries-for-march-2020'>10 Interesting JavaScript and CSS Libraries for March 2020</a></li><li><a href='https://tutorialzine.com/2020/02/10-interesting-javascript-and-css-libraries-for-february-2020'>10 Interesting JavaScript and CSS Libraries for February 2020</a></li><li><a href='https://tutorialzine.com/2020/01/10-interesting-javascript-and-css-libraries-for-january-2020'>10 Interesting JavaScript and CSS Libraries for January 2020</a></li><li><a href='https://tutorialzine.com/2019/12/the-best-javascript-and-css-libraries-of-2019'>The Best JavaScript and CSS Libraries of 2019</a></li><li><a href='https://tutorialzine.com/2019/11/10-interesting-javascript-and-css-libraries-for-november-2019'>10 Interesting JavaScript and CSS Libraries for November 2019</a></li><li><a href='https://tutorialzine.com/2019/10/10-interesting-javascript-and-css-libraries-for-october-2019'>10 Interesting JavaScript and CSS Libraries for October 2019</a></li><li><a href='https://tutorialzine.com/2019/09/10-interesting-javascript-and-css-libraries-for-september-2019'>10 Interesting JavaScript and CSS Libraries for September 2019</a></li><li><a href='https://tutorialzine.com/2019/07/10-interesting-javascript-and-css-libraries-for-july-2019'>10 Interesting JavaScript and CSS Libraries for July 2019</a></li><li><a href='https://tutorialzine.com/2019/06/10-interesting-javascript-and-css-libraries-for-june-2019'>10 Interesting JavaScript and CSS Libraries for June 2019</a></li><li><a href='https://tutorialzine.com/2019/06/the-easiest-way-to-create-parallax-scrolling-with-simple-parallax'>The Easiest Way To Create Parallax Scrolling With simpleParallax</a></li><li><a href='https://tutorialzine.com/2019/05/10-interesting-javascript-and-css-libraries-for-may-2019'>10 Interesting JavaScript and CSS Libraries for May 2019</a></li><li><a href='https://tutorialzine.com/2019/04/10-interesting-javascript-and-css-libraries-for-april-2019'>10 Interesting JavaScript and CSS Libraries for April 2019</a></li><li><a href='https://tutorialzine.com/2019/03/10-interesting-javascript-and-css-libraries-for-march-2019'>10 Interesting JavaScript and CSS Libraries for March 2019</a></li><li><a href='https://tutorialzine.com/2019/02/10-interesting-javascript-and-css-libraries-for-february-2019'>10 Interesting JavaScript and CSS Libraries for February 2019</a></li><li><a href='https://tutorialzine.com/2019/02/10-amazing-javascript-games'>10 Amazing JavaScript Games In Under 13kB of Code</a></li><li><a href='https://tutorialzine.com/2019/01/10-interesting-javascript-and-css-libraries-for-january-2019'>10 Interesting JavaScript and CSS Libraries for January 2019</a></li><li><a href='https://tutorialzine.com/2018/12/the-best-javascript-and-css-libraries-for-2018'>The Best JavaScript and CSS Libraries for 2018</a></li><li><a href='https://tutorialzine.com/2018/11/10-interesting-javascript-and-css-libraries-for-november-2018'>10 Interesting JavaScript and CSS Libraries for November 2018</a></li></ul>
<h2 class='channel-title'># <a href='http://bitoftech.net/' target='_blank'>http://bitoftech.net/</a></h2>
<ul class='feed-items'>
<li><a href='https://bitoftech.net/2016/08/31/integrate-azure-ad-b2c-asp-net-mvc-web-app/'>Integrate Azure AD B2C with ASP.NET MVC Web App – Part 3</a></li><li><a href='https://bitoftech.net/2016/08/24/secure-aspnet-web-api-2-azure-ad-b2c/'>Secure ASP.NET Web API 2 using Azure AD B2C – Part 2</a></li><li><a href='https://bitoftech.net/2016/08/24/azure-active-directory-b2c-policies-management/'>Azure Active Directory B2C Overview and Policies Management – Part 1</a></li><li><a href='https://bitoftech.net/2015/03/31/asp-net-web-api-claims-authorization-with-asp-net-identity-2-1/'>ASP.NET Web API Claims Authorization with ASP.NET Identity 2.1 – Part 5</a></li><li><a href='https://bitoftech.net/2015/03/11/asp-net-identity-2-1-roles-based-authorization-authentication-asp-net-web-api/'>ASP.NET Identity 2.1 Roles Based Authorization with ASP.NET Web API – Part 4</a></li><li><a href='https://bitoftech.net/2015/02/16/implement-oauth-json-web-tokens-authentication-in-asp-net-web-api-and-identity-2/'>Implement OAuth JSON Web Tokens Authentication in ASP.NET Web API and Identity 2.1 – Part 3</a></li><li><a href='https://bitoftech.net/2015/02/03/asp-net-identity-2-accounts-confirmation-password-user-policy-configuration/'>ASP.NET Identity 2.1 Accounts Confirmation, and Password Policy Configuration – Part 2</a></li><li><a href='https://bitoftech.net/2015/01/26/taiseer-joudeh-interview-establishing-a-successful-blog/'>Interview with John about establishing a successful blog</a></li><li><a href='https://bitoftech.net/2015/01/21/asp-net-identity-2-with-asp-net-web-api-2-accounts-management/'>ASP.NET Identity 2.1 with ASP.NET Web API 2.2 (Accounts Management) – Part 1</a></li><li><a href='https://bitoftech.net/2015/01/01/journey-2015-microsoft-mvp-award-valuable-professional/'>My Journey to The 2015 Microsoft MVP Award (Most Valuable Professional)</a></li></ul>
<h2 class='channel-title'># <a href='https://techbrij.com' target='_blank'>https://techbrij.com</a></h2>
<ul class='feed-items'>
<li><a href='https://techbrij.com/hisaab-android-app-balance-statement-transfer-security-lock'>Hisaab 4.0: Balance Statement, Transfer Amount, App Lock and More!</a></li><li><a href='https://techbrij.com/git-command-move-subfolder-separate-repository'>Git: Moving a Subfolder Out into A New Repository</a></li><li><a href='https://techbrij.com/wordpress-wsl-wordops-windows-setup'>Setup WordPress Development Environment with WordOps & WSL2</a></li><li><a href='https://techbrij.com/wsl-2-ubuntu-services-windows-10-startup'>WSL 2: Run Ubuntu Services on Windows 10 Startup</a></li><li><a href='https://techbrij.com/migrate-data-excel-hisaab-android-app'>Migrate Your Expense Data from Other Apps or Excel to Hisaab</a></li><li><a href='https://techbrij.com/hisaab-android-manage-bills-receipts-photos'>Hisaab v3.1: Manage your Bills & Receipts</a></li><li><a href='https://techbrij.com/hisaab-v3-features-repeat-templates'>Hisaab v3.0: Recurring Transactions, Templates and More!</a></li><li><a href='https://techbrij.com/hisaab-budget-manager-android-money-tracker'>New Year, New Hisaab as Your Budget Manager</a></li><li><a href='https://techbrij.com/hisaab-updates-quick-multi-selection'>Hisaab v1.9.6: Quick is More Quick</a></li><li><a href='https://techbrij.com/hisaab-android-expense-tracker-speech-recognition'>Introducing Hisaab (Daily Expense Tracker with Offline Speech Support) for Android</a></li></ul>
<h2 class='channel-title'># <a href='https://ciphertrick.com/' target='_blank'>https://ciphertrick.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://ciphertrick.com/how-to-deploy-react-and-node-app-to-heroku/'>How to deploy React and Node app to Heroku</a></li><li><a href='https://ciphertrick.com/infinite-scroll-in-react-with-mongodb/'>Infinite scroll in React with mongodb</a></li><li><a href='https://ciphertrick.com/editing-text-on-double-click-in-react/'>Editing Text On Double Click In React</a></li><li><a href='https://ciphertrick.com/understanding-react-context-in-react/'>Using React Context to communicate between Components</a></li><li><a href='https://ciphertrick.com/communication-between-components-react-two-way-binding-react/'>Communication between Components and Two way binding in React</a></li><li><a href='https://ciphertrick.com/token-based-authentication-node-js-using-jwt/'>Token based authentication in Node.js using JWT</a></li><li><a href='https://ciphertrick.com/understanding-class-component-functional-component-reactjs/'>Understanding Class Component and Functional Component in ReactJS</a></li><li><a href='https://ciphertrick.com/two-factor-authentication-nodejs-stateless-application/'>Two-factor authentication in Node.js – Stateless Application</a></li><li><a href='https://ciphertrick.com/dockerize-nodejs-service-with-mongodb-docker-compose/'>Dockerize a Node.js service with MongoDB using Docker Compose</a></li><li><a href='https://ciphertrick.com/earn-while-browsing-using-brave-and-bat-token/'>Earn while browsing using Brave and BAT token</a></li></ul>
<h2 class='channel-title'># <a href='https://www.red-gate.com/simple-talk/' target='_blank'>https://www.red-gate.com/simple-talk/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.red-gate.com/simple-talk/blogs/creating-kusto-sub-queries/'>Creating Kusto sub-queries</a></li><li><a href='https://www.red-gate.com/simple-talk/development/dotnet-development/getting-started-jamstack/'>Getting started with Jamstack</a></li><li><a href='https://www.red-gate.com/simple-talk/blogs/using-filetable-to-find-duplicate-image-files-with-different-names/'>Using Filetable to Find Duplicate Image Files with Different Names</a></li><li><a href='https://www.red-gate.com/simple-talk/blogs/careful-net-core-folder-structure/'>Be careful with .NET Core Folder Structure</a></li><li><a href='https://www.red-gate.com/simple-talk/uncategorized/micro-frontends/'>Micro Frontends</a></li><li><a href='https://www.red-gate.com/simple-talk/blogs/what-counts-for-a-dba-patients/'>What Counts For a DBA – Patients</a></li><li><a href='https://www.red-gate.com/simple-talk/databases/sql-server/performance-sql-server/sql-compilations-sec-is-not-what-you-think-it-is/'>SQL Compilations/sec is not what you think it is</a></li><li><a href='https://www.red-gate.com/simple-talk/opinion/editorials/appreciating-tiny-victories/'>Appreciating tiny victories</a></li><li><a href='https://www.red-gate.com/simple-talk/blogs/azure-data-studio-kql-extension/'>Log Analytics and Azure Data Studio: New Extension</a></li><li><a href='https://www.red-gate.com/simple-talk/blogs/automating-emr-step-submission-from-aws-lambda/'>Automating EMR step submission from AWS Lambda</a></li></ul>
<h2 class='channel-title'># <a href='https://philbarresi.com/' target='_blank'>https://philbarresi.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://philbarresi.com/echoes-down-the-hallway/'>Echoes Down the Hallway</a></li><li><a href='https://philbarresi.com/rewriting-fluent-sort/'>Rewriting Fluent Sort</a></li><li><a href='https://philbarresi.com/cast-iron/'>Cast Iron</a></li><li><a href='https://philbarresi.com/contributing-to-open-source-is-a-privilege/'>Privilege in Developer Hiring</a></li><li><a href='https://philbarresi.com/why-web-dev/'>Why Web Dev?</a></li><li><a href='https://philbarresi.com/reinventing-the-wheel/'>Why the heck did I bother making fluent-sort?</a></li><li><a href='https://philbarresi.com/javascript-yield-fibonacci/'>Making use of yield in JavaScript</a></li><li><a href='https://philbarresi.com/introduction-to-redux/'>Introduction to Redux</a></li><li><a href='https://philbarresi.com/clean-git-hooks/'>Keeping your repository clean with git hooks</a></li><li><a href='https://philbarresi.com/the-fundamentals-of-webhooks/'>The Fundamentals of Webhooks</a></li><li><a href='https://philbarresi.com/adding-two-factor-authentication-to-an-express-app/'>Adding Two-factor Authentication to an Express App</a></li><li><a href='https://philbarresi.com/triever/'>Client-side searching a large data set using tries</a></li><li><a href='https://philbarresi.com/jest-test-guide/'>Testing JavaScript Modules with Jest</a></li><li><a href='https://philbarresi.com/handling-an-array-of-promises/'>Handling an Array of Promises</a></li><li><a href='https://philbarresi.com/closing-in-on-closure/'>Closing in on closure</a></li></ul>
<h2 class='channel-title'># <a href='https://chsakell.com/' target='_blank'>https://chsakell.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://chsakell.com/2019/08/18/asp-net-core-identity-series-two-factor-authentication/'>ASP.NET Core Identity Series – Two Factor Authentication</a></li><li><a href='https://chsakell.com/2019/07/28/asp-net-core-identity-series-external-provider-authentication-registration-strategy/'>ASP.NET Core Identity Series – External provider authentication & registration strategy</a></li><li><a href='https://chsakell.com/2019/03/11/asp-net-core-identity-series-oauth-2-0-openid-connect-identityserver/'>ASP.NET Core Identity Series – OAuth 2.0, OpenID Connect & IdentityServer</a></li><li><a href='https://chsakell.com/2019/02/03/azure-functions-proxies-in-action/'>Azure Functions Proxies in Action</a></li><li><a href='https://chsakell.com/2018/11/18/building-serverless-apps-with-azure-functions/'>Building serverless apps with Azure Functions</a></li><li><a href='https://chsakell.com/2018/10/09/instant-page-rendering-and-seamless-navigation-for-spas/'>Instant page rendering and seamless navigation for SPAs</a></li><li><a href='https://chsakell.com/2018/10/02/getting-started-with-azure-service-fabric/'>Getting started with Azure Service Fabric</a></li><li><a href='https://chsakell.com/2018/06/13/asp-net-core-identity-series-deep-dive-in-authorization/'>ASP.NET Core Identity Series – Deep dive in Authorization</a></li><li><a href='https://chsakell.com/2018/05/11/asp-net-core-identity-series-integrating-entity-framework/'>ASP.NET Core Identity Series – Integrating Entity Framework</a></li><li><a href='https://chsakell.com/2018/04/28/asp-net-core-identity-series-getting-started/'>ASP.NET Core Identity Series – Getting Started</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.mariusschulz.com/' target='_blank'>https://blog.mariusschulz.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/qpv15NpYOQY/optional-chaining-the-operator-in-typescript'>Optional Chaining: The ?. Operator in TypeScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/ezLvE0QNiJs/how-to-squash-the-first-two-commits-in-a-git-repository'>How to Squash the First Two Commits in a Git Repository</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/vtg-R8A_AnY/nullish-coalescing-the-operator-in-typescript'>Nullish Coalescing: The ?? Operator in TypeScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/iB3BmpYAnIA/declaring-global-variables-in-typescript'>Declaring Global Variables in TypeScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/yJ9di9tXj5A/concatenating-arrays-in-javascript'>Concatenating Arrays in JavaScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/2HJTlLgy4fw/the-omit-helper-type-in-typescript'>The Omit Helper Type in TypeScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/3fNd7QyaVyg/fast-searching-with-ripgrep'>Fast Searching with ripgrep</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/znekIngPitQ/const-assertions-in-literal-expressions-in-typescript'>Const Assertions in Literal Expressions in TypeScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/Mt2Wl8p-Uhc/read-only-array-and-tuple-types-in-typescript'>Read-Only Array and Tuple Types in TypeScript</a></li><li><a href='http://feedproxy.google.com/~r/mariusschulz/~3/VV3UNntAtkQ/the-showconfig-compiler-option-in-typescript'>The --showConfig Compiler Option in TypeScript</a></li></ul>
<h2 class='channel-title'># <a href='https://rogerjohansson.blog/' target='_blank'>https://rogerjohansson.blog/</a></h2>
<ul class='feed-items'>
<li><a href='https://rogerjohansson.blog/2017/05/19/do-not-do-in-code-what-can-be-done-in-infrastructure/'>Do not do in code what can be done in infrastructure</a></li><li><a href='https://rogerjohansson.blog/2016/08/16/wire-writing-one-of-the-fastest-net-serializers/'>Wire – Writing one of the fastest .NET serializers</a></li><li><a href='https://rogerjohansson.blog/2016/03/13/random-things-learned-building-akka-net-part-1/'>Random things learned building Akka.NET – Part 1</a></li><li><a href='https://rogerjohansson.blog/2015/07/26/building-a-framework-the-early-akka-net-history/'>Building a framework – The early Akka.NET history</a></li><li><a href='https://rogerjohansson.blog/2015/04/13/akka-net-azure-azure-servicebus-integration/'>Akka.NET + Azure: Azure ServiceBus integration</a></li><li><a href='https://rogerjohansson.blog/2014/12/18/learning-azure-day-2-servicebus/'>Learning Azure, Day 2 | Servicebus</a></li><li><a href='https://rogerjohansson.blog/2014/12/17/learning-azure-day-1-servicebus/'>Learning Azure, Day 1 | Servicebus</a></li><li><a href='https://rogerjohansson.blog/2014/11/15/actor-based-distributed-transactions/'>Actor based distributed transactions</a></li><li><a href='https://rogerjohansson.blog/2014/11/10/akka-net-concurrency-control/'>Akka.NET – Concurrency control</a></li><li><a href='https://rogerjohansson.blog/2014/03/09/deploying-actors-with-akka-net/'>Deploying actors with Akka.NET</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.jayway.com/' target='_blank'>https://blog.jayway.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.jayway.com/2021/02/17/bad-testing-is-worse-than-no-testing/'>Bad Testing is Worse than No Testing</a></li><li><a href='https://blog.jayway.com/2021/02/02/corona-pair-testing/'>Corona Pair Testing</a></li><li><a href='https://blog.jayway.com/2021/01/28/whos-testing-in-your-team/'>Who’s testing in your team?</a></li><li><a href='https://blog.jayway.com/2021/01/21/pettson-findus-testing/'>Pettson & Findus Testing</a></li><li><a href='https://blog.jayway.com/2021/01/13/google-spreadsheet-vlookup-matching-all-rows/'>Google Spreadsheet VLOOKUP matching all rows</a></li><li><a href='https://blog.jayway.com/2021/01/12/current-spotify-song-in-tmux/'>Current Spotify song in tmux</a></li><li><a href='https://blog.jayway.com/2021/01/12/a-typescript-implementation-of-l-systems/'>A TypeScript implementation of L-systems</a></li><li><a href='https://blog.jayway.com/2020/11/20/this-is-how-behavioral-design-can-help-you-and-your-client-to-success/'>This is how behavioral design can help you and your client to success</a></li><li><a href='https://blog.jayway.com/2020/11/08/hot-reload-with-haskell/'>Hot reload with Haskell.</a></li><li><a href='https://blog.jayway.com/2020/11/01/making-a-small-game-with-gloss/'>Making a small game with Gloss</a></li></ul>
<h2 class='channel-title'># <a href='http://bartoszsypytkowski.com/' target='_blank'>http://bartoszsypytkowski.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://bartoszsypytkowski.com/crdt-optimizations/'>CRDT optimizations</a></li><li><a href='https://bartoszsypytkowski.com/pure-operation-based-crdts/'>Pure operation-based CRDTs</a></li><li><a href='https://bartoszsypytkowski.com/operation-based-crdts-json-document/'>Operation-based CRDTs: JSON document</a></li><li><a href='https://bartoszsypytkowski.com/data-loaders/'>Data Loaders</a></li><li><a href='https://bartoszsypytkowski.com/writing-high-performance-f-code/'>Writing high performance F# code</a></li><li><a href='https://bartoszsypytkowski.com/hyparview/'>HyParView: cluster membership that scales</a></li><li><a href='https://bartoszsypytkowski.com/operation-based-crdts-arrays-2/'>Operation-based CRDTs: arrays (part 2)</a></li><li><a href='https://bartoszsypytkowski.com/operation-based-crdts-arrays-1/'>Operation-based CRDTs: arrays (part 1)</a></li><li><a href='https://bartoszsypytkowski.com/operation-based-crdts-registers-and-sets/'>Operation-based CRDTs: registers and sets</a></li><li><a href='https://bartoszsypytkowski.com/operation-based-crdts-protocol/'>Operation based CRDTs: protocol</a></li><li><a href='https://bartoszsypytkowski.com/hybrid-logical-clocks/'>Hybrid Logical Clocks</a></li><li><a href='https://bartoszsypytkowski.com/make-your-cluster-swim/'>Make your cluster SWIM</a></li><li><a href='https://bartoszsypytkowski.com/dealing-with-complex-dependency-injection-in-f/'>Dealing with complex dependency injection in F#</a></li><li><a href='https://bartoszsypytkowski.com/crdt-map/'>State-based CRDTs: Maps</a></li><li><a href='https://bartoszsypytkowski.com/building-custom-fibers-library-in-f/'>Building custom fibers library in F#</a></li></ul>
<h2 class='channel-title'># <a href='https://codingjourneyman.com/' target='_blank'>https://codingjourneyman.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://codingjourneyman.com/2016/03/01/what-is-xamarin/'>What is Xamarin ?</a></li><li><a href='https://codingjourneyman.com/2015/11/25/learn-to-craft-at-microsoft/'>Learn To Craft at Microsoft</a></li><li><a href='https://codingjourneyman.com/2015/10/14/akkaofempires-dependency-injection-with-akka-di/'>AkkaOfEmpires: Dependency Injection with Akka.DI</a></li><li><a href='https://codingjourneyman.com/2015/10/05/async-await-and-the-ui-thread/'>Async-Await and the UI thread</a></li><li><a href='https://codingjourneyman.com/2015/09/21/akkaofempires-extending-the-gui-and-actor-factory/'>AkkaOfEmpires: Extending the GUI and actor factory</a></li><li><a href='https://codingjourneyman.com/2015/09/14/akkaofempires-refactoring-and-first-gui/'>AkkaOfEmpires: Refactoring and First GUI</a></li><li><a href='https://codingjourneyman.com/2015/09/07/easy-mocking-with-nsubstitute/'>Easy mocking with NSubstitute</a></li><li><a href='https://codingjourneyman.com/2015/09/01/akkanet-delegating-work-to-child-actors/'>Akka.NET: Delegating work to child actors</a></li><li><a href='https://codingjourneyman.com/2015/08/24/switching-the-behavior-of-an-akka-net-actor/'>Switching the behavior of an Akka.NET actor</a></li><li><a href='https://codingjourneyman.com/2015/08/10/from-web-to-mobile-development/'>From web to mobile development</a></li></ul>
<h2 class='channel-title'># <a href='http://hryniewski.net/' target='_blank'>http://hryniewski.net/</a></h2>
<ul class='feed-items'>
<li><a href='https://hryniewski.net/2018/12/02/im-going-back-into-polish-language/'>I’m going back into polish language</a></li><li><a href='https://hryniewski.net/2018/04/17/versioning-data-with-ms-sql-temporal-tables/'>Versioning data with MS SQL Temporal Tables</a></li><li><a href='https://hryniewski.net/2018/02/22/using-ms-sqls-row-level-security-policy-in-entity-framework/'>Using MS SQL’s Row Level Security Policy in Entity Framework</a></li><li><a href='https://hryniewski.net/2018/02/13/row-level-security-in-ms-sql/'>Row Level Security in MS SQL</a></li><li><a href='https://hryniewski.net/2018/01/25/querying-external-databases-in-azure-sql/'>Querying external databases in Azure SQL</a></li><li><a href='https://hryniewski.net/2017/12/10/structured-logs-with-serilog-and-application-insights/'>Structured logs with Serilog and Application Insights</a></li><li><a href='https://hryniewski.net/2017/10/09/multitenancy-in-cosmos-db/'>Multitenancy in Cosmos DB</a></li><li><a href='https://hryniewski.net/2017/10/01/akka-net-7-creating-and-accessing-actor-system-with-dependency-injection-container/'>Akka.NET #7: Creating and accessing Actor System with Dependency Injection Container</a></li><li><a href='https://hryniewski.net/2017/06/28/you-have-7-evenings-in-a-week-use-them-well/'>You have 7 evenings in a week. Use them well.</a></li><li><a href='https://hryniewski.net/2017/06/08/get-noticed-2017-im-in-the-finals/'>Get Noticed 2017 – I’m in the finals!</a></li><li><a href='https://hryniewski.net/2017/05/31/get-noticed-2017-summary/'>Get noticed 2017 – summary</a></li><li><a href='https://hryniewski.net/2017/05/28/paas-databases-available-on-azure/'>PaaS databases available on Azure</a></li><li><a href='https://hryniewski.net/2017/05/23/me-2-0-version-0-1-released-mini-summary/'>Me 2.0 version 0.1 – released + mini-summary</a></li><li><a href='https://hryniewski.net/2017/05/21/is-as-cast-what-when-and-why-casting-in-c-101/'>Is, as, cast – what, when and why – Casting in C# 101</a></li><li><a href='https://hryniewski.net/2017/05/17/akka-net-6-persisting-actors-state-snapshots/'>Akka.NET #6: Persisting actors state – snapshots</a></li><li><a href='https://hryniewski.net/2017/05/11/akka-net-5-persisting-actors-state-events/'>Akka.NET #5: Persisting actors state – events</a></li><li><a href='https://hryniewski.net/2017/05/07/akka-net-3-5-actor-paths-requirements-and-how-to-meet-them/'>Akka.NET #3.5: Actor paths requirements and how to meet them</a></li><li><a href='https://hryniewski.net/2017/05/04/microsoft-flow-introduction/'>Microsoft Flow – Introduction</a></li><li><a href='https://hryniewski.net/2017/04/25/lookup-class-in-c-have-you-ever-tried-it/'>LookUp class in C# – have you ever tried it?</a></li><li><a href='https://hryniewski.net/2017/04/20/azure-app-services-authentication-with-fb-google-and-others-in-5-minutes-or-so/'>Azure App Services – Authentication with FB, Google and others in 5 minutes or so</a></li></ul>
<h2 class='channel-title'># <a href='https://codehollow.com/' target='_blank'>https://codehollow.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://arminreiter.com/2021/07/3-ways-to-generate-passwords-in-powershell/'>3 ways to generate passwords in Powershell</a></li><li><a href='https://arminreiter.com/2021/01/add-exchange-online-shell-to-windows-terminal/'>Add Exchange Online Shell to Windows Terminal</a></li><li><a href='https://arminreiter.com/2020/11/using-azure-vm-to-crack-passwords/'>Using Azure VM to Crack Passwords</a></li><li><a href='https://arminreiter.com/2020/10/website-hardening-with-http-security-headers/'>Website Hardening with HTTP Security Headers</a></li><li><a href='https://arminreiter.com/2020/10/azure-ad-guest-cant-login-your-sign-in-was-blocked/'>Azure AD: Guest can’t login – “Your sign-in was blocked”</a></li><li><a href='https://arminreiter.com/2020/04/my-windows-terminal-config/'>My Windows Terminal Config</a></li><li><a href='https://arminreiter.com/2019/11/office365-dkim-and-dmarc-configuration/'>Office365 DKIM and DMARC configuration</a></li><li><a href='https://arminreiter.com/2019/10/automatic-data-classification-for-azure-sql-server/'>Automatic data classification for Azure SQL Server</a></li><li><a href='https://arminreiter.com/2019/07/azure-active-directory-and-sql-server-authentication/'>Azure AD and SQL Server Authentication</a></li><li><a href='https://arminreiter.com/2019/02/change-device-owner-of-an-azure-ad-joined-device/'>Change device owner of an Azure AD joined device</a></li></ul>
<h2 class='channel-title'># <a href='https://weblog.west-wind.com/' target='_blank'>https://weblog.west-wind.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/uq_6FAtDwfA/Markdown-Monster-20-is-here'>Markdown Monster 2.0 is here</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/4hkd_wSIl3Y/Thoughts-on-AsyncAwait-Conversion-in-a-Desktop-App'>Thoughts on Async/Await Conversion in a Desktop App</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/ij4YuVPjTeA/Locked-Files-When-Publishing-NET-Core-Apps-to-IIS-with-WebDeploy'>Locked Files When Publishing .NET Core Apps to IIS with WebDeploy</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/VZRybpfTOfE/Running-NET-Core-Apps-on-a-Framework-other-than-Compiled-Version'>Running .NET Core Apps on a Framework other than Compiled Version?</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/shTigL2SUG4/WebView2-Home-and-End-Key-Problems-inside-of-WPF-TabControl-Containers'>WebView2 Home and End Key Problems inside of WPF TabControl Containers</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/RlqaIy0STdQ/Async-Await-with-the-Null-Propagator'>Async/Await Calls Gotcha with the CSharp ? Null Propagator</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/SyCbKwX605E/Taking-down-the-Markdown-Monster-Source-Code'>Taking down the Markdown Monster Source Code</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/FfcA4_3p0RU/WebView2-Forwarding-Alt-Keys-to-a-Host-WPF-Window'>WebView2: Forwarding Alt Keys to a Host WPF Window</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/0VDC5mqS7sU/LiveReloadServer-A-NET-Core-Based-Generic-Static-Web-Server-with-Live-Reload'>LiveReloadServer - A Generic Local Static Web Server with Live Reload based on .NET</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/ktyc_H1FyRY/Role-based-JWT-Tokens-in-ASPNET-Core'>Role based JWT Tokens in ASP.NET Core APIs</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/US3WA-lBqS8/Opening-an-Admin-Windows-Terminal-from-Visual-Studio'>Opening an Admin Windows Terminal from Visual Studio</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/w3hBIMoBbvg/Chromium-WebView2-Control-and-NET-to-JavaScript-Interop-Part-2'>Chromium WebView2 Control and .NET to JavaScript Interop - Part 2</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/pjiAksg4mEo/Taking-the-new-Chromium-WebView2-Control-for-a-Spin-in-NET-Part-1'>Taking the new Chromium WebView2 Control for a Spin in .NET - Part 1</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/ltmKVFEk5QY/Blank-Zero-Values-in-CSharp-Number-Format-Strings'>Blank Zero Values in .NET Number Format Strings</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/H6m1DvN7k_E/Watch-out-for-NET-Core-Runtime-Bitness-for-IIS-Installs'>Watch out for .NET Core Runtime Bitness for IIS Installs</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/KZOxVx3DuZw/Upgrading-to-NET-Core-50'>Upgrading several of my Applications and Libraries to .NET 5.0</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/CnQPmRLSpqU/PC-and-Mac-with-single-Mouse-and-Keyboard-Setup-on-Dual-4k-Screens'>PC and Mac with single Mouse and Keyboard Setup on Dual 4k Screens</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/rjTMAoaZ3lg/Window-Activation-Headaches-in-WPF'>Window Activation Headaches in WPF</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/ilfHA9pOY1c/Creating-a-dotnet-new-Project-Template'>Creating Custom .NET Project Types with .NET CLI Project Templates</a></li><li><a href='http://feedproxy.google.com/~r/RickStrahl/~3/87a7tKI71s0/Retrieving-Images-from-the-Clipboard-and-WPF-Image-Control-Woes'>Wrestling with Clipboard Images in WPF</a></li></ul>
<h2 class='channel-title'># <a href='https://www.strathweb.com/' target='_blank'>https://www.strathweb.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.strathweb.com/2019/08/dynamic-controller-routing-in-asp-net-core-3-0/'>Dynamic controller routing in ASP.NET Core 3.0</a></li><li><a href='https://www.strathweb.com/2019/07/editorconfig-support-in-omnisharp-and-c-extension-vs-code/'>EditorConfig support in OmniSharp and C# extension VS Code</a></li><li><a href='https://www.strathweb.com/2019/06/building-a-c-interactive-shell-in-a-browser-with-blazor-webassembly-and-roslyn/'>Building a C# Interactive shell in a browser with Blazor (WebAssembly) and Roslyn</a></li><li><a href='https://www.strathweb.com/2019/05/reactive-azure-service-bus-messaging-with-azure-event-grid/'>Reactive Azure Service Bus messaging with Azure Event Grid</a></li><li><a href='https://www.strathweb.com/2019/04/roslyn-analyzers-in-code-fixes-in-omnisharp-and-vs-code/'>Roslyn analyzers and code fixes in OmniSharp and VS Code</a></li><li><a href='https://www.strathweb.com/2019/03/elegant-way-of-producing-http-responses-in-asp-net-core-outside-of-mvc-controllers/'>Elegant way of producing HTTP responses in ASP.NET Core outside of MVC controllers</a></li><li><a href='https://www.strathweb.com/2019/02/be-careful-when-manually-handling-json-requests-in-asp-net-core/'>Be careful when manually handling JSON requests in ASP.NET Core</a></li><li><a href='https://www.strathweb.com/2019/01/enabling-apicontroller-globally-in-asp-net-core-2-2/'>Enabling [ApiController] globally in ASP.NET Core 2.2</a></li><li><a href='https://www.strathweb.com/2019/01/collectible-assemblies-in-net-core-3-0/'>Collectible assemblies in .NET Core 3.0</a></li><li><a href='https://www.strathweb.com/2018/12/using-roslyn-c-completion-service-programmatically/'>Using Roslyn C# Completion Service programmatically</a></li></ul>
<h2 class='channel-title'># <a href='https://css-tricks.com/' target='_blank'>https://css-tricks.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://css-tricks.com/choice-words-about-the-upcoming-deprecation-of-javascript-dialogs/'>Choice Words about the Upcoming Deprecation of JavaScript Dialogs</a></li><li><a href='https://www.bram.us/2021/07/08/the-large-small-and-dynamic-viewports/'>The Large, Small, and Dynamic Viewports</a></li><li><a href='https://css-tricks.com/exploring-the-css-paint-api-image-fragmentation-effect/'>Exploring the CSS Paint API: Image Fragmentation Effect</a></li><li><a href='https://css-tricks.com/svg-gobbler/'>SVG Gobbler</a></li><li><a href='https://css-tricks.com/new-nuxt-features-past-v2-10/'>New Nuxt Features past v2.10</a></li><li><a href='https://css-tricks.com/efficient-infinite-utility-helpers-using-inline-css-custom-properties-and-calc/'>Efficient Infinite Utility Helpers Using Inline CSS Custom Properties and calc()</a></li><li><a href='https://gridless.design/'>gridless.design</a></li><li><a href='https://css-tricks.com/three-buggy-react-code-examples-and-how-to-fix-them/'>Three Buggy React Code Examples and How to Fix Them</a></li><li><a href='https://css-tricks.com/how-to-build-a-full-stack-mobile-application-with-flutter-fauna-and-graphql/'>How to Build a Full-Stack Mobile Application With Flutter, Fauna, and GraphQL</a></li><li><a href='https://www.smashingmagazine.com/2021/06/web-workers-2021/'>The State Of Web Workers In 2021</a></li><li><a href='https://css-tricks.com/using-css-shapes-for-interesting-user-controls-and-navigation/'>Using CSS Shapes for Interesting User Controls and Navigation</a></li><li><a href='https://css-tricks.com/serverless-functions-as-proxies/'>Serverless Functions as Proxies</a></li><li><a href='https://srv.buysellads.com/ads/long/x/TCZHURZTTTTTTT3IJZ7NTTTTTTTVINFLKTTTTTTTADBXPYTTTTTTTIDNVJR6YWS22M4647ZVKMPW454EQMNWVWPMPABT'>Automatic Daily GitHub Backups, Restored in Seconds</a></li><li><a href='https://css-tricks.com/a-deep-dive-on-skipping-to-content/'>A Deep Dive on Skipping to Content</a></li><li><a href='https://css-tricks.com/css-modules-the-native-ones/'>CSS Modules (The Native Ones)</a></li></ul>
<h2 class='channel-title'># <a href='http://michaelsoriano.com/blog/' target='_blank'>http://michaelsoriano.com/blog/</a></h2>
<ul class='feed-items'>
<li><a href='http://michaelsoriano.com/a-really-good-explanation-of-the-inner-workings-of-react/'>A really good explanation of the inner workings of React</a></li><li><a href='http://michaelsoriano.com/create-a-file-uploader-with-react-and-wordpress-rest-api-media/'>Create a File Uploader with React and WordPress REST API (Media)</a></li><li><a href='http://michaelsoriano.com/salesforces-lwc-lightning-web-components/'>Salesforce’s LWC (Lightning Web Components) – My First Thoughts</a></li><li><a href='http://michaelsoriano.com/adding-google-recaptcha-to-our-next-js-comments-form/'>Adding Google reCaptcha to our Next.js Comments Form</a></li><li><a href='http://michaelsoriano.com/easy-comments-area-for-the-single-page-using-next-js/'>Easy Comments Area for the Single page – using Next.js</a></li><li><a href='http://michaelsoriano.com/coding-the-single-post-component-with-next-js/'>Coding the Single Post component with Next.js</a></li><li><a href='http://michaelsoriano.com/building-a-headless-cms-with-next-js-and-wordpress/'>Building a Headless CMS with Next.js and WordPress</a></li><li><a href='http://michaelsoriano.com/passed-the-aws-certified-developer-exam/'>Woo Hoo! I passed the AWS Certified Developer Exam :)</a></li><li><a href='http://michaelsoriano.com/solving-the-web-file-permissions-problem-once-and-for-all-repost/'>Solving the web file permissions problem once and for all [Repost]</a></li><li><a href='http://michaelsoriano.com/redux-a-quick-and-high-level-overview/'>Just Redux – a quick and high-level overview</a></li></ul>
<h2 class='channel-title'># <a href='http://danielwhittaker.me' target='_blank'>http://danielwhittaker.me</a></h2>
<ul class='feed-items'>
<li><a href='https://danielwhittaker.me/2020/02/20/cqrs-step-step-guide-flow-typical-application/?utm_source=rss&utm_medium=rss&utm_campaign=cqrs-step-step-guide-flow-typical-application'>CQRS + Event Sourcing – Step by Step</a></li><li><a href='https://danielwhittaker.me/2020/01/22/are-you-making-these-10-ddd-mistakes/?utm_source=rss&utm_medium=rss&utm_campaign=are-you-making-these-10-ddd-mistakes'>Are You Making These 10 DDD Mistakes?</a></li><li><a href='https://danielwhittaker.me/2017/10/09/handle-set-based-consistency-validation-cqrs/?utm_source=rss&utm_medium=rss&utm_campaign=handle-set-based-consistency-validation-cqrs'>How to Handle Set Based Consistency Validation in CQRS</a></li><li><a href='https://danielwhittaker.me/2016/07/08/eventstorming-what-you-need-to-know/?utm_source=rss&utm_medium=rss&utm_campaign=eventstorming-what-you-need-to-know'>EventStorming – What You Need to Know</a></li><li><a href='https://danielwhittaker.me/2016/04/20/how-to-validate-commands-in-a-cqrs-application/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-validate-commands-in-a-cqrs-application'>How To Validate Commands in a CQRS Application</a></li><li><a href='https://danielwhittaker.me/2015/11/25/livescribe-3-mproduct-review/?utm_source=rss&utm_medium=rss&utm_campaign=livescribe-3-mproduct-review'>The LiveScribe 3 Smartpen [Product Review]</a></li><li><a href='https://danielwhittaker.me/2015/10/28/why-private-c-variables-are-not-as-private-as-you-thought/?utm_source=rss&utm_medium=rss&utm_campaign=why-private-c-variables-are-not-as-private-as-you-thought'>Why C# Private Variables are Not as Private as you Thought</a></li><li><a href='https://danielwhittaker.me/2015/05/25/is-a-cqrs-command-gof-command/?utm_source=rss&utm_medium=rss&utm_campaign=is-a-cqrs-command-gof-command'>Is a CQRS Command = to a GoF Command?</a></li><li><a href='https://danielwhittaker.me/2015/03/31/how-to-send-emails-the-right-way-in-a-cqrs-system/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-send-emails-the-right-way-in-a-cqrs-system'>How to Send Emails the Right Way in a CQRS System</a></li><li><a href='https://danielwhittaker.me/2015/02/02/upgrade-cqrs-events-without-busting/?utm_source=rss&utm_medium=rss&utm_campaign=upgrade-cqrs-events-without-busting'>How to Upgrade CQRS Events Without Busting Your Event Stream</a></li></ul>
<h2 class='channel-title'># <a href='https://lostechies.com/' target='_blank'>https://lostechies.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/LosTechies/~3/wnTUa-d9JEs/'>Domain-Driven Refactoring: Defactoring and Pushing Behavior Down</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/oOqGzmCm1ss/'>Domain-Driven Refactoring: Extracting Domain Services</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/aql9--uhcCs/'>Domain-Driven Refactoring: Long Methods</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/3_UIxqZvPiE/'>Domain-Driven Refactoring: Procedural Beginnings</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/JXXw8hqbqTA/'>Domain-Driven Refactoring: Intro</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/tB4VB8cVDxc/'>Local Development with Azure Service Bus</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/9xtSchntVLI/'>Taming the WSL 2 Resource Monster</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/cPSKscyLKvM/'>Crossing the Generics Divide</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/aBWIuOMKiDM/'>OpenTelemetry 1.0 Extensions Released</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/ltrclayNb00/'>Choosing a ServiceLifetime</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/dADL6qz-sRE/'>A Lap Around ActivitySource and ActivityListener in .NET 5</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/Aso3dVtpXPA/'>Increasing Trace Cardinality with Activity Tags and Baggage</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/6f4qhe3RsbQ/'>.Net Project Builds with Node Package Manager</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/CUprcXnjepA/'>Building End-to-End Diagnostics: ActivitySource and OpenTelemetry 1.0</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/bFP0sziAL0M/'>Conventional Options</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/68xN75TCsLM/'>Vertical Slice Example Updated to .NET 5</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/m3d9p_Dm3kY/'>Mind Your Strings with .NET 5.0</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/-LIFwBk3Rlk/'>Picking a Web Microframework</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/ZwlG-VJ5Hmw/'>Getting started with Cassandra: Data modeling in the brief</a></li><li><a href='http://feedproxy.google.com/~r/LosTechies/~3/cDniCkYFiIg/'>Getting started with Cassandra: Load testing Cassandra in brief</a></li></ul>
<h2 class='channel-title'># <a href='https://www.exceptionnotfound.net/' target='_blank'>https://www.exceptionnotfound.net/</a></h2>
<ul class='feed-items'>
<li><a href='https://exceptionnotfound.net/bite-size-csharp-10-global-usings/'>Bite-Size C# 10 - Global Usings</a></li><li><a href='https://exceptionnotfound.net/bite-size-csharp-10-null-parameter-checking/'>Bite-Size C# 10 - Null Parameter Checking</a></li><li><a href='https://exceptionnotfound.net/the-catch-block-69-projects-vs-products-bubble-sort-and-copilot-angst/'>The Catch Block #69 - Projects vs. Products, Bubble Sort, and Copilot Angst</a></li><li><a href='https://exceptionnotfound.net/csharp-10-features-file-level-namespaces/'>Bite-Size C# 10 - File-Level Namespaces</a></li><li><a href='https://exceptionnotfound.net/the-catch-block-68-json-clean-code-fsharp-and-work-email/'>The Catch Block #68 - JSON, Clean Code, F#, and Work Email</a></li><li><a href='https://exceptionnotfound.net/creating-a-dapper-helper-csharp-class-to-generate-parameterized-sql-inserts-and-updates/'>Creating a Dapper Helper C# Class to Generate Parameterized SQL</a></li><li><a href='https://exceptionnotfound.net/the-catch-block-67-csharp-10-features-net-6-preview-7-and-vs-2022-preview-2/'>The Catch Block #67- C# 10 Features, .NET 6 Preview 6, and VS 2022 Preview 2</a></li><li><a href='https://exceptionnotfound.net/the-catch-block-66-iot-csharp-tips-and-clean-architecture/'>The Catch Block #66 - IoT, C# Tips, and Clean Architecture</a></li><li><a href='https://exceptionnotfound.net/the-catch-block-65-github-copilot-randomness-and-accessibility/'>The Catch Block #65 - GitHub Copilot, Randomness, and Accessibility</a></li><li><a href='https://exceptionnotfound.net/solitaire-in-blazor-part-5-double-click-shortcut-and-autocomplete/'>Solitaire in Blazor Part 5 - Double-Click Shortcut and Autocomplete</a></li></ul>
<h2 class='channel-title'># <a href='http://www.primaryobjects.com/' target='_blank'>http://www.primaryobjects.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://www.primaryobjects.com/2021/05/10/creating-virtual-reality-using-webxr/'>Creating Virtual Reality using WebXR and HTML</a></li><li><a href='http://www.primaryobjects.com/2020/01/26/intelligent-heuristics-for-the-game-isolation-using-ai-and-minimax/'>Intelligent Heuristics for the Game Isolation using AI and Minimax</a></li><li><a href='http://www.primaryobjects.com/2019/01/07/an-introduction-to-quantum-computing/'>An Introduction to Quantum Computing</a></li><li><a href='http://www.primaryobjects.com/2018/09/03/creating-self-assembling-code-with-genetic-programming/'>Creating Self-Assembling Code with Genetic Programming</a></li><li><a href='http://www.primaryobjects.com/2018/07/23/logical-based-artificial-intelligence-and-expert-systems/'>Logical-Based Artificial Intelligence and Expert Systems</a></li><li><a href='http://www.primaryobjects.com/2017/10/23/image-recognition-for-fashion-with-machine-learning/'>Image Recognition for Fashion with Machine Learning</a></li><li><a href='http://www.primaryobjects.com/2017/07/24/intelligent-topic-detection-with-unsupervised-learning/'>Intelligent Topic Detection with Unsupervised Learning</a></li><li><a href='http://www.primaryobjects.com/2017/05/08/integrating-react-with-an-existing-jquery-web-application/'>Integrating React with an Existing JQuery Web Application</a></li><li><a href='http://www.primaryobjects.com/2017/03/28/preparing-for-a-technical-interview-algorithms-data-structures-and-computer-science/'>Preparing for a Technical Interview: Algorithms, Data Structures, and Computer Science</a></li><li><a href='http://www.primaryobjects.com/2017/01/09/developing-a-game-for-the-echo-with-amazon-alexa/'>Developing a Game for the Echo with Amazon Alexa</a></li><li><a href='http://www.primaryobjects.com/2016/10/24/emotional-artificial-intelligence/'>Emotional Artificial Intelligence</a></li><li><a href='http://www.primaryobjects.com/2016/09/19/building-your-first-react-javascript-app/'>Building Your First React Javascript App</a></li><li><a href='http://www.primaryobjects.com/2016/04/12/an-overview-of-conversational-ui/'>An Overview of Conversational UI</a></li><li><a href='http://www.primaryobjects.com/2016/02/01/ibm-watson-building-a-cognitive-app/'>IBM Watson: Building a Cognitive App with Concept Insights</a></li><li><a href='http://www.primaryobjects.com/2016/01/06/neural-network-sort/'>Neural Network Sort</a></li><li><a href='http://www.primaryobjects.com/2015/12/15/a-tale-of-migrating-to-a-static-web-site/'>A Tale of Migrating to a Static Web Site</a></li><li><a href='http://www.primaryobjects.com/2015/11/06/artificial-intelligence-planning-with-strips-a-gentle-introduction/'>Artificial Intelligence Planning with STRIPS, A Gentle Introduction</a></li><li><a href='http://www.primaryobjects.com/2015/07/06/a-meteor-js-review-and-tutorial-for-single-page-web-application-development/'>A Meteor.js Review and Tutorial for Single Page Web Application Development</a></li><li><a href='http://www.primaryobjects.com/2015/05/08/token-based-authentication-for-web-service-apis-in-c-mvc-net/'>Token-Based Authentication for Web Service APIs in C# MVC .NET</a></li><li><a href='http://www.primaryobjects.com/2015/03/23/a-template-architecture-for-angularjs-and-mongodb-in-asp-net-mvc-5/'>A Template Architecture for AngularJs and MongoDb in ASP .NET MVC 5</a></li></ul>
<h2 class='channel-title'># <a href='http://www.infosysblogs.com/microsoft/' target='_blank'>http://www.infosysblogs.com/microsoft/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.infosysblogs.com/microsoft/2014/02/car_safety_via_smart_phone.html'>Car Safety via Smart Phone</a></li><li><a href='https://www.infosysblogs.com/microsoft/2014/01/global_implementations_rollout_4.html'>Global Implementations & Rollouts: Some best practices -4</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/12/mobile_apps_for_dynamics_ax.html'>Mobile Apps for Dynamics AX</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/10/global_implementations_rollout.html'>Global Implementations & Rollouts: Some best practices -3</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/10/vehicle_mgmt_app_2.html'>Integrated Vehicle Management App (Part 2)</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/10/vehicle_mgmt_app_1.html'>Integrated Vehicle Management App (Part 1)</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/10/challanges_in_a_multi-vendor_p.html'>Challanges in a Multi-vendor Project</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/09/some_points_to_consider_while.html'>Some points to consider to leverage the benefits of asp.net MVC and jquery more</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/09/_we_know_that_the.html'>Some interesting HTML5 recommendations</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/09/a_quick_peep_into_the_angularj.html'>A quick peep into the AngularJS</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/09/global implementations & rollout.html'>Global Implementations & Rollouts: Some best practices -Part 2</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/09/dispatcher_in_wpf_under_the_ho.html'>Dispatcher in WPF: Under the hood</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/08/_global_implementations_rollou.html'>Global Implementations & Rollouts: Some best practices</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/07/windows_81_firstimpressions.html'>Windows 8.1 Preview Bits - First Impressions</a></li><li><a href='https://www.infosysblogs.com/microsoft/2013/05/pc_or_what.html'>PC or What?</a></li></ul>
<h2 class='channel-title'># <a href='https://visualstudiomagazine.com/rss-feeds/blogs.aspx' target='_blank'>https://visualstudiomagazine.com/rss-feeds/blogs.aspx</a></h2>
<ul class='feed-items'>
<li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/11/acceptance-criteria-user-stories.aspx'>Leveraging Acceptance Criteria When Writing Agile User Stories</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/11/mocking-authenticated-users.aspx'>Mocking an Authenticated User in Blazor/ASP.NET Core</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/11/extend-namespace.aspx'>Extend Your .NET Namespaces for Static Methods and Simpler Code</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/10/arranging-columns.aspx'>Arranging Columns in Visual Studio Windows (with Sorting!)</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/10/rejection-zombie.aspx'>Why Rejection Prevents Zombies in ASP.NET Core</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/10/integrating-snippets.aspx'>How to Integrate Code with Code Snippets in Visual Studio</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/10/calling-methods-async.aspx'>Calling .NET Methods With and Without Async</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/10/updating-to-aspnet-core.aspx'>Upgrading to ASP.NET Core Version 3.0: Top Tips</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/09/code-snippets.aspx'>How to Create New Code Snippets from Existing Ones in Visual Studio</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/09/csrf-validating.aspx'>How to Efficiently Validate Against Cross-Site Request Forgery Attacks in ASP.NET Core</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/09/mutliple-httpclients.aspx'>How to Handle Multiple HttpClients in the Same ASP.NET Core Application</a></li><li><a href='https://visualstudiomagazine.com/blogs/data-driver/2019/09/blazor-app.aspx'>(Really) Quick Tip: Blazor App Hosted as Azure Static Website in Blob Storage</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/09/using-http.aspx'>You're Using HttpClient Wrong</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/05/logging-vs-reporting.aspx'>Logging vs. Reporting Exceptions in Visual Studio</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/05/making-views-serve.aspx'>Making Views Serve Two Roles in ASP.NET Core</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/05/how-to-use-regular-expressions.aspx'>How to Use Regular Expressions in Visual Studio Find</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/05/building-strings-at-runtime.aspx'>How to Build .NET Strings at Run Time</a></li><li><a href='https://visualstudiomagazine.com/blogs/data-driver/2019/05/odata.aspx'>OData Lives! 12-Year-Old RESTful API Protocol Put to New Use in Age of Blazor and ASP.NET Core</a></li><li><a href='https://visualstudiomagazine.com/blogs/tool-tracker/2019/04/skip-question.aspx'>Skip the 'Do You Want to Run the Last Successful Build?' Question when Debugging in Visual Studio</a></li><li><a href='https://visualstudiomagazine.com/blogs/data-driver/2019/05/net-5-wcf.aspx'>Your .NET 5 Questions Answered (Kinda Sorta), Part 1: WCF</a></li></ul>
<h2 class='channel-title'># <a href='https://www.c-sharpcorner.com' target='_blank'>https://www.c-sharpcorner.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.c-sharpcorner.com/article/azure-app-deployment-with-github-action/'>Azure App Deployment With GitHub Action</a></li><li><a href='https://www.c-sharpcorner.com/article/spread-operator-and-its-use-cases-in-javascript/'>Spread Operator And Its Use Cases In JavaScript</a></li><li><a href='https://www.c-sharpcorner.com/article/recording-microsoft-form-responses-in-sharepoint/'>Recording Microsoft Form Responses In SharePoint</a></li><li><a href='https://www.c-sharpcorner.com/article/getting-started-with-azure-translator-service/'>Getting Started With Azure Translator Service</a></li><li><a href='https://www.c-sharpcorner.com/Blogs/recursion-in-csharp'>Recursion In C#</a></li><li><a href='https://www.c-sharpcorner.com/Blogs/css-fontfamily-property'>CSS Font-Family Property</a></li><li><a href='https://www.c-sharpcorner.com/article/creating-ms-form-with-all-supported-data-types/'>Creating MS Form With All Supported Data Types</a></li><li><a href='https://www.c-sharpcorner.com/Blogs/css-hacks-sharp1-modal-windowdialog-using-css'>CSS Hacks - Modal Window/Dialog Using CSS</a></li><li><a href='https://www.c-sharpcorner.com/article/creating-all-day-event-using-power-automate/'>Creating All-Day Event Using Power Automate</a></li><li><a href='https://www.c-sharpcorner.com/article/multi-select-dropdown-in-angular/'>Multi Select Dropdown In Angular</a></li><li><a href='https://www.c-sharpcorner.com/article/creating-an-azure-event-hub-practical-scenario/'>Creating An Azure Event Hub - Practical Scenario</a></li><li><a href='https://www.c-sharpcorner.com/Blogs/dictionary-and-maps-in-c-sharp'>Dictionary And Maps In C#</a></li><li><a href='https://www.c-sharpcorner.com/article/microsoft-lists-with-sharepoint-in-power-apps/'>Microsoft Lists With SharePoint In Power Apps</a></li><li><a href='https://www.c-sharpcorner.com/article/multithreading-in-java/'>Multithreading In Java</a></li><li><a href='https://www.c-sharpcorner.com/Blogs/how-to-create-collapsible-sections-in-modern-sharepoint-page'>How To Create Collapsible Sections In Modern SharePoint Page</a></li><li><a href='https://www.c-sharpcorner.com/article/rockin-the-code-world-with-dotnetdave-ft-david-neal/'>Rockin' The Code World with dotNetDave ft David Neal - Ep. 32</a></li><li><a href='https://www.c-sharpcorner.com/article/docker-containers-a-brief-history-lesson/'>Docker & Containers - A brief history lesson</a></li><li><a href='https://www.c-sharpcorner.com/article/what-are-nfts-growth-mindset-show/'>What are NFTs - Growth Mindset Show</a></li><li><a href='https://www.c-sharpcorner.com/article/javascript-for-and-while-and-for-in-loop-statements/'>Javascript - for and while and for in loop statements</a></li><li><a href='https://www.c-sharpcorner.com/article/7-minutes-to-better-selling-podcast-ep-3/'>7 Minutes to better Selling Podcast Ep. 3</a></li></ul>
<h2 class='channel-title'># <a href='https://vuejsdevelopers.com' target='_blank'>https://vuejsdevelopers.com</a></h2>
<ul class='feed-items'>
<li><a href='https://vuejsdevelopers.com/2021/03/23/nuxt-vite-fastify/'>Rewriting Nuxt Hacker News with Fastify, Vite and Vue 3</a></li><li><a href='https://vuejsdevelopers.com/2021/02/23/vue-highcharts/'>Build A Data Visualization App with Vue</a></li><li><a href='https://vuejsdevelopers.com/2020/12/07/vite-vue-cli/'>Has Vite Made Vue CLI Obsolete?</a></li><li><a href='https://vuejsdevelopers.com/2017/05/15/vue-js-what-is-vuex/'>WTF is Vuex? A Beginner's Guide To Vuex 4</a></li><li><a href='https://vuejsdevelopers.com/2020/10/05/composition-api-vuex/'>Should You Use Composition API as a Replacement for Vuex?</a></li><li><a href='https://vuejsdevelopers.com/topics/vue-router/'>Cool Features of Vue Router 4</a></li><li><a href='https://vuejsdevelopers.com/2020/07/29/bootstrap-vue/'>Build a Bootstrap 4 & Vue App</a></li><li><a href='https://vuejsdevelopers.com/2020/07/20/code-coverage-vue-cypress/'>Code Coverage for Vue Applications</a></li><li><a href='https://vuejsdevelopers.com/2020/07/13/vue-async-components-suspense/'>Vue 3 UX Wins with Async Components & Suspense</a></li><li><a href='https://vuejsdevelopers.com/topics/vue-cli/'>Why Vue CLI?</a></li></ul>
<h2 class='channel-title'># <a href='http://continuousdeveloper.com/' target='_blank'>http://continuousdeveloper.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/l1_UqnrS_lY/'>Why do you have an implementation in your interface?</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/UgUxTYdKGY4/'>Using ASP.NET Core goodies in a console app</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/0YBk8vnYihw/'>Node Gyp with Visual Studio 2019</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/_CV1EoZz5Vg/'>Selecting VarBinary data as Base64</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/XsI4OcVA98c/'>Home Automation 2 - Sonoff</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/Gpp0JmVHhe0/'>A journey into the world of home automation</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/tA-5bPZScZA/'>Zero Downtime Deployments In An IIS World</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/f8Ic3kts39U/'>Code coverage for .net Core with OpenCover</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/uWOUw14mygU/'>Keeping your C# and TypeScript models in sync</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/R-L1jKSe4MU/'>Chasing an elusive System.Net.IPAddress bug</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/TgwHOom5-nI/'>JSinSA 2016</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/b-CV8kIlzS4/'>Protecting routes in Angular 2 (new new router)</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/-TmQc6ojbD0/'>Re-using RxJS Observables</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/dphjeUt1540/'>Using Ninject with WebAPI 2.0</a></li><li><a href='http://feedproxy.google.com/~r/ContinuousDeveloper/~3/kdpYhhGkFJs/'>Applying for a new South African ID Card</a></li></ul>
<h2 class='channel-title'># <a href='https://kamranicus.com/' target='_blank'>https://kamranicus.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/pplKYF5Updg/'>Tricking TypeScript Into Typing Untyped JavaScript Modules</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/SXsJw1-KtMc/'>Building a TypeDoc-powered Gatsby Documentation Site</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/zr-6Tmi-BVU/'>Hacktoberfest: Can I ask a question?</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/Kp048b_3g0U/'>Building a Raspberry Pi 3 Baby Monitor</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/2maQhq61i80/'>Fixing JavaScript heap out of memory with WebdriverIO</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/iaDs4_uSbi8/'>Controlling Browser Permissions in Cypress End-to-End Tests</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/pFDxAgZMuaw/'>Storyflow: Using Storybook to Build a Better... Game Engine?</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/z7E-reO8RxY/'>Role of Indexing in RavenDB vs. MongoDB and PostgreSQL</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/Q05uFys_I-8/'>Frontend Masters Workshop: React Native Recap</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/YhE7p81x5zc/'>Throttling Outgoing Requests in Node.js and .NET Core</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/YfhjbP1MKS0/'>Catching Errors with External Commands in PowerShell and Azure DevOps</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/qbHzQQhuE64/'>Migrating from disk drives to solid state drives</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/TgeEPIOEr2I/'>2019 Year and Decade in Review plus 2020 Goals</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/1HZaB8UARek/'>Just Finished Contributing to an Open Source Project on GitHub Course</a></li><li><a href='http://feedproxy.google.com/~r/Kamranicus/~3/iYCbGZoPeOE/'>MDC 2019 Recording Live for Flexible UI Architecture with React and GraphQL</a></li></ul>
<h2 class='channel-title'># <a href='https://www.spiria.com/en/blog/' target='_blank'>https://www.spiria.com/en/blog/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.spiria.com/en/blog/cx-customer-experience/listen-to-the-voice-of-the-customer/'>Listen to the voice of the customer</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/intels-new-nuc-11-extreme/'>Intel’s new NUC 11 Extreme</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/zoom-sets-up-third-party-applications/'>Zoom sets up third-party applications</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/netflix-tries-out-mobile-games/'>Netflix tries out mobile games</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/tencent-games-opening-studio-in-montreal/'>Tencent Games opening studio in Montreal</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/a-larger-than-life-screen/'>A larger-than-life screen</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/the-chip-crunch-will-continue-in-2022/'>The chip crunch will continue in 2022</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/all-hands-on-steam-deck/'>All hands on Steam Deck!</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/windows-365/'>Windows 365</a></li><li><a href='https://www.spiria.com/en/blog/tech-news-brief/a-super-mario-watch-for-a-super-price/'>A Super Mario watch for a super price</a></li></ul>
<h2 class='channel-title'># <a href='https://ardalis.com/' target='_blank'>https://ardalis.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://ardalis.com/improving-method-function-clarity/'>Improving Method and Function Clarity</a></li><li><a href='https://ardalis.com/prioritizing-and-microservices/'>Prioritizing and Microservices</a></li><li><a href='https://ardalis.com/csharp-generics-best-practices/'>C# Generics Best Practices</a></li><li><a href='https://ardalis.com/what-if-product-owners-reported-to-dev-teams/'>What If Product Owners Reported to Dev Teams?</a></li><li><a href='https://ardalis.com/vs-code-disable-logging-loading-symbols/'>VS Code Disable Logging Loading Symbols</a></li><li><a href='https://ardalis.com/use-autohotkey-to-paste-text-as-typing/'>Use AutoHotKey to Paste Text as Typing</a></li><li><a href='https://ardalis.com/github-fetch-upstream/'>GitHub Fetch Upstream Branch</a></li><li><a href='https://ardalis.com/simple-systems-galls-law/'>Simple Systems and Gall's Law</a></li><li><a href='https://ardalis.com/add-imgbot-to-github-repository/'>Add ImgBot to your GitHub Repository</a></li><li><a href='https://ardalis.com/testing-exceptions-with-xunit-and-actions/'>Testing Exceptions with xUnit and Actions</a></li></ul>
<h2 class='channel-title'># <a href='https://hackernoon.com' target='_blank'>https://hackernoon.com</a></h2>
<ul class='feed-items'>
<li><a href='https://hackernoon.com/david-fuller-on-building-the-first-of-its-kind-automation-platform-with-artificialcom?source=rss'>David Fuller on building the first-of-its-kind Automation Platform with Artificial.com</a></li><li><a href='https://hackernoon.com/ethereum-20-staking-on-aws-cloud-staking-matters?source=rss'>Ethereum 2.0 staking on AWS: Cloud Staking Matters</a></li><li><a href='https://hackernoon.com/grant-michael-leingang-founded-blvck-divmond-in-his-fathers-garage-when-he-was-23?source=rss'>Grant Michael Leingang founded BLVCK DIVMOND in his father’s garage when he was 23</a></li><li><a href='https://hackernoon.com/startup-interview-not-as-many-people-genuinely-care-about-food-security-as-they-should?source=rss'>Startup Interview: "Not as many people genuinely care about food security as they should"</a></li><li><a href='https://hackernoon.com/fail-more-advised-david-stapleton-bua-fits-founder-and-ceo?source=rss'>"Fail more", advised David Stapleton, BUA FIT's Founder CEO</a></li><li><a href='https://hackernoon.com/benjamin-bateman-says-ton-labs-future-is-bigger-than-i-could-begin-to-describe?source=rss'>Benjamin Bateman says TON Labs' future is "bigger than I could begin to describe"</a></li><li><a href='https://hackernoon.com/how-deemples-ceo-david-wong-built-the-largest-golf-app-in-malaysia?source=rss'>How Deemples CEO David Wong built the largest golf app in Malaysia</a></li><li><a href='https://hackernoon.com/startup-interview-with-dawn-dickson-akpoghene-popcom-founder-and-ceo?source=rss'>Startup Interview with Dawn Dickson-Akpoghene, PopCom, Founder CEO</a></li><li><a href='https://hackernoon.com/startup-interview-with-ub-ciminieri-interviewia-cmo?source=rss'>Startup Interview with UB Ciminieri, interviewIA CMO</a></li><li><a href='https://hackernoon.com/it-just-happened-on-its-own-franck-jones-node-chronicles-on-their-unexpected-preorder-wave?source=rss'>"It Just Happened On Its Own" Franck Jones, Node Chronicles, On Their Unexpected Preorder Wave</a></li><li><a href='https://hackernoon.com/insurers-miss-out-on-millions-of-dollars-in-business-manuel-san-miguel-ignatica-ceo?source=rss'>"Insurers Miss Out On Millions Of Dollars In Business", Manuel San Miguel, Ignatica CEO</a></li><li><a href='https://hackernoon.com/pycaret-a-faster-way-to-build-machine-learning-models-skf35zr?source=rss'>Pycaret: A Faster Way to Build Machine Learning Models</a></li><li><a href='https://hackernoon.com/write-cleaner-code-with-my-top-5-java-script-hacks?source=rss'>Write Cleaner Code with My Top 5 JavaScript Hacks</a></li><li><a href='https://hackernoon.com/robinhood-virality-gamification-fomo-simplicity-billion-dollar-ipo-ek3i35rf?source=rss'>Robinhood: Virality + Gamification + FOMO + Simplicity = Billion Dollar IPO</a></li><li><a href='https://hackernoon.com/diversity-and-inclusion-5-best-practices-towards-a-great-place-to-work-vf193512?source=rss'>Diversity Inclusion: 5 Best Practices Towards a Great Place to Work</a></li><li><a href='https://hackernoon.com/storylabai-uses-gpt-3-to-make-content-marketing-easier-for-everyone-563l35ed?source=rss'>StoryLab.ai Uses GPT-3 to Make Content Marketing Easier for Everyone</a></li><li><a href='https://hackernoon.com/7-tips-for-b2b-saas-startup-growth-pk16356r?source=rss'>7 Tips for B2B SaaS Startup Growth</a></li><li><a href='https://hackernoon.com/all-the-best-ux-design-trends-for-mobile-apps-in-2021-bm6q35q9?source=rss'>All the Best UX Design Trends for Mobile Apps in 2021</a></li><li><a href='https://hackernoon.com/how-to-send-thousands-of-personalized-emails-like-a-pro-and-not-a-creep-jnp3oqj?source=rss'>How to send thousands of personalized emails like a pro and not a creep</a></li><li><a href='https://hackernoon.com/security-concern-is-a-top-barrier-to-ai-implementation-6x3c37vu?source=rss'>Security concern is a top barrier to AI implementation</a></li></ul>
<h2 class='channel-title'># <a href='http://tattoocoder.com' target='_blank'>http://tattoocoder.com</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/qtds1HH38Sw/'>Building applications with C# and a Challenge!</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/y5qmK8RV5Vw/'>Are you reading the "What's New" in .NET docs?</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/SdyaoeeEutE/'>Updating the my blog from AppService to Containers...finally</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/ZJQ5yJHbb6o/'>So Many Ways to Learn .NET in 2020</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/IsjGUEu8x_c/'>Recommending VSCode extensions within your Open Source projects</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/xOS7O-2jR1I/'>Deploying WCF and .NET Core applications to a single Kubernetes cluster</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/nzbFhXBHdWs/'>Modernizing WCF Services with containers and Visual Studio</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/YuA1Q37ijRA/'>Auto blogging Jekyll with Logic Apps, ACI Containers and .NET Core</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/Gt2JmzgYOQo/'>dotnet-azure : A .NET Core global tool to deploy an application to Azure in one command</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/vZpmojqkjC8/'>Finding your next .NET Open Source project using the command line</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/RcQie49b4ys/'>Using ASP.NET Core with MongoDB in containers for local dev, CosmosDB for production</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/z-E3R83SLCs/'>Using Azure DevOps Pipelines and NuKeeper to Automate NuGet Package updates</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/U0nDN3ySrU4/'>Exploring the Docker Extension for VS Code and .NET Core</a></li><li><a href='http://feedproxy.google.com/~r/Tattoocoder/~3/0Ago25qB3p4/'>dotnet new templates for serverless functions</a></li></ul>
<h2 class='channel-title'># <a href='http://markhneedham.com/blog/' target='_blank'>http://markhneedham.com/blog/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.markhneedham.com/blog/2009/04/11/the-mythical-man-month-book-review/'>https://www.markhneedham.com/blog/2009/04/11/the-mythical-man-month-book-review/</a></li><li><a href='https://www.markhneedham.com/blog/2017/04/27/python-flask-generating-a-static-html-page/'>https://www.markhneedham.com/blog/2017/04/27/python-flask-generating-a-static-html-page/</a></li><li><a href='https://www.markhneedham.com/blog/2021/07/16/pinot-bad-query-request-exception-cannot-convert-value-long/'>Apache Pinot: BadQueryRequestException - Cannot convert value to type: LONG</a></li><li><a href='https://www.markhneedham.com/blog/2021/06/22/pinot-analysing-england-covid-cases/'>Apache Pinot: Analysing England's Covid case data</a></li><li><a href='https://www.markhneedham.com/blog/2021/06/21/pinot-broker-resource-missing/'>Apache Pinot: {'errorCode': 410, 'message': 'BrokerResourceMissingError'}</a></li><li><a href='https://www.markhneedham.com/blog/2021/05/19/jq-select-multiple-keys/'>jq: Select multiple keys</a></li><li><a href='https://www.markhneedham.com/blog/2021/05/13/pandas-add-row-to-dataframe-with-index/'>Pandas: Add row to DataFrame</a></li><li><a href='https://www.markhneedham.com/blog/2021/04/28/altair-pandas-cannot-interpret-float64dtype-as-data-type/'>Altair/Pandas: TypeError: Cannot interpret 'Float64Dtype()' as a data type</a></li><li><a href='https://www.markhneedham.com/blog/2021/04/21/pandas-compare-dataframe-to-previous-days/'>Pandas: Compare values in DataFrame to previous days</a></li><li><a href='https://www.markhneedham.com/blog/2021/04/17/england-covid-vaccination-rates-the-data/'>Vaccinating England: The Data (cleanup)</a></li><li><a href='https://www.markhneedham.com/blog/2021/04/11/pandas-format-dataframe-numbers-commas-decimals/'>Pandas - Format DataFrame numbers with commas and control decimal places</a></li><li><a href='https://www.markhneedham.com/blog/2021/04/08/pandas-divide-dataframes-unsupported-operand-type-str/'>Pandas - Dividing two DataFrames (TypeError: unsupported operand type(s) for /: 'str' and 'str')</a></li><li><a href='https://www.markhneedham.com/blog/2021/04/02/altair-discrete-x-axis-margin-padding/'>Altair - Remove margin/padding on discrete X axis</a></li><li><a href='https://www.markhneedham.com/blog/2021/03/28/pandas-column-value-in-array-list-truth-value-ambiguous/'>Pandas: Filter column value in array/list - ValueError: The truth value of a Series is ambiguous</a></li><li><a href='https://www.markhneedham.com/blog/2021/02/08/neo4j-gdsl-overlapping-community-detection-sllpa/'>Neo4j Graph Data Science 1.5: Exploring the Speaker-Listener LPA Overlapping Community Detection Algorithm</a></li><li><a href='https://www.markhneedham.com/blog/2021/02/03/neo4j-gdsl-hits-algorithm/'>Neo4j Graph Data Science 1.5: Exploring the HITS Algorithm</a></li><li><a href='https://www.markhneedham.com/blog/2021/01/28/materialize-multiple-views-one-source/'>Materialize: Creating multiple views on one source</a></li><li><a href='https://www.markhneedham.com/blog/2020/12/31/materialize-unable-automatically-determine-timestamp-query/'>Materialize: Unable to automatically determine a timestamp for your query; this can happen if your query depends on non-materialized sources</a></li><li><a href='https://www.markhneedham.com/blog/2020/12/30/jq-change-value-multiple-keys/'>jq: How to change the value of keys in JSON documents</a></li><li><a href='https://www.markhneedham.com/blog/2020/12/29/materialize-json-arrays/'>Materialize: Querying JSON arrays</a></li></ul>
<h2 class='channel-title'># <a href='https://itnext.io/f' target='_blank'>https://itnext.io/f</a></h2>
<ul class='feed-items'>
<li><a href='https://itnext.io/how-to-set-up-a-software-project-like-a-big-boy-or-girl-97d3a52ad813?source=rss----5b301f10ddcd---4'>How to Set up a Software Project like a Big Boy (Or Girl)</a></li><li><a href='https://itnext.io/lets-play-with-meta-compilers-designing-an-automated-scanner-2ffe2e0e609c?source=rss----5b301f10ddcd---4'>Let’s Play with (Meta)Compilers — Designing an Automated Scanner</a></li><li><a href='https://itnext.io/javascript-development-making-a-web-worker-optional-f23a13490b28?source=rss----5b301f10ddcd---4'>JavaScript Development: Making a Web Worker optional</a></li><li><a href='https://itnext.io/text-annotation-tools-for-nlp-c254f8ee52f7?source=rss----5b301f10ddcd---4'>Text Annotation Tools for NLP</a></li><li><a href='https://itnext.io/react-higher-order-components-with-typescript-e41c64954825?source=rss----5b301f10ddcd---4'>React Higher-Order Components with TypeScript</a></li><li><a href='https://itnext.io/i-wrote-vuex-but-for-react-the-challenges-i-faced-and-where-you-can-get-it-d465985d8a5?source=rss----5b301f10ddcd---4'>I wrote vuex — but for React! The challenges I faced and where you can get it</a></li><li><a href='https://itnext.io/github-actions-for-android-developers-9ae606df2bfa?source=rss----5b301f10ddcd---4'>GitHub Actions for Android Developers</a></li><li><a href='https://itnext.io/rendering-3d-offscreen-getting-max-performance-using-canvas-workers-88c207cbcdc2?source=rss----5b301f10ddcd---4'>Rendering 3d offscreen: Getting max performance using canvas workers</a></li><li><a href='https://itnext.io/beginning-state-management-builders-and-listeners-c5db6ba6b653?source=rss----5b301f10ddcd---4'>Beginning State Management, Builders And Listeners</a></li><li><a href='https://itnext.io/ios-record-play-an-audio-clip-1ba8004543ee?source=rss----5b301f10ddcd---4'>iOS — Record & Play an Audio Clip</a></li></ul>
<h2 class='channel-title'># <a href='https://weblogs.asp.net/scottgu' target='_blank'>https://weblogs.asp.net/scottgu</a></h2>
<ul class='feed-items'>
<li><a href='https://weblogs.asp.net:443/scottgu/i-m-speaking-at-a-free-azurecraft-event-in-london-on-june-3rd'>I’m speaking at a Free AzureCraft event in London on June 3rd</a></li><li><a href='https://weblogs.asp.net:443/scottgu/welcoming-the-xamarin-team-to-microsoft'>Welcoming the Xamarin team to Microsoft</a></li><li><a href='https://weblogs.asp.net:443/scottgu/azurecon-keynote-announcements-india-regions-gpu-support-iot-suite-container-service-and-security-center'>AzureCon Keynote Announcements: India Regions, GPU Support, IoT Suite, Container Service, and Security Center</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-general-availability-of-hdinsight-on-linux-new-data-lake-services-and-language'>Announcing General Availability of HDInsight on Linux + new Data Lake Services and Language</a></li><li><a href='https://weblogs.asp.net:443/scottgu/online-azurecon-conference-this-tuesday'>Online AzureCon Conference this Tuesday</a></li><li><a href='https://weblogs.asp.net:443/scottgu/better-density-and-lower-prices-for-azure-s-sql-elastic-database-pools'>Better Density and Lower Prices for Azure’s SQL Elastic Database Pools</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-the-biggest-vm-sizes-available-in-the-cloud-new-azure-gs-vm-series'>Announcing the Biggest VM Sizes Available in the Cloud: New Azure GS-VM Series</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-great-new-sql-database-capabilities-in-azure'>Announcing Great New SQL Database Capabilities in Azure</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-windows-server-2016-containers-preview'>Announcing Windows Server 2016 Containers Preview</a></li><li><a href='https://weblogs.asp.net:443/scottgu/released-today-visual-studio-2015-asp-net-4-6-asp-net-5-ef-7-previews'>Released Today: Visual Studio 2015, ASP.NET 4.6, ASP.NET 5 & EF 7 Previews</a></li><li><a href='https://weblogs.asp.net:443/scottgu/new-azure-billing-apis-available'>New Azure Billing APIs Available</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-general-availability-of-azure-premium-storage'>Announcing General Availability of Azure Premium Storage</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-the-new-azure-app-service'>Announcing the new Azure App Service</a></li><li><a href='https://weblogs.asp.net:443/scottgu/introducing-asp-net-5'>Introducing ASP.NET 5</a></li><li><a href='https://weblogs.asp.net:443/scottgu/azure-machine-learning-service-hadoop-storm-cluster-scaling-linux-support-site-recovery-and-more'>Azure: Machine Learning Service, Hadoop Storm, Cluster Scaling, Linux Support, Site Recovery and More</a></li><li><a href='https://weblogs.asp.net:443/scottgu/scottgu-azure-event-in-london-on-march-2nd'>ScottGu Azure event in London on March 2nd</a></li><li><a href='https://weblogs.asp.net:443/scottgu/azure-premium-storage-remoteapp-sql-database-update-live-media-streaming-search-and-more'>Azure: Premium Storage, RemoteApp, SQL Database Update, Live Media Streaming, Search and More</a></li><li><a href='https://weblogs.asp.net:443/scottgu/announcing-open-source-of-net-core-framework-net-core-distribution-for-linux-osx-and-free-visual-studio-community-edition'>Announcing Open Source of .NET Core Framework, .NET Core Distribution for Linux/OSX, and Free Visual Studio Community Edition</a></li><li><a href='https://weblogs.asp.net:443/scottgu/azure-announcing-new-real-time-data-streaming-and-data-factory-services'>Azure: Announcing New Real-time Data Streaming and Data Factory Services</a></li><li><a href='https://weblogs.asp.net:443/scottgu/azure-new-marketplace-network-improvements-new-batch-service-automation-service-more'>Azure: New Marketplace, Network Improvements, New Batch Service, Automation Service, more</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.codeinside.eu/' target='_blank'>https://blog.codeinside.eu/</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.codeinside.eu/2021/05/30/fltmc-inspect-the-io-request-pipeline-of-windows/'>Today I learned (sort of) 'fltmc' to inspect the IO request pipeline of Windows</a></li><li><a href='https://blog.codeinside.eu/2021/04/28/how-to-self-host-google-fonts/'>How to self host Google Fonts</a></li><li><a href='https://blog.codeinside.eu/2021/01/31/microsoft-graph-read-user-profile-and-group-memberships/'>Microsoft Graph: Read user profile and group memberships</a></li><li><a href='https://blog.codeinside.eu/2020/12/31/how-get-all-distribution-lists-of-a-user-with-a-single-ldap-query/'>How to get all distribution lists of a user with a single LDAP query</a></li><li><a href='https://blog.codeinside.eu/2020/11/30/update-onprem-azuredevops-server-2019-to-azuredevops-server-2019-update1/'>Update AzureDevOps Server 2019 to AzureDevOps Server 2019 Update 1</a></li><li><a href='https://blog.codeinside.eu/2020/10/31/dllregisterserver-0x80020009-error/'>DllRegisterServer 0x80020009 Error</a></li><li><a href='https://blog.codeinside.eu/2020/09/29/how-to-share-an-azure-subscription-in-a-team/'>How to share an Azure subscription in a team</a></li><li><a href='https://blog.codeinside.eu/2020/08/31/how-to-run-a-legacy-wcf-svc-service-on-azure-app-service/'>How to run a legacy WCF .svc Service on Azure AppService</a></li><li><a href='https://blog.codeinside.eu/2020/07/31/ews-exchange-online-oauth-with-a-service-account/'>EWS, Exchange Online and OAuth with a Service Account</a></li><li><a href='https://blog.codeinside.eu/2020/06/30/can-a-dotnet-core-30-compiled-app-run-with-a-dotnet-core-31-runtime/'>Can a .NET Core 3.0 compiled app run with a .NET Core 3.1 runtime?</a></li><li><a href='https://blog.codeinside.eu/2020/05/31/sqlbulkcopy-for-fast-bulk-inserts/'>SqlBulkCopy for fast bulk inserts</a></li><li><a href='https://blog.codeinside.eu/2020/04/30/blazor-for-office-addins-first-look/'>Blazor for Office Add-ins: First look</a></li><li><a href='https://blog.codeinside.eu/2020/03/27/escape-environment-variables-in-msiexec-parameters/'>Escape enviroment variables in MSIEXEC parameters</a></li><li><a href='https://blog.codeinside.eu/2020/02/29/ssl-channel-problems-on-older-systems/'>TLS/SSL problem: 'Could not create SSL/TLS secure channel'</a></li><li><a href='https://blog.codeinside.eu/2020/01/31/accessibility-insights-spot-accessibility-issues-easily-for-webapps-and-winapps/'>Accessibility Insights: Spot accessibilities issues easily for Web Apps and Windows Apps</a></li><li><a href='https://blog.codeinside.eu/2019/12/30/t-sql-pagination/'>T-SQL Pagination</a></li><li><a href='https://blog.codeinside.eu/2019/11/30/build-dotnetcore-apps-with-msbuild-to-avoid-strange-netframeworkbased-errors/'>Did you know that you can build .NET Core apps with MSBuild.exe?</a></li><li><a href='https://blog.codeinside.eu/2019/10/13/identityserver-azure-ad-login-and-unknown-response-type-texthtml/'>IdentityServer & Azure AD Login: Unkown Response Type text/html</a></li><li><a href='https://blog.codeinside.eu/2019/09/30/enforce-administrator-mode-for-builded-dotnet-exe/'>Enforce Administrator mode for builded dotnet exe applications</a></li><li><a href='https://blog.codeinside.eu/2019/08/31/check-installed-version-for-aspnetcore-on-windows-iis-with-powershell/'>Check installed version for ASP.NET Core on Windows IIS with Powershell</a></li></ul>
<h2 class='channel-title'># <a href='http://davidfowl.com/' target='_blank'>http://davidfowl.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://davidfowl.com/diagnosing-dependency-issues-with-asp-net-5/'>Diagnosing dependency issues with ASP.NET 5</a></li><li><a href='http://davidfowl.com/asp-net-vnext-alpha3/'>ASP.NET vNext - Alpha3</a></li><li><a href='http://davidfowl.com/assembly-neutral-interfaces-implementation/'>Assembly Neutral Types Implementation</a></li><li><a href='http://davidfowl.com/assembly-neutral-interfaces/'>Assembly Neutral Interfaces</a></li><li><a href='http://davidfowl.com/asp-net-vnext-architecture/'>ASP.NET vNext Overview</a></li><li><a href='http://davidfowl.com/asp-net-vnext/'>ASP.NET vNext</a></li><li><a href='http://davidfowl.com/guess-whos-back/'>Blogging again</a></li></ul>
<h2 class='channel-title'># <a href='https://thomasbandt.com/' target='_blank'>https://thomasbandt.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://thomasbandt.com/react-global-state-management'>Global State Management For React Apps</a></li><li><a href='https://thomasbandt.com/model-view-update-with-react-and-typescript'>Pragmatic MVU With React And TypeScript</a></li><li><a href='https://thomasbandt.com/type-safe-spa-fable-fsharp-vs-typescript'>Type-Safe Single Page Apps: F# Vs. TypeScript</a></li><li><a href='https://thomasbandt.com/scaling-model-view-update'>About Scaling Model-View-Update</a></li><li><a href='https://thomasbandt.com/learning-how-to-learn'>Learning How To Learn</a></li></ul>
<h2 class='channel-title'># <a href='https://codeburst.io' target='_blank'>https://codeburst.io</a></h2>
<ul class='feed-items'>
<li><a href='https://codeburst.io/installing-backpack-for-laravel-modules-with-a-line-of-command-eda01d72639f?source=rss----61061eb0c96b---4'>Installing Backpack for Laravel Modules with a Line of Command</a></li><li><a href='https://codeburst.io/analyzing-the-sentiment-of-tweets-with-java-d65405666c33?source=rss----61061eb0c96b---4'>Analyzing The Sentiment of Tweets With Java</a></li><li><a href='https://codeburst.io/aws-cloud-front-functions-512d594d670a?source=rss----61061eb0c96b---4'>AWS Cloud Front Functions</a></li><li><a href='https://codeburst.io/running-scrapy-in-celery-tasks-d81e159921ea?source=rss----61061eb0c96b---4'>Running Scrapy In Celery Tasks</a></li><li><a href='https://codeburst.io/networking-your-home-how-and-why-7e5a96a49a0f?source=rss----61061eb0c96b---4'>Networking Your Home: How and Why</a></li><li><a href='https://codeburst.io/fastai-course-chapter-4-q-a-on-wsl2-9cb0a3bb4fb7?source=rss----61061eb0c96b---4'>Fastai Course Chapter 4 Q&A on WSL2</a></li><li><a href='https://codeburst.io/fastai-course-chapter-3-q-a-on-wsl2-9e5f0f2a6c1a?source=rss----61061eb0c96b---4'>Fastai Course Chapter 3 Q&A on WSL2</a></li><li><a href='https://codeburst.io/fastai-course-chapter-2-on-wsl2-23eedadd304f?source=rss----61061eb0c96b---4'>Fastai Course Chapter 2 on WSL2</a></li><li><a href='https://codeburst.io/fastai-course-chapter-2-q-a-on-wsl2-32290be44822?source=rss----61061eb0c96b---4'>Fastai Course Chapter 2 Q&A on WSL2</a></li><li><a href='https://codeburst.io/how-to-inject-css-code-into-an-html-page-d3feb5c85b2b?source=rss----61061eb0c96b---4'>How To Inject CSS Code Into an HTML Page?</a></li></ul>
<h2 class='channel-title'># <a href='https://engineering.tiki.vn/' target='_blank'>https://engineering.tiki.vn/</a></h2>
<ul class='feed-items'>
<li><a href='https://engineering.tiki.vn/arcturus-inventory-processing-system-cca62076518b?source=rss----b3e69d3eedc1---4'>Arcturus — Inventory Processing System</a></li><li><a href='https://engineering.tiki.vn/tiki-scale-in-10-years-225826296cb8?source=rss----b3e69d3eedc1---4'>TIKI @ Scale in 10 Years.</a></li><li><a href='https://engineering.tiki.vn/how-to-handle-hot-deals-at-the-peak-time-821908b9d340?source=rss----b3e69d3eedc1---4'>How to handle hot deals at the peak time</a></li><li><a href='https://engineering.tiki.vn/o-1-android-build-time-at-tiki-1a27a804bb6a?source=rss----b3e69d3eedc1---4'>O(1) Android build time at Tiki</a></li><li><a href='https://engineering.tiki.vn/scale-and-whats-next-2faa45a734da?source=rss----b3e69d3eedc1---4'>SCALE, AND WHAT’S NEXT</a></li><li><a href='https://engineering.tiki.vn/t%E1%BA%A1i-sao-tiki-ch%E1%BB%8Dn-react-native-51ce2a935861?source=rss----b3e69d3eedc1---4'>Tại sao Tiki chọn React-Native?</a></li><li><a href='https://engineering.tiki.vn/tiki-s%E1%BB%AD-d%E1%BB%A5ng-react-native-nh%C6%B0-th%E1%BA%BF-n%C3%A0o-893583c5e1f6?source=rss----b3e69d3eedc1---4'>Tiki sử dụng React-Native như thế nào?</a></li><li><a href='https://engineering.tiki.vn/into-the-demand-forecast-of-tiki-operations-5089e0f59812?source=rss----b3e69d3eedc1---4'>Into The Demand Forecast of Tiki Operations</a></li><li><a href='https://engineering.tiki.vn/brand-logo-detection-f3951e425954?source=rss----b3e69d3eedc1---4'>Brand/Logo Detection</a></li><li><a href='https://engineering.tiki.vn/pegasus-catalog-product-api-architecture-f217c8623c9b?source=rss----b3e69d3eedc1---4'>Pegasus — Catalog Product API Architecture.</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.jeremylikness.com' target='_blank'>https://blog.jeremylikness.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.jeremylikness.com/blog/graphql-for-dotnet-developers/'>GraphQL for .NET Developers</a></li><li><a href='https://blog.jeremylikness.com/blog/azure-cosmos-db-with-ef-core-on-blazor-server/'>Azure Cosmos DB With EF Core on Blazor Server</a></li><li><a href='https://blog.jeremylikness.com/blog/multitenancy-with-ef-core-in-blazor-server-apps/'>Multi-tenancy with EF Core in Blazor Server Apps</a></li><li><a href='https://blog.jeremylikness.com/blog/an-easier-blazor-debounce/'>An Easier Blazor Debounce</a></li><li><a href='https://blog.jeremylikness.com/blog/2020-year-in-review/'>2020: The Year of Data</a></li><li><a href='https://blog.jeremylikness.com/blog/run-efcore-queries-against-sql-from-blazor-webassembly/'>Run EF Core Queries on SQL Server From Blazor WebAssembly</a></li><li><a href='https://blog.jeremylikness.com/blog/inspect-and-mutate-iqueryable-expression-trees/'>Inspect and Mutate IQueryable Expression Trees</a></li><li><a href='https://blog.jeremylikness.com/blog/look-behind-the-iqueryable-curtain/'>Look Behind the IQueryable Curtain</a></li><li><a href='https://blog.jeremylikness.com/blog/build-a-blazor-server-azure-ad-secured-lob-app/'>Build an Azure AD Secured Blazor Server Line of Business App</a></li><li><a href='https://blog.jeremylikness.com/blog/build-a-blazor-webassembly-line-of-business-app-part-4/'>Build a Blazor WebAssembly LOB App Part 4: Make it Blazor-Friendly</a></li><li><a href='https://blog.jeremylikness.com/blog/build-a-blazor-webassembly-line-of-business-app-part-3/'>Build a Blazor WebAssembly Line of Business App Part 3: Query, Delete and Concurrency</a></li><li><a href='https://blog.jeremylikness.com/blog/build-a-blazor-webassembly-line-of-business-app-part-2/'>Build a Blazor WebAssembly Line of Business App Part 2: Client and Server</a></li><li><a href='https://blog.jeremylikness.com/blog/build-a-blazor-webassembly-line-of-business-app/'>Build a Blazor WebAssembly Line of Business App Part 1: Intro and Data Access</a></li><li><a href='https://blog.jeremylikness.com/blog/dynamically-build-linq-expressions/'>Dynamically Build LINQ Expressions</a></li><li><a href='https://blog.jeremylikness.com/blog/azure-ad-secured-serverless-cosmosdb-from-blazor-webassembly/'>Azure AD Secured Serverless Cosmos DB from Blazor WebAssembly</a></li><li><a href='https://blog.jeremylikness.com/blog/ef-core-and-cosmosdb-with-blazor-webassembly/'>EF Core and Cosmos DB with Blazor WebAssembly</a></li><li><a href='https://blog.jeremylikness.com/blog/kusto-azure-data-explorer-log-analytics/'>Deep Data Dive with Kusto for Azure Data Explorer and Log Analytics</a></li><li><a href='https://blog.jeremylikness.com/blog/new-role-dotnet-data-pm/'>My New Role as Senior Program Manager for .NET Data</a></li><li><a href='https://blog.jeremylikness.com/blog/build-a-spa-site-with-vanillajs/'>Build a Single Page Application (SPA) Site With Vanilla.js</a></li><li><a href='https://blog.jeremylikness.com/blog/blazor-state-management/'>Blazor State Management</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.huntresslabs.com' target='_blank'>https://blog.huntresslabs.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.huntresslabs.com/our-blog-has-moved-d4575d35fb5c?source=rss----76ed00a32c0c---4'>Our Blog Has Moved!</a></li><li><a href='https://blog.huntresslabs.com/why-microsoft-defender-antivirus-is-worth-another-look-2138c66777f1?source=rss----76ed00a32c0c---4'>Why Microsoft Defender Antivirus Is Worth Another Look</a></li><li><a href='https://blog.huntresslabs.com/malware-under-the-microscope-manual-analysis-703a692121d1?source=rss----76ed00a32c0c---4'>Malware Under The Microscope: Manual Analysis</a></li><li><a href='https://blog.huntresslabs.com/redefining-beta-10ab4eb03e4b?source=rss----76ed00a32c0c---4'>Redefining Beta</a></li><li><a href='https://blog.huntresslabs.com/top-hacker-tradecraft-that-caught-our-eye-in-2020-b48ca8fa3058?source=rss----76ed00a32c0c---4'>Top Hacker Tradecraft That Caught Our Eye in 2020</a></li><li><a href='https://blog.huntresslabs.com/rapid-response-supply-chain-exploitation-of-solarwinds-orion-software-b8ee3c9283c3?source=rss----76ed00a32c0c---4'>Rapid Response: Supply Chain Exploitation of SolarWinds Orion Software</a></li><li><a href='https://blog.huntresslabs.com/rapid-response-trickboot-ef24bfe864c3?source=rss----76ed00a32c0c---4'>Rapid Response: TrickBoot</a></li><li><a href='https://blog.huntresslabs.com/i-have-a-lot-to-be-thankful-for-in-2020-and-it-starts-with-the-msp-community-68353beb4fb9?source=rss----76ed00a32c0c---4'>I Have a Lot to be Thankful for in 2020</a></li><li><a href='https://blog.huntresslabs.com/tried-and-true-hacker-technique-dos-obfuscation-400b57cd7dd?source=rss----76ed00a32c0c---4'>Tried and True Hacker Technique: DOS Obfuscation</a></li><li><a href='https://blog.huntresslabs.com/huntress-service-partner-enablement-3b814a2d741d?source=rss----76ed00a32c0c---4'>Huntress Service: Partner Enablement</a></li></ul>
<h2 class='channel-title'># <a href='https://uxdesign.cc/' target='_blank'>https://uxdesign.cc/</a></h2>
<ul class='feed-items'>
<li><a href='https://uxdesign.cc/how-do-you-inspire-your-engineering-team-d459b9480481?source=rss----138adf9c44c---4'>How do you inspire your engineering team?</a></li><li><a href='https://uxdesign.cc/what-to-expect-when-youre-applying-for-a-design-job-2826e1dead11?source=rss----138adf9c44c---4'>What to expect when you’re applying for a design job</a></li><li><a href='https://uxdesign.cc/how-to-hand-off-accessible-designs-to-developers-e10a0eeacaa6?source=rss----138adf9c44c---4'>How to hand off accessible designs to developers?</a></li><li><a href='https://uxdesign.cc/not-everyone-can-become-a-good-designer-2631f066b9d?source=rss----138adf9c44c---4'>Not everyone can be a good designer</a></li><li><a href='https://uxdesign.cc/the-ux-of-music-fdb27bcb6ab8?source=rss----138adf9c44c---4'>The UX of Music</a></li><li><a href='https://uxdesign.cc/health-care-you-do-not-see-55c191d12a06?source=rss----138adf9c44c---4'>Healthcare you do not see</a></li><li><a href='https://uxdesign.cc/the-ux-of-electronic-synthesizers-unicode-arrows-design-leadership-c79166a5fc74?source=rss----138adf9c44c---4'>The UX of electronic synthesizers, unicode arrows, design leadership</a></li><li><a href='https://uxdesign.cc/echoes-of-futures-past-has-the-collective-experience-of-pandemic-reset-our-relationship-with-the-1acd578a4b0f?source=rss----138adf9c44c---4'>Has the collective experience of the pandemic reset our relationship with the future?</a></li><li><a href='https://uxdesign.cc/designing-better-affirmative-destructive-actions-9adb4a3ed13f?source=rss----138adf9c44c---4'>Designing better affirmative destructive actions</a></li><li><a href='https://uxdesign.cc/1-000-days-at-google-e81f5d4f0af4?source=rss----138adf9c44c---4'>1,000 Days at Google</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.bitsrc.io' target='_blank'>https://blog.bitsrc.io</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.bitsrc.io/shipping-less-javascript-with-astro-static-site-bundler-82d44f9129d5?source=rss----5c2fdf847f4a---4'>Shipping Less JavaScript with Astro Static Site Bundler</a></li><li><a href='https://blog.bitsrc.io/secret-behind-javascript-performance-v8-hidden-classes-ba4d0ebfb89d?source=rss----5c2fdf847f4a---4'>Secret Behind JavaScript Performance: V8 & Hidden Classes</a></li><li><a href='https://blog.bitsrc.io/breaking-down-the-monolith-d2a8a7d19271?source=rss----5c2fdf847f4a---4'>Breaking Down the Monolith</a></li><li><a href='https://blog.bitsrc.io/simplified-peer-to-peer-communication-with-peerjs-e37244267723?source=rss----5c2fdf847f4a---4'>Simplified Peer to Peer Communication with PeerJS</a></li><li><a href='https://blog.bitsrc.io/websocket-communication-patterns-for-real-time-web-apps-526a3d4e8894?source=rss----5c2fdf847f4a---4'>WebSocket Communication Patterns for Real-Time Web Apps</a></li><li><a href='https://blog.bitsrc.io/automate-component-testing-for-mobile-with-browserstack-4eaf89e6f0a5?source=rss----5c2fdf847f4a---4'>Automate Component Testing for Mobile Web Apps with BrowserStack</a></li><li><a href='https://blog.bitsrc.io/analytical-tools-for-react-native-f6b271274413?source=rss----5c2fdf847f4a---4'>Analytical Tools for React Native</a></li><li><a href='https://blog.bitsrc.io/event-sourcing-pattern-for-real-time-frontends-42359e6dd957?source=rss----5c2fdf847f4a---4'>Event Sourcing Pattern for Real-Time Frontends</a></li><li><a href='https://blog.bitsrc.io/using-bloc-pattern-with-react-cb6fdcfa623b?source=rss----5c2fdf847f4a---4'>Using BLoC Pattern with React</a></li><li><a href='https://blog.bitsrc.io/using-netlify-for-fullstack-apps-9d6a07968523?source=rss----5c2fdf847f4a---4'>Using Netlify for FullStack Apps</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.sessionstack.com' target='_blank'>https://blog.sessionstack.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.sessionstack.com/how-javascript-works-a-deep-dive-into-decorators-a3252367fa0?source=rss----12d1b859d4e4---4'>How JavaScript works: a deep dive into decorators</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-dockerizing-a-node-js-application-228154e9d91a?source=rss----12d1b859d4e4---4'>How JavaScript Works: dockerizing a Node.js application</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-the-evolution-of-graphics-500e0eb764a0?source=rss----12d1b859d4e4---4'>How JavaScript Works: the evolution of graphics</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-deep-dive-into-call-apply-and-bind-415f6729c902?source=rss----12d1b859d4e4---4'>How JavaScript Works: deep dive into call, apply and bind</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-debugging-overview-4-tips-for-async-code-5bf541c2d2ca?source=rss----12d1b859d4e4---4'>How JavaScript works: debugging overview + 4 tips for async code</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-high-performing-code-8-optimization-tips-cec4aab07e64?source=rss----12d1b859d4e4---4'>How JavaScript works: high-performing code + 8 optimization tips</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-the-this-variable-and-the-execution-context-12d8f04a40d3?source=rss----12d1b859d4e4---4'>How JavaScript works: the “this” variable and the execution context</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-cross-browser-testing-tips-for-prerelease-browsers-7af653300abc?source=rss----12d1b859d4e4---4'>How JavaScript works: cross-browser testing + tips for prerelease browsers</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-writing-modular-and-reusable-code-with-mvc-16c65cbd9f64?source=rss----12d1b859d4e4---4'>How JavaScript works: modularity and reusability with MVC</a></li><li><a href='https://blog.sessionstack.com/how-javascript-works-creational-structural-and-behavioural-design-patterns-4-best-practices-2e8beeba744c?source=rss----12d1b859d4e4---4'>How JavaScript works: Creational, Structural, and Behavioural design patterns + 4 best practices</a></li></ul>
<h2 class='channel-title'># <a href='https://sabe.io/' target='_blank'>https://sabe.io/</a></h2>
<ul class='feed-items'>
<li><a href='https://sabe.io/tutorials/getting-started-with-sass'>Getting Started with Sass</a></li><li><a href='https://sabe.io/tutorials/learn-how-to-use-v-model-custom-vue-component'>Learn how to use v-model with a custom Vue component</a></li><li><a href='https://sabe.io/tutorials/using-puppeteer-jest-end-to-end-testing'>Using Puppeteer and Jest for End-to-End Testing</a></li><li><a href='https://sabe.io/tutorials/how-to-scrape-the-web-using-node-js-puppeteer'>How to Scrape the Web using Node.js and Puppeteer</a></li><li><a href='https://sabe.io/tutorials/getting-started-with-handlebars-js'>Getting Started with Handlebars.js</a></li><li><a href='https://sabe.io/tutorials/how-to-build-real-time-chat-app-node-express-socket-io'>How to build a Real-Time Chat App with Node.js, Express.js, and Socket.io</a></li><li><a href='https://sabe.io/tutorials/getting-user-location-javascript-geolocation-api'>Getting User Location using JavaScript's Geolocation API</a></li><li><a href='https://sabe.io/tutorials/getting-started-with-moment-js'>Getting Started with Moment.js</a></li><li><a href='https://sabe.io/tutorials/learn-how-to-build-slack-bot-node-js'>Learn how to build a Slack Bot using Node.js</a></li><li><a href='https://sabe.io/tutorials/creating-twitter-bot-node-js'>Creating a Twitter bot with Node.js</a></li><li><a href='https://sabe.io/tutorials/using-push-js-display-web-browser-notifications'>Using Push.js to Display Web Browser Notifications</a></li><li><a href='https://sabe.io/tutorials/building-note-taking-app-vue-js-firebase'>Building a Real-Time Note-Taking App with Vue and Firebase</a></li><li><a href='https://sabe.io/tutorials/getting-started-with-react'>Getting Started with React</a></li><li><a href='https://sabe.io/tutorials/setting-up-stylus-css-preprocessor'>Setting Up Stylus CSS Preprocessor</a></li><li><a href='https://sabe.io/tutorials/getting-started-with-vuex'>Getting Started with Vuex: Managing State in Vue</a></li><li><a href='https://sabe.io/tutorials/setting-up-local-web-server-node-js'>Setting Up a Local Web Server using Node.js</a></li><li><a href='https://sabe.io/tutorials/using-axios-pull-data-rest-api'>Using Axios to Pull Data from a REST API</a></li><li><a href='https://sabe.io/tutorials/how-to-create-modal-popup-box'>How To Create a Modal Popup Box with CSS and JavaScript</a></li><li><a href='https://sabe.io/tutorials/getting-started-with-moon-js'>Getting Started with Moon.js</a></li><li><a href='https://sabe.io/tutorials/getting-started-with-vue-js'>Getting Started with Vue</a></li></ul>
<h2 class='channel-title'># <a href='https://koukia.ca' target='_blank'>https://koukia.ca</a></h2>
<ul class='feed-items'>
<li><a href='https://koukia.ca/the-mcnamara-fallacy-f22c605837b0?source=rss----7f379a7eedcd---4'>The McNamara Fallacy</a></li><li><a href='https://koukia.ca/bitcoin-vs-covid-19-infographic-e43a5b112b6e?source=rss----7f379a7eedcd---4'>Bitcoin vs. Covid-19 Infographic</a></li><li><a href='https://koukia.ca/top-5-things-that-steals-a-software-engineering-teams-valuable-time-2111e29a8d2c?source=rss----7f379a7eedcd---4'>Top 5 things that steals a Software Engineering team’s valuable time!</a></li><li><a href='https://koukia.ca/top-3-cloud-migration-mistakes-c17f3a20a053?source=rss----7f379a7eedcd---4'>Top 3 Cloud migration mistakes</a></li><li><a href='https://koukia.ca/how-to-hire-a-great-javascript-developer-a171245ace3b?source=rss----7f379a7eedcd---4'>How to Hire a Great JavaScript Developer</a></li><li><a href='https://koukia.ca/apple-and-google-partner-on-covid-19-contact-tracing-technology-bab418ec982c?source=rss----7f379a7eedcd---4'>Apple and Google partner on COVID-19 contact tracing technology</a></li><li><a href='https://koukia.ca/new-york-times-open-sources-data-about-covid19-cases-in-the-united-states-de2417e1b536?source=rss----7f379a7eedcd---4'>New York Times open sources data about COVID19 cases in the United States</a></li><li><a href='https://koukia.ca/how-to-make-git-forget-about-a-file-that-was-committed-but-is-now-in-gitignore-6282df9b48f9?source=rss----7f379a7eedcd---4'>How to make Git “forget” about a file that was committed but is now in .gitignore?</a></li><li><a href='https://koukia.ca/hundreds-of-companies-that-have-remote-jobs-opportunities-4c246c977da9?source=rss----7f379a7eedcd---4'>Hundreds of companies that have Remote Jobs opportunities</a></li><li><a href='https://koukia.ca/how-to-programmatically-navigate-using-react-router-77167cea68c8?source=rss----7f379a7eedcd---4'>How to programmatically navigate using react router?</a></li></ul>
<h2 class='channel-title'># <a href='http://codingsight.com/' target='_blank'>http://codingsight.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://codingsight.com/amazon-athena-overview/'>Amazon Athena Overview</a></li><li><a href='https://codingsight.com/using-sp_whoisactive-in-sql-server/'>WhoIsActive Runner</a></li><li><a href='https://codingsight.com/prediction-of-attrition-in-hr-with-oracle-analytics/'>Prediction of Employee Attrition with Oracle Analytics</a></li><li><a href='https://codingsight.com/ml-net-introduction/'>ML{.NET} Introduction</a></li><li><a href='https://codingsight.com/guide-for-cte-in-sql-server/'>Guide for CTE in SQL Server</a></li><li><a href='https://codingsight.com/introduction-to-amazon-quicksight/'>Introduction to Amazon QuickSight</a></li><li><a href='https://codingsight.com/sql-server-system-databases-the-tempdb-maintenance/'>SQL Server System Databases – the Tempdb Maintenance</a></li><li><a href='https://codingsight.com/how-to-setup-sql-server-on-the-amazon-rds/'>How to Setup SQL Server on the Amazon RDS</a></li><li><a href='https://codingsight.com/json-for-sql-server-part-1/'>JSON for SQL Server. Part 1</a></li><li><a href='https://codingsight.com/different-ways-to-view-tables-in-mysql-server/'>Different Ways to View Tables in MySQL Server</a></li></ul>
<h2 class='channel-title'># <a href='https://www.carlrippon.com' target='_blank'>https://www.carlrippon.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.carlrippon.com/cancelling-requests-with-react-query/'>Cancelling Requests with React Query</a></li><li><a href='https://www.carlrippon.com/retries-in-react-query/'>Retries React Query</a></li><li><a href='https://www.carlrippon.com/setting-app-state-with-react-query/'>Setting App State with React Query</a></li><li><a href='https://www.carlrippon.com/lazy-loading-with-react-query/'>Lazy Loading with React Query</a></li><li><a href='https://www.carlrippon.com/paging-in-react-query/'>Paging in React Query</a></li><li><a href='https://www.carlrippon.com/dependent-requests-in-react-query/'>Dependent Requests in React Query</a></li><li><a href='https://www.carlrippon.com/getting-started-with-react-query-and-typescript/'>Getting Started with React Query and TypeScript</a></li><li><a href='https://www.carlrippon.com/cancelling-fetch-in-React-and-typescript/'>Cancelling fetch in React and TypeScript</a></li><li><a href='https://www.carlrippon.com/using-jest-and-rtl-with-react-typescript/'>Using Jest and RTL with React and TypeScript</a></li><li><a href='https://www.carlrippon.com/using-images-react-typescript-with-webpack5/'>Using images in React and TypeScript with Webpack 5</a></li><li><a href='https://www.carlrippon.com/using-css-react-typescript-with-webpack5/'>Using CSS in React and TypeScript with Webpack 5</a></li><li><a href='https://www.carlrippon.com/creating-react-app-with-typescript-eslint-with-webpack5/'>Creating a React app with TypeScript and ESLint with Webpack 5</a></li><li><a href='https://www.carlrippon.com/getting-started-with-playwright/'>Getting started with Playwright with Jest and TypeScript</a></li><li><a href='https://www.carlrippon.com/react-forwardref-typescript/'>Forwarding React Refs with TypeScript</a></li><li><a href='https://www.carlrippon.com/react-refs-typescript/'>React refs with TypeScript</a></li><li><a href='https://www.carlrippon.com/6-ways-to-narrow-types-in-typescript/'>6 ways to narrow types in TypeScript</a></li><li><a href='https://www.carlrippon.com/typescript-dictionary/'>TypeScript Dictionary</a></li><li><a href='https://www.carlrippon.com/logical-asssignment-operators/'>Logical Assignment Operators</a></li><li><a href='https://www.carlrippon.com/stoppropagation-v-stopimmediatepropagation/'>stopPropagation v stopImmediatePropagation</a></li><li><a href='https://www.carlrippon.com/React-event-handlers-with-typescript/'>React Event Handlers with TypeScript</a></li></ul>
<h2 class='channel-title'># <a href='https://techblog.dorogin.com' target='_blank'>https://techblog.dorogin.com</a></h2>
<ul class='feed-items'>
<li><a href='https://techblog.dorogin.com/sqlite-error-8-attempt-to-write-a-readonly-database-62b80cc6c9db?source=rss----c42a2952492a---4'>SQLite Error 8: ‘attempt to write a readonly database’</a></li><li><a href='https://techblog.dorogin.com/how-to-detect-net-core-version-in-runtime-ecd65ad695be?source=rss----c42a2952492a---4'>How to detect .NET Core version in runtime</a></li><li><a href='https://techblog.dorogin.com/windbg-how-to-set-a-breakpoint-at-win32-createfile-for-a-win64-process-a5ac952ad8be?source=rss----c42a2952492a---4'>WinDbg: how to set a breakpoint at Win32 CreateFile for a win64 process</a></li><li><a href='https://techblog.dorogin.com/running-and-debugging-net-core-unit-tests-inside-docker-containers-48476eda2d2a?source=rss----c42a2952492a---4'>Running and debugging .NET Core unit tests inside Docker containers</a></li><li><a href='https://techblog.dorogin.com/handling-errors-in-aspnet-core-middleware-e39872496d51?source=rss----c42a2952492a---4'>Handling errors in ASP.NET Core middleware</a></li><li><a href='https://techblog.dorogin.com/server-sent-event-aspnet-core-a42dc9b9ffa9?source=rss----c42a2952492a---4'>Server Sent Events: from ASP.NET WebApi to AspNet Core</a></li><li><a href='https://techblog.dorogin.com/writing-cross-platform-npm-scripts-on-windows-79c510339ea6?source=rss----c42a2952492a---4'>Writing cross-platform npm scripts on Windows</a></li><li><a href='https://techblog.dorogin.com/asp-net-core-configuring-jsonserializationsettings-via-di-b4af10208161?source=rss----c42a2952492a---4'>ASP.NET Core: configuring JsonSerializationSettings via DI</a></li><li><a href='https://techblog.dorogin.com/aspnetcore20-serving-dot-files-27ec4730cc71?source=rss----c42a2952492a---4'>Static files in ASP.NET Core 2.0: working around 404 for .dotfiles</a></li><li><a href='https://techblog.dorogin.com/case-insensitive-like-in-sqlite-504f594dcdc3?source=rss----c42a2952492a---4'>Case-insensitive LIKE in SQLite</a></li></ul>
<h2 class='channel-title'># <a href='https://engineering.universe.com' target='_blank'>https://engineering.universe.com</a></h2>
<ul class='feed-items'>
<li><a href='https://engineering.universe.com/improving-browser-performance-10x-f9551927dcff?source=rss----a1cd8e0d60b2---4'>Improving Browser Performance 10x</a></li><li><a href='https://engineering.universe.com/building-a-google-map-in-react-b103b4ee97f1?source=rss----a1cd8e0d60b2---4'>Building a Google Map in React</a></li><li><a href='https://engineering.universe.com/common-patterns-with-redux-saga-ed68f89dfecf?source=rss----a1cd8e0d60b2---4'>Common patterns with Redux-Saga</a></li><li><a href='https://engineering.universe.com/introduction-to-concurrency-models-with-ruby-part-ii-c39c7e612bed?source=rss----a1cd8e0d60b2---4'>Introduction to Concurrency Models with Ruby. Part II</a></li><li><a href='https://engineering.universe.com/introduction-to-concurrency-models-with-ruby-part-i-550d0dbb970?source=rss----a1cd8e0d60b2---4'>Introduction to Concurrency Models with Ruby. Part I</a></li><li><a href='https://engineering.universe.com/batching-a-powerful-way-to-solve-n-1-queries-every-rubyist-should-know-24e20c6e7b94?source=rss----a1cd8e0d60b2---4'>Batching – A powerful way to solve N+1 queries every Rubyist should know</a></li><li><a href='https://engineering.universe.com/why-were-betting-on-graphql-233ddf1a0779?source=rss----a1cd8e0d60b2---4'>Why We’re Betting on GraphQL</a></li><li><a href='https://engineering.universe.com/what-is-redux-saga-c1252fc2f4d1?source=rss----a1cd8e0d60b2---4'>What is Redux-Saga?</a></li><li><a href='https://engineering.universe.com/mongo-aggregations-in-5-minutes-b8e1d9c274bb?source=rss----a1cd8e0d60b2---4'>Mongo Aggregations in 5 Minutes</a></li><li><a href='https://engineering.universe.com/reading-redux-ca160163867e?source=rss----a1cd8e0d60b2---4'>Reading Redux</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.logrocket.com' target='_blank'>https://blog.logrocket.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.logrocket.com/improve-error-handling-typescript-exhaustive-type-checking/'>Improving TypeScript error handling with exhaustive type checking</a></li><li><a href='https://blog.logrocket.com/firestore-swift-tutorial/'>Firestore in Swift tutorial</a></li><li><a href='https://blog.logrocket.com/managing-dom-components-reactdom/'>Managing DOM components with ReactDOM</a></li><li><a href='https://blog.logrocket.com/react-calendar-tutorial-build-customize-calendar/'>React-Calendar tutorial: Build and customize a simple calendar</a></li><li><a href='https://blog.logrocket.com/handling-local-data-persistence-flutter-hive/'>Handling local data persistence in Flutter with Hive</a></li><li><a href='https://blog.logrocket.com/stackblitz-webcontainers-nextjs-browser/'>Stackblitz WebContainers: Run Next.js inside the browser</a></li><li><a href='https://blog.logrocket.com/best-new-vue-3-ui-libraries-2021/'>The best new Vue 3 UI libraries of 2021</a></li><li><a href='https://blog.logrocket.com/understanding-flutter-navigation-routing/'>Understanding Flutter navigation and routing</a></li><li><a href='https://blog.logrocket.com/complete-guide-textinput-react-native/'>A complete guide to TextInput in React Native</a></li><li><a href='https://blog.logrocket.com/writing-js-based-bash-scripts-zx/'>Writing JS-based Bash scripts with zx</a></li><li><a href='https://blog.logrocket.com/implementing-okta-authentication-react-app/'>Implementing Okta authentication in a React app</a></li><li><a href='https://blog.logrocket.com/build-profanity-filter-api-graphql/'>Build a profanity filter API with GraphQL</a></li></ul>
<h2 class='channel-title'># <a href='https://www.c-sharpcorner.com/blogs/' target='_blank'>https://www.c-sharpcorner.com/blogs/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.c-sharpcorner.com/blogs/css-fontfamily-property'>CSS Font-Family Property</a></li><li><a href='https://www.c-sharpcorner.com/blogs/recursion-in-csharp'>Recursion In C#</a></li><li><a href='https://www.c-sharpcorner.com/blogs/dictionary-and-maps-in-c-sharp'>Dictionary And Maps In C#</a></li><li><a href='https://www.c-sharpcorner.com/blogs/how-to-create-collapsible-sections-in-modern-sharepoint-page'>How To Create Collapsible Sections In Modern SharePoint Page</a></li><li><a href='https://www.c-sharpcorner.com/blogs/css-hacks-sharp1-modal-windowdialog-using-css'>CSS Hacks - Modal Window/Dialog Using CSS</a></li><li><a href='https://www.c-sharpcorner.com/blogs/application-security-best-practices-while-logging-and-auditing'>Application Security Best Practices While Logging And Auditing</a></li><li><a href='https://www.c-sharpcorner.com/blogs/how-to-send-email-using-powerapps'>How To Send Email Using Power Apps</a></li><li><a href='https://www.c-sharpcorner.com/blogs/a-beginners-guide-to-excel-file-xlsx-import-using-c-sharp'>A Beginner's Guide To Excel File (XLSx) Import Using C#</a></li><li><a href='https://www.c-sharpcorner.com/blogs/aws-secret-manager-and-cache-implementation-with-net'>AWS Secret Key Manager And Cache Implementation With .NET</a></li><li><a href='https://www.c-sharpcorner.com/blogs/copy-navigation-using-powershell'>Copy Navigation Using PowerShell</a></li><li><a href='https://www.c-sharpcorner.com/blogs/read-ini-files'>Read INI Files</a></li><li><a href='https://www.c-sharpcorner.com/blogs/how-to-call-nonstatic-method-from-static-method'>How To Call Non-Static Method From Static Method</a></li><li><a href='https://www.c-sharpcorner.com/blogs/factory-pattern-in-order-to-show-different-ui-conditionally'>Factory Pattern In Order To Show Different UI Conditionally</a></li><li><a href='https://www.c-sharpcorner.com/blogs/what-is-caching-and-how-it-works'>What Is Caching And How It Works</a></li><li><a href='https://www.c-sharpcorner.com/blogs/change-the-positive-number-betweenthesystems-and-vice-versa'>Change The Positive Number Between The Systems And Vice Versa</a></li><li><a href='https://www.c-sharpcorner.com/blogs/introduction-to-azure-boards'>Introduction To Azure Boards</a></li><li><a href='https://www.c-sharpcorner.com/blogs/azure-active-directory-tenant-id'>Azure Active Directory Tenant ID</a></li><li><a href='https://www.c-sharpcorner.com/blogs/a-summary-on-sharepoint-look-book'>A Summary On SharePoint Look Book</a></li><li><a href='https://www.c-sharpcorner.com/blogs/integrate-viva-connection-desktop-for-microsoft-teams'>Integrate Viva Connection Desktop For Microsoft Teams</a></li><li><a href='https://www.c-sharpcorner.com/blogs/master-slave-system-design'>Master Slave System Design</a></li></ul>
<h2 class='channel-title'># <a href='http://www.takethiscourse.net/' target='_blank'>http://www.takethiscourse.net/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.takethiscourse.net/bank-teller-jobs/'>10 Key Skills for Bank Teller Jobs 2021</a></li><li><a href='https://www.takethiscourse.net/drawing-a-deer-skeleton-with-ink-pen/'>Drawing a Deer Skeleton with Ink Pen</a></li><li><a href='https://www.takethiscourse.net/sysops-vs-devops/'>SysOps Vs DevOps</a></li><li><a href='https://www.takethiscourse.net/become-an-algebra-master/'>Become an Algebra Master</a></li><li><a href='https://www.takethiscourse.net/crystal-drawing-made-easy/'>Crystal Drawing Made Easy</a></li><li><a href='https://www.takethiscourse.net/free-ivy-league-math-courses/'>Best + Free Ivy League Math Courses with Certificates</a></li><li><a href='https://www.takethiscourse.net/optimize-supply-chains-with-analysis-in-google-sheets/'>Optimize Supply Chains with Analysis in Google Sheets</a></li><li><a href='https://www.takethiscourse.net/end-to-end-machine-learning-with-tensorflow-on-gcp/'>End-to-End Machine Learning with TensorFlow on GCP</a></li><li><a href='https://www.takethiscourse.net/accounting-and-finance-for-it-professionals/'>Accounting and Finance for IT professionals</a></li><li><a href='https://www.takethiscourse.net/supply-chain-principles/'>Supply Chain Principles</a></li></ul>
<h2 class='channel-title'># <a href='https://codeaholicguy.com/' target='_blank'>https://codeaholicguy.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://codeaholicguy.com/2020/08/26/tu-tin-khoe-ca-tinh-voi-github-profile-readme/'>Tự tin khoe cá tính với Github Profile README</a></li><li><a href='https://codeaholicguy.com/2020/02/25/senior-hay-khong-senior/'>Senior hay không-Senior?</a></li><li><a href='https://codeaholicguy.com/2019/06/29/developer-tim-viec-nhu-the-nao/'>Developer tìm việc như thế nào?</a></li><li><a href='https://codeaholicguy.com/2019/06/19/tai-sao-developer-nen-tham-gia-cac-su-kien-cong-nghe/'>Tại sao developer nên tham gia các sự kiện công nghệ?</a></li><li><a href='https://codeaholicguy.com/2018/08/30/dua-nghich-voi-docker-trong-5-phut/'>“Đùa nghịch” với Docker trong 5 phút</a></li><li><a href='https://codeaholicguy.com/2018/07/04/toi-da-lam-cho-ban-nhan-vien-ban-hang-sung-suong-nhu-the-nao/'>Tôi đã làm cho bạn nhân viên bán hàng sung sướng như thế nào?</a></li><li><a href='https://codeaholicguy.com/2018/05/07/cors-la-gi/'>CORS là gì?</a></li><li><a href='https://codeaholicguy.com/2018/03/27/facebook-da-tao-hieu-ung-xoxo-nhu-the-nao/'>Facebook đã tạo hiệu ứng xoxo như thế nào?</a></li><li><a href='https://codeaholicguy.com/2017/11/27/chuyen-toi-uu-code-xau-dep-dep-xau/'>Chuyện tối ưu code, xấu đẹp, đẹp xấu</a></li><li><a href='https://codeaholicguy.com/2017/11/20/luc-moi-di-lam/'>Lúc mới đi làm…</a></li></ul>
<h2 class='channel-title'># <a href='https://toidicodedao.com/' target='_blank'>https://toidicodedao.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://toidicodedao.com/2021/04/20/review-nhe-cac-ngon-ngu-cong-nghe-framework-ma-minh-da-va-dang-dung-kiem-com-phan-cuoi/'>Review nhẹ các ngôn ngữ, công nghệ, framework mà mình đã và đang dùng kiếm cơm – Phần cuối</a></li><li><a href='https://toidicodedao.com/2021/03/30/review-nhe-cac-ngon-ngu-cong-nghe-framework-ma-minh-da-va-dang-dung-kiem-com-phan-3/'>Review nhẹ các ngôn ngữ, công nghệ, framework mà mình đã và đang dùng kiếm cơm – Phần 3</a></li><li><a href='https://toidicodedao.com/2021/03/16/review-nhe-cac-ngon-ngu-cong-nghe-framework-ma-minh-da-va-dang-dung-kiem-com-phan-2/'>Review nhẹ các ngôn ngữ, công nghệ, framework mà mình đã và đang dùng kiếm cơm – Phần 2</a></li><li><a href='https://toidicodedao.com/2021/03/09/review-ngon-ngu-cong-nghe-framework/'>Review nhẹ các ngôn ngữ, công nghệ, framework mà mình đã và đang dùng kiếm cơm – Phần 1</a></li><li><a href='https://toidicodedao.com/2021/03/02/dam-ba-cach-hack-sap-1-website-nao-do-phan-2/'>Dăm ba cách hack sập 1 website nào đó – Phần 2</a></li><li><a href='https://toidicodedao.com/2021/02/23/dam-ba-cach-hack-sap-1-website-nao-do-phan-1/'>Dăm ba cách hack sập 1 website nào đó – Phần 1</a></li><li><a href='https://toidicodedao.com/2021/02/02/ngam-nguoi-ta-khong-danh-gia-ban-qua-ki-nang-ma-danh-gia-theo-thanh-tuu/'>[Ngẫm] Người ta không đánh giá bạn qua kĩ năng, mà đánh giá theo thành tựu</a></li><li><a href='https://toidicodedao.com/2021/01/26/khi-code-ma-bi-thi-phai-lam-sao-5-kinh-nghiem-sieu-hay-de-giai-quyet-van-de/'>Khi code mà bí thì phải làm sao? 5 kinh nghiệm siêu hay để giải quyết vấn đề</a></li><li><a href='https://toidicodedao.com/2021/01/20/cac-anti-pattern-nen-tranh-de-code-khong-bien-thanh-dong-rac/'>Các Anti-Pattern nên tránh để code không biến thành đống rác</a></li><li><a href='https://toidicodedao.com/2021/01/12/8-cuon-sach-hay-2020-phan-2/'>8 cuốn sách hay nhất mình đã đọc trong năm 2020 – Phần 2</a></li></ul>
<h2 class='channel-title'># <a href='https://stackshare.io/featured-posts' target='_blank'>https://stackshare.io/featured-posts</a></h2>
<ul class='feed-items'>
<li><a href='https://stackshare.io/posts/software-composition-analysis-guide'>Software Composition Analysis Guide</a></li><li><a href='https://stackshare.io/pinterest/unified-flink-source-at-pinterest-streaming-data-processing'>Unified Flink Source at Pinterest: Streaming Data Processing</a></li><li><a href='https://stackshare.io/posts/cloud-migration-101-why-tech-stack-visibility-should-be-a-key-piece-of-your-digital-transformation-strategy'>Cloud Migration 101: Why Tech Stack Visibility Should Be a Key Piece of Your Digital Transformation Strategy</a></li><li><a href='https://stackshare.io/posts/how-companies-are-using-stackshare-to-attract-and-recruit-top-developer-talent'>How Companies Are Using StackShare to Attract and Recruit Top Developer Talent</a></li><li><a href='https://stackshare.io/pinterest/open-sourcing-querybook-pinterests-collaborative-big-data-hub'>Open Sourcing Querybook, Pinterest’s Collaborative Big Data Hub</a></li><li><a href='https://stackshare.io/posts/what-saas-companies-need-to-know-about-the-2021-cybersecurity-executive-order'>What SaaS Companies Need To Know About The 2021 Cybersecurity Executive Order</a></li><li><a href='https://stackshare.io/posts/alternatives-to-spreadsheets-for-tech-stack-tracking-stackshare'>Alternatives to Spreadsheets for Tech Stack Tracking</a></li><li><a href='https://stackshare.io/pinterest/how-pinterest-fights-spam-using-machine-learning'>How Pinterest Fights Spam Using Machine Learning</a></li><li><a href='https://stackshare.io/posts/software-engineering-metrics-kpis-your-starter-guide'>Software Engineering Metrics & KPIs: Your Starter Guide</a></li><li><a href='https://stackshare.io/pinterest/scaling-kubernetes-with-assurance-at-pinterest'>Scaling Kubernetes with Assurance at Pinterest</a></li><li><a href='https://stackshare.io/posts/the-top-enterprise-architecture-frameworks-and-tools-for-2021'>The Top Enterprise Architecture Frameworks & Tools for 2021</a></li><li><a href='https://stackshare.io/posts/40-enterprise-architecture-events-podcasts-blogs-2021'>40+ Enterprise Architecture Events, Podcasts, and Blogs in 2021</a></li><li><a href='https://stackshare.io/pinterest/pinterest-flink-deployment-framework'>Pinterest Flink Deployment Framework</a></li><li><a href='https://stackshare.io/pinterest/how-we-designed-our-continuous-integration-system-to-be-more-than-50-percent-faster'>How We Designed Our Continuous Integration System to be More Than 50% Faster</a></li><li><a href='https://stackshare.io/posts/how-github-spotify-and-ebay-use-adrs-and-tech-radars-for-technology-decisions'>How GitHub, Spotify, and eBay use ADRs and Tech Radars for technology decisions (Video & Slides)</a></li><li><a href='https://stackshare.io/posts/top-developer-tools-2020'>🏆 The Top 100 Developer Tools of 2020</a></li><li><a href='https://stackshare.io/pinterest/manas-realtime-enabling-changes-to-be-searchable-in-a-blink-of-an-eye'>Manas Realtime — Enabling Changes to Be Searchable in a Blink of an Eye</a></li><li><a href='https://stackshare.io/pinterest/scaling-cache-infrastructure-at-pinterest'>Scaling Cache Infrastructure at Pinterest</a></li><li><a href='https://stackshare.io/digitalocean/building-component-based-apps'>Building Component Based Apps</a></li><li><a href='https://stackshare.io/pinterest/pinterest-visual-signals-infrastructure-evolution-from-lambda-to-kappa-architecture'>Pinterest Visual Signals Infrastructure: Evolution from Lambda to Kappa Architecture</a></li></ul>
<h2 class='channel-title'># <a href='https://sachabarbs.wordpress.com/' target='_blank'>https://sachabarbs.wordpress.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://sachabarbs.wordpress.com/2020/11/27/grpc-pub-sub-demo/'>gRPC pub/sub demo</a></li><li><a href='https://sachabarbs.wordpress.com/2020/08/24/setting-up-graylog-for-use-with-nlog/'>Setting Up GrayLog For Use With NLog</a></li><li><a href='https://sachabarbs.wordpress.com/2020/08/04/restoring-from-an-azure-artifacts-nuget-feed-from-inside-a-docker-build/'>Restoring from an Azure Artifacts NuGet feed from inside a Docker Build</a></li><li><a href='https://sachabarbs.wordpress.com/2020/08/04/azure-event-hubs-with-kafka/'>Azure Event Hubs With Kafka</a></li><li><a href='https://sachabarbs.wordpress.com/2020/06/29/docker-container-for-windows/'>Docker container for windows</a></li><li><a href='https://sachabarbs.wordpress.com/2020/04/28/react-redux-demo-app-using-hooks/'>React/Redux demo app using Hooks</a></li><li><a href='https://sachabarbs.wordpress.com/2020/02/23/net-core-standard-auto-incrementing-versioning/'>.NET Core/Standard Auto Incrementing Versioning</a></li><li><a href='https://sachabarbs.wordpress.com/2020/02/07/setting-up-prometheus-and-grafana-monitoring/'>Setting up Prometheus and Grafana Monitoring</a></li><li><a href='https://sachabarbs.wordpress.com/2020/01/21/elasticsearch/'>Elasticsearch</a></li><li><a href='https://sachabarbs.wordpress.com/2020/01/08/react-router/'>React router</a></li><li><a href='https://sachabarbs.wordpress.com/2019/12/10/azure-devops-setting-up-and-pushing-nuget-package/'>Azure DevOps : Setting up and pushing nuget package</a></li><li><a href='https://sachabarbs.wordpress.com/2019/10/17/getting-reacquainted-with-azure-devops/'>Getting reacquainted with Azure Devops</a></li><li><a href='https://sachabarbs.wordpress.com/2019/09/24/powershell-webrequest-server-not-found/'>Powershell : WebRequest Server Not Found</a></li><li><a href='https://sachabarbs.wordpress.com/2019/05/14/kafkastreams-windowing/'>KafkaStreams : Windowing</a></li><li><a href='https://sachabarbs.wordpress.com/2019/05/08/kafkastreams-interactive-queries/'>KafkaStreams : Interactive Queries</a></li><li><a href='https://sachabarbs.wordpress.com/2019/04/23/kafkastreams-using-processor-api-in-dsl/'>KafkaStreams : Using Processor API in DSL</a></li><li><a href='https://sachabarbs.wordpress.com/2019/03/14/kafkastreams-custom-serdes/'>KafkaStreams : Custom Serdes</a></li><li><a href='https://sachabarbs.wordpress.com/2019/03/06/openfin-demo/'>OpenFin demo</a></li><li><a href='https://sachabarbs.wordpress.com/2019/02/14/kafkastreams-joining/'>KafkaStreams : Joining</a></li><li><a href='https://sachabarbs.wordpress.com/2019/01/28/kafkastreams-aggregating/'>KafkaStreams : Aggregating</a></li></ul>
<h2 class='channel-title'># <a href='http://somdoron.com/' target='_blank'>http://somdoron.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://somdoron.com/2016/01/feature-request-for-csharp-7-0/'>Feature Requests for C# 7.0</a></li><li><a href='https://somdoron.com/2015/09/reliable-pubsub/'>Reliable PubSub</a></li><li><a href='https://somdoron.com/2014/12/token-pubsub/'>Token-Based PubSub</a></li><li><a href='https://somdoron.com/2014/11/netmq-iocp/'>NetMQ and IO Completion Ports</a></li><li><a href='https://somdoron.com/2014/08/netmq-asp-net/'>Using NetMQ and ASP.NET</a></li><li><a href='https://somdoron.com/2014/06/introducing-netmq-websockets-jsmq/'>Introducing NetMQ.WebSockets and JSMQ</a></li><li><a href='https://somdoron.com/2014/06/netmq-3-3-0-10-released/'>NetMQ 3.3.0.10 Released</a></li><li><a href='https://somdoron.com/2013/12/net-async-programming-part-2/'>.Net Async Programming - Part 2</a></li><li><a href='https://somdoron.com/2013/09/net-async-programming-part-1/'>.Net Async Programming - Part 1</a></li><li><a href='https://somdoron.com/2013/06/netmq-scheduler/'>NetMQ Scheduler - NetMQ and Task Library (TPL)</a></li><li><a href='https://somdoron.com/2013/05/securing-netmq/'>Securing NetMQ</a></li><li><a href='https://somdoron.com/2013/04/array-length-in-csharp/'>Array Length in C#</a></li><li><a href='https://somdoron.com/2013/04/structures-in-csharp/'>Structures in C# & .Net</a></li><li><a href='https://somdoron.com/2013/03/netmq-lesson-1-basics/'>NetMQ Lesson #1 – Basics</a></li><li><a href='https://somdoron.com/2013/03/introducing-netmq/'>Introducing NetMQ - .net port of ZeroMQ</a></li></ul>
<h2 class='channel-title'># <a href='http://thanhhh.blogspot.com' target='_blank'>http://thanhhh.blogspot.com</a></h2>
<ul class='feed-items'>
<li><a href='http://thanhhh.blogspot.com/2013/06/viewpaper-and-fragment-how-to-update.html'>ViewPaper and Fragment: How to update data of active fragment item</a></li><li><a href='http://thanhhh.blogspot.com/2012/06/create-select-sub-query-on-nhibernate.html'>Create select sub-query on NHibernate</a></li><li><a href='http://thanhhh.blogspot.com/2011/10/linq-to-entities-predicatebuilder-and.html'>LINQ to Entities: PredicateBuilder and Dynamic Linq</a></li><li><a href='http://thanhhh.blogspot.com/2011/08/apache-deny-access-from-everyone-except.html'>Apache: Deny access from everyone, except your IP address</a></li><li><a href='http://thanhhh.blogspot.com/2011/07/sql-phuong-phap-lay-du-lieu-dong-cuoi.html'>SQL: Lấy dữ liệu dòng cuối cùng trong mỗi group</a></li><li><a href='http://thanhhh.blogspot.com/2011/04/su-dung-impersonation-e-truy-cap-tai.html'>Sử dụng Impersonation để truy cập tài nguyên trong mạng</a></li><li><a href='http://thanhhh.blogspot.com/2011/03/gioi-thieu-ve-moq.html'>Unit Testing: Giới thiệu về Moq</a></li><li><a href='http://thanhhh.blogspot.com/2011/03/unit-testingmock-khong-phai-la-stub.html'>Unit Testing: Mock không phải là Stub</a></li><li><a href='http://thanhhh.blogspot.com/2011/03/suy-ngam-tu-loi-noi-cua-nguoi-nhat.html'>Suy ngẫm từ lời nói của người Nhật</a></li><li><a href='http://thanhhh.blogspot.com/2011/03/dynamic-trong-c-4-phan-3.html'>Dynamic trong C# 4 - Phần 3</a></li><li><a href='http://thanhhh.blogspot.com/2011/03/tu-khoa-dynamic-trong-c-4-phan-2.html'>Dynamic trong C# 4 - Phần 2</a></li><li><a href='http://thanhhh.blogspot.com/2011/03/dynamic-trong-c-4-phan-1.html'>Dynamic trong C# 4 - Phần 1</a></li><li><a href='http://thanhhh.blogspot.com/2011/02/su-dung-table-valued-parameter-trong.html'>Sử dụng Table-Valued Parameter trong SQL Server 2008 và ADO.NET</a></li><li><a href='http://thanhhh.blogspot.com/2011/02/what-is-solid.html'>What is SOLID?</a></li><li><a href='http://thanhhh.blogspot.com/2010/05/su-dung-bing-maps-trong-silverlight.html'>Sử dụng Bing Maps trong Silverlight</a></li><li><a href='http://thanhhh.blogspot.com/2010/03/how-to-endedit-before-changes-can-be.html'>How to EndEdit before changes can be submitted with Entity Ria Service</a></li><li><a href='http://thanhhh.blogspot.com/2010/01/enabling-cross-domain-calls-for.html'>Enabling cross-domain calls for Silverlight apps on WCF</a></li><li><a href='http://thanhhh.blogspot.com/2009/12/how-to-configure-sql-server-linked.html'>How to configure SQL Server Linked Server to Oracle</a></li><li><a href='http://thanhhh.blogspot.com/2009/12/reset-identity-column-in-sql-server.html'>Reset Identity Column in SQL Server</a></li><li><a href='http://thanhhh.blogspot.com/2009/08/cach-giai-quyet-concurrency-va-xung-ot.html'>Cách giải quyết Concurrency và xung đột khi tạo khóa tự động trong SQL Server</a></li></ul>
<h2 class='channel-title'># <a href='https://duyphuong13.wordpress.com/' target='_blank'>https://duyphuong13.wordpress.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://duyphuong13.wordpress.com/2013/12/15/mot-so-ky-thuat-trong-unit-test/'>Một số kỹ thuật trong Unit Test</a></li><li><a href='https://duyphuong13.wordpress.com/2013/06/23/binding-pushpin-map-control-in-nokia-maps/'>Binding Pushpin Map Control in Nokia Maps</a></li><li><a href='https://duyphuong13.wordpress.com/2012/09/03/using-ivalueconverter-to-binding-data-in-windows-phone/'>Using IValueConverter To Binding Data in Windows Phone</a></li><li><a href='https://duyphuong13.wordpress.com/2012/04/01/show-popup-progress-bar-with-usercontrol-in-windows-phone/'>Show Popup Progress Bar With UserControl in Windows Phone</a></li><li><a href='https://duyphuong13.wordpress.com/2012/03/19/create-custom-live-tile-wf7-tuy-biến-live-tile-cho-rieng-minh/'>Create custom live tile WF7 – Tùy biến live tile cho riêng mình</a></li><li><a href='https://duyphuong13.wordpress.com/2012/02/13/google-weather-api-for-windows-phone-7/'>Using Google Weather API and httpCall request – Windows phone 7</a></li><li><a href='https://duyphuong13.wordpress.com/2012/02/10/using-background-task-for-update-live-tile-windows-phone-7/'>Using Background Task to Update live Tile – Windows phone 7.</a></li><li><a href='https://duyphuong13.wordpress.com/2011/12/15/update-vietnam-calendar-am-lịch-việt-nam/'>Update Vietnam Calendar – Âm lịch Việt Nam</a></li><li><a href='https://duyphuong13.wordpress.com/2011/12/06/vietnam-calendar-for-windows-phone-7-am-lịch-việt-nam/'>Vietnam Calendar for Windows phone 7 – Âm Lịch Việt Nam</a></li><li><a href='https://duyphuong13.wordpress.com/2011/12/04/140/'>Open Source Class Gõ Dấu Tiếng Việt Cho Windows Phone 7</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.falcross.com/' target='_blank'>https://blog.falcross.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.falcross.com/introducing-restyped-end-to-end-typing-for-rest-apis-with-typescript/'>Introducing RESTyped: End-to-end typing for REST APIs with TypeScript</a></li><li><a href='https://blog.falcross.com/update-5-13-0-redesigned-profiles-leaderboards-notification-improvements/'>Update 5.13.0: Redesigned profiles & leaderboards, notification improvements</a></li></ul>
<h2 class='channel-title'># <a href='http://www.dotnetcurry.com/' target='_blank'>http://www.dotnetcurry.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/-QObT84Q7w8/ShowArticle.aspx'>Tackling Legacy Code</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/HIk6D6Y4Bt0/ShowArticle.aspx'>ASP.NET Core: State Management in Blazor Applications</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/cVJnR9iPcag/ShowArticle.aspx'>Customization of Work Items in Azure DevOps and Azure DevOps Server 2020</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/z5q4J5H7YdU/ShowArticle.aspx'>Tic Tac Toe in F# – Part 2</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/mtKU4hu5G00/ShowArticle.aspx'>Nullable Reference types in C# – Best practices</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/K3BYRvSTVdo/ShowArticle.aspx'>Using Blazor WebAssembly, SignalR and C# 9 to create Full-stack Real time Applications</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/uoJ8bqiOoCI/ShowArticle.aspx'>Azure DevOps Delivery Plan 2.0</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/WfqTZDdtt-4/ShowArticle.aspx'>C# 9 - Making your code simpler</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/M1bkzdzkcfE/ShowArticle.aspx'>What is Machine Learning?</a></li><li><a href='http://feedproxy.google.com/~r/netCurryRecentArticles/~3/gjJ31E56Zcs/ShowArticle.aspx'>Microservices Architecture Pattern</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: ASP.NET MVC' target='_blank'>.NET Curry: ASP.NET MVC</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1369'>Create and Print PDF in ASP.NET MVC</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1229'>Implementing User Authentication in ASP.NET MVC 6</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1315'>Dependency Injection in ASP.NET MVC 6 Views</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1261'>Custom Model Binder in ASP.NET MVC</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1273'>Action Method Selector in ASP.NET MVC</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1268'>Access same Action Method by Multiple Roles in ASP.NET MVC using Configuration File</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1266'>Creating Tag Helpers in ASP.NET MVC 6 / ASP.NET Core 1.0</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1260'>ASP.NET MVC 5: Logging Exceptions in Database</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1241'>Implementing Internationalization in ASP.NET MVC and AngularJS</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1253'>ASP.NET MVC: Using Multiple Model Objects as Input Parameters to Controller Action Method</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: ASP.NET' target='_blank'>.NET Curry: ASP.NET</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1494'>The History of ASP.NET – Part III (Covers ASP.NET Core)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1493'>The History of ASP.NET – Part II (Covers ASP.NET MVC)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1492'>The History of ASP.NET – Part I</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1419'>ASP.NET Web API, RestSharp and Model Error Messages</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1311'>Broadcast Real-Time Notifications using SignalR, KnockoutJS and SqlTableDependency</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1278'>ASP.NET Web API: Passing Multiple Objects as an Input Parameters to Action Method</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1264'>Explain HTTP Handlers and HTTP Modules - Interview Question</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1263'>ASP.NET Application and Page Life Cycle Overview - Interview Question</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1254'>ASP.NET Core 1.0: Using Docker Containers for Deployment</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1245'>ASP.NET WebHooks - Consuming WebHooks from Github</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Expression Web' target='_blank'>.NET Curry: Expression Web</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=637'>Expression Web 4 SuperPreview – A closer look</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=633'>Detect External and Internal Links in a Web Page using jQuery – Expression Web</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=616'>Using jQuery UI Datepicker in a Web Page - Expression Web</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=607'>Backup your Local Website on your Hard Drive in Expression Web</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=562'>Using the SEO Feature in Expression Web 4</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=541'>Expression Web 3.0 and 4.0 Articles Link List</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=534'>Expression Web 4 Add-Ins</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=523'>What's new in Microsoft Expression Web 4?</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=520'>Designing websites for accessibility in Expression Web – Part II</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=516'>Designing websites for accessibility in Expression Web – Part I</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: C#' target='_blank'>.NET Curry: C#</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1572'>Tic Tac Toe in F# – Part 2</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1571'>Nullable Reference types in C# – Best practices</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1568'>C# 9 - Making your code simpler</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1565'>F# Language Features - Part 1 (Tic Tac Toe Example)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1559'>Dynamic Class Creation in C# - Preserving Type Safety in C# with Roslyn</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1517'>Recommended Asynchronous Pattern in .NET</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1516'>Implement a method returning an IEnumerable (Iterators in C#)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1489'>New C# 8 Features in Visual Studio 2019</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1476'>The Absolutely Awesome Book on C# and .NET is Released</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1472'>Less commonly used C# operators</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: ASP.NET AJAX' target='_blank'>.NET Curry: ASP.NET AJAX</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=524'>Using Script reference Profiler to Improve the Performance of an ASP.NET AJAX page</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=287'>ASP.NET AJAX SlideShow Extender - Some Common Tips and Tricks</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=285'>Using the ASP.NET AJAX ModalPopup in an ASP.NET 3.5 Application</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=256'>Executing ClientScript Before and After an Asynchronous PostBack using ASP.NET AJAX</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=230'>ASP.NET AJAX CollapsiblePanelExtender - Tips and Tricks</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=227'>3 Different Ways to Display Progress in an ASP.NET AJAX Application</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=219'>GridView Paging using ASP.NET AJAX Slider Extender</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=215'>6 Tips for Working with the ASP.NET AJAX Accordion Control</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=213'>Using the ASP.NET AJAX Accordion to Dynamically Display Content From the Database</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=212'>Display Master-Detail Data with the ModalPopup Extender and GridView</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Visual Studio' target='_blank'>.NET Curry: Visual Studio</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1521'>Streamlining Your Visual Studio Project Setup</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1456'>Integration Testing made Simple for CRUD applications with SqlLocalDB</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1451'>.NET Core Application Development in Visual Studio Code (VS Code)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1399'>Visual Studio 2017 - What’s New</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1374'>Using Bitbucket for Git in Visual Studio 2017</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1363'>Live Unit Testing in Visual Studio 2017</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1352'>NUnit Testing with Visual Studio 2015</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1340'>Visual Studio Code (VS Code) Condensed</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1338'>Agile Development Best Practices Using Visual Studio 2015 and TFS 2015</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1332'>Authorization call back function in Azure</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: LINQ' target='_blank'>.NET Curry: LINQ</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1481'>How does a C# LINQ Query execute and How does this affect Performance?</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=750'>Deferred vs Immediate Query Execution in LINQ</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=730'>Converting a LINQ query to PLINQ</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=727'>50 LINQ Examples, Tips and How To's</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=712'>LINQ: Join Between a Collection and XML Data</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=564'>LINQ To XML Tutorials with Examples</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=535'>Longest and Shortest Type Name in .NET 4.0 using LINQ</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=513'>Querying a Hierarchical Parent-Child Structure in LINQ</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=505'>Querying a WebService using LINQ – LINQ to CountryInfo</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=490'>Using LINQ to represent XML data as an Object containing Master-Detail records</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: jQuery and ASP.NET' target='_blank'>.NET Curry: jQuery and ASP.NET</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1309'>jQuery 3 - New Features and Performance Improvements</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1277'>HTML Table and jQuery – Handy Code Snippets</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1275'>jQuery Event Handling Basics - Difference between Bind, Live, Delegate and On</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1272'>Select / Deselect All CheckBoxes using jQuery</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1209'>jQuery UI DatePicker - Tips and Tricks</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1200'>jQuery TreeView with Expand Collapse Icons</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1198'>Auto Collapsible Nested TreeView using jQuery</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1189'>Using jQuery to Perform Calculations in a Table</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1183'>Using Mustache.js for Templating</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1173'>Create a Responsive Image Carousel using Twitter Bootstrap and jQuery</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: .NET Framework' target='_blank'>.NET Curry: .NET Framework</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1427'>Building Applications for Different .NET Framework Versions</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=973'>Read Only Dictionary in .NET 4.5</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=968'>What's New in .NET Framework 4.5.1</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=886'>Building an Image Resizer using .NET Parallel Dataflow Library in .NET 4.5</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=843'>Using Portable Class Library in .NET 4.5 and Visual Studio 2012</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=749'>25 Useful SQL Server Tutorials For .NET Developers</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=731'>View Internal CLR Details using the .NET SOS Debugger Extension</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=648'>Debugging .NET 4.0 applications using SOS extension</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=642'>Call a Method Asynchronously in .NET using Polling Pattern and Callback Pattern</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=634'>Call a Method Asynchronously using Delegate BeginInvoke and EndInvoke Pattern</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: WPF' target='_blank'>.NET Curry: WPF</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1211'>WPF ItemsControl – Advanced</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1187'>Using WPF 4.5 to implement a Responsive UI with Asynchronous Operations</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1160'>WPF ItemsControl Fundamentals - Part 1</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1142'>Resources in WPF and difference between Static Resource and Dynamic Resource</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1130'>WPF Commanding: Enable Disable Button with Command Property</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1071'>Custom Commanding Behavior in WPF TextBox using System.Windows.Interactivity namespace</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1037'>Using MVVM Light in WPF for Model-View-ViewModel implementation</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1027'>Creating Cool WPF Charts using the ModernUI Chart Library and WebAPI</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=997'>DataBinding Features in WPF 4.5</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=988'>Reading and Writing to Excel files using WPF 4.5</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Entity Framework' target='_blank'>.NET Curry: Entity Framework</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1398'>Entity Framework Core (EF Core) 2.0 – New Cool Features</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1389'>The State of Entity Framework Core - Past, Present and Future</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1348'>Using EF Core in ASP.NET Core Web API for performing CRUD operations</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1347'>Entity Framework Core Tutorial</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1170'>Using TransactionScope across Databases using ADO.NET Entity Framework and ASP.NET MVC</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1101'>Entity Framework 6.1 – Some New Features via an ASP.NET MVC application</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=945'>Improved Transactions in Entity Framework 6</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=941'>What’s New in Entity Framework 6.0 RC1</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=938'>Entity Framework 6: DB Logging and Stored Procedure Mapping for EF Code First</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=934'>Entity Framework 6 beta – Customizing Code First Conventions</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Patterns & Practices' target='_blank'>.NET Curry: Patterns & Practices</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1575'>Tackling Legacy Code</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1557'>Coding Practices: The most important ones – Part 3</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1555'>Architecting .NET Desktop and Mobile applications</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1553'>Application Architecture – Getting started</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1543'>Coding practices: The most important ones – Part 2</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1534'>Coding Practices: The most important ones – Part 1</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1526'>The Maybe Monad in C#: More methods</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1520'>Function parameters in C# and the flattened sum type anti-pattern</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1510'>The Maybe Monad (C#)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1502'>State in Multi-threaded C# Applications</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Microsoft Azure' target='_blank'>.NET Curry: Microsoft Azure</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1566'>Microservices Architecture Pattern</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1560'>End of Innovation outside the Cloud? Why PaaS will shape our future</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1554'>Digital Transformation using Microsoft Technologies during and post COVID-19</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1544'>Azure Cognitive Search – Using Search APIs in an Angular Application</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1541'>Developing Cloud Applications in .NET</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1535'>Monitoring an ASP.NET Web Application with Automated Actions using Azure Monitor</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1532'>Using Application Insights in Azure for Monitoring health of Web Apps</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1515'>Azure Cosmos DB - Deep Dive</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1512'>Microsoft Azure Cloud Roadmap</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1498'>Reactive Azure Service Bus Messaging with Azure Event Grid</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: DNC Magazine' target='_blank'>.NET Curry: DNC Magazine</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=830'>Download the Free 'DNC Magazine for .NET Professionals' - September Issue</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=818'>Launched the Free DNC Magazine for .NET Developers</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: HTML5 & JavaScript' target='_blank'>.NET Curry: HTML5 & JavaScript</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1359'>JavaScript Frameworks for ASP.NET MVC Developers</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1355'>Ionic 2 Tutorial - Building a hybrid mobile app using Angular</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1188'>Hello.js Social Media Login and Authentication</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1293'>Transpiling ES6 modules to ES5 using Babel</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1265'>Meta Programming in ES6 using Symbols</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1226'>Learn Node.js, ES6, jQuery, AngularJS and HTML5</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1194'>HTML5 Geolocation API - Getting Started</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1175'>2D and 3D HTML5 charts using Google Charts API</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1174'>HTML5 Video with Subtitles</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1169'>HTML 5 Offline Applications</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: AngularJS' target='_blank'>.NET Curry: AngularJS</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1547'>Angular 9 and Angular 10 Development Cheat Sheet</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1545'>Unit Testing Angular Services, HTTP Calls and HTTP Interceptors</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1478'>Using NgRx Store with Angular</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1467'>Building Single Page Applications (SPA) with Angular Router</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1463'>Unit Testing Angular Components</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1453'>Angular Evolution - Version 1.x to 6</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1450'>Ahead of Time Compilation - AoT in Angular (Performance Improvements)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1448'>Angular HttpClient Deep Dive (Headers, HTTP events, non-JSON data and Interceptors)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1446'>Dependency Injection in Angular: Introduction and DI Techniques</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1445'>Using Angular Services for Component Communication using Event Subscription and Notifications</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Node.js' target='_blank'>.NET Curry: Node.js</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1422'>Storing Images in MongoDB using GridFS</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1302'>Token Based authentication in Node.js using JSON Web Tokens</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1237'>Digest Authentication using Node.js</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1256'>Node.js: Implementing Routing using Express.js</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1270'>Using Node.js to read HTML file and send HTML response</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1225'>Calling Externally Hosted Service using Node.js</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1242'>Promises in Node.js using Q - Farewell to Callbacks</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1238'>Connect to SQL Server using Node.js and mssql package</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1233'>Debugging Node.js applications using Node Inspector</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1231'>Basic Authentication in Node.js</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Powershell' target='_blank'>.NET Curry: Powershell</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1017'>Automate Backups using PowerShell</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=960'>Using PowerShell in SharePoint 2013</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: TypeScript' target='_blank'>.NET Curry: TypeScript</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1439'>TypeScript – A Tour of Generics</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1370'>Using TypeScript to implement Multi-Platform Libraries</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1287'>TypeScript Tutorial for Beginners - Quick Start</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1152'>What’s new in TypeScript 1.4 and 1.5 beta</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1016'>Using AngularJS and TypeScript to Build Single Page Applications (SPA)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=939'>TypeScripted Knockout in ASP.NET MVC</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Xamarin' target='_blank'>.NET Curry: Xamarin</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1548'>Goodbye Xamarin.Forms, Hello .NET MAUI!</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1523'>Developing Mobile Applications in .NET</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1490'>Working with Barcodes in Xamarin.Forms</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1479'>Xamarin.Forms 4 – What is New?</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1452'>Xamarin.Forms 3 - Cheat sheet</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1442'>Content Moderation using Azure Custom Vision and Xamarin</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1435'>A lap around Visual Studio App Center</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1416'>Adding Artificial Intelligence (AI) to your Xamarin Apps</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1382'>Using MVVM in your Xamarin.Forms app</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1393'>Xamarin.Forms 3 - What’s upcoming?</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Reactjs' target='_blank'>.NET Curry: Reactjs</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1564'>Form Validation in React.js using React Functional Components and React Hooks</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1484'>React.js - Parent Child Component Communication and Event Handling</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1356'>Getting to Know the Redux Pattern</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1353'>React js Tutorial - Getting Started</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: ASP.NET Core' target='_blank'>.NET Curry: ASP.NET Core</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1574'>ASP.NET Core: State Management in Blazor Applications</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1570'>Using Blazor WebAssembly, SignalR and C# 9 to create Full-stack Real time Applications</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1563'>Kubernetes for ASP.NET Core Developers – Introduction, Architecture, Hands-On</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1561'>Architecture of Web Applications (with Design Patterns)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1552'>Progressive Web Applications – From Zero to Hero (Blazor, ASP.NET Core, Vue.js, Angular Examples)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1537'>Using Blazor, Tensorflow and ML.NET to Identify Images</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1530'>Developing an Application using ASP.NET Core 3.0, EF Core 3.0, Azure Cosmos DB and Angular.js</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1525'>Developing SPAs with ASP.NET Core v3.0</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1519'>Integration Testing of Real-time communication in ASP.NET Core (using Kestrel and SignalR)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1514'>gRPC with ASP.NET Core 3.0</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: .NET Standard & .NET Core' target='_blank'>.NET Curry: .NET Standard & .NET Core</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1558'>What is .NET 5? (Overview, Features, Performance, Download)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1546'>.NET 5 - What you need to know about the latest .NET</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1538'>Microsoft Build 2020 for Developers - Recap</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1524'>The 2020 Microsoft Developer RoadMap (Recap of Microsoft Ignite)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1513'>What’s New in .NET Core 3.0?</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1509'>Asynchronous Producer Consumer Pattern in .NET (C#)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1506'>Developing Desktop applications in .NET</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1495'>.NET Core Global Tools - (What are Global Tools, How to Create and Use them)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1474'>What Was New for .NET Developers in 2018 & the Road Ahead</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1460'>Blazor - .NET in the browser</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Machine Learning & AI' target='_blank'>.NET Curry: Machine Learning & AI</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1567'>What is Machine Learning?</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1562'>Artificial Intelligence: What, Why and How</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1549'>Machine Learning For Everybody</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1413'>Machine Learning: An Introduction</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: Bootstrap & CSS' target='_blank'>.NET Curry: Bootstrap & CSS</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1334'>Migrating from Bootstrap 3 to 4</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1327'>Bootstrap 4 – New Features</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: VSTS & TFS' target='_blank'>.NET Curry: VSTS & TFS</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1485'>Use REST APIs to access Azure DevOps (formerly VSTS)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1458'>Load Testing in Azure DevOps Test Hub (formerly VSTS)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1421'>Custom Build Task in Visual Studio Team Services (VSTS)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1408'>NuGet Package Management in VSTS</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1403'>Continuous Testing of a Java Web App in VSTS using Selenium</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1397'>Using Visual Studio Team System (VSTS) DevOps Features for CICD of a Java Web App</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1386'>Using Test Hub in VSTS to run Automated Tests on Web applications</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1283'>Exploratory Testing XT with Test Hub in Visual Studio Team System</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1346'>Create and Provision VM on premises using Release Management Service of VSTS and TFS</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1344'>Using VSTS Release Management to Create Azure VM from ARM Template</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: JavaScript' target='_blank'>.NET Curry: JavaScript</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1556'>Memoization in JavaScript, Angular and React</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1405'>ES8 (or ES2017) – What’s New in JavaScript?</a></li></ul>
<h2 class='channel-title'># <a href='.NET Curry: DevOps' target='_blank'>.NET Curry: DevOps</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1573'>Customization of Work Items in Azure DevOps and Azure DevOps Server 2020</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1569'>Azure DevOps Delivery Plan 2.0</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1551'>Source Control in Azure DevOps (Best practices)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1550'>Using Azure DevOps for Product Development (Multiple Teams)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1542'>GitHub Integration with Azure DevOps</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1540'>Migrating Code to Azure DevOps Repos (4 Different Scenarios)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1539'>Demystifying Pipelines in Azure DevOps (Build and Deployment)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1536'>Git in Azure DevOps</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1533'>Prevent Code Access for Developers Working Remotely using Azure DevOps (Protecting Code and IP during Lockdown)</a></li><li><a href='https://www.dotnetcurry.com/ShowArticle.aspx?ID=1531'>Delivering Automated Terraform CI/CD with Azure DevOps</a></li></ul>
<h2 class='channel-title'># <a href='http://markheath.net' target='_blank'>http://markheath.net</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/soundcode/~3/k2yhiaiTuCA/serverless-sliding-scale'>The Serverless Sliding Scale</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/p9O7ao-YFmQ/durable-functions-di'>Azure Durable Functions Dependency Injection</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/zgxDcvNhotg/pluralsight-updates-2021'>Pluralsight Updates 2021 - Microservices are getting easier</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/ATFVhi-UBnI/azurite'>Running Durable Functions Locally with Azurite</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/eqDevj5h2Hw/azure-functions-bicep'>Deploying an Azure Function App with Bicep</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/4cvIgX5s-4A/bicep'>Bicep - Why do we need yet another way to deploy stuff in Azure?</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/N6DuSu1M81A/user-delegation-sas'>Generating Azure Blob Storage User Delegation SAS</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/qFZ6bl53y6U/porting-interop-and-webassembly'>Porting versus interop for .NET - WebAssembly to the rescue?</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/2QtjGPGkvQw/docker-tooling-vs2019'>Visual Studio 2019 Docker Tooling</a></li><li><a href='http://feedproxy.google.com/~r/soundcode/~3/e-y04QxZ6Y4/azure-blob-archive'>Archiving Blobs with the Storage SDK</a></li></ul>
<h2 class='channel-title'># <a href='http://2ality.com' target='_blank'>http://2ality.com</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/2ality/~3/_8-VsUQmkvA/iteration-helpers.html'>JavaScript needs more helper functions for iteration (map, filter, etc.) – where should we put them?</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/uu3wnyWc-u8/simple-monorepos.html'>Simple monorepos via npm workspaces and TypeScript project references</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/49mwos3avJs/typescript-esm-nodejs.html'>TypeScript and native ESM on Node.js</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/y77NpqiM-9A/temporal-api.html'>Temporal: getting started with JavaScript’s new date time API</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/f7calH5-PQE/private-field-checks.html'>ECMAScript proposal: Ergonomic brand checks for private fields</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/xEdV3u4Rknc/object-hasown.html'>ECMAScript proposal: Accessible <code>Object.prototype.hasOwnProperty()</code></a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/jQYrx4jkaJk/json-modules.html'>ECMAScript proposal: JSON modules</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/R8jOA8DsqMk/error-cause.html'>ECMAScript proposal: Error cause (chaining errors)</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/sqe065-CgD0/undefined-null-revisited.html'><code>undefined</code> vs. <code>null</code> revisited</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/UFKMkgSAoNo/import-assertions.html'>ECMAScript proposal: Import assertions</a></li><li><a href='http://feedproxy.google.com/~r/2ality/~3/8EsUgHmnyQ4/looping-over-arrays.html'>Looping over Arrays: <code>for</code> vs. <code>for-in</code> vs. <code>.forEach()</code> vs. <code>for-of</code></a></li></ul>
<h2 class='channel-title'># <a href='https://adamstorr.azurewebsites.net' target='_blank'>https://adamstorr.azurewebsites.net</a></h2>
<ul class='feed-items'>
<li><a href='http://adamstorr.azurewebsites.net/blog/razor-pages-scaffolding-submit-with-error-400'>Razor Pages Scaffolding Submit with Error 400</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/azure-functions-cli-failing-after-preview-install'>Azure Functions CLI Failing After Preview Install</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/getting-started-with-twitter-api-using-socialopinion'>Getting Started with Twitter API using SocialOpinion</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/target-typed-new-expressions-in-csharp-9-are-they-the-future-part-2'>Target Typed New Expressions in C# 9 - Are They The Future? Part 2</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/target-typed-new-expressions-in-csharp-9-are-they-the-future'>Target Typed New Expressions in C# 9 - Are They The Future?</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/thoughts-and-musings-of-a-standing-desk-1-month-on'>Thoughts and Musings of a Standing Desk 1 Month On</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/test-your-dotnet-httpclient-based-strongly-typed-clients-like-a-boss'>Test Your .NET HttpClient Based Strongly Typed Clients Like a Boss</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/default-your-firstordefault-in-net6.0'>Default Your FirstOrDefault in .NET 6.0</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/setting-content-for-httpclient-testing-with-json.net-and-system.text.json'>Setting Content for HttpClient Testing with JSON.NET and System.Text.Json</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/extending-httpclient-testing-with-templating'>Extending HttpClient Testing With Templating</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/quick-tip-compiler-directives-and-using-aliases-to-ignore-tests'>Quick Tip - Compiler Directives and Using Aliases to Ignore Tests</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/simple-example-of-calling-rest-api-with-httpclient-in-net5.0'>Simple Example of Calling REST API with HttpClient in .NET 5.0</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/defining-httpclient-test-requests-by-using-a-bundle'>Defining HttpClient Test Requests by Using a Bundle</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/catching-all-the-requests-while-testing-with-httpclient'>Catching all the Requests while Testing with HttpClient</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/beginning-to-make-testing-with-httpclient-easier'>Beginning to Make Testing with HttpClient Easier</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/lightning-talk-on-httpclient-interception-by-just-eat-at-dotnetoxford-apr-2021'>Lightning Talk on HttpClient Interception by Just Eat at .NET Oxford Apr 2021</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/easily-create-and-manipulate-mock-anonymous-data-for-unit-tests'>Easily Create and Manipulate Mock Anonymous Data for Unit Tests</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/removing-ioptions-from-your-strongly-typed-configuration-in-azure-functions'>Removing IOptions From Your Strongly Typed Configuration in Azure Functions</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/azure-functions-not-loading-my-dependencies-what-have-i-missed'>Azure Functions Not Loading My Dependencies, What Have I Missed?</a></li><li><a href='http://adamstorr.azurewebsites.net/blog/why-wont-you-load-my-configuration-azure-functions'>Why won't you load my configuration Azure Functions?</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.iamnguele.com/' target='_blank'>https://blog.iamnguele.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.codingnagger.com/2021/08/05/unable-to-lock-database-a-linux-manjaro-story/'>Unable to lock database: A Linux Manjaro Story</a></li><li><a href='https://www.codingnagger.com/2021/07/08/first-blood-duels-to-unblock-code-reviews/'>First-blood duels to unblock code reviews?</a></li><li><a href='https://www.codingnagger.com/2021/06/28/docker-driver-failed-programming-external-connectivity-on-endpoint/'>Docker driver failed programming external connectivity on endpoint</a></li><li><a href='https://www.codingnagger.com/2021/05/25/az-900-the-azure-certs-season-is-open/'>AZ-900: The Azure certs season is open</a></li><li><a href='https://www.codingnagger.com/2021/04/30/taxes-shadow-of-payday/'>Taxes, shadow of payday</a></li><li><a href='https://www.codingnagger.com/2021/03/06/how-to-easily-install-nordvpn-using-openvpn-on-linux/'>How to easily install NordVPN using OpenVPN on Linux</a></li><li><a href='https://www.codingnagger.com/2021/02/22/logging-across-distributed-systems-breeds-an-easy-mind/'>Logging across distributed systems breeds an easy mind</a></li><li><a href='https://www.codingnagger.com/2021/02/14/linux-app-for-pinephone-with-pain-and-net-core/'>Linux app for PinePhone with pain and .NET Core</a></li><li><a href='https://www.codingnagger.com/2021/01/26/setting-up-the-minds-stack-on-windows/'>Setting up the Minds stack on Windows</a></li><li><a href='https://www.codingnagger.com/2021/01/24/pain-upgrading-windows-10-from-home-to-professional/'>Pain upgrading Windows 10 From Home to Professional</a></li></ul>
<h2 class='channel-title'># <a href='https://theburningmonk.com/' target='_blank'>https://theburningmonk.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/theburningmonk/~3/5UnQH0JxMWM/'>How to handle client errors gracefully with AppSync and Lambda</a></li><li><a href='http://feedproxy.google.com/~r/theburningmonk/~3/J4zRp9gaDOc/'>Lambda layer: not a package manager, but a deployment optimization</a></li><li><a href='http://feedproxy.google.com/~r/theburningmonk/~3/boA1jals9o8/'>How to manage Route53 hosted zones in a multi-account environment</a></li><li><a href='http://feedproxy.google.com/~r/theburningmonk/~3/ICv9oi_4Cd0/'>Building a custom IAM system has made me appreciate AWS IAM even more</a></li><li><a href='http://feedproxy.google.com/~r/theburningmonk/~3/YsR1qhe-gxU/'>How to model one-to-many relationships with AppSync and DynamoDB</a></li></ul>
<h2 class='channel-title'># <a href='http://yizhang82.me' target='_blank'>http://yizhang82.me</a></h2>
<ul class='feed-items'>
<li><a href='http://yizhang82.dev/bloaty-size-analysis'>Bloaty: A super handy linux binary analysis</a></li><li><a href='http://yizhang82.dev/atomic-vs-volatile-x86'>std::atomic vs volatile, disassembled</a></li><li><a href='http://yizhang82.dev/paper-raft'>Paper Reading: In Search of an Understandable Consensus Algorithm (Extended Version)</a></li><li><a href='http://yizhang82.dev/nes-emu-cpu'>Writing your own NES emulator Part 3 - the 6502 CPU</a></li><li><a href='http://yizhang82.dev/doctest'>Doctest - my favorite lightweight, zero-friction unit test framework</a></li><li><a href='http://yizhang82.dev/lenovo-fedora'>Putting Fedora 33 Workstation on X1 Carbon 7th gen</a></li><li><a href='http://yizhang82.dev/hekaton'>Paper Reading - Hekaton: SQL Server’s Memory-Optimized OLTP Engine</a></li><li><a href='http://yizhang82.dev/innodb-internals-consistent-reads'>InnoDB Internals - Consistent Reads</a></li><li><a href='http://yizhang82.dev/set-up-wsl2'>Trying and setting up WSL 2</a></li><li><a href='http://yizhang82.dev/swig-and-python3-unicode'>SWIG and Python3 unicode</a></li></ul>
<h2 class='channel-title'># <a href='https://wildermuth.com' target='_blank'>https://wildermuth.com</a></h2>
<ul class='feed-items'>
<li><a href='https://wildermuth.com/2021/08/09/I-m-Starting-To-Live-Stream-Coding-on-Twitch/'>I'm Starting to Live Stream Coding on Twitch!</a></li><li><a href='https://wildermuth.com/2021/08/08/Using-Angular-s-Base-HREF-in-Paths/'>Using Angular's Base HREF in Paths</a></li><li><a href='https://wildermuth.com/2021/08/04/Coding-Shorts-Changes-to-Coming-to-Startup-in--NET-6/'>Coding Shorts: Changes to Coming to Startup in .NET 6</a></li><li><a href='https://wildermuth.com/2021/08/03/Dipping-My-Toe-into-Static-Website-Generators/'>Dipping My Toe into Static Website Generators</a></li><li><a href='https://wildermuth.com/2021/07/05/Coding-Shorts-Dependency-Injection-Explained/'>Coding Shorts: Dependency Injection Explained</a></li><li><a href='https://wildermuth.com/2021/06/23/Coding-Short-Using-Spread-and-Destructuring-in-JavaScript/'>Coding Short: Using Spread and Destructuring in JavaScript</a></li><li><a href='https://wildermuth.com/2021/06/13/New-Coding-Short-Video-Should-You-Be-Using-Vue-s-Composition-API/'>New Coding Short Video: Should You Be Using Vue's Composition API?</a></li><li><a href='https://wildermuth.com/2021/04/18/New-Video-Structural-Typing-in-TypeScript/'>New Video: Structural Typing in TypeScript</a></li><li><a href='https://wildermuth.com/2021/04/11/My-Next-Film/'>My Next Film</a></li><li><a href='https://wildermuth.com/2021/03/28/Coding-Shorts-Demystifying-Bitwise-Operators-in-C/'>Coding Shorts: Demystifying Bitwise Operators in C#</a></li><li><a href='https://wildermuth.com/2021/03/17/Hello-World-Now-Available-Outside-of-North-America/'>Hello World Now Available Outside of North America</a></li><li><a href='https://wildermuth.com/2021/03/17/New-Video-Series-Coding-Shorts/'>New Video Series: Coding Shorts</a></li><li><a href='https://wildermuth.com/2021/03/09/Dynamically-Creating-Components-in-Angular/'>Dynamically Creating Components in Angular</a></li><li><a href='https://wildermuth.com/2021/02/28/Releasing-My-Wilder-Minds-Courses-for-Free/'>Releasing My Wilder Minds Courses for Free</a></li><li><a href='https://wildermuth.com/2021/02/15/I-Was-Wrong---Hosting-SPAs-in-ASP-NET-Core/'>I Was Wrong - Hosting SPAs in ASP.NET Core</a></li><li><a href='https://wildermuth.com/2021/02/01/Tell-Me-I-m-Wrong-Please-(Angular-and-Async)/'>Tell Me I'm Wrong, Please (Angular and Async)</a></li><li><a href='https://wildermuth.com/2021/01/17/Forcing-ASP-NET-WebForms-Designer-Files-to-Regenerate/'>Forcing ASP.NET WebForms Designer Files to Regenerate</a></li><li><a href='https://wildermuth.com/2021/01/10/Vite-for-Existing-Vue-CLI-Projects/'>Vite for Existing Vue CLI Projects</a></li><li><a href='https://wildermuth.com/2020/12/15/Hello-World-Has-Been-Released!/'>Hello World Has Been Released!</a></li><li><a href='https://wildermuth.com/2020/12/13/Using-Azure-Slots-and-GitHub-for-Personal-Projects/'>Using Azure Slots and GitHub for Personal Projects</a></li></ul>
<h2 class='channel-title'># <a href='https://developer.telerik.com/' target='_blank'>https://developer.telerik.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.telerik.com/blogs/handling-device-battery-information-xamarin-essentials'>Handling Device Battery Information With Xamarin Essentials</a></li><li><a href='https://www.telerik.com/blogs/build-custom-hook-real-time-state-synchronization-react'>Build a Custom Hook for Real-Time State Synchronization in React</a></li><li><a href='https://www.telerik.com/blogs/learning-about-secure-storage-xamarin-essentials'>Learning About Secure Storage in Xamarin Essentials</a></li><li><a href='https://www.telerik.com/blogs/what-you-need-know-googles-page-experience-update'>What You Need to Know About Google’s Page Experience Update</a></li><li><a href='https://www.telerik.com/blogs/telerik-ui-blazor-2-26-0-gantt-chart-grid-treelist-scheduler-improvements-more'>Telerik UI for Blazor 2.26.0—Gantt Chart, Grid, TreeList, Scheduler Improvements and More!</a></li><li><a href='https://www.telerik.com/blogs/designing-load-tests-test-studio-fiddler-6-easy-steps'>Designing Load Tests with Test Studio and Fiddler in 6 Easy Steps</a></li><li><a href='https://www.telerik.com/blogs/textbox-improvements-telerik-ui-winforms'>TextBox Improvements in Telerik UI for WinForms</a></li><li><a href='https://www.telerik.com/blogs/what-you-can-uncover-new-overview-tab-fiddler-everywhere-2-0'>What You Can Uncover in the New Overview Tab in Fiddler Everywhere 2.0</a></li><li><a href='https://www.telerik.com/blogs/sands-maui-issue-19'>Sands of MAUI: Issue #19</a></li><li><a href='https://www.telerik.com/blogs/angular-basics-how-to-use-httpclient'>Angular Basics: How To Use HttpClient in Angular</a></li><li><a href='https://www.telerik.com/blogs/whats-new-telerik-ui-winui-0-4-0'>What’s New in Telerik UI for WinUI 0.4.0</a></li><li><a href='https://www.telerik.com/blogs/shapes-drawingml-are-now-supported-radrichtextbox-wpf-r2-2021'>Shapes and DrawingML Are Now Supported in RadRichTextBox for WPF (R2 2021)</a></li><li><a href='https://www.telerik.com/blogs/tips-using-heatmaps-audit-web-design'>Tips for Using Heatmaps to Audit Your Web Design</a></li><li><a href='https://www.telerik.com/blogs/introducing-new-rule-builder-fiddler-everywhere'>Introducing the New Rule Builder in Fiddler Everywhere!</a></li><li><a href='https://www.telerik.com/blogs/whats-new-visual-studio-code'>What’s New in Visual Studio Code?</a></li></ul>
<h2 class='channel-title'># <a href='https://madskristensen.net' target='_blank'>https://madskristensen.net</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/netSlave/~3/Zz7CK3FyKUw/'>Receive a notification when the dishwasher finishes</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/tAbRBFB_Y1U/'>Hiding electronics behind fake books</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/vEwxQJZoEB0/'>The dashboard for our smart home</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/hvFdpd5vY9Y/'>Home automation sensors</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/iL-iHigSX5s/'>Home automation ideas</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/ryGP9g-6wn4/'>Home automation best practices</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/vDMIkgBTIHI/'>How to upgrade extensions to support Visual Studio 2019</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/9UTiFjEOGpA/'>Getting started writing Visual Studio extensions</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/_GrXWwH8tj0/'>Visual Studio extensibility samples</a></li><li><a href='http://feedproxy.google.com/~r/netSlave/~3/pQ9na1Armto/'>3 new extensions for Visual Studio extenders</a></li></ul>
<h2 class='channel-title'># <a href='http://www.talkingdotnet.com/' target='_blank'>http://www.talkingdotnet.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.talkingdotnet.com/upgrade-asp-net-core-web-3-1-app-to-asp-net-core-5/'>Upgrade ASP.NET Core Web 3.1 app to ASP.NET Core 5</a></li><li><a href='https://www.talkingdotnet.com/how-to-run-locally-build-docker-images-with-kubernetes/'>How to run locally build docker images with Kubernetes</a></li><li><a href='https://www.talkingdotnet.com/asp-net-core-5-for-enabling-razor-runtime-compilation/'>ASP.NET Core 5 – Enabling Razor runtime compilation</a></li><li><a href='https://www.talkingdotnet.com/default-implementations-in-interfaces-in-c-sharp-8/'>Interfaces in C# 8.0 gets a makeover</a></li><li><a href='https://www.talkingdotnet.com/bind-select-dropdown-list-in-angular-8/'>Bind Select DropDown List in Angular 8</a></li><li><a href='https://www.talkingdotnet.com/create-an-angular-8-app-with-visual-studio-2019/'>How to create an Angular 8 app with Visual Studio 2019</a></li><li><a href='https://www.talkingdotnet.com/clean-way-to-add-swagger-asp-net-core-application/'>A clean way to add Swagger to ASP.NET Core application</a></li><li><a href='https://www.talkingdotnet.com/create-trimmed-self-contained-executable-in-net-core-3-0/'>Create a Trimmed Self-Contained Single Executable in .NET Core 3.0</a></li><li><a href='https://www.talkingdotnet.com/visual-studio-2019-tips-and-tricks-for-more-productivity/'>Visual Studio 2019 Tips and Tricks for More Productivity</a></li><li><a href='https://www.talkingdotnet.com/add-authentication-to-angular-7-app-using-asp-net-core-3/'>Add Authentication to Angular 7 App using ASP.NET Core 3</a></li></ul>
<h2 class='channel-title'># <a href='https://christierney.com/' target='_blank'>https://christierney.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://christierney.com/2020/02/11/back-to-space/'>Back to Space</a></li><li><a href='https://christierney.com/2020/01/21/seeking-coldfusion-systems-administrator/'>Seeking ColdFusion Systems Administrator</a></li><li><a href='https://christierney.com/2019/09/17/windows-10-rdp-freezing/'>Windows 10 RDP Freezing</a></li><li><a href='https://christierney.com/2019/07/23/how-amazon-uses-explosive-resistant-devices-to-transfer-data-to-aws/'>How Amazon Uses Explosive-Resistant Devices To Transfer Data To AWS</a></li><li><a href='https://christierney.com/2019/03/21/seeking-sys-ops-wizard/'>Seeking Sys Ops Wizard!</a></li><li><a href='https://christierney.com/2019/01/22/getting-aws-java-sdk-2-0/'>Getting AWS Java SDK 2.0</a></li><li><a href='https://christierney.com/2019/01/17/aws-introduces-service-backups/'>AWS Introduces Service Backups</a></li><li><a href='https://christierney.com/2019/01/16/new-aws-windows-and-dr-services/'>New AWS Windows and DR Services</a></li><li><a href='https://christierney.com/2018/12/10/estimating-aws-ec2-ebs-snapshots/'>Estimating AWS EC2 EBS Snapshots</a></li><li><a href='https://christierney.com/2018/11/12/how-many-hours-in-a-month/'>How Many Hours In A Month?</a></li></ul>
<h2 class='channel-title'># <a href='https://codedaze.io/' target='_blank'>https://codedaze.io/</a></h2>
<ul class='feed-items'>
<li><a href='https://chrissainty.com/blazored-hits-1-000-000-downloads-on-nuget/'>Blazored hits 1,000,000 downloads on NuGet</a></li><li><a href='https://chrissainty.com/talking-blazored-on-the-blazor-community-standup/'>Talking Blazored on the Blazor Community Standup</a></li><li><a href='https://chrissainty.com/blazor-in-action-is-now-available-on-meap/'>Blazor in Action is now available on MEAP</a></li><li><a href='https://chrissainty.com/building-a-simple-tooltip-component-for-blazor-in-under-10-lines-of-code/'>Building a simple tooltip component for Blazor in under 10 lines of code*</a></li><li><a href='https://chrissainty.com/creating-a-custom-validation-message-component-for-blazor-forms/'>Creating a Custom Validation Message Component for Blazor Forms</a></li><li><a href='https://chrissainty.com/avoiding-accesstokennotavailableexception-when-using-blazor-webassembly-hosted-template-with-individual-user-accounts/'>Avoiding AccessTokenNotAvailableException when using the Blazor WebAssembly Hosted template with individual user accounts</a></li><li><a href='https://chrissainty.com/im-writing-a-book-announcing-blazor-in-action/'>I'm writing a book!</a></li><li><a href='https://chrissainty.com/blazor-news-from-build-2020/'>Blazor News from Build 2020</a></li><li><a href='https://chrissainty.com/auto-saving-form-data-in-blazor/'>Auto Saving Form Data in Blazor</a></li><li><a href='https://chrissainty.com/copy-to-clipboard-in-blazor/'>Copy to Clipboard in Blazor</a></li><li><a href='https://chrissainty.com/mobile-blazor-bindings-xamarin-essentials/'>Mobile Blazor Bindings - Navigation and Xamarin Essentials</a></li><li><a href='https://chrissainty.com/mobile-blazor-bindings-state-management-and-data/'>Mobile Blazor Bindings - State Management and Data</a></li><li><a href='https://chrissainty.com/mobile-blazor-bindings-layout-and-styling/'>Mobile Blazor Bindings - Layout and Styling</a></li><li><a href='https://chrissainty.com/getting-started-with-mobile-blazor-bindings/'>Mobile Blazor Bindings - Getting Started</a></li><li><a href='https://chrissainty.com/working-with-query-strings-in-blazor/'>Working with Query Strings in Blazor</a></li></ul>
<h2 class='channel-title'># <a href='https://channel9.msdn.com/Browse/AllContent' target='_blank'>https://channel9.msdn.com/Browse/AllContent</a></h2>
<ul class='feed-items'>
<li><a href='https://channel9.msdn.com/Shows/Azure-Friday/Enable-Zero-Trust-with-Azure-AD-PIM-and-Azure-Lighthouse'>Enable Zero Trust with Azure AD PIM and Azure Lighthouse | Azure Friday</a></li><li><a href='https://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Building-Power-Apps-with-Web-APIs'>Building Power Apps with Web APIs | Visual Studio Toolbox</a></li><li><a href='https://channel9.msdn.com/Shows/Data-Exposed/Azure-SQL-VM-Automate-Management-with-the-SQL-Server-IaaS-Agent-extension-Ep-2'>Azure SQL VM: Automate Management with the SQL Server IaaS Agent extension (Ep. 2) | Data Exposed</a></li><li><a href='https://channel9.msdn.com/Shows/On-NET/C-Highlights-Immutable-Collections'>C# Highlights: Immutable Collections | On .NET</a></li><li><a href='https://channel9.msdn.com/Shows/Internet-of-Things-Show/EFLOW-and-WSL-for-IoT-edge-development'>EFLOW and WSL for IoT edge development | Internet of Things Show</a></li><li><a href='https://channel9.msdn.com/Shows/AI-Show/Prebuilt-Docker-Images-for-Inference-in-Azure-Machine-Learning--AI-Show'>Prebuilt Docker Images for Inference in Azure Machine Learning | AI Show | AI Show</a></li><li><a href='https://channel9.msdn.com/Shows/Azure-Enablement/IT-Pros-Learn-Azure-Your-Way-Pt-2'>IT Pros: Learn Azure Your Way Pt. 2 | Azure Enablement</a></li><li><a href='https://channel9.msdn.com/Shows/Visual-Studio-Toolbox/An-Overview-of-the-Power-Platform'>An Overview of the Power Platform | Visual Studio Toolbox</a></li><li><a href='https://channel9.msdn.com/Shows/On-NET/C-Language-Highlights-ValueTask'>C# Language Highlights: ValueTask | On .NET</a></li><li><a href='https://channel9.msdn.com/Series/Beginners-Series-to-FSharp/Introduction-1-of-12--Beginners-Series-to-F'>Introduction [1 of 12] | Beginner#39;s Series to: F# | Beginner#39;s Series to: F#</a></li><li><a href='https://channel9.msdn.com/Events/dotnetConf/Focus-on-FSharp/Don-Symes-F-Bonanza'>Don Syme#39;s F# Bonanza | Focus on F#</a></li><li><a href='https://channel9.msdn.com/Events/Windows/Whats-Next-for-Windows/Join-us-to-see-whats-next-for-developers'>Join us to see what’s next for developers | What#39;s Next for Windows</a></li><li><a href='https://channel9.msdn.com/Events/Learn-TV/Static-Web-Apps-Code-to-Scale/Keynote-with-John-Papa'>Keynote with John Papa | Static Web Apps: Code to Scale</a></li><li><a href='https://channel9.msdn.com/Events/DEVintersection/DEVintersection-2021-Orlando/Keynote-The-Future-of-Modern-Application-Development-with-NET-and-Azure'>Keynote: The Future of Modern Application Development with .NET and Azure | DEVintersection 2021 Orlando</a></li><li><a href='https://channel9.msdn.com/Events/Azure-Cosmos-DB/Azure-Cosmos-DB-Conf/Blowing-your-mind-with-FSharp'>Blowing your mind with F# | Azure Cosmos DB Conf</a></li><li><a href='https://channel9.msdn.com/Events/Microsoft-Learn/Learn-Together-Building-Apps-with-Microsoft-Graph/Keynote'>Developer#39;s guide to Microsoft Graph | Learn Together: Building Apps with Microsoft Graph</a></li><li><a href='https://channel9.msdn.com/Events/dotnetConf/Focus-on-Windows/Welcome-Session'>Welcome Session | Focus on Windows</a></li></ul>
<h2 class='channel-title'># <a href='http://dsheiko.com/' target='_blank'>http://dsheiko.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://dsheiko.com/weblog/building-a-blog-with-hugo/'>How to build a blog with Hugo</a></li><li><a href='http://dsheiko.com/weblog/puppetry-3-test-automation-without-coding/'>Puppetry 3: test automation without coding</a></li><li><a href='http://dsheiko.com/weblog/how-to-create-a-kick-ass-image-preview-with-lqip/'>How to create a kick-ass image preview with LQIP</a></li><li><a href='http://dsheiko.com/weblog/testing-sign-up-flow-with-activation-by-email/'>Testing sign up flow with activation by email</a></li><li><a href='http://dsheiko.com/weblog/puppetry-2-0-released/'>Puppetry 2.0 released</a></li><li><a href='http://dsheiko.com/weblog/validating-arguments-in-javascript-like-a-boss/'>Validating arguments in JavaScript like a boss</a></li><li><a href='http://dsheiko.com/weblog/end-to-end-testing-with-puppeteer/'>End-to-End Testing With Puppeteer</a></li><li><a href='http://dsheiko.com/weblog/handling-forms-with-react-and-html5-form-validation-api/'>Handling forms with React and HTML5 Form Validation API</a></li><li><a href='http://dsheiko.com/weblog/javascript-and-underscore-js-type-methods-in-php/'>JavaScript and Underscore.js type methods in PHP</a></li><li><a href='http://dsheiko.com/weblog/setting-up-dev-environment-with-webpack-3/'>Setting Up Dev Environment with Webpack 3</a></li><li><a href='http://dsheiko.com/weblog/building-real-life-applications-with-functional-elements-of-html-5-2/'>Building Real-Life Applications with Functional Elements of HTML 5.2</a></li><li><a href='http://dsheiko.com/weblog/state-of-javascript-modules-2017/'>State of JavaScript Modules 2017</a></li><li><a href='http://dsheiko.com/weblog/cross-platform-desktop-application-development-electron-node-nw-js-and-react-is-out/'>My book `Cross-platform Desktop Application Development Electron, Node, NW.js, and React` is out</a></li><li><a href='http://dsheiko.com/weblog/second-wind-for-backbone/'>Bringing Angular 2+ Development Experience into Backbone</a></li><li><a href='http://dsheiko.com/weblog/guarding-functions-in-javascript/'>Guarding Functions in JavaScript</a></li><li><a href='http://dsheiko.com/weblog/nightmare-of-end-to-end-testing/'>Nightmare of End-to-End Testing</a></li><li><a href='http://dsheiko.com/weblog/writing-backbone-applications-in-typescript/'>Writing Backbone Applications in TypeScript</a></li><li><a href='http://dsheiko.com/weblog/enhancing-user-experience/'>Enhancing User Experience: Missing chapter of my book `Unlocked JavaScript`</a></li><li><a href='http://dsheiko.com/weblog/responsive-web-design-best-practices-for-improving-performance/'>Responsive Web Design: Best Practices for Improving Performance</a></li><li><a href='http://dsheiko.com/weblog/automated-css-regressive-testing-in-practice/'>Automated CSS Regressive Testing in Practice</a></li></ul>
<h2 class='channel-title'># <a href='https://alligator.io' target='_blank'>https://alligator.io</a></h2>
<ul class='feed-items'>
<li><a href='https://alligator.io/js/binary-heaps/'>Binary Heaps and Priority Queues via JavaScript</a></li><li><a href='https://alligator.io/vuejs/whats-coming-in-vue-3/'>An Overview of What's Coming in Vue 3</a></li><li><a href='https://alligator.io/js/mutability/'>Mutable Immutable JavaScript</a></li><li><a href='https://alligator.io/js/eleventy/'>A Brief Tour of the Eleventy Static Site Generator</a></li><li><a href='https://alligator.io/vuejs/i18n-formatting-fallbacks/'>More i18n with Vue: Formatting and Fallbacks</a></li><li><a href='https://alligator.io/vuejs/jest-snapshot-testing-in-vue/'>Introduction to Jest Snapshot Testing in Vue.js</a></li><li><a href='https://alligator.io/css/system-font-stack/'>CSS System Font Stack Reference</a></li><li><a href='https://alligator.io/vuejs/vue-with-i18n/'>Implementing i18n in Vue.js Using vue-i18n</a></li><li><a href='https://alligator.io/vuejs/vue-custom-events/'>Introduction to Vue Custom Events</a></li><li><a href='https://alligator.io/nodejs/express-cookies/'>Sending and Receiving Cookies from Express.js</a></li><li><a href='https://alligator.io/tooling/webpack-gulp-grunt-browserify/'>What Tool to Use: webpack vs Gulp vs Grunt vs Browserify</a></li><li><a href='https://alligator.io/vuejs/vue-template-syntax/'>Using Vue Template Syntax to Build A Photo Gallery</a></li><li><a href='https://alligator.io/vuejs/routing-data-fetching/'>Even More Advanced Routing with Vue: Data Fetching</a></li><li><a href='https://alligator.io/js/page-visibility-api/'>How to Detect Idle Browser Tabs with the Page Visibility API</a></li><li><a href='https://alligator.io/css/css-scrollbars/'>Styling Scrollbars with CSS: The Modern Way to Style Scrollbars</a></li><li><a href='https://alligator.io/vuejs/vue-testing/'>How to Test Your Vue Components Using the Jest Testing Framework</a></li><li><a href='https://alligator.io/svg/svg-filters/'>Introduction to SVG Filters</a></li><li><a href='https://alligator.io/vuejs/vue-routing-transitions/'>More Advanced Routing with Vue: Transitions Using Vue Router</a></li><li><a href='https://alligator.io/svg/textpath/'>Text Along a Path on the Web Using SVG textPath</a></li><li><a href='https://alligator.io/js/what-are-cookies/'>What Are Cookies & How to Work With Them Using JavaScript</a></li></ul>
<h2 class='channel-title'># <a href='http://rion.io/' target='_blank'>http://rion.io/</a></h2>
<ul class='feed-items'>
<li><a href='http://rion.io/2020/07/04/a-distributed-tracing-adventure-in-apache-beam/'>A Distributed Tracing Adventure in Apache Beam</a></li><li><a href='http://rion.io/2020/06/17/avoiding-kotlin-minefields-in-apache-beam/'>Avoiding Kotlin Minefields in Apache Beam</a></li><li><a href='http://rion.io/2020/06/01/introducing-apache-beam-katas-for-kotlin/'>Introducing Apache Beam Katas for Kotlin</a></li><li><a href='http://rion.io/2020/05/09/an-education-in-streaming/'>An Education in Streaming</a></li><li><a href='http://rion.io/2020/03/01/when-containers-become-trashcans/'>When Containers Become Trashcans</a></li><li><a href='http://rion.io/2020/02/28/putting-the-fun-in-c-local-functions/'>Putting the Fun in C# Local Functions</a></li><li><a href='http://rion.io/2020/02/17/the-other-kafkas-metamorphosis/'>The Other Kafka's Metamorphosis</a></li><li><a href='http://rion.io/2020/02/11/how-i-havent-become-an-amorphous-blob-while-working-remotely/'>How I Haven't Become an Amorphous Blob While Working Remotely</a></li><li><a href='http://rion.io/2020/01/23/glyphfriend-2019-released/'>Glyphfriend 2019 Released!</a></li><li><a href='http://rion.io/2020/01/11/when-random-isnt-the-right-random/'>When Random Isn't the Right Random</a></li><li><a href='http://rion.io/2020/01/02/why-is-my-sql-server-query-slow/'>Why is My SQL Server Query Slow?</a></li><li><a href='http://rion.io/2020/01/01/happy-new-c-sharp-9-features/'>Happy New ... C# 9 Features!</a></li><li><a href='http://rion.io/2019/12/29/just-jump-into-the-stream/'>Just Jump into the Stream</a></li><li><a href='http://rion.io/2019/12/21/the-bug-that-got-away/'>The Bug That Got Away</a></li></ul>
<h2 class='channel-title'># <a href='https://tungnt.net/' target='_blank'>https://tungnt.net/</a></h2>
<ul class='feed-items'>
<li><a href='https://tungnt.net/pgd-cong-nghe-misa-bat-mi-cach-chinh-phuc-nganh-phan-mem/'>PGĐ Công nghệ MISA bật mí cách chinh phục ngành phần mềm</a></li><li><a href='https://tungnt.net/microsoft-most-valuable-professional-mvp-award/'>Microsoft Most Valuable Professional (MVP) Award</a></li><li><a href='https://tungnt.net/microsoft-connect-2016-recap/'>Microsoft Connect(); // 2016 Recap</a></li><li><a href='https://tungnt.net/so-sanh-toc-do-list-collection-va-hashset-collection-trong-c/'>So sánh tốc độ List collection và HashSet collection trong C#</a></li><li><a href='https://tungnt.net/su-dung-cac-http-verbs-get-post-put-delete-trong-web-api/'>Sử dụng các HTTP Verbs GET POST PUT DELETE trong Web API</a></li><li><a href='https://tungnt.net/mcp-cung-chi-la-to-giay-ma-thoi-viecbonus-phong-van/'>MCP cũng chỉ là tờ giấy mà thôi – ViecBonus phỏng vấn</a></li><li><a href='https://tungnt.net/docker-cho-lap-trinh-vien-net/'>Docker cho lập trình viên .NET</a></li><li><a href='https://tungnt.net/gioi-thieu-ve-domain-driven-design-domain-driven-design-introduction/'>Giới thiệu về Domain Driven Design (Domain Driven Design Introduction)</a></li><li><a href='https://tungnt.net/continuous-delivery-voi-team-foundation-server-2015-va-visual-studio-2015/'>Continuous Delivery với Team Foundation Server 2015 và Visual Studio 2015</a></li><li><a href='https://tungnt.net/xu-ly-loi-sql-server-take-offline-database-treo/'>Xử lý lỗi SQL Server Take Offline Database Treo</a></li></ul>
<h2 class='channel-title'># <a href='http://www.asktester.com' target='_blank'>http://www.asktester.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.asktester.com/27-years-old-newbie/'>27 years old NEWBIE</a></li><li><a href='https://www.asktester.com/detail-about-automation-testing/'>Detail about automation testing</a></li><li><a href='https://www.asktester.com/not-enough-time-to-test/'>Not enough time to test? Here’s why.</a></li><li><a href='https://www.asktester.com/forget-about-work-smarter-work-harder/'>Forget about work smarter. Work harder</a></li><li><a href='https://www.asktester.com/when-software-testing-activities-should-start/'>When software testing activities should start</a></li><li><a href='https://www.asktester.com/ctfl/'>CTFL</a></li><li><a href='https://www.asktester.com/5-minor-but-deadly-mistakes-in-cv-make-you-ignored/'>5 minor but deadly mistakes in CV which make you ignored</a></li><li><a href='https://www.asktester.com/unable-to-a-clear-bug-title/'>Unable to a clear Bug Title</a></li><li><a href='https://www.asktester.com/outsourcing-or-product-company/'>Which is better: outsourcing or product company?</a></li><li><a href='https://www.asktester.com/guidelines-testing-software-for-beginners/'>What are the guidelines for testing a software for beginners?</a></li></ul>
<h2 class='channel-title'># <a href='https://duythanhcse.wordpress.com/' target='_blank'>https://duythanhcse.wordpress.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://duythanhcse.wordpress.com/2021/07/27/tai-lieu-python-nang-cao-tap-1/'>Tài liệu Python nâng cao – Tập 1</a></li><li><a href='https://duythanhcse.wordpress.com/2021/06/08/bao-cao-thi-truong-it-viet-nam-2021-developers-recruitment-state/'>Báo cáo thị trường IT Việt Nam 2021 – Developers Recruitment State</a></li><li><a href='https://duythanhcse.wordpress.com/2021/01/17/cach-debug-android-studio-toi-android-box-tv-bang-wifi/'>Cách Debug Android Studio tới Android Box TV bằng Wifi</a></li><li><a href='https://duythanhcse.wordpress.com/2021/01/01/cai-dat-hadoop-tren-windows/'>Cài đặt Hadoop trên Windows</a></li><li><a href='https://duythanhcse.wordpress.com/2020/12/08/bai-11-yeu-cau-xac-thuc-khi-truy-suat-cac-rest-api-trong-vert-x/'>Bài 11.Yêu cầu xác thực khi truy suất các REST API trong Vert.X</a></li><li><a href='https://duythanhcse.wordpress.com/2020/12/07/bai-10-tao-rest-api-httpdelete-de-xoa-doi-tuong-bang-vert-x/'>Bài 10.Tạo Rest API HTTPDELETE để xóa đối tượng bằng Vert.X</a></li><li><a href='https://duythanhcse.wordpress.com/2020/12/05/bai-9-tao-rest-api-httpput-de-cap-nhat-doi-tuong-bang-vert-x/'>Bài 9.Tạo Rest API HTTPPUT để cập nhật đối tượng bằng Vert.X</a></li><li><a href='https://duythanhcse.wordpress.com/2020/12/04/bai-8-tao-rest-api-httppost-de-them-moi-doi-tuong-bang-vert-x/'>Bài 8.Tạo Rest API HTTPPOST để thêm mới đối tượng bằng Vert.X</a></li><li><a href='https://duythanhcse.wordpress.com/2020/12/04/bai-7-tao-rest-api-httpget-lay-chi-tiet-doi-tuong-bang-vert-x/'>Bài 7.Tạo Rest API HTTPGET lấy chi tiết đối tượng bằng Vert.X</a></li><li><a href='https://duythanhcse.wordpress.com/2020/12/02/bai-6-tao-rest-api-httpget-lay-danh-sach-du-lieu-bang-vert-x-phan-2/'>Bài 6.Tạo Rest API HTTPGET lấy danh sách dữ liệu bằng Vert.X – phần 2</a></li></ul>
<h2 class='channel-title'># <a href='https://www.geekytidbits.com' target='_blank'>https://www.geekytidbits.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.geekytidbits.com/coloradosprings.js-meetup-talk/'>coloradoSprings.js Meetup Talk</a></li><li><a href='https://www.geekytidbits.com/presence-groups-in-home-assistant/'>Presence Groups in Home Assistant</a></li><li><a href='https://www.geekytidbits.com/10-years/'>10 Years</a></li><li><a href='https://www.geekytidbits.com/tools-i-use-2020/'>Tools I Use in 2020</a></li><li><a href='https://www.geekytidbits.com/looking-back-early-days/'>Looking Back on the Early Days</a></li><li><a href='https://www.geekytidbits.com/net-core-blazer/'>Taking ASP.NET Core Blazer for Spin</a></li><li><a href='https://www.geekytidbits.com/postgraphile-playground/'>Playing with PostGraphile</a></li><li><a href='https://www.geekytidbits.com/database-deadlocks/'>Database deadlocks</a></li><li><a href='https://www.geekytidbits.com/postgres-composite-type/'>Postgres composite types for tables</a></li><li><a href='https://www.geekytidbits.com/teaching-kids-to-code/'>Teaching Kids to Code</a></li></ul>
<h2 class='channel-title'># <a href='http://piotrgankiewicz.com/' target='_blank'>http://piotrgankiewicz.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://piotrgankiewicz.com/2019/01/14/distributed-net-core-episode-6-service-discovery-load-balancing-with-consul-fabio/'>Distributed .NET Core – Episode 6 (Service discovery & Load balancing with Consul + Fabio)</a></li><li><a href='https://piotrgankiewicz.com/2019/01/07/distributed-net-core-episode-5-cqrs-read-side-internal-http-communication/'>Distributed .NET Core – Episode 5 (CQRS – Read side, Internal HTTP communication)</a></li><li><a href='https://piotrgankiewicz.com/2019/01/02/distributed-net-core-episode-4-asynchronous-microservices-integration-via-events/'>Distributed .NET Core – Episode 4 (Asynchronous microservices integration via events)</a></li><li><a href='https://piotrgankiewicz.com/2018/12/28/distributed-net-core-episode-3/'>Distributed .NET Core – Episode 3 (Subscribing RabbitMQ messages, API gateway)</a></li><li><a href='https://piotrgankiewicz.com/2018/12/18/distributed-net-core-episode-2/'>Distributed .NET Core – Episode 2 (CQRS – Write side, Discounts service, MongoDB repository)</a></li><li><a href='https://piotrgankiewicz.com/2018/12/06/distributed-net-core-episode-1/'>Distributed .NET Core – Episode 1 (Intro, HTTP requests flow, Infrastructure with Docker)</a></li><li><a href='https://piotrgankiewicz.com/2018/09/19/distributed-net-core-teaser/'>Distributed .NET Core – Teaser</a></li><li><a href='https://piotrgankiewicz.com/2018/07/09/net-core-microservices-theory-dshop-solution-structure/'>.NET Core Microservices – theory, DShop solution structure</a></li><li><a href='https://piotrgankiewicz.com/2018/07/05/net-core-microservices-dshop/'>.NET Core Microservices – DShop</a></li><li><a href='https://piotrgankiewicz.com/2018/04/25/canceling-jwt-tokens-in-net-core/'>Canceling JWT tokens in .NET Core</a></li><li><a href='https://piotrgankiewicz.com/2018/02/19/warden-2-0/'>Warden 2.0</a></li><li><a href='https://piotrgankiewicz.com/2017/12/30/2017-summary/'>2017 summary</a></li><li><a href='https://piotrgankiewicz.com/2017/12/07/jwt-refresh-tokens-and-net-core/'>JWT refresh tokens and .NET Core</a></li><li><a href='https://piotrgankiewicz.com/2017/11/03/net-core-devops-with-docker-travis-ci-and-rancher-part-2/'>.NET Core DevOps with Docker, Travis CI and Rancher – part 2</a></li><li><a href='https://piotrgankiewicz.com/2017/10/23/net-core-devops-with-docker-travis-ci-and-rancher-part-1/'>.NET Core DevOps with Docker, Travis CI and Rancher – part 1</a></li><li><a href='https://piotrgankiewicz.com/2017/10/05/partial-update-your-net-core-http-api-resources/'>Partial update your .NET Core HTTP API resources</a></li><li><a href='https://piotrgankiewicz.com/2017/09/06/becoming-a-software-developer-episode-xxiv/'>Becoming a software developer – episode XXIV</a></li><li><a href='https://piotrgankiewicz.com/2017/08/26/collectively-an-open-source-platform-for-the-citizens/'>Collectively – an open source platform for the citizens</a></li><li><a href='https://piotrgankiewicz.com/2017/08/18/4developers-gdansk-2017/'>4developers – Gdańsk 2017</a></li><li><a href='https://piotrgankiewicz.com/2017/08/16/net-core-tour-summary/'>.NET Core Tour summary</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.dotnetframework.org/' target='_blank'>https://blog.dotnetframework.org/</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.dotnetframework.org/2021/07/26/the-source-at-nuget-org-https-www-nuget-org-api-v2-is-unreachable-fixed/'>The source at nuget.org [https://www.nuget.org/api/v2/] is unreachable. [FIXED]</a></li><li><a href='https://blog.dotnetframework.org/2021/07/04/updating-a-windows-service-via-a-batch-file/'>Updating a Windows Service via a batch file</a></li><li><a href='https://blog.dotnetframework.org/2021/07/01/generate-video-from-collection-of-images-in-c-ffmpeg/'>Generate video from collection of images in C# #FFMPEG</a></li><li><a href='https://blog.dotnetframework.org/2021/06/24/searching-available-community-pharmacies-for-covid-vaccinations-in-northern-ireland-using-c/'>Searching available community pharmacies for #COVID vaccinations in Northern Ireland using C#</a></li><li><a href='https://blog.dotnetframework.org/2021/06/14/using-the-google-search-api-in-c/'>Using the Google search #API in C#</a></li><li><a href='https://blog.dotnetframework.org/2021/05/31/zip-file-decompression-from-first-principles-in-c/'>#ZIP file decompression from first principles in C#</a></li><li><a href='https://blog.dotnetframework.org/2021/05/31/high-performance-extraction-of-unstructured-text-from-a-pdf-in-c/'>High performance extraction of unstructured text from a #PDF in C#</a></li><li><a href='https://blog.dotnetframework.org/2021/05/19/search-skype-users-via-an-api-by-name-or-email-address/'>Search #Skype users via an #API, by name or email address</a></li><li><a href='https://blog.dotnetframework.org/2021/05/13/vehicle-licence-plate-api-available-in-costarica/'>Vehicle licence plate #API available in #CostaRica</a></li><li><a href='https://blog.dotnetframework.org/2021/05/03/upgrading-cordova-apps-from-uiwebview-to-wkwebview/'>Upgrading #Cordova apps from #UIWebView to #WKWebView</a></li></ul>
<h2 class='channel-title'># <a href='https://claudiajs.com/' target='_blank'>https://claudiajs.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://claudiajs.com/news/2019/11/21/claudia-5.11.html?source=feed'>New command: claudia list</a></li><li><a href='https://claudiajs.com/news/2019/11/19/claudia-5.10.html?source=feed'>Claudia 5.10: Lambda Node 12 support</a></li><li><a href='https://claudiajs.com/news/2019/08/29/claudia-5.8.html?source=feed'>Claudia 5.8: More flexible SNS integrations</a></li><li><a href='https://claudiajs.com/news/2019/01/07/claudia-5.3.html?source=feed'>Claudia 5.3: Lambda Layers</a></li><li><a href='https://claudiajs.com/news/2018/07/19/claudia-5.1.html?source=feed'>Claudia 5.1: SQS Triggers</a></li><li><a href='https://claudiajs.com/news/2018/06/07/claudia-5.html?source=feed'>Claudia 5: better packaging and NPM5 support</a></li><li><a href='https://claudiajs.com/news/2018/04/09/claudia-4.html?source=feed'>Claudia 4: Node 8 and NPM 5 support</a></li><li><a href='https://claudiajs.com/news/2018/01/12/claudia-3.2.html?source=feed'>Claudia 3.2.0: Kinesis triggers</a></li><li><a href='https://claudiajs.com/news/2018/01/04/claudia-3.html?source=feed'>Claudia 3.0.0: Lambda@Edge and more</a></li><li><a href='https://claudiajs.com/news/2017/10/06/serverless-apps-with-node-and-claudiajs.html?source=feed'>A new book about Claudia.js is available!</a></li></ul>
<h2 class='channel-title'># <a href='https://www.michaelcrump.net' target='_blank'>https://www.michaelcrump.net</a></h2>
<ul class='feed-items'>
<li><a href='https://www.michaelcrump.net/azure-tips-and-tricks210/'>Azure Tips and Tricks Part 210 - Working with Azure Blueprints</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks211/'>Azure Tips and Tricks Part 211 - Working with Azure Functions using PowerShell</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks209/'>Azure Tips and Tricks Part 209 - Prebuilt Terraform Image to automate Infrastructure Deployment</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks208/'>Azure Tips and Tricks Part 208 - Set up a MEAN-based web application on a new Azure Linux virtual machine</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks206/'>Azure Tips and Tricks Part 206 - Create, host, and share packages with your team with Azure Artifacts</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks207/'>Azure Tips and Tricks Part 207 - Reduce Bruce Force attacks to Azure VMs</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks205/'>Azure Tips and Tricks Part 205 - Query Azure Storage analytics logs in Azure Log Analytics</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks204/'>Azure Tips and Tricks Part 204 - Working with Azure Cosmos DB and the JavaScript SDK</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks203/'>Azure Tips and Tricks Part 203 - Delivering static content via Azure CDN</a></li><li><a href='https://www.michaelcrump.net/azure-tips-and-tricks201/'>Azure Tips and Tricks Part 201 - Creating Custom VM Images in Azure using Packer</a></li></ul>
<h2 class='channel-title'># <a href='http://www.nimaara.com/' target='_blank'>http://www.nimaara.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.nimaara.com/easier-dictionary-in-c/'>Tranquillity in C# with EasyDictionary</a></li><li><a href='https://www.nimaara.com/generating-ids-in-csharp/'>Generating IDs in C#, 'safely' and efficiently</a></li><li><a href='https://www.nimaara.com/counting-lines-of-a-text-file/'>Counting Lines of a Text File in C#, the Smart Way</a></li><li><a href='https://www.nimaara.com/stuff-every-dotnet-app-should-be-logging-at-startup/'>Stuff Every .NET App Should be Logging at Startup</a></li><li><a href='https://www.nimaara.com/practical-parallelization-with-map-reduce-in-c/'>Practical Parallelization in C# with MapReduce, ProducerConsumer and ActorModel</a></li><li><a href='https://www.nimaara.com/local-functions-a-new-c/'>Local Functions, a C# 7 Feature</a></li><li><a href='https://www.nimaara.com/beware-of-the-net-httpclient/'>Beware of the .NET HttpClient</a></li><li><a href='https://www.nimaara.com/high-resolution-clock-in-net/'>High Resolution Clock in .NET</a></li><li><a href='https://www.nimaara.com/how-to-obtain-the-framework-version-of-a-net-assembly/'>How to obtain the framework version of a .NET assembly</a></li><li><a href='https://www.nimaara.com/beware-of-the-idictionary-tkey-tvalue/'>Beware of the IDictionary<TKey, TValue></a></li><li><a href='https://www.nimaara.com/cleaner-pub-sub-using-the-event-aggregator-pattern/'>Cleaner Pub-Sub using the Event Aggregator Pattern</a></li><li><a href='https://www.nimaara.com/entity-framework-7-asp-net-5mvc-6-is-dead-asp-net-5-are-dead/'>.NET Core 5, Entity Framework 7, ASP.NET 5 (vNext) MVC 6 are all Dead!</a></li><li><a href='https://www.nimaara.com/testing-internal-classes-in-c-sharp/'>Unit Testing Internal Classes in C#</a></li><li><a href='https://www.nimaara.com/per-object-garbage-collection-notification-in-net/'>Per Object Garbage Collection Notification in .NET</a></li><li><a href='https://www.nimaara.com/high-performance-logging-log4net/'>High Performance Logging using log4net</a></li></ul>
<h2 class='channel-title'># <a href='https://neelbhatt.com' target='_blank'>https://neelbhatt.com</a></h2>
<ul class='feed-items'>
<li><a href='https://neelbhatt.com/2021/05/05/what-is-machine-learning/'>What is Machine Learning?</a></li><li><a href='https://neelbhatt.com/2021/03/14/appsettings-json-gets-intellisense/'>appsettings.json gets IntelliSense</a></li><li><a href='https://neelbhatt.com/2021/03/07/first-look-at-infersharp-a-c-version-of-facebooks-infer/'>First look at InferSharp: A C# version of Facebook’s Infer</a></li><li><a href='https://neelbhatt.com/2020/12/06/machine-learning-and-human-learning/'>Machine Learning And Human Learning</a></li><li><a href='https://neelbhatt.com/2020/07/13/how-does-the-built-in-dependency-injection-work-on-asp-net-core/'>How does the built-in dependency injection work on ASP.NET Core?</a></li><li><a href='https://neelbhatt.com/2020/07/05/event-sourcing-in-net-core-part-1-a-gentle-introduction/'>Event Sourcing in .NET Core – part 1: A gentle introduction</a></li><li><a href='https://neelbhatt.com/2020/05/29/a-first-look-at-azure-synapse-analytics/'>A First Look At Azure Synapse Analytics</a></li><li><a href='https://neelbhatt.com/2020/03/21/whatsapp-alert-service-by-world-health-organization-for-covid-19/'>Whatsapp alert service by World Health Organization(WHO) for COVID-19(Corona virus)</a></li><li><a href='https://neelbhatt.com/2020/03/07/skip-identity-server-login-page-for-azure-adauto-login/'>Skip Identity server login page for Azure AD(Auto login)</a></li><li><a href='https://neelbhatt.com/2020/02/12/create-certificates-for-identityserver4-signing-using-net-core/'>Create Certificates for IdentityServer4 signing using .NET Core</a></li></ul>
<h2 class='channel-title'># <a href='https://levinh.net/' target='_blank'>https://levinh.net/</a></h2>
<ul class='feed-items'>
<li><a href='https://levinh.net/dot-net/tao-ung-dung-windows-service-bang-net-core'>Tạo ứng dụng Windows Service bằng .Net Core</a></li><li><a href='https://levinh.net/design-patterns/design-pattern-builder-pattern'>Design Pattern: Builder pattern</a></li><li><a href='https://levinh.net/design-patterns/design-pattern-solid-design-principles-3'>Design pattern: SOLID Design Principles 3</a></li><li><a href='https://levinh.net/design-patterns/design-pattern-solid-design-principles-2'>Design pattern: SOLID Design Principles 2</a></li><li><a href='https://levinh.net/design-patterns/design-pattern-solid'>Design pattern: SOLID Design Principles</a></li><li><a href='https://levinh.net/angular/settings-sync-extension-tuyet-voi-giup-sao-luu-moi-thu-tren-visual-code'>Settings Sync – Extension tuyệt vời giúp sao lưu mọi thứ trên visual code</a></li><li><a href='https://levinh.net/devops/docker-la-gi'>Docker là gì?</a></li><li><a href='https://levinh.net/javascript/pure-va-impure-function-trong-javascript'>Pure và Impure function trong Javascript</a></li><li><a href='https://levinh.net/chuyen-tan-man/nhung-trang-bi-can-thiet'>Những trang bị cần thiết</a></li><li><a href='https://levinh.net/chuyen-tan-man/bai-tu-su-phan-cuoi'>Bài tự sự …. phần cuối</a></li></ul>
<h2 class='channel-title'># <a href='https://jonsuh.com' target='_blank'>https://jonsuh.com</a></h2>
<ul class='feed-items'>
<li><a href='https://jonsuh.com/blog/animated-toggle-react-native/'>Animated Toggle in React Native</a></li><li><a href='https://jonsuh.com/blog/slow-down-you-need-it/'>Slow Down—You Need It</a></li><li><a href='https://jonsuh.com/blog/javascript-templating-without-a-library/'>JavaScript Templating Without a Library</a></li><li><a href='https://jonsuh.com/blog/the-story-behind-100-days-of-scriptures/'>The Story Behind “100 Days of Scriptures”</a></li><li><a href='https://jonsuh.com/blog/ugmonk-messenger-bag/'>Ugmonk Waxed Canvas Messenger Bag Review</a></li><li><a href='https://jonsuh.com/blog/integrating-react-with-gulp/'>Integrating React with gulp</a></li><li><a href='https://jonsuh.com/blog/august-connect/'>August Connect Review</a></li><li><a href='https://jonsuh.com/blog/managing-responsive-breakpoints-with-sass-maps/'>Managing Responsive Breakpoints with Sass Maps</a></li><li><a href='https://jonsuh.com/blog/need-for-speed-2/'>Need for Speed 2: Improving Front-End Performance</a></li><li><a href='https://jonsuh.com/blog/font-loading-with-font-events/'>Faster Font Loading with Font Events</a></li><li><a href='https://jonsuh.com/blog/canary-home-security-device/'>Canary All-in-One Home Security Device Review</a></li><li><a href='https://jonsuh.com/blog/enhance-google-search-results-rich-snippets/'>Enhance Google Search Results with Rich Snippets</a></li><li><a href='https://jonsuh.com/blog/git-command-line-shortcuts/'>Git Command-Line Shortcuts</a></li><li><a href='https://jonsuh.com/blog/bash-command-line-shortcuts/'>Terminal/Bash Command-Line Shortcuts with Aliases</a></li><li><a href='https://jonsuh.com/blog/social-share-links/'>Responsible Social Share Links</a></li><li><a href='https://jonsuh.com/blog/finding-the-right-development-tools/'>Finding the Right Development Tools</a></li><li><a href='https://jonsuh.com/blog/august-smart-lock/'>August Smart Lock Review</a></li><li><a href='https://jonsuh.com/blog/mujjo-leather-wallet-case-iphone-6/'>Mujjo Leather Wallet Case for iPhone 6 Review</a></li></ul>
<h2 class='channel-title'># <a href='https://programmingwithmosh.com' target='_blank'>https://programmingwithmosh.com</a></h2>
<ul class='feed-items'>
<li><a href='https://programmingwithmosh.com/backend/graphql/testing-graphql-queries-with-apollo-client/'>Testing GraphQL Queries with Apollo Client</a></li><li><a href='https://programmingwithmosh.com/javascript/setup-eslint-and-prettier-in-your-react-project/'>Setup ESLint and Prettier in Your React Project</a></li><li><a href='https://programmingwithmosh.com/data-structures/data-structures-in-python-stacks-queues-linked-lists-trees/'>Data Structures in Python: Stacks, Queues, Linked Lists, & Trees</a></li><li><a href='https://programmingwithmosh.com/backend/graphql/using-graphql-in-your-python-django-application/'>Using GraphQL in your Python Django application</a></li><li><a href='https://programmingwithmosh.com/general/top-frontend-frameworks-to-learn-in-2021/'>Top Frontend Frameworks To Learn in 2021</a></li><li><a href='https://programmingwithmosh.com/general/top-4-programming-languages-to-learn-in-2021/'>Top 4 Programming Languages To Learn In 2021</a></li><li><a href='https://programmingwithmosh.com/react-native/displaying-large-lists-using-the-flatlist-component-in-react-native/'>Displaying Large Lists Using the FlatList Component in React Native</a></li><li><a href='https://programmingwithmosh.com/general/how-to-effectively-skill-up-and-stay-relevant-as-a-developer/'>How to Effectively Skill up and Stay Relevant as a Developer</a></li><li><a href='https://programmingwithmosh.com/react-native/tab-navigation-between-screens-using-react-navigation-v5/'>Tab Navigation Between Screens Using React Navigation</a></li><li><a href='https://programmingwithmosh.com/react-native/moving-between-screens-using-react-navigation-v5/'>Moving Between Screens Using React Navigation v5</a></li></ul>
<h2 class='channel-title'># <a href='https://www.zeptobook.com' target='_blank'>https://www.zeptobook.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.zeptobook.com/javascript-es2020-features-you-should-know/'>JavaScript ES2020 Features You Should Know</a></li><li><a href='https://www.zeptobook.com/how-to-run-stop-and-remove-containers-in-docker/'>How To Run, Stop And Remove Containers In Docker</a></li><li><a href='https://www.zeptobook.com/6-ways-of-using-http-interceptors-in-angular/'>6 Ways Of Using HTTP Interceptors In Angular</a></li><li><a href='https://www.zeptobook.com/develop-smart-contracts-using-remix-and-reactjs/'>Develop Smart Contracts Using Remix And ReactJS</a></li><li><a href='https://www.zeptobook.com/create-your-first-blockchain-ethereum-dapp-with-react/'>Create Your First BlockChain Ethereum DAPP With React</a></li><li><a href='https://www.zeptobook.com/deploy-your-first-smart-contract-with-truffle/'>Deploy Your First Smart Contract With Truffle</a></li><li><a href='https://www.zeptobook.com/how-to-build-lists-and-navigation-in-swiftui/'>How to build lists and navigation in SwiftUI</a></li><li><a href='https://www.zeptobook.com/learn-about-module-design-pattern-in-javascript/'>Learn about module design pattern in JavaScript</a></li><li><a href='https://www.zeptobook.com/understand-shallow-and-deep-copy-in-javascript/'>Understand Shallow And Deep Copy In JavaScript</a></li><li><a href='https://www.zeptobook.com/how-to-create-and-combine-views-in-swiftui/'>How to create and combine views in SwiftUI</a></li></ul>
<h2 class='channel-title'># <a href='https://www.telerik.com/' target='_blank'>https://www.telerik.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://feeds.telerik.com/link/10825/14675348/handling-device-battery-information-xamarin-essentials'>Handling Device Battery Information With Xamarin Essentials</a></li><li><a href='https://feeds.telerik.com/link/10825/14670856/learning-about-secure-storage-xamarin-essentials'>Learning About Secure Storage in Xamarin Essentials</a></li><li><a href='https://feeds.telerik.com/link/10825/14665834/textbox-improvements-telerik-ui-winforms'>TextBox Improvements in Telerik UI for WinForms</a></li><li><a href='https://feeds.telerik.com/link/10825/14663590/sands-maui-issue-19'>Sands of MAUI: Issue #19</a></li><li><a href='https://feeds.telerik.com/link/10825/14659046/whats-new-telerik-ui-winui-0-4-0'>What’s New in Telerik UI for WinUI 0.4.0</a></li><li><a href='https://feeds.telerik.com/link/10825/14658476/shapes-drawingml-are-now-supported-radrichtextbox-wpf-r2-2021'>Shapes and DrawingML Are Now Supported in RadRichTextBox for WPF (R2 2021)</a></li><li><a href='https://feeds.telerik.com/link/10825/14652682/whats-new-visual-studio-code'>What’s New in Visual Studio Code?</a></li><li><a href='https://feeds.telerik.com/link/10825/14650392/sands-maui-issue-18'>Sands of MAUI: Issue #18</a></li><li><a href='https://feeds.telerik.com/link/10825/14645674/telerik-kendo-ui-theme-customization-web-desktop-demo'>Telerik and Kendo UI Theme Customization: Web and Desktop Demo</a></li><li><a href='https://feeds.telerik.com/link/10825/14632515/swiss-qr-code-improvements-telerik-ui-xamarin-input-controls'>Swiss QR Code and Improvements in Telerik UI for Xamarin Input Controls</a></li><li><a href='https://feeds.telerik.com/link/10825/14630571/work-unhandled-exceptions-gracefully-blazor-server-dotnet-6-error-boundaries'>Work With Unhandled Exceptions Gracefully in Blazor Server With .NET 6 Error Boundaries</a></li><li><a href='https://feeds.telerik.com/link/10825/14628367/enabling-punctual-island-time-new-telerik-maui-controls'>Enabling Punctual Island Time: New Telerik MAUI Controls</a></li><li><a href='https://feeds.telerik.com/link/10825/14626411/sands-maui-issue-17'>Sands of MAUI: Issue #17</a></li><li><a href='https://feeds.telerik.com/link/10825/14626081/flatten-pdf-telerik-document-processing'>Flatten That PDF With Telerik Document Processing</a></li><li><a href='https://feeds.telerik.com/link/10825/14619851/introducing-radscheduler-for-winui-plan-long-ahead'>Introducing RadScheduler for WinUI: Plan Long Ahead</a></li></ul>
<h2 class='channel-title'># <a href='http://blog.bestdotnettraining.com' target='_blank'>http://blog.bestdotnettraining.com</a></h2>
<ul class='feed-items'>
<li><a href='http://blog.bestdotnettraining.com/careerstep/careerstep-a-job-training-and-100-job-guarantee-program/'>CareerStep: A job training and 100% Job Guarantee program</a></li><li><a href='http://blog.bestdotnettraining.com/microservices/cloud-native-microservices-using-net5-all-you-need-to-know/'>Cloud-Native Microservices using .Net5 all you need to know</a></li><li><a href='http://blog.bestdotnettraining.com/microsoft-azure/complete-your-azure-certification-in-3-steps/'>Complete your Azure Certification in 3 Steps</a></li><li><a href='http://blog.bestdotnettraining.com/microsoft-azure/is-devops-important-for-software-developers-or-it-admins/'>Is DevOps Important for Software Developers or IT Admins?</a></li><li><a href='http://blog.bestdotnettraining.com/microsoft-azure/want-to-know-how-to-build-ci-cd-pipeline-using-azure-devops/'>Want To Know How To Build CI/CD Pipeline Using Azure DevOps</a></li><li><a href='http://blog.bestdotnettraining.com/angular-7/angular-and-typescript-everything-you-need-to-know/'>Angular and Typescript Complete Course</a></li><li><a href='http://blog.bestdotnettraining.com/microsoft-azure/why-how-what-and-when-of-kubernetes-and-aks-all-you-need-to-know-is-right-here/'>Why, How, What and When of Kubernetes and AKS. All you need to know is right here!</a></li><li><a href='http://blog.bestdotnettraining.com/microsoft-azure/everything-you-need-to-know-to-become-an-azure-devops-engineer/'>Everything you need to know to Become an Azure DevOps Engineer.</a></li><li><a href='http://blog.bestdotnettraining.com/uncategorized/first-newsletter-for-the-year-2021-deccansoft/'>First Newsletter for the year 2021- Deccansoft</a></li><li><a href='http://blog.bestdotnettraining.com/uncategorized/new-year-special-offer-gold-membership-offer-avail-now/'>New Year Special Offer! Gold Membership Offer! Avail Now!</a></li></ul>
<h2 class='channel-title'># <a href='http://dotnetguts.blogspot.com/' target='_blank'>http://dotnetguts.blogspot.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://dotnetguts.blogspot.com/feeds/3400085612658730274/comments/default'>Content-Security-Policy in ASP.NET MVC</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/5596242263653667535/comments/default'>Running Asp.net Core Web Application and Web API project on Ubuntu</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/1573643442825168699/comments/default'>Efficient way of performing filtering, sorting and pagination with MongoDB C#</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/2623579534214052472/comments/default'>Getting SQL Server admin access</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/8561176292010565877/comments/default'>Installing .Net Core on Digital Ocean Hosting</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/1905528847461610693/comments/default'>Install Mongodb and run as a service to start automatically for windows</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/6309979263162964603/comments/default'>Example of Inversion of Control and Dependency Injection</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/1910588718094701779/comments/default'>Sql Server Restrict Memory usage</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/6545727306782395052/comments/default'>Securing request pipeline of an ASP.NET MVC 5 Application</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/1322442683475431267/comments/default'>Create xml file from sql server table</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/6107978488658031041/comments/default'>Could not locate the assembly "System.Web.Mvc,Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35,processorArchitecture=MSIL</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/2519728659398806043/comments/default'>Attempt by security transparent method 'WebMatrix.WebData.PreApplicationStartCode.Start()' to access security critical method 'System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)' failed.</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/1804919550134109501/comments/default'>Could not load file or assembly 'WebMatrix.Data, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/3817022893599887930/comments/default'>Solution: SSD Drive not getting detected on Win 10 OS</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/7942798705137160995/comments/default'>Update Table from Another Table in SQL Server</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/2957942766124085534/comments/default'>C# Object to Json Object String Example</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/9031365607948602418/comments/default'>Json String to C# Object Example</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/2031865750646451404/comments/default'>A connection was successfully established with the server, but then an error occurred during the login process. (Microsoft SQL Server, Error 233)</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/292032209055516541/comments/default'>Login failed for user. (Microsoft SQL Server, Error 18456)</a></li><li><a href='http://dotnetguts.blogspot.com/feeds/3334269529094964157/comments/default'>Free ASP.NET Training for 2014</a></li></ul>
<h2 class='channel-title'># <a href='https://jeremylindsayni.wordpress.com' target='_blank'>https://jeremylindsayni.wordpress.com</a></h2>
<ul class='feed-items'>
<li><a href='https://jeremylindsayni.wordpress.com/2019/12/14/running-the-first-global-ai-bootcamp-in-belfast/'>Running the first Global AI Bootcamp in Belfast</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/10/25/solving-some-strange-behaviour-on-azure-app-service-with-a-url-containing-non-ascii-characters/'>Solving some strange behaviour on Azure App Service with a URL containing non-ASCII characters</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/10/10/trying-image-classification-with-ml-net/'>Trying image classification with ML.NET</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/09/12/adding-environment-variables-to-an-arm-template-for-azure-app-services/'>Adding Environment Variables to an ARM template for Azure App Services</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/09/10/create-an-azure-key-vault-using-arm-templates-resource-functions-and-azure-pipelines/'>Create an Azure Key Vault using ARM templates, Resource Functions, and Azure Pipelines</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/09/09/healthcheck-endpoints-in-c-in-mvc-projects-using-asp-net-core-and-writing-results-to-azure-application-insights/'>Healthcheck endpoints in C# in MVC projects using ASP.NET Core, and writing results to Azure Application Insights</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/09/04/azure-cache-as-a-session-data-store-in-c-and-mvc/'>Azure Cache as a session data store in C# and MVC</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/09/02/everything-as-code-with-azure-devops-pipelines-c-arm-and-yaml-part-4-deploying-an-arm-template-to-create-an-azure-app-service-with-code/'>Everything as Code with Azure DevOps Pipelines: C#, ARM, and YAML: Part #4, Deploying an ARM template to create an Azure App Service with code</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/06/17/everything-as-code-with-azure-devops-pipelines-c-arm-and-yaml-part-3-resource-groups-and-yaml-templates/'>Everything as Code with Azure DevOps Pipelines: C#, ARM, and YAML: Part #3, resource groups and YAML templates</a></li><li><a href='https://jeremylindsayni.wordpress.com/2019/06/10/everything-as-code-with-azure-devops-pipelines-c-arm-and-yaml-part-2-multi-stage-builds-in-yaml/'>Everything as Code with Azure DevOps Pipelines: C#, ARM, and YAML: Part #2 – multi-stage builds in YAML</a></li></ul>
<h2 class='channel-title'># <a href='http://looselycoupledlabs.com' target='_blank'>http://looselycoupledlabs.com</a></h2>
<ul class='feed-items'>
<li><a href='https://looselycoupledlabs.com/2016/03/mms-employee-directory-in-asp-net-mvc-5/'>MMS Employee Directory in ASP.NET MVC 5</a></li><li><a href='https://looselycoupledlabs.com/2016/03/meet-your-friendly-neighborhood-net-twilion/'>Meet Your Friendly, Neighborhood .NET Twilion</a></li><li><a href='https://looselycoupledlabs.com/2015/07/masstransit-3-update-a-simple-publishsubscribe-example/'>MassTransit 3 Update: A Simple Publish/Subscribe Example</a></li><li><a href='https://looselycoupledlabs.com/2014/11/masstransit-versus-nservicebus-fight/'>MassTransit versus NServiceBus: FIGHT!</a></li><li><a href='https://looselycoupledlabs.com/2014/09/masstransit-on-microsoft-azure-2/'>MassTransit on Microsoft Azure</a></li><li><a href='https://looselycoupledlabs.com/2014/08/monitoring-rabbitmq/'>Monitoring RabbitMQ</a></li><li><a href='https://looselycoupledlabs.com/2014/08/scaling-out-subscribers-with-masstransit/'>Scaling Out Subscribers With MassTransit</a></li><li><a href='https://looselycoupledlabs.com/2014/07/error-handling-in-masstransit-consumers/'>Error Handling in MassTransit Consumers</a></li><li><a href='https://looselycoupledlabs.com/2014/07/a-real-world-masstransit-customer-portal-example/'>A Real-World MassTransit Customer Portal Example</a></li><li><a href='https://looselycoupledlabs.com/2014/07/creating-a-rabbitmq-cluster-for-use-with-masstransit/'>Creating a RabbitMQ Cluster for Use with MassTransit</a></li></ul>
<h2 class='channel-title'># <a href='http://lunarfrog.com/' target='_blank'>http://lunarfrog.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/QpU_jgbAtZQ/cross-platform-desktop-applications-avalonia'>Cross-platform desktop applications with Avalonia and .NET Core</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/XZj_nXKBG00/windows-compatibility-pack-net-core'>Windows Compatibility Pack for .NET Core</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/N2XtFUfs1io/devops-desktop-software-development'>Is there a place for DevOps in desktop software development?</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/6p7U7ZnLnDA/upcoming-presentations-netstandard20-netcore20'>Upcoming presentations on .NET Standard 2.0 and .NET Core 2.0</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/NS37xkqtYMs/main-is-allowed-to-be-async'>Main is allowed to be async!</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/wIqst-KQsAQ/editorconfig-visualstudio2017'>EditorConfig support in Visual Studio 2017</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/nFDW1U80EXQ/net-open-source-csvhelper'>Exploring .NET Open Source ecosystem: Working with CSV files with CSVHelper</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/YGLqpdraOvA/net-open-source-excel-closedxml'>Exploring .NET Open Source ecosystem: working with Excel files with ClosedXML</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/jyI1WhXfOoM/net-open-source-database-scema-versioning-fluentmigrator'>Exploring .NET Open Source ecosystem: handling database schema versioning with FluentMigrator</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/wC3FtdFn9FI/configuring-teamcity-docker-linux-dotnetcore-builds'>Configuring TeamCity to run in Docker on Linux and build .NET Core projects</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/YDU7IE9wrVg/fixing-liblog-for-ilmerge'>Fixing LibLog for using with ILMerge</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/RMJGJMkhM4w/introducing-dropcraft-nuget'>Introducing Dropcraft, a NuGet-based app deployment and composition framework</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/tFfqURAKohs/how-to-use-msbuild15-net-framework'>How to use new features of MSBuild 15 with .NET Framework projects</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/6d3b26qS2-s/using-nuget-libraries-in-your-projects-part-2'>Using the NuGet v3 libraries in your projects, part 2</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/rMOyCiicT3Y/using-nuget-libraries-in-your-projects'>Using the NuGet v3 libraries in your projects</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/N0wLOWl-9CI/improve-pattern-matching-deconstruction-csharp'>How to improve pattern matching and deconstruction in C#</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/F1qq9Vq_PkI/csharp7-pattern-matching'>C# 7.0 bits: pattern matching</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/o6SDcSsBCrg/csharp7-out-variables'>C# 7.0 bits: out variables</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/_x1oNu-KCqI/using-net-core-for-aws-lambda-deployment'>First impressions from using .NET Core for AWS Lambdas and deployment tips</a></li><li><a href='http://feedproxy.google.com/~r/AndreiMarukovich/~3/31dnBZRNE8M/xamarin-experience-event'>Xamarin experience event</a></li></ul>
<h2 class='channel-title'># <a href='https://www.nativoplus.studio/blog/' target='_blank'>https://www.nativoplus.studio/blog/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.nativoplus.studio/blog/redux-on-blazor/'>Redux on Blazor</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-security/'>Blazor Security</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-forms-and-validation/'>Blazor Forms and Validation</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-host-and-deploy/'>Blazor Host and Deploy</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-dependency-injection/'>Blazor Dependency Injection</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-and-javascript/'>Blazor and JavaScript</a></li><li><a href='https://www.nativoplus.studio/blog/machine-learning-basics/'>Machine Learning Basics</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-lifecycle-methods/'>Blazor: Lifecycle Methods</a></li><li><a href='https://www.nativoplus.studio/blog/dependency-injection-in-blazor/'>Dependency Injection In Blazor</a></li><li><a href='https://www.nativoplus.studio/blog/blazor-framework-series/'>Blazor Framework Series</a></li></ul>
<h2 class='channel-title'># <a href='https://cloudblogs.microsoft.com/sqlserver' target='_blank'>https://cloudblogs.microsoft.com/sqlserver</a></h2>
<ul class='feed-items'>
<li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/07/19/recent-updates-for-data-tier-application-framework-and-sqlpackage/'>Recent updates for Data-Tier Application Framework and SqlPackage</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/07/14/know-your-options-for-sql-server-2012-and-windows-server-2012-end-of-support/'>Know your options for SQL Server 2012 and Windows Server 2012 End of Support</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/07/08/whats-new-with-sql-server-big-data-clusters-cu11-release/'>What’s new with SQL Server Big Data Clusters—CU11 Release</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/06/30/looking-to-the-future-for-r-in-azure-sql-and-sql-server/'>Looking to the future for R in Azure SQL and SQL Server</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/05/20/microsoft-sql-server-linux-based-container-images-to-be-available-only-from-the-microsoft-container-registry/'>Microsoft SQL Server Linux-based container images to be available only from the Microsoft Container Registry</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/05/10/accelerate-sql-server-to-azure-migration-with-pure-cloud-block-store/'>Accelerate SQL Server to Azure migration with Pure Cloud Block Store</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/04/12/azure-sql-digital-event-innovate-today-with-azure-sql/'>Azure SQL digital event: Innovate today with Azure SQL</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/04/07/whats-new-with-sql-server-big-data-clusters-cu10-release/'>What’s new with SQL Server Big Data Clusters—CU10 release</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/02/22/the-february-2021-release-of-azure-data-studio-is-now-available/'>The February 2021 release of Azure Data Studio is now available</a></li><li><a href='https://cloudblogs.microsoft.com/sqlserver/2021/02/16/whats-new-with-sql-server-big-data-clusters/'>What’s new with SQL Server Big Data Clusters</a></li></ul>
<h2 class='channel-title'># <a href='https://infoq.com' target='_blank'>https://infoq.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.infoq.com/podcasts/ai-ml-data-engineering-trends-2021/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Podcast: AI, ML and Data Engineering InfoQ Trends Report - August 2021</a></li><li><a href='https://www.infoq.com/articles/ai-ml-data-engineering-trends-2021/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Article: AI, ML and Data Engineering InfoQ Trends Report - August 2021</a></li><li><a href='https://www.infoq.com/news/2021/08/net6-Threading/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>.NET 6: Threading Improvements</a></li><li><a href='https://www.infoq.com/news/2021/08/java-news-roundup-aug02-2021/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Java News Roundup: JDK 17 Initial RC, OpenJDK, Updates to Open Liberty, Hibernate ORM, Spring Cloud</a></li><li><a href='https://www.infoq.com/news/2021/08/linkerd-rust-cloud-native/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Linkerd Showcases Rust in Cloud-Native Infrastructure</a></li><li><a href='https://www.infoq.com/news/2021/08/jetpack-compose-1-0/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Google Jetpack Compose Goes 1.0, JetBrains Launches Compose Multiplatform Alpha</a></li><li><a href='https://www.infoq.com/news/2021/08/opensearch-elastic-amazon/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>ElasticSearch Fork OpenSearch is Generally Available</a></li><li><a href='https://www.infoq.com/articles/human-debt/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Article: How to Recognise and Reduce HumanDebt</a></li><li><a href='https://www.infoq.com/podcasts/developer-effectiveness/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Podcast: Thoughtworks’ Tim Cochran on Developer Effectiveness</a></li><li><a href='https://www.infoq.com/presentations/security-infrastructure-sentinel/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Presentation: Security and the Language of Intent</a></li><li><a href='https://www.infoq.com/news/2021/08/qcon-plus-software-trends/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Explore the Software Engineering Trends That Matter in 2021 at QCon Plus in November</a></li><li><a href='https://www.infoq.com/articles/java-16-new-features/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Article: What's New in Java 16</a></li><li><a href='https://www.infoq.com/news/2021/08/DotNet-Rate-Limiting/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Introducing System.Threading.RateLimiting for .NET</a></li><li><a href='https://www.infoq.com/news/2021/08/aws-ec2-classic-retirement/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>After 15 Years AWS Retires EC2-Classic</a></li><li><a href='https://www.infoq.com/news/2021/08/ml-tokyo-2020-olympics/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global'>Machine Learning Technologies at Tokyo 2020 Olympics</a></li></ul>
<h2 class='channel-title'># <a href='https://devblogs.microsoft.com/dotnet/' target='_blank'>https://devblogs.microsoft.com/dotnet/</a></h2>
<ul class='feed-items'>
<li><a href='https://devblogs.microsoft.com/dotnet/net-framework-july-2021-cumulative-update-preview/'>.NET Framework July 2021 Cumulative Update Preview</a></li><li><a href='https://devblogs.microsoft.com/dotnet/conversation-about-the-net-open-source-project/'>Conversation about the .NET open source project</a></li><li><a href='https://devblogs.microsoft.com/dotnet/tune-in-july-29-for-net-conf-focus-on-f/'>Tune in July 29 for .NET Conf: Focus on F#</a></li><li><a href='https://devblogs.microsoft.com/dotnet/try-the-new-system-text-json-source-generator/'>Try the new System.Text.Json source generator</a></li><li><a href='https://devblogs.microsoft.com/dotnet/conversation-about-skills-and-learning/'>Conversation about skills and learning</a></li><li><a href='https://devblogs.microsoft.com/dotnet/net-framework-july-2021-security-and-quality-rollup/'>.NET Framework July 2021 Security and Quality Rollup</a></li><li><a href='https://devblogs.microsoft.com/dotnet/announcing-entity-framework-core-6-0-preview-6-configure-conventions/'>Announcing Entity Framework Core 6.0 Preview 6: Configure Conventions</a></li><li><a href='https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-6/'>Announcing .NET 6 Preview 6</a></li><li><a href='https://devblogs.microsoft.com/dotnet/announcing-net-maui-preview-6/'>Announcing .NET MAUI Preview 6</a></li><li><a href='https://devblogs.microsoft.com/dotnet/net-july-2021/'>.NET July 2021 Updates – 5.0.8 and 3.1.17</a></li></ul>
<h2 class='channel-title'># <a href='http://dzone.com' target='_blank'>http://dzone.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dzone.com/articles/how-to-fine-tune-bert-transformer-with-spacy-3'>How to Fine-Tune BERT Transformer With spaCy v3.0</a></li><li><a href='https://dzone.com/articles/move-fast-break-things-amp-win-how-facebook-builds'>Move Fast, Break Things & Win: How Facebook Builds Software</a></li><li><a href='https://dzone.com/articles/java-treemap-ascending-and-descending-order-sample'>Java TreeMap - Ascending and Descending Order Sample Programs | TreeMap in Java</a></li><li><a href='https://dzone.com/articles/why-i-created-a-password-generator-cli-tool'>gPass: A Password Generator CLI</a></li><li><a href='https://dzone.com/articles/serverless-kafka-in-a-cloud-native-data-lake-archi'>Serverless Kafka in a Cloud-Native Data Lake Architecture</a></li><li><a href='https://dzone.com/articles/microservices-vs-monolith-the-ultimate-comparison'>Microservices vs Monolith: The Ultimate Comparison 2021</a></li><li><a href='https://dzone.com/articles/how-typescript-enums-work'>How Typescript Enums Work</a></li><li><a href='https://dzone.com/articles/can-ai-eliminate-coupon-frauds'>How AI Can Eliminate Coupon Frauds</a></li><li><a href='https://dzone.com/articles/5-optimistic-ways-how-artificial-intelligence-is-r'>5 Optimistic Ways That Artificial Intelligence Is Revolutionizing Mental Healthcare</a></li><li><a href='https://dzone.com/articles/how-to-test-for-your-softwares-scalability'>How To Test for Your Software’s Scalability</a></li><li><a href='https://dzone.com/articles/rusts-vector'>Rust's Vector</a></li><li><a href='https://dzone.com/articles/skipping-retrospectives'>Skipping Retrospectives?</a></li><li><a href='https://dzone.com/articles/why-you-should-join-eclipsecon-2021-community-day'>Why You Should Join EclipseCon 2021 Community Day</a></li><li><a href='https://dzone.com/articles/apache-kafka-in-the-insurance-industry'>Apache Kafka in the Insurance Industry</a></li><li><a href='https://dzone.com/articles/prevent-supply-chain-attacks-by-securing-devops'>How to Prevent Supply Chain Attacks by Securing DevOps</a></li><li><a href='https://dzone.com/articles/are-your-projects-failing-unnecessarily'>Are Your Projects Failing Unnecessarily?</a></li><li><a href='https://dzone.com/articles/reading-text-from-image-azure-cognitive-services'>Getting Started With Reading Text From an Image Using Azure Cognitive Services</a></li><li><a href='https://dzone.com/articles/how-we-attracted-40-million-users-online-auto-market'>How We Attracted 40 Million Users to the Online Automotive Marketplace</a></li><li><a href='https://dzone.com/articles/extract-text-from-sales-receipt-using-pre-built-model'>Extract Text From Sales Receipt Using Pre-Built Model: Azure Form Recognizer</a></li><li><a href='https://dzone.com/articles/diceroller-a-sample-rust-project'>diceroller, A Sample Rust Project</a></li></ul>
<h2 class='channel-title'># <a href='https://visualstudiomagazine.com' target='_blank'>https://visualstudiomagazine.com</a></h2>
<ul class='feed-items'>
<li><a href='https://visualstudiomagazine.com/articles/2021/08/09/vs-code-python-aug21.aspx'>VS Code Python Tool Revamps Jupyter Notebooks Experience</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/08/06/vs-code-1-59.aspx'>VS Code 1.59: Jupyter Notebooks Go (Partly) Native, Live Preview Improved</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/08/05/wct-7-1-preview.aspx'>Windows Community Toolkit 7.1: MVVM Source Generators, Identity Authentication, ML APIs</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/08/04/community-toolkit.aspx'>Microsoft Plans .NET Community Toolkit</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/08/03/so-survey-2021.aspx'>Stack Overflow: Old .NET Framework Usage Still Beats 'Most Loved' .NET Core/.NET 5</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/08/02/vs-code-js-debugger.aspx'>JavaScript Debugging Now Built-In to VS Code</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/29/fsf-github-copilot.aspx'>FSF Calls for Papers on 'Unacceptable and Unjust' GitHub Copilot</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/29/cpp-hot-reload.aspx'>Hot Reload Now Works with C++ Apps, with Blazor WebAssembly Support On Tap</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/28/efcore6-preview6.aspx'>EF Core 6 Dev Team Plays Catch-Up with EF6</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/27/net-maui-kits.aspx'>Microsoft Replaces Xamarin Toolkits with New .NET MAUI Alternatives</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/16/jetbrains-survey.aspx'>TypeScript Outshines C# in Developer Ecosystem Report</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/15/net-maui-updates.aspx'>.NET MAUI Preview 6: SDK Workload Installation, Gestures, Clipping, Alerts, More</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/15/aspnet-core-preview-6.aspx'>What's New for Blazor/ASP.NET Core in .NET 6 Preview 6</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/14/vs-2022-preview-2.aspx'>Visual Studio 2022 Preview 2: Better Live Preview, Hot Reload</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/14/net-6-preview-6.aspx'>.NET 6 Preview 6: 'Last Chance to Influence the Release'</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/14/inspire-dev-news.aspx'>New Azure Kubernetes and Event Grid Integrations Unveiled at Microsoft Inspire</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/13/typescript-4-4-beta.aspx'>TypeScript 4.4 Beta Boosts Performance, Suggests JavaScript Spelling</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/13/vs-android-game-tool.aspx'>Google Releases Visual Studio Tool for Android Game Development</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/12/last-xamarin-podcast.aspx'>New .NET MAUI Workload Installation Detailed in 'Final Xamarin Podcast'</a></li><li><a href='https://visualstudiomagazine.com/articles/2021/07/09/vscode-java-june21.aspx'>Java on VS Code Plans: Improve Inner Loop, Security, Remote Development & More</a></li></ul>
<h2 class='channel-title'># <a href='https://codeblog.jonskeet.uk' target='_blank'>https://codeblog.jonskeet.uk</a></h2>
<ul class='feed-items'>
<li><a href='https://codeblog.jonskeet.uk/2021/07/14/book-updates-for-july-2021/'>Book updates for July 2021</a></li><li><a href='https://codeblog.jonskeet.uk/2021/06/11/new-book-software-mistakes-and-tradeoffs/'>New book: Software Mistakes and Tradeoffs</a></li><li><a href='https://codeblog.jonskeet.uk/2021/03/28/playing-with-an-x-touch-mini-controller-using-c/'>Playing with an X-Touch Mini controller using C#</a></li><li><a href='https://codeblog.jonskeet.uk/2021/01/27/osc-mixer-control-in-c/'>OSC mixer control in C#</a></li><li><a href='https://codeblog.jonskeet.uk/2020/12/04/visca-camera-control-in-c/'>VISCA camera control in C#</a></li><li><a href='https://codeblog.jonskeet.uk/2020/10/23/a-tour-of-the-net-functions-framework/'>A Tour of the .NET Functions Framework</a></li><li><a href='https://codeblog.jonskeet.uk/2020/08/29/1793/'>Posting to wordpress.com in code</a></li><li><a href='https://codeblog.jonskeet.uk/2020/07/19/travis-logs-and-net-core-console-output/'>Travis logs and .NET Core console output</a></li><li><a href='https://codeblog.jonskeet.uk/2020/07/12/v-drum-explorer-blazor-and-the-web-midi-api/'>V-Drum Explorer: Blazor and the Web MIDI API</a></li><li><a href='https://codeblog.jonskeet.uk/2020/03/03/v-drum-explorer-planning-notes-for-mvvm/'>V-Drum Explorer: Planning notes for MVVM</a></li></ul>
<h2 class='channel-title'># <a href='https://gunnarpeipman.com' target='_blank'>https://gunnarpeipman.com</a></h2>
<ul class='feed-items'>
<li><a href='https://gunnarpeipman.com/aspnet-core-adding-claims-to-existing-identity/'>Adding claims to existing identity</a></li><li><a href='https://gunnarpeipman.com/aspnet-core-5-rc-azure-app-service/'>Running ASP.NET Core 5 RC applications on Azure App Service</a></li><li><a href='https://gunnarpeipman.com/azure-b-series-virtual-machines/'>Hosting applications on Azure B-series virtual machines</a></li><li><a href='https://gunnarpeipman.com/surface-go-2-software-development/'>Developing software on Surface Go 2</a></li><li><a href='https://gunnarpeipman.com/access-restricted-blob-storage-from-azure-cdn/'>Accessing restricted blob storage from virtual networks and Azure CDN</a></li><li><a href='https://gunnarpeipman.com/csharp-top-level-programs/'>Top-level programs in C# 9.0</a></li><li><a href='https://gunnarpeipman.com/nhibernate-linq-tosql/'>Translating NHibernate LINQ query to SQL</a></li><li><a href='https://gunnarpeipman.com/aspnet-core-nhibernate-log-sql/'>How to log NHibernate SQL to ASP.NET Core loggers</a></li><li><a href='https://gunnarpeipman.com/aspnet-mvc-structuremap-dependency-injection/'>Using Structuremap in legacy ASP.NET MVC applications</a></li><li><a href='https://gunnarpeipman.com/aspnet-core-visual-studio-codespaces/'>Building ASP.NET Core applications on Visual Studio Codespaces and Visual Studio Code</a></li><li><a href='https://gunnarpeipman.com/surface-go-2/'>Surface Go 2 review</a></li><li><a href='https://gunnarpeipman.com/failed-to-register-url-for-site/'>IIS Express error: Failed to register URL for site. The process cannot access the file because it is being used by another process.</a></li><li><a href='https://gunnarpeipman.com/aspnet-core-notepad-logger/'>Logging to Notepad window from ASP.NET Core</a></li><li><a href='https://gunnarpeipman.com/azure-static-web-app/'>Introducing Azure Static Web App service</a></li><li><a href='https://gunnarpeipman.com/dotnet-maui-announced/'>Xamarin Forms turns to .NET MAUI – single project and code-base dev experience</a></li><li><a href='https://gunnarpeipman.com/wordpress-azure-front-door/'>Hosting WordPress behind Azure Front Door</a></li><li><a href='https://gunnarpeipman.com/aspnet-core-dapper/'>Using Dapper in ASP.NET Core applications</a></li><li><a href='https://gunnarpeipman.com/nhibernate-future-results/'>Optimize database traffic with future results in NHibernate</a></li><li><a href='https://gunnarpeipman.com/aspnet-core-enum-to-select-list/'>Displaying enum as select list in ASP.NET Core</a></li><li><a href='https://gunnarpeipman.com/ef-core-toquerystring/'>EF Core 5.0: Using ToQueryString() method to translate LINQ query to SQL</a></li></ul>
<h2 class='channel-title'># <a href='https://www.cafe-encounter.net' target='_blank'>https://www.cafe-encounter.net</a></h2>
<ul class='feed-items'>
<li><a href='https://www.cafe-encounter.net/p3396/time-machine-backup-to-a-windows-share-do-it-more-reliably'>Time Machine Backup to a Windows Share — Do it More Reliably</a></li><li><a href='https://www.cafe-encounter.net/p3385/thoughts-on-risk-assessments-in-2021-proportionate-exponential-anecdotal-workplace'>Thoughts on Workplace Risk Assessments in 2021 – Proportionate vs Exponential Risk and Anecdotal vs Statistical Assessment</a></li><li><a href='https://www.cafe-encounter.net/p3381/the-smallest-agile-methodology-that-could-possibly-work'>The Smallest Agile Methodology That Could Possibly Work</a></li><li><a href='https://www.cafe-encounter.net/p3369/youre-only-as-good-as-your-last-backup'>You’re Only As Good As Your Last Backup</a></li><li><a href='https://www.cafe-encounter.net/p3358/philosophy-if-you-think-the-answer-is-obvious'>https://www.cafe-encounter.net/p3358/philosophy-if-you-think-the-answer-is-obvious</a></li><li><a href='https://www.cafe-encounter.net/p178/aspnet-macos-mono-visual-studio-jetbrains-rider'>.Net and Asp.Net on MacOs & Mono instead of Windows (using Visual Studio or JetBrains Rider)</a></li><li><a href='https://www.cafe-encounter.net/p3314/the-isomorphism-is-not-the-terrain'>The Isomorphism is not the Terrain</a></li><li><a href='https://www.cafe-encounter.net/p3312/the-many-worlds-interpretation-of-quantum-mechanics'>The Many Worlds Interpretation of Quantum Mechanics</a></li><li><a href='https://www.cafe-encounter.net/p3306/a-supernaturalist-and-a-physicalist-swap-accounts-of-the-universe'>A Supernaturalist and a Physicalist Swap Accounts of the Universe</a></li><li><a href='https://www.cafe-encounter.net/p3300/pretending-that-sqlite-has-stored-procedures-and-functions'>Pretending that SQLite has Stored Procedures and Functions</a></li></ul>
<h2 class='channel-title'># <a href='https://www.mssqltips.com/' target='_blank'>https://www.mssqltips.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/7yHVsCkXG0A/'>SQL Server Filtered Index Example</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/kBOr0Hgnx8Q/'>Exploring Snowflake Tasks</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/2viAOpkaFZg/'>Executing a TSQL batch multiple times using GO</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/y46qP-NQH7Q/'>SQL Server File Snapshot Backups</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/THOZxrUWBAM/'>Renaming SQL Server database objects and changing object owners</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/k6ho-uJ8GsA/'>SQL UPDATE from SELECT, JOIN or MERGE</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/JyFO0qL1Ryc/'>Add or drop identity property for an existing SQL Server column</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/F73Tfxm0_74/'>Azure Data Factory Incremental Pipeline from Azure SQL Database to Databricks</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/-u2C598OTqU/'>Finding problematic SQL NOLOCK patterns for UPDATE and DELETE - Part 2</a></li><li><a href='http://feedproxy.google.com/~r/MSSQLTips-LatestSqlServerTips/~3/VXaiQbv0I_A/'>Issues with SQL Server Permissions to Restore a Database</a></li></ul>
<h2 class='channel-title'># <a href='https://blogs.msmvps.com/bsonnino' target='_blank'>https://blogs.msmvps.com/bsonnino</a></h2>
<ul class='feed-items'>
<li><a href='https://blogs.msmvps.com/bsonnino/2021/07/17/transforming-your-asp-net-core-mvc-app-into-a-pwa/'>Transforming your Asp.Net Core MVC app into a PWA</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/06/26/managing-installed-apps-in-windows-with-winget/'>Managing installed apps in Windows with Winget</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/06/05/lightweight-web-api-int-asp-net-with-featherhttp/'>Lightweight web api in Asp.NET with FeatherHttp</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/05/15/criando-arquivos-openxml-com-delphi/'>Criando arquivos OpenXML com Delphi</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/05/15/creating-openxml-files-with-delphi/'>Creating OpenXml files with Delphi</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/04/25/using-the-win32-api-in-a-c-program-with-c-win32/'>Using the Win32 Api in a C# program with C#/Win32</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/04/05/httprepl-and-openapi-features-for-asp-net-webapi/'>HTTPRepl and OpenApi features for Asp.NET WebApi</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/03/20/using-the-webview2-in-a-delphi-app/'>Using the WebView2 in a Delphi app</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/02/27/using-the-new-webview2-in-a-wpf-app/'>Using the new WebView2 in a WPF app</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/02/13/implementing-the-mvvm-pattern-in-a-wpf-app-with-the-mvvm-community-toolkit/'>Implementing the MVVM pattern in a WPF app with the MVVM Community toolkit</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/01/24/creating-a-fitbit-clock-face-with-vscode-and-typescript/'>Creating a Fitbit clock face with VSCode and TypeScript</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2021/01/08/converting-xml-data-to-json/'>Converting XML data to JSON</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/12/23/modernizing-your-net-app-with-winui3/'>Modernizing your .NET app with WinUI3</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/10/24/modernizing-your-net-app-with-xaml-islands/'>Modernizing your .NET app with Xaml Islands</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/10/17/mocking-non-virtual-methods-of-a-class-with-microsoft-fakes/'>Mocking non-virtual methods of a class with Microsoft Fakes</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/10/04/mocking-non-virtual-methods-of-a-class/'>Mocking non-virtual methods of a class</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/09/26/discover-what-is-consuming-your-disk-with-ntfs-structures/'>Discover what is consuming your disk with NTFS structures</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/04/25/missed-features-in-windows-10-task-view-and-multiple-desktops/'>Missed features in Windows 10 – Task View and Multiple Desktops</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/04/12/parsing-the-command-line-for-your-application-with-system-commandline/'>Parsing the command line for your application with System.CommandLine</a></li><li><a href='https://blogs.msmvps.com/bsonnino/2020/03/22/learning-and-documenting-net-with-dotnet-try/'>Learning and documenting .NET with dotnet try</a></li></ul>
<h2 class='channel-title'># <a href='http://seesharpdeveloper.blogspot.com' target='_blank'>http://seesharpdeveloper.blogspot.com</a></h2>
<ul class='feed-items'>
<li><a href='http://seesharpdeveloper.blogspot.com/feeds/3537965042155587370/comments/default'>Calling C# Methods from SQL Server</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/6768195137533494238/comments/default'>C# CSV Library and HTTP Handlers</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/6719140284943725648/comments/default'>Practice Test Driven Development with C# Exercises on Exercism.io</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/9197330304352477582/comments/default'>Conway's Game of Life: An Exercise in WPF, MVVM and C#</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/537109542777226348/comments/default'>Using Gacutil on a Non-Development Server</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/2398901491138311956/comments/default'>Implicit vs. Explicit Interface Implementation</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/843826236304288564/comments/default'>Microsoft Exam 70-483: Programming in C#</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/2086996876337640413/comments/default'>C# How To: Using Implicitly Typed Arrays</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/7075505869679171245/comments/default'>C# How To: CSV to List or List to CSV</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/3269191155244317530/comments/default'>C# How To: Convert to Convert String to Int</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/4827905882255985265/comments/default'>C# How To: Start a Program/Process</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/9038103809475221967/comments/default'>C# How To: Create Text File And Write To It</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/4758177771693499602/comments/default'>C# How To: Read a Text File</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/8151856534063528626/comments/default'>DotNetZip - Zip Compression and Decompression .NET 4 and Earlier</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/3088757026792643834/comments/default'>Short-circuit Boolean Evaluation</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/1710198760372760111/comments/default'>Encouragement from Visual Studio</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/7396137936200361395/comments/default'>CsQuery - JQuery for .NET</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/7722111853110212992/comments/default'>C# Static Code Analysis with NDepend</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/3311758790705538072/comments/default'>Empty Collections</a></li><li><a href='http://seesharpdeveloper.blogspot.com/feeds/567363418145341602/comments/default'>Compiling ASP.NET MVC Views</a></li></ul>
<h2 class='channel-title'># <a href='https://ericlippert.com' target='_blank'>https://ericlippert.com</a></h2>
<ul class='feed-items'>
<li><a href='https://ericlippert.com/2021/02/17/life-part-38/'>Life, part 38</a></li><li><a href='https://ericlippert.com/2021/02/09/hey-now-youre-an-all-star/'>Hey now, you’re an all-star</a></li><li><a href='https://ericlippert.com/2020/12/15/backyard-birds-of-seattle/'>Backyard birds of Seattle</a></li><li><a href='https://ericlippert.com/2020/10/29/the-vsto-startup-sequence/'>The VSTO startup sequence</a></li><li><a href='https://ericlippert.com/2020/10/12/life-part-37/'>Life, part 37</a></li><li><a href='https://ericlippert.com/2020/10/06/life-part-36/'>Life, part 36</a></li><li><a href='https://ericlippert.com/2020/09/23/introducing-bean-machine/'>Introducing Bean Machine</a></li><li><a href='https://ericlippert.com/2020/09/14/life-part-35/'>Life, part 35</a></li><li><a href='https://ericlippert.com/2020/09/10/life-part-34/'>Life, part 34</a></li><li><a href='https://ericlippert.com/2020/09/08/installing-windows/'>Installing windows</a></li></ul>
<h2 class='channel-title'># <a href='https://csharp.christiannagel.com' target='_blank'>https://csharp.christiannagel.com</a></h2>
<ul class='feed-items'>
<li><a href='https://csharp.christiannagel.com/2020/09/02/csharp8updates/'>C# 8 Updates</a></li><li><a href='https://csharp.christiannagel.com/2020/07/07/aspnetcoreroles/'>Local Users with ASP.NET Core – ASP.NET Core Identity</a></li><li><a href='https://csharp.christiannagel.com/2020/06/30/helloworld9/'>How Hello World! changed – top level statements and functions (C# 9)</a></li><li><a href='https://csharp.christiannagel.com/2020/06/23/configurationwithhost/'>It’s all in the Host Class – Part 2: Configuration</a></li><li><a href='https://csharp.christiannagel.com/2020/05/21/build2020/'>Microsoft Build 2020 – Highlights</a></li><li><a href='https://csharp.christiannagel.com/2020/05/19/azureappconfiguration/'>Azure App Configuration: Configuration of .NET Applications</a></li><li><a href='https://csharp.christiannagel.com/2020/05/15/dependencyinjection-2/'>It’s all in the Host Class – Dependency Injection with .NET</a></li><li><a href='https://csharp.christiannagel.com/2020/05/11/tye/'>Project Tye – easier development with .NET for Kubernetes</a></li><li><a href='https://csharp.christiannagel.com/2020/04/21/c-9-positional-or-nominal-creation/'>C# 9 – Positional or Nominal Creation</a></li><li><a href='https://csharp.christiannagel.com/2019/10/15/windowsservice/'>Creating a Windows Service with .NET Core 3.0</a></li></ul>
<h2 class='channel-title'># <a href='https://weblogs.asp.net/jongalloway' target='_blank'>https://weblogs.asp.net/jongalloway</a></h2>
<ul class='feed-items'>
<li><a href='https://weblogs.asp.net/jongalloway/a-new-year-s-resolution-that-actually-worked-2-years-of-daily-exercise'>A New Year's Resolution That Actually Worked: 2 Years of Daily Exercise</a></li><li><a href='https://weblogs.asp.net/jongalloway/how-to-talk-yourself-out-of-your-new-year-s-blogging-resolution-one-day-at-a-time'>How to Talk Yourself out of your New Year’s Blogging Resolution… One Day At A Time</a></li><li><a href='https://weblogs.asp.net/jongalloway/two-free-video-courses-intro-to-asp-net-mvc-and-responsive-ui-with-bootstrap'>Two free video courses: Intro to ASP.NET MVC and Responsive UI with Bootstrap</a></li><li><a href='https://weblogs.asp.net/jongalloway/web-camp-in-los-angeles-with-scott-hunter-july-9'>Web Camp in Los Angeles with Scott Hunter - July 9</a></li><li><a href='https://weblogs.asp.net/jongalloway/scripting-net-project-migration-to-automatic-nuget-package-restore'>Scripting .NET project migration to Automatic NuGet Package Restore</a></li><li><a href='https://weblogs.asp.net/jongalloway/mva-introduction-to-asp-net-mvc-free-live-training-june-23'>MVA: Introduction to ASP.NET MVC - Free Live Training - June 23</a></li><li><a href='https://weblogs.asp.net/jongalloway/new-book-pro-windows-8-1-development-with-xaml-and-c'>New Book: Pro Windows 8.1 Development with XAML and C#</a></li><li><a href='https://weblogs.asp.net/jongalloway/weblogs-asp-net-now-running-on-orchard-and-azure-web-sites'>weblogs.asp.net Now Running On Orchard and Azure Web Sites</a></li><li><a href='https://weblogs.asp.net/jongalloway/a-30-minute-look-at-asp-net-vnext'>A 30 Minute Look At ASP.NET vNext</a></li><li><a href='https://weblogs.asp.net/jongalloway/upcoming-web-camps-summer-2014'>Upcoming Web Camps - Summer 2014</a></li><li><a href='https://weblogs.asp.net/jongalloway/lessons-learned-preparing-and-presenting-tech-training-events'>Lessons Learned Preparing and Presenting Tech Training Events</a></li><li><a href='https://weblogs.asp.net/jongalloway/catching-up-on-the-channel-9-event-videos-for-build-2014'>5 Tricks for catching up on the Channel 9 event videos for Build 2014</a></li><li><a href='https://weblogs.asp.net/jongalloway/looking-at-asp-net-mvc-5-1-and-web-api-2-1-part-4-web-api-help-pages-bson-and-global-error-handling'>Looking at ASP.NET MVC 5.1 and Web API 2.1 - Part 4 - Web API Help Pages, BSON, and Global Error Handling</a></li><li><a href='https://weblogs.asp.net/jongalloway/looking-at-asp-net-mvc-5-1-and-web-api-2-1-part-3-bootstrap-and-javascript-enhancements'>Looking at ASP.NET MVC 5.1 and Web API 2.1 - Part 3 - Bootstrap and JavaScript enhancements</a></li><li><a href='https://weblogs.asp.net/jongalloway/looking-at-asp-net-mvc-5-1-and-web-api-2-1-part-2-attribute-routing-with-custom-constraints'>Looking at ASP.NET MVC 5.1 and Web API 2.1 - Part 2 - Attribute Routing with Custom Constraints</a></li><li><a href='https://weblogs.asp.net/jongalloway/looking-at-asp-net-mvc-5-1-and-web-api-2-1-part-1-overview-and-enums'>Looking at ASP.NET MVC 5.1 and Web API 2.1 - Part 1 - Overview and Enums</a></li><li><a href='https://weblogs.asp.net/jongalloway/asp-net-a-last-look-back-at-2013-looking-ahead-to-2014'>ASP.NET - A last look back at 2013, looking ahead to 2014</a></li><li><a href='https://weblogs.asp.net/jongalloway/two-great-kickstarter-projects-ending-soon-durandal-javascript-framework-and-bitcommander-file-manager'>Two great Kickstarter projects ending soon: Durandal JavaScript framework and bitCommander File Manager</a></li><li><a href='https://weblogs.asp.net/jongalloway/a-quick-look-at-the-new-visual-studio-online-quot-monaco-quot-code-editor'>A look at the new Visual Studio Online "Monaco" code editor</a></li><li><a href='https://weblogs.asp.net/jongalloway/top-things-web-developers-should-know-about-the-visual-studio-2013-release'>Top things web developers should know about the Visual Studio 2013 release</a></li></ul>
<h2 class='channel-title'># <a href='https://martinfowler.com' target='_blank'>https://martinfowler.com</a></h2>
<ul class='feed-items'>
<li><a href='https://martinfowler.com/articles/patterns-legacy-displacement/#AnExampleIntegrationMiddlewareRemoval'>An example: Integration Middleware Removal</a></li><li><a href='https://martinfowler.com/articles/patterns-legacy-displacement/feature-parity.html'>Feature Parity</a></li><li><a href='https://martinfowler.com/articles/patterns-legacy-displacement/extract-product-lines.html'>Extract Product Lines</a></li><li><a href='https://martinfowler.com/articles/patterns-legacy-displacement/'>Patterns of Legacy Displacement</a></li><li><a href='https://martinfowler.com/photos/126.html'>photostream 126</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/follower-reads.html'>Follower Reads</a></li><li><a href='https://martinfowler.com/articles/202106-reducing-speaking.html'>Stepping Back from Speaking</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/version-vector.html'>Version Vector</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/hybrid-clock.html'>Hybrid Clock</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/lamport-clock.html'>Lamport Clock</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/versioned-value.html'>Versioned Value</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/gossip-dissemination.html'>Gossip Dissemination</a></li><li><a href='https://martinfowler.com/articles/2021-test-shapes.html'>On the Diverse And Fantastical Shapes of Testing</a></li><li><a href='https://martinfowler.com/articles/platform-prerequisites.html'>Mind the platform execution gap</a></li><li><a href='https://martinfowler.com/articles/bitemporal-history.html'>Bitemporal History</a></li><li><a href='https://martinfowler.com/bliki/RefinementCodeReview.html'>Bliki: RefinementCodeReview</a></li><li><a href='https://martinfowler.com/bliki/PullRequest.html'>Bliki: PullRequest</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/idempotent-receiver.html'>Distributed Systems Pattern: Idempotent Receiver</a></li><li><a href='https://martinfowler.com/articles/developer-effectiveness.html#OrganizationalEffectiveness'>Maximizing Developer Effectiveness: Organizational Effectiveness</a></li><li><a href='https://martinfowler.com/articles/patterns-of-distributed-systems/state-watch.html'>Distributed Systems Pattern: State Watch</a></li></ul>
<h2 class='channel-title'># <a href='https://herbertograca.com' target='_blank'>https://herbertograca.com</a></h2>
<ul class='feed-items'>
<li><a href='https://herbertograca.com/2020/07/21/views-templates/'>Views / Templates</a></li><li><a href='https://herbertograca.com/2020/07/07/value-objects/'>Value Objects</a></li><li><a href='https://herbertograca.com/2020/06/23/dto-data-transfer-objects/'>DTO – Data Transfer Objects</a></li><li><a href='https://herbertograca.com/2019/08/12/documenting-software-architecture/'>Documenting Software Architecture</a></li><li><a href='https://herbertograca.com/2019/06/05/reflecting-architecture-and-domain-in-code/'>Reflecting architecture and domain in code</a></li><li><a href='https://herbertograca.com/2019/04/29/16-no-silver-bullet/'>16. No silver bullet</a></li><li><a href='https://herbertograca.com/2019/04/15/15-the-other-face/'>15. The other face</a></li><li><a href='https://herbertograca.com/2019/04/01/14-hatching-a-catastrophe/'>14. Hatching a catastrophe</a></li><li><a href='https://herbertograca.com/2019/03/18/13-the-whole-and-the-parts/'>13. The whole and the parts</a></li><li><a href='https://herbertograca.com/2019/03/04/12-sharp-tools/'>12. Sharp tools</a></li></ul>
<h2 class='channel-title'># <a href='https://8thlight.com' target='_blank'>https://8thlight.com</a></h2>
<ul class='feed-items'>
<li><a href='https://8thlight.com/blog/jerome-goodrich/thomas-countz/2021/08/05/collaborative-craft-design-for-safety.html'>Podcast: Tech's Pre-seatbelt Phase, with Eva PenzeyMoog</a></li><li><a href='https://8thlight.com/blog/jerome-goodrich/thomas-countz/2021/07/23/collaborative-craft-jon-wettersten-design.html'>Podcast: How Design Works with Jon Wettersten</a></li><li><a href='https://8thlight.com/blog/jerome-goodrich/thomas-countz/2021/07/06/collaborative-craft-podcast.html'>Introducing Collaborative Craft, a new podcast by 8th Light</a></li><li><a href='https://8thlight.com/blog/justyna-jurkowska/2021/06/16/life-after-moment.html'>Life after Moment.js</a></li><li><a href='https://8thlight.com/blog/joe-tanner/2021/05/25/interview-best-practices.html'>Six Tips For A Successful Job Interview</a></li><li><a href='https://8thlight.com/blog/damon-kelley/2021/05/18/a-color-coded-guide-to-ports-and-adapters.html'>A Color Coded Guide to Ports and Adapters</a></li><li><a href='https://8thlight.com/blog/mike-knepper/2021/05/11/minimally-privileged-terraform.html'>Minimally Privileged Terraform</a></li><li><a href='https://8thlight.com/blog/colin-jones/2021/05/04/static-site-deploy-previews-on-aws.html'>Static Site Deploy Previews on AWS</a></li><li><a href='https://8thlight.com/blog/paul-pagel/2021/04/29/introducing-board-directors.html'>Introducing 8th Light's Board of Directors for 2021</a></li><li><a href='https://8thlight.com/blog/connor-mendenhall/2021/04/27/continuous-compliance-on-AWS.html'>Continuous compliance on AWS</a></li></ul>
<h2 class='channel-title'># <a href='https://herbertograca.com' target='_blank'>https://herbertograca.com</a></h2>
<ul class='feed-items'>
<li><a href='https://herbertograca.com/2019/08/12/documenting-software-architecture/'>Documenting Software Architecture</a></li><li><a href='https://herbertograca.com/2019/06/05/reflecting-architecture-and-domain-in-code/'>Reflecting architecture and domain in code</a></li><li><a href='https://herbertograca.com/2018/09/03/action-domain-responder/'>Action-Domain-Responder</a></li><li><a href='https://herbertograca.com/2018/08/31/resource-method-representation/'>Resource-Method-Representation</a></li><li><a href='https://herbertograca.com/2018/08/29/model-1-model-2/'>“Model 1” & “Model 2”</a></li><li><a href='https://herbertograca.com/2018/07/07/more-than-concentric-layers/'>More than concentric layers</a></li><li><a href='https://herbertograca.com/2017/11/16/explicit-architecture-01-ddd-hexagonal-onion-clean-cqrs-how-i-put-it-all-together/'>DDD, Hexagonal, Onion, Clean, CQRS, … How I put it all together</a></li><li><a href='https://herbertograca.com/2017/11/09/service-oriented-architecture-soa/'>Service Oriented Architecture (SOA)</a></li><li><a href='https://herbertograca.com/2017/10/19/from-cqs-to-cqrs/'>From CQS to CQRS</a></li><li><a href='https://herbertograca.com/2017/10/05/event-driven-architecture/'>Event-Driven Architecture</a></li></ul>
<h2 class='channel-title'># <a href='https://devblogs.microsoft.com/aspnet/category/blazor' target='_blank'>https://devblogs.microsoft.com/aspnet/category/blazor</a></h2>
<ul class='feed-items'>
<li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-6/'>ASP.NET Core updates in .NET 6 Preview 6</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-5/'>ASP.NET Core updates in .NET 6 Preview 5</a></li><li><a href='https://devblogs.microsoft.com/aspnet/building-contextual-experiences-w-blazor/'>Building Contextual Experiences w/ Blazor</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-4/'>ASP.NET Core updates in .NET 6 Preview 4</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-3/'>ASP.NET Core updates in .NET 6 Preview 3</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-preview-2/'>ASP.NET Core updates in .NET 6 Preview 2</a></li><li><a href='https://devblogs.microsoft.com/aspnet/announcing-asp-net-core-in-net-5/'>Announcing ASP.NET Core in .NET 5</a></li><li><a href='https://devblogs.microsoft.com/aspnet/unified-ui-mobile-blazor-bindings-preview-5/'>Unified Blazor UI in the Mobile Blazor Bindings Preview 5</a></li><li><a href='https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-5-release-candidate-2/'>ASP.NET Core updates in .NET 5 Release Candidate 2</a></li><li><a href='https://devblogs.microsoft.com/aspnet/azure-static-web-apps-with-blazor/'>Azure Static Web Apps with .NET and Blazor</a></li></ul>
<h2 class='channel-title'># <a href='https://chrissainty.com' target='_blank'>https://chrissainty.com</a></h2>
<ul class='feed-items'>
<li><a href='https://chrissainty.com/blazored-hits-1-000-000-downloads-on-nuget/'>Blazored hits 1,000,000 downloads on NuGet</a></li><li><a href='https://chrissainty.com/talking-blazored-on-the-blazor-community-standup/'>Talking Blazored on the Blazor Community Standup</a></li><li><a href='https://chrissainty.com/blazor-in-action-is-now-available-on-meap/'>Blazor in Action is now available on MEAP</a></li><li><a href='https://chrissainty.com/building-a-simple-tooltip-component-for-blazor-in-under-10-lines-of-code/'>Building a simple tooltip component for Blazor in under 10 lines of code*</a></li><li><a href='https://chrissainty.com/creating-a-custom-validation-message-component-for-blazor-forms/'>Creating a Custom Validation Message Component for Blazor Forms</a></li><li><a href='https://chrissainty.com/avoiding-accesstokennotavailableexception-when-using-blazor-webassembly-hosted-template-with-individual-user-accounts/'>Avoiding AccessTokenNotAvailableException when using the Blazor WebAssembly Hosted template with individual user accounts</a></li><li><a href='https://chrissainty.com/im-writing-a-book-announcing-blazor-in-action/'>I'm writing a book!</a></li><li><a href='https://chrissainty.com/blazor-news-from-build-2020/'>Blazor News from Build 2020</a></li><li><a href='https://chrissainty.com/auto-saving-form-data-in-blazor/'>Auto Saving Form Data in Blazor</a></li><li><a href='https://chrissainty.com/copy-to-clipboard-in-blazor/'>Copy to Clipboard in Blazor</a></li><li><a href='https://chrissainty.com/mobile-blazor-bindings-xamarin-essentials/'>Mobile Blazor Bindings - Navigation and Xamarin Essentials</a></li><li><a href='https://chrissainty.com/mobile-blazor-bindings-state-management-and-data/'>Mobile Blazor Bindings - State Management and Data</a></li><li><a href='https://chrissainty.com/mobile-blazor-bindings-layout-and-styling/'>Mobile Blazor Bindings - Layout and Styling</a></li><li><a href='https://chrissainty.com/getting-started-with-mobile-blazor-bindings/'>Mobile Blazor Bindings - Getting Started</a></li><li><a href='https://chrissainty.com/working-with-query-strings-in-blazor/'>Working with Query Strings in Blazor</a></li></ul>
<h2 class='channel-title'># <a href='http://mirano.blog' target='_blank'>http://mirano.blog</a></h2>
<ul class='feed-items'>
<li><a href='https://mirano.blog/webapi-in-net-5/'>WebAPI in .Net 5</a></li><li><a href='https://mirano.blog/microservices-with-docker-and-kubernetes-3-of-3/'>Microservices with Docker and Kubernetes (3/3)</a></li><li><a href='https://mirano.blog/microservices-with-docker-and-kubernetes-2-of-3/'>Microservices with Docker and Kubernetes (2/3)</a></li><li><a href='https://mirano.blog/microservices-with-docker-and-kubernetes/'>Microservices with Docker and Kubernetes (1/3)</a></li><li><a href='https://mirano.blog/topshelf-for-windows-services/'>Topshelf for Windows Services</a></li><li><a href='https://mirano.blog/emscripten/'>Emscripten</a></li></ul>
<h2 class='channel-title'># <a href='https://remibou.github.io' target='_blank'>https://remibou.github.io</a></h2>
<ul class='feed-items'>
<li><a href='https://remibou.github.io/Track-GPS-with-Blazor-BrowserInterop/'>Track Gps With Blazor Browserinterop</a></li><li><a href='https://remibou.github.io/SOLID-are-not-rules-but-guidelines/'>Solid Are Not Rules But Guidelines</a></li><li><a href='https://remibou.github.io/Realtime-update-with-Blazor-WASM-SignalR-and-MediatR/'>Realtime Update With Blazor Wasm Signalr And Mediatr</a></li><li><a href='https://remibou.github.io/How-to-keep-js-object-reference-in-Blazor/'>How To Keep Js Object Reference In Blazor</a></li><li><a href='https://remibou.github.io/How-to-send-callback-to-JS-Interop-in-Blazor/'>How To Send Callback To Js Interop In Blazor</a></li><li><a href='https://remibou.github.io/Profiling-in-Blazor/'>Profiling In Blazor</a></li><li><a href='https://remibou.github.io/Test-your-JSInterop-code-with-cypress/'>Test Your Jsinterop Code With Cypress</a></li><li><a href='https://remibou.github.io/Should-I-peek-Blazor/'>Should I Peek Blazor</a></li><li><a href='https://remibou.github.io/Make-your-Blazor-development-faster/'>Make Your Blazor Development Faster</a></li><li><a href='https://remibou.github.io/Test-a-Blazor-App-with-Cypress/'>Test A Blazor App With Cypress</a></li></ul>
<h2 class='channel-title'># <a href='http://www.technothirsty.com/' target='_blank'>http://www.technothirsty.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/Technothirstycom/~3/btfM6gp3ZE8/'>Different ways to concatenate strings in c# | Top 6 Ways to Concatenate String</a></li><li><a href='http://feedproxy.google.com/~r/Technothirstycom/~3/QK2mC490vkY/'>Label Control in WPF Tutorials step by step-2</a></li><li><a href='http://feedproxy.google.com/~r/Technothirstycom/~3/lUJlY91nxkA/'>Hello World – WPF Tutorials Step by Step – 1</a></li><li><a href='http://feedproxy.google.com/~r/Technothirstycom/~3/idmBTdCcWSQ/'>Deep dive with nullable value types in c# | Nullable in c#</a></li><li><a href='http://feedproxy.google.com/~r/Technothirstycom/~3/6ze3SPautKU/'>133. SQL Server Script to find Installation Date, time and Authentication Mode</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.ndepend.com' target='_blank'>https://blog.ndepend.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.ndepend.com/what-is-code-review-guidelines-best-practices/'>What is Code Review? – Guidelines and Best Practices</a></li><li><a href='https://blog.ndepend.com/top-10-new-net-6-0-api/'>Top 10 New .NET 6.0 API</a></li><li><a href='https://blog.ndepend.com/how-to-logically-name-embedded-resources-in-csproj/'>How to Logically Name Embedded Resources in .csproj?</a></li><li><a href='https://blog.ndepend.com/in-the-jungle-of-net-obfuscator-tools/'>In the Jungle of .NET Obfuscator Tools</a></li><li><a href='https://blog.ndepend.com/migrating-delegate-begininvoke-calls-to-net-core-net-5-and-net-6/'>Migrating Delegate.BeginInvoke Calls to .NET Core, .NET 5 and .NET 6</a></li><li><a href='https://blog.ndepend.com/on-replacing-thread-abort-in-net-6-net-5-and-net-core/'>On replacing Thread.Abort() in .NET 6, .NET 5 and .NET Core</a></li><li><a href='https://blog.ndepend.com/visual-studio-2022-64-bits-elements-of-history/'>Visual Studio 2022 64 bits: Elements of history</a></li><li><a href='https://blog.ndepend.com/covariance-and-contravariance-in-csharp-explained/'>Covariance and Contravariance in C# Explained</a></li><li><a href='https://blog.ndepend.com/clean-architecture-refactoring-a-case-study/'>Clean Architecture Refactoring: A Case Study</a></li><li><a href='https://blog.ndepend.com/on-hungarian-notation-for-fields-in-csharp/'>Hungarian Notation for Fields in C#</a></li><li><a href='https://blog.ndepend.com/6-reasons-visual-studio-theme-affects-productivity/'>6 Reasons Visual Studio Theme Affects Productivity</a></li><li><a href='https://blog.ndepend.com/implementing-a-domain-with-poco-plain-old-clr-objects/'>Implementing a Domain with POCO (Plain Old CLR Objects)</a></li><li><a href='https://blog.ndepend.com/8-books-to-improve-as-a-net-developer/'>8 Books to Improve as a .NET Developer</a></li><li><a href='https://blog.ndepend.com/clean-architecture-for-asp-net-core-solution/'>Clean Architecture for ASP.NET Core Solution: A Case Study</a></li><li><a href='https://blog.ndepend.com/how-to-plan-large-scale-refactoring/'>How to Plan Large-Scale Refactoring?</a></li><li><a href='https://blog.ndepend.com/10-reasons-why-you-should-write-tests/'>10 Reasons Why You Should Write Tests</a></li><li><a href='https://blog.ndepend.com/include-il-offset-into-production-exception-stack-traces/'>Include IL Offset into Production Exception Stack Traces</a></li><li><a href='https://blog.ndepend.com/is-artificial-intelligence-assisted-coding-the-next-developer-productivity-silver-bullet/'>Is Artificial Intelligence Assisted Coding the Next Developer Productivity Silver Bullet?</a></li><li><a href='https://blog.ndepend.com/visual-studio-intellicode-ai-assisted-coding/'>Visual Studio IntelliCode : AI Assisted Coding</a></li><li><a href='https://blog.ndepend.com/how-we-quickly-refactored-with-resharper-more-than-23-000-calls-to-debug-assert-into-more-meaningful-assertions/'>How we quickly refactored with Resharper more than 23.000 calls to Debug.Assert() into more meaningful assertions</a></li></ul>
<h2 class='channel-title'># <a href='https://vcsjones.com' target='_blank'>https://vcsjones.com</a></h2>
<ul class='feed-items'>
<li><a href='https://vcsjones.dev/stackalloc/'>Dos and Don'ts of stackalloc</a></li><li><a href='https://vcsjones.dev/key-formats-dotnet-3/'>Import and Export RSA Key Formats in .NET Core 3</a></li><li><a href='https://vcsjones.dev/sometimes-valid-rsa-dotnet/'>Sometimes valid RSA signatures in .NET</a></li><li><a href='https://vcsjones.dev/csharp-readonly-span-bytes-static/'>C# ReadOnlySpan<byte> and static data</a></li><li><a href='https://vcsjones.dev/csharp-8-using-declarations/'>C# 8 using declarations</a></li><li><a href='https://vcsjones.dev/random-integers-dotnet-core/'>Secure Random Integers in .NET Core 3</a></li><li><a href='https://vcsjones.dev/fixed-time-equals-dotnet-core/'>FixedTimeEquals in .NET Core</a></li><li><a href='https://vcsjones.dev/playing-with-riscv/'>Playing with RISC-V</a></li><li><a href='https://vcsjones.dev/authenticated-encryption/'>Authenticated Encryption</a></li><li><a href='https://vcsjones.dev/disabling-old-tls/'>Disabling old TLS</a></li></ul>
<h2 class='channel-title'># <a href='https://wakeupandcode.com' target='_blank'>https://wakeupandcode.com</a></h2>
<ul class='feed-items'>
<li><a href='https://wakeupandcode.com/azure-simplified-new-video-series/'>Azure, Simplified. (New Video Series)</a></li><li><a href='https://wakeupandcode.com/dotnet5-blazor-2021/'>.NET 5, Blazor and more in 2021!</a></li><li><a href='https://wakeupandcode.com/10-tips-for-dev-blogs-in-2021/'>10++ Tips for Dev Blogs in 2021</a></li><li><a href='https://wakeupandcode.com/debugging-multiple-net-core-projects-in-vs-code/'>Debugging Multiple .NET Core Projects in VS Code</a></li><li><a href='https://wakeupandcode.com/release-asp-net-core-3-1-a-z-ebook/'>RELEASE: ASP .NET Core 3.1 A-Z eBook</a></li><li><a href='https://wakeupandcode.com/zero-downtime-web-apps-for-asp-net-core-3-1/'>Zero-Downtime* Web Apps for ASP .NET Core 3.1</a></li><li><a href='https://wakeupandcode.com/yaml-defined-ci-cd-for-asp-net-core-3-1/'>YAML-defined CI/CD for ASP .NET Core 3.1</a></li><li><a href='https://wakeupandcode.com/xml-json-output-for-web-apis-in-asp-net-core-3-1/'>XML + JSON Output for Web APIs in ASP .NET Core 3.1</a></li><li><a href='https://wakeupandcode.com/worker-service-in-net-core-3-1/'>Worker Service in .NET Core 3.1</a></li><li><a href='https://wakeupandcode.com/validation-in-asp-net-core-3-1/'>Validation in ASP .NET Core 3.1</a></li></ul>
<h2 class='channel-title'># <a href='https://weblogs.asp.net' target='_blank'>https://weblogs.asp.net</a></h2>
<ul class='feed-items'>
<li><a href='https://weblogs.asp.net:443/jhallal/solution-architecture-with-net'>Solution Architecture with .NET</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/use-javascript-interop-in-blazor'>Use JavaScript Interop in Blazor</a></li><li><a href='https://weblogs.asp.net:443/bleroy/dungeon-master'>3D before GPUs Part 1: Dungeon Master</a></li><li><a href='https://weblogs.asp.net:443/sreejukg/integrate-amazon-sns-with-asp-net-core-application'>Integrate Amazon SNS with Asp.Net Core Application</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/load-components-dynamically-in-blazor'>Load components dynamically in Blazor</a></li><li><a href='https://weblogs.asp.net:443/boedie/that-conference-2021'>That Conference 2021</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/create-your-own-net-cli-tool'>Create your own .NET CLI tool</a></li><li><a href='https://weblogs.asp.net:443/rweigelt/using-a-video-device-with-getusermedia-in-webview2-in-a-kiosk-scenario'>Using a Video Device with getUserMedia in WebView2 in a Kiosk Scenario</a></li><li><a href='https://weblogs.asp.net:443/rweigelt/save-and-restore-webcam-properties-with-camprops-1-1-0-ahora-tambien-en-espanol'>Save and Restore Webcam Properties with CamProps 1.1.0 (ahora también en español)</a></li><li><a href='https://weblogs.asp.net:443/sreejukg/minimal-apis-in-asp-net-6-a-video-walkthrough'>Minimal APIs in ASP.Net 6 - A video walkthrough</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/minimal-apis-in-aspnet-core-6'>Minimal APIs in AspNet Core 6</a></li><li><a href='https://weblogs.asp.net:443/boedie/central-kentucky-microsoft-user-group-virtual'>Central Kentucky Microsoft User Group (virtual)</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/configure-application-startup-in-asp-net-core-6'>Configure application startup in ASP.NET Core 6</a></li><li><a href='https://weblogs.asp.net:443/sfeldman/azure-functions-elevated'>Azure Functions Elevated</a></li><li><a href='https://weblogs.asp.net:443/rweigelt/a-stupid-little-typescript-mistake'>A Stupid Little TypeScript Mistake</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/setup-blazor-app-using-asp-net-core-empty-project-template-part-2'>Setup Blazor app using ASP.NET Core Empty project template (Part 2)</a></li><li><a href='https://weblogs.asp.net:443/rweigelt/kostenloser-online-workshop-am-4-6-2021-user-interfaces-und-user-experience-fur-entwickler-teil-2'>Kostenloser Online-Workshop am 4.6.2021: User Interfaces und User Experience für Entwickler (Teil 2)</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/setup-blazor-app-using-asp-net-core-empty-project-template-part-1'>Setup Blazor app using ASP.NET Core Empty project template (Part 1)</a></li><li><a href='https://weblogs.asp.net:443/bipinjoshi/use-css-isolation-in-aspnet-core-mvc-razor-pages-and-blazor'>Use CSS isolation in AspNet Core MVC, Razor Pages, and Blazor</a></li><li><a href='https://weblogs.asp.net:443/boedie/techorama-2021-virtual'>Techorama 2021 (virtual)</a></li></ul>
<h2 class='channel-title'># <a href='https://channel9.msdn.com/Blogs/One-Dev-Minute' target='_blank'>https://channel9.msdn.com/Blogs/One-Dev-Minute</a></h2>
<ul class='feed-items'>
<li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/How-do-I-approach-design-for-larger-screens-with-Figma-Design-Kit--One-Dev-Question'>How do I approach design for larger screens with Figma Design Kit? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/What-is-Windows-Terminal-One-Dev-Question'>Windows Terminal Overview</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Should-I-follow-Microsofts-Fluent-Design-for-designing-Android-apps--One-Dev-Question'>Should I follow Microsoft’s Fluent Design for designing Android apps? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/What-design-patterns-do-I-have-to-consider-for-foldables--One-Dev-Question'>What design patterns do I have to consider for foldables? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/How-do-I-design-apps-for-dual-screen-devices--One-Dev-Question'>How do I design apps for dual-screen devices? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Youve-been-doing-this-for-35-years-whats-changed--One-Dev-Question-with-Larry-Osterman'>You've been doing this for 35 years, what's changed? | One Dev Question with Larry Osterman</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/How-different-is-it-to-design-apps-for-foldables-vs-designing-for-single-screens--One-Dev-Question'>How different is it to design apps for foldables vs designing for single screens? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Why-wasnt-Windows-built-on-top-of-Unix--One-Dev-Question-with-Larry-Osterman'>Why wasn't Windows built on top of Unix? | One Dev Question with Larry Osterman</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/httpsdocsmicrosoftcomWTmcidonedevquestion-c9-larryo'>What’s your favorite feature? | One Dev Question with Larry Osterman</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/What-got-you-into-computers--One-Dev-Question-with-Larry-Osterman'>What got you into computers? | One Dev Question with Larry Osterman</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/What-are-some-of-the-coolest-features-that-are-built-in-to-WinUI--One-Dev-Question'>What are some of the coolest features that are built in to WinUI? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Can-you-use-WinUI-in-an-existing-Windows-app--One-Dev-Question'>Can you use WinUI in an existing Windows app? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Why-did-we-create-WinUI-3-when-there-are-already-plenty-of-other-UI-frameworks--One-Dev-Question'>Why did we create WinUI 3 when there are already plenty of other UI frameworks? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Who-at-Microsoft-is-using-WinUI--One-Dev-Question'>Who at Microsoft is using WinUI? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/One-Dev-Question--What-is-WinUI'>What is WinUI? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Sustainable-Software-Engineering-What-is-Measurement--One-Dev-Question'>Sustainable Software Engineering: What is Measurement? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Sustainable-Software-Engineering-What-is-Demand-Shaping--One-Dev-Question'>Sustainable Software Engineering: What is Demand Shaping? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Sustainable-Software-Engineering-What-is-Networking--One-Dev-Question'>Sustainable Software Engineering: What is Networking? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Sustainable-Software-Engineering-What-is-Energy-Proportionality--One-Dev-Question'>Sustainable Software Engineering: What is Energy Proportionality? | One Dev Question</a></li><li><a href='https://channel9.msdn.com/Blogs/One-Dev-Minute/Sustainable-Software-Engineering-What-is-Embodied-Carbon--One-Dev-Question'>Sustainable Software Engineering: What is Embodied Carbon? | One Dev Question</a></li></ul>
<h2 class='channel-title'># <a href='https://channel9.msdn.com/Blogs/Azure' target='_blank'>https://channel9.msdn.com/Blogs/Azure</a></h2>
<ul class='feed-items'>
<li><a href='https://channel9.msdn.com/Blogs/Azure/Microsoft-Cloud-Deutschland-Rechenzentren'>Microsoft Cloud Deutschland Rechenzentren</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Azure-Service-Health'>Azure Service Health</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Log-Alerts-for-Application-Insights-Preview'>Log Alerts for Application Insights (Preview)</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Network-Performance-Monitor-For-Azure-ExpressRoute'>Network Performance Monitor For Azure ExpressRoute</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Azure-Site-Recovery-monitoring'>Azure Site Recovery monitoring</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Azure-Site-Recoverys-new-onboarding-experience'>Azure Site Recovery's new onboarding experience</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Whats-changed-in-Azure-Log-Analytics'>What's changed in Azure Log Analytics?</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Azure-Advisor-your-personalized-guide-to-optimal-resource-configuration'>Azure Advisor - your personalized guide for Azure best practices</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Azure-API-Management-Overview-Video'>Azure API Management Overview Video</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Join-us-for-the-Azure-Red-Shirt-Dev-Tour'>Join us for the Azure Red Shirt Dev Tour</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/FastTrack-Azure-Customer-Stories'>FastTrack for Azure Customer Stories</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Azure-Serverless-end-to-end-with-Functions-Logic-Apps-and-Event-Grid'>Azure Serverless end-to-end with Functions, Logic Apps, and Event Grid</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Using-Azure-Container-Instances'>Using Azure Container Instances</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Build-apps-faster-with-Azure-Serverless'>Microsoft Mechanics: Build apps faster with Azure Serverless</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/microsoft-and-redhat-offer-integrated-support'>Microsoft and Red Hat Partner and Deliver Integrated Support, a Unique Offering in the IT World</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/ss8000-newazureportal'>StorSimple 8000 series in the new Azure portal</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Announcing-Azure-Service-Health'>Announcing Azure Service Health</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Top-online-retailer-bets-on-Azure-to-provide-a-stellar-experience-for-13-million-customers-worldwide'>Top online retailer bets on Azure to provide a stellar experience for 13 million customers worldwide</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/Introducing-Azure-Logic-Apps'>Introducing Azure Logic Apps</a></li><li><a href='https://channel9.msdn.com/Blogs/Azure/First-Tech-is-migrating-to-the-Microsoft-Cloud-as-fast-as-it-can'>First Tech is migrating to the Microsoft Cloud as fast as it can</a></li></ul>
<h2 class='channel-title'># <a href='https://channel9.msdn.com/Blogs/MVP-Azure' target='_blank'>https://channel9.msdn.com/Blogs/MVP-Azure</a></h2>
<ul class='feed-items'>
<li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Modernizing-NET-Apps-with-Docker-for-IT-Pros-Part-5'>Modernizing .NET Apps with Docker, for IT Pros. Part 5.</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-9-Build-the-ultimate-chatbot-with-Custom-Speech'>Cognitive Services Episode 9 - Build the ultimate chatbot with Custom Speech</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-8-Leveraging-speech-services-with-chatbots'>Cognitive Services Episode 8 - Leveraging speech services with chatbots</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep14-Gathering-Stats-with-Application-Insights'>Function Junction Ep14: Gathering Stats with Application Insights</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep13-Setting-and-Accessing-Setting-from-the-Portal'>Function Junction Ep13: Setting and Accessing Setting from the Portal</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep12-Building-Functions-with-VSTS'>Function Junction Ep12: Building Functions with VSTS</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep11-Unit-Testing-Functions'>Function Junction Ep11: Unit Testing Functions</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep10-Using-PostSharp-Interceptors'>Function Junction Ep10: Using PostSharp Interceptors</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep9-Output-Bindings'>Function Junction Ep9: Output Bindings</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-7--Leveraging-custom-image-classifiers-for-Enterprise-use-with-the-Custom'>Cognitive Services Episode 7 – Leveraging custom image classifiers for Enterprise use with the Custom Vision Service</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-6-Document-routing--tagging-with-the-Text-Analytics--the-Entity-Linking-A'>Cognitive Services Episode 6 - Document routing & tagging with the Text Analytics & the Entity Linking APIs</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Modernizing-NET-Apps-with-Docker-for-IT-Pros-Part-3'>Modernizing .NET Apps with Docker, for IT Pros. Part 3.</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Modernizing-NET-Apps-with-Docker-for-IT-Pros-Part-2'>Modernizing .NET Apps with Docker, for IT Pros. Part 2.</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Modernizing-NET-Apps-with-Docker-for-IT-Pros-Part-1'>Modernizing .NET Apps with Docker, for IT Pros. Part 1.</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-5-Natural-search-with-the-Linguistics-API'>Cognitive Services Episode 5 - Natural search with the Linguistics API</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-4-QnA-Maker'>Cognitive Services Episode 4 - QnA Maker</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-3-Deep-dive-into-LUIS-and-Chatbots'>Cognitive Services Episode 3 - Deep dive into LUIS and Chatbots</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep8-Blob-Storage-Triggers'>Function Junction Ep8: Blob Storage Triggers</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Function-Junction-Ep7-Event-Hub-Triggers'>Function Junction Ep7: Event Hub Triggers</a></li><li><a href='https://channel9.msdn.com/Blogs/MVP-Azure/Cognitive-Services-Episode-2--Creating--Consuming-a-Cognitive-Service-Getting-started-with-a-minimal'>Cognitive Services Episode 2 – Creating & Consuming a Cognitive Service. Getting started with a minimal chatbot</a></li></ul>
<h2 class='channel-title'># <a href='https://channel9.msdn.com/Blogs/Seth-Juarez' target='_blank'>https://channel9.msdn.com/Blogs/Seth-Juarez</a></h2>
<ul class='feed-items'>
<li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Announcing-Microsoft-MakeCode-for-Minecraft-Windows-10'>Announcing Microsoft MakeCode for Minecraft Windows 10</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Inside-Coco-Framework-the-Foundation-of-Blockchain-for-Enterprise-with-Mark-Russinovich'>Inside the Confidential Consortium Blockchain Framework with Mark Russinovich</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/An-Introduction-to-Blockchain-with-Mark-Russinovich'>An Introduction to Blockchain with Mark Russinovich</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/New-Command-Line-features-in-Windows-10-Fall-Creators-Update'>New Command Line features in Windows 10 Fall Creator’s Update</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Introducing-Razor-Pages'>Introducing Razor Pages</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/A-Preview-of-C-8-with-Mads-Torgersen'>A Preview of C# 8 with Mads Torgersen</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/New-Azure-Container-Registry-Features'>New Azure Container Registry Features (June 2017)</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/SysSieve-Extracting-Actionable-Insights-from-Unstructured-Text'>SysSieve: Extracting Actionable Insights from Unstructured Text</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Security-Features-on-IoT-Core'>Security Features on IoT Core</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Introduction-to-WordPress-using-Azure-PaaS'>Introduction to WordPress using Azure PaaS</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Measuring-IoT-pulse-widths-with-new-GPIO-APIs'>Measuring IoT pulse widths with new GPIO APIs</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Building-Single-Page-Applications-with-ASPNET-Core'>Building Single-Page Applications with ASP.NET Core</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Windows-IoT-Core-Walkthrough'>Windows IoT Core Walkthrough</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Azure-Networking-New-Features-Demo-Snapshot'>Azure Networking New Features Demo Snapshot</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Yousef-Khalidi-on-Cloud-Networking-and-Innovation'>Yousef Khalidi on Cloud Networking and Innovation</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Introducing-Microsoft-MakeCode-for-Minecraft'>Introducing Microsoft MakeCode for Minecraft</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Global-Azure-Bootcamp-2017'>Global Azure Bootcamp 2017</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Intelligent-Customer-Care-with-Bots-Part-4-Cognitive-Services'>Intelligent Customer Care with Bots - Part 4: Cognitive Services</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Intelligent-Customer-Care-with-Bots-Part-3-Channels'>Intelligent Customer Care with Bots - Part 3: Channels</a></li><li><a href='https://channel9.msdn.com/Blogs/Seth-Juarez/Intelligent-Customer-Care-with-Bots-Part-2-Building-a-bot'>Intelligent Customer Care with Bots - Part 2: Building a bot</a></li></ul>
<h2 class='channel-title'># <a href='https://channel9.msdn.com/blogs/Microsoft-Vietnam' target='_blank'>https://channel9.msdn.com/blogs/Microsoft-Vietnam</a></h2>
<ul class='feed-items'>
<li><a href='https://channel9.msdn.com/blogs/Microsoft-Vietnam/Extend-your-infrastructure-to-the-Cloud'>Extend your infrastructure to the Cloud</a></li></ul>
<h2 class='channel-title'># <a href='https://alexatnet.com' target='_blank'>https://alexatnet.com</a></h2>
<ul class='feed-items'>
<li><a href='https://alexatnet.com/byte-array-marshalling-performance/'>Performance comparison of the solutions for passing byte arrays from .NET runtime to JavaScript in Blazor wasm</a></li><li><a href='https://alexatnet.com/the-function-map/'>The function Map()</a></li><li><a href='https://alexatnet.com/the-function-try/'>The function Try()</a></li><li><a href='https://alexatnet.com/apply-one-more-magic-function/'>The function Apply()</a></li><li><a href='https://alexatnet.com/void-a-magic-function/'>Void: a "magic" function</a></li><li><a href='https://alexatnet.com/pwd-first-week/'>pwd: first week</a></li><li><a href='https://alexatnet.com/story-of-pwd/'>Story of pwd</a></li><li><a href='https://alexatnet.com/immutablelist-performance/'>ImmutableList<T> performance</a></li><li><a href='https://alexatnet.com/cs8-switch-statement/'>C# 8: switch statement</a></li><li><a href='https://alexatnet.com/udemy-debugging-memory-leaks-in-net-core-apps-on-macos/'>Debugging memory leaks in .NET applications</a></li><li><a href='https://alexatnet.com/node-js-10-important-changes/'>Node.js 10: Important Changes</a></li><li><a href='https://alexatnet.com/refactor-locking-into-sharing-immutables/'>Refactoring locks into sharing immutables</a></li><li><a href='https://alexatnet.com/deadlock-example-dotnet/'>Deadlock example, .NET</a></li><li><a href='https://alexatnet.com/hr-f-functions-and-fractals-sierpinski-triangles/'>HR F#: Functions and Fractals: Sierpinski triangles</a></li><li><a href='https://alexatnet.com/hr-f-pascals-triangle/'>HR F#: Pascal's Triangle</a></li></ul>
<h2 class='channel-title'># <a href='https://www.kenneth-truyers.net' target='_blank'>https://www.kenneth-truyers.net</a></h2>
<ul class='feed-items'>
<li><a href='https://www.kenneth-truyers.net/2018/10/31/best-practices-good-pr/'>Best practices for good PR's</a></li><li><a href='https://www.kenneth-truyers.net/2018/04/20/whats-new-c-8-0/'>What's new and coming in C# 8.0</a></li><li><a href='https://www.kenneth-truyers.net/2017/04/06/refactoring-taken-too-far/'>Refactoring taken too far</a></li><li><a href='https://www.kenneth-truyers.net/2016/10/13/git-nosql-database/'>Git as a NoSql database</a></li><li><a href='https://www.kenneth-truyers.net/2016/10/05/open-source-software-company-time/'>Open source software on company time</a></li><li><a href='https://www.kenneth-truyers.net/2016/09/27/avoiding-code-ownership/'>Avoiding code ownership</a></li><li><a href='https://www.kenneth-truyers.net/2016/06/02/database-migrations-made-simple/'>Database migrations made simple</a></li><li><a href='https://www.kenneth-truyers.net/2016/05/27/writing-custom-eslint-rules/'>Writing custom EsLint rules</a></li><li><a href='https://www.kenneth-truyers.net/2016/05/20/iterators-and-generators-in-javascript/'>Iterators and Generators in Javascript</a></li><li><a href='https://www.kenneth-truyers.net/2016/05/12/yield-return-in-c/'>Yield return in C#</a></li><li><a href='https://www.kenneth-truyers.net/2016/05/02/impressions-as-a-rookie-microsoft-mvp/'>Impressions as a rookie Microsoft MVP</a></li><li><a href='https://www.kenneth-truyers.net/2016/04/25/javascript-sandbox-pattern/'>Javascript sandbox pattern</a></li><li><a href='https://www.kenneth-truyers.net/2016/04/13/technical-debt-managing-code-quality/'>Technical debt: managing code quality</a></li><li><a href='https://www.kenneth-truyers.net/2016/04/08/code-reviews-why-and-how/'>Code Reviews: why and how?</a></li><li><a href='https://www.kenneth-truyers.net/2016/04/02/build-2016-announcements/'>Build 2016 announcements</a></li></ul>
<h2 class='channel-title'># <a href='https://dccoder.com' target='_blank'>https://dccoder.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dccoder.com/2021/06/15/net-notebooks/'>.Net Notebooks</a></li><li><a href='https://dccoder.com/2020/09/15/loading-blazor-components-at-run-time/'>Loading Blazor Components at run-time</a></li><li><a href='https://dccoder.com/2020/09/08/just-tell-me-whats-wrong/'>Just tell me what’s wrong!</a></li><li><a href='https://dccoder.com/2020/09/06/a-wrinkle-in-time/'>A wrinkle in time</a></li><li><a href='https://dccoder.com/2020/09/04/moving-time/'>Moving time!</a></li><li><a href='https://dccoder.com/2019/10/02/the-cringe-recruiters/'>The cringe – Recruiters</a></li><li><a href='https://dccoder.com/2019/09/23/the-trouble-with-opensource/'>The trouble with OpenSource</a></li><li><a href='https://dccoder.com/2019/06/04/the-move-to-api-driven-development/'>The move to API Driven Development</a></li><li><a href='https://dccoder.com/2019/05/25/working-with-collections-iasyncenumerable/'>Working with collections – IAsyncEnumerable</a></li><li><a href='https://dccoder.com/2019/01/01/aws-secret-storage/'>AWS Secret Storage</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.endjin.com' target='_blank'>https://blog.endjin.com</a></h2>
<ul class='feed-items'>
<li><a href='https://endjin.com/what-we-think/talks/reaqtor-reliable-rx-at-scale-for-high-performance-event-processing.html'>Reaqtor - Reliable Rx at Scale for High-performance Event Processing</a></li><li><a href='https://endjin.com/what-we-think/talks/how-to-start-your-career-in-data-science.html'>How to Start Your Career in Data Science</a></li><li><a href='https://endjin.com/blog/2021/05/data-is-the-new-soil.html'>Data is the new soil</a></li><li><a href='https://endjin.com/blog/2021/05/csharp-serialization-with-system-text-json-schema.html'>C# serialization with JsonSchema and System.Text.Json</a></li><li><a href='https://endjin.com/blog/2021/05/how-to-use-azure-synapse-sql-serverless-to-connect-data-lake-and-power-bi.html'>How to use Azure Synapse SQL Serverless to connect Data Lake and Power BI</a></li><li><a href='https://endjin.com/blog/2021/05/how-to-test-azure-synapse-notebooks.html'>How to test Azure Synapse notebooks</a></li><li><a href='https://endjin.com/blog/2021/05/how-to-use-power-bi-deployment-pipelines-to-enable-devops-for-analytics.html'>How to use Power BI deployment pipelines to enable DevOps for analytics</a></li><li><a href='https://endjin.com/blog/2021/02/do-robots-dream-of-counting-sheep.html'>Do robots dream of counting sheep?</a></li><li><a href='https://endjin.com/blog/2021/02/configuration-in-azure-functions-part-1-whats-in-the-box.html'>Configuration in Azure Functions - What's in the box?</a></li><li><a href='https://endjin.com/blog/2021/02/how-to-safely-reference-a-nullable-activity-output-in-synapse-pipelines-and-azure-data-factory.html'>How to safely reference a nullable activity output in Azure Synapse Pipelines and Azure Data Factory</a></li><li><a href='https://endjin.com/what-we-think/talks/how-to-safely-reference-a-nullable-activity-output-in-azure-synapse-pipelines-and-azure-data-factory.html'>How to safely reference a nullable activity output in Azure Synapse Pipelines and Azure Data Factory</a></li><li><a href='https://endjin.com/blog/2021/01/how-to-trigger-an-azure-synapse-pipeline-run-from-csharp.html'>How to trigger an Azure Synapse pipeline run from C#</a></li><li><a href='https://endjin.com/blog/2021/01/learning-from-covid-19.html'>Learning from Covid-19</a></li><li><a href='https://endjin.com/blog/2020/12/installing-mattermost-using-the-azure-cnab-quickstart-library.html'>Installing Mattermost using the Azure CNAB Quickstart Library</a></li><li><a href='https://endjin.com/what-we-think/talks/beyond-modern-data-warehouse-mvp-panel-discussion.html'>Beyond Modern Data Warehouse MVP Panel Discussion</a></li><li><a href='https://endjin.com/blog/2020/12/azure-synapse-analytics-unifies-development.html'>How Azure Synapse unifies your development experience</a></li><li><a href='https://endjin.com/blog/2020/12/design-patterns-in-csharp-the-proxy-pattern.html'>Design patterns in C# - The Proxy Pattern</a></li><li><a href='https://endjin.com/blog/2020/12/how-to-consume-a-nuget-package-in-powershell.html'>How to consume a NuGet package in PowerShell</a></li><li><a href='https://endjin.com/blog/2020/12/how-to-update-credentials-for-an-on-prem-power-bi-data-source-using-powershell.html'>How to update credentials for an on-prem Power BI data source using PowerShell</a></li><li><a href='https://endjin.com/blog/2020/12/dotnet-csharp-9-patterns-mechanism-over-intent.html'>When C# 9.0 patterns go wrong: mechanism over intent</a></li></ul>
<h2 class='channel-title'># <a href='https://www.devsanon.com' target='_blank'>https://www.devsanon.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.devsanon.com/c/c-geocoordinate-class-net-standard-2-1/?utm_source=rss&utm_medium=rss&utm_campaign=c-geocoordinate-class-net-standard-2-1'>C# GeoCoordinate class – .Net Standard 2.1</a></li><li><a href='https://www.devsanon.com/c/c-8-is-introducing-ranges/?utm_source=rss&utm_medium=rss&utm_campaign=c-8-is-introducing-ranges'>C# 8 is Introducing Ranges</a></li><li><a href='https://www.devsanon.com/c/c-7-2-introducing-ref-struct/?utm_source=rss&utm_medium=rss&utm_campaign=c-7-2-introducing-ref-struct'>C# 7.2 – Introducing ref struct</a></li><li><a href='https://www.devsanon.com/c/c-7-2-lets-talk-about-readonly-structs/?utm_source=rss&utm_medium=rss&utm_campaign=c-7-2-lets-talk-about-readonly-structs'>C# 7.2 – Let’s talk about readonly structs</a></li><li><a href='https://www.devsanon.com/c/c-8-introducing-target-typed-new-expressions/?utm_source=rss&utm_medium=rss&utm_campaign=c-8-introducing-target-typed-new-expressions'>C# 8 – Introducing Target-typed new expressions</a></li><li><a href='https://www.devsanon.com/c/c-8-is-introducing-records/?utm_source=rss&utm_medium=rss&utm_campaign=c-8-is-introducing-records'>C# 8.x is introducing Records</a></li><li><a href='https://www.devsanon.com/c/c-8-introducing-index-struct-and-a-brand-new-usage-for-the-hat-operator/?utm_source=rss&utm_medium=rss&utm_campaign=c-8-introducing-index-struct-and-a-brand-new-usage-for-the-hat-operator'>C# 8 – Introducing Index struct and a brand new usage for the hat operator</a></li><li><a href='https://www.devsanon.com/c/c-8-is-fixing-interpolated-verbatim-strings/?utm_source=rss&utm_medium=rss&utm_campaign=c-8-is-fixing-interpolated-verbatim-strings'>C# 8 is fixing interpolated verbatim strings</a></li><li><a href='https://www.devsanon.com/c/c-why-you-should-never-use-the-checked-keyword-unless-absolutely-necessary/?utm_source=rss&utm_medium=rss&utm_campaign=c-why-you-should-never-use-the-checked-keyword-unless-absolutely-necessary'>C# – Why you should never use the checked keyword – Unless absolutely necessary</a></li><li><a href='https://www.devsanon.com/c/c-8-default-interface-methods/?utm_source=rss&utm_medium=rss&utm_campaign=c-8-default-interface-methods'>C# 8: Default Interface Methods</a></li></ul>
<h2 class='channel-title'># <a href='https://snede.net' target='_blank'>https://snede.net</a></h2>
<ul class='feed-items'>
<li><a href='https://snede.net/how-to-support-tls-psk-in-c-pre-shared-key/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-support-tls-psk-in-c-pre-shared-key'>How to support TLS PSK in C# (Pre-shared key)</a></li><li><a href='https://snede.net/the-most-dangerous-constructor-in-net/?utm_source=rss&utm_medium=rss&utm_campaign=the-most-dangerous-constructor-in-net'>The most dangerous constructor in .NET</a></li><li><a href='https://snede.net/get-started-with-net-generic-host/?utm_source=rss&utm_medium=rss&utm_campaign=get-started-with-net-generic-host'>Get started with .NET Generic Host</a></li><li><a href='https://snede.net/sharing-is-caring-starting-a-blog/?utm_source=rss&utm_medium=rss&utm_campaign=sharing-is-caring-starting-a-blog'>Sharing is caring – Starting a blog</a></li><li><a href='https://snede.net/you-are-a-trainer-you-just-dont-know-it-yet/?utm_source=rss&utm_medium=rss&utm_campaign=you-are-a-trainer-you-just-dont-know-it-yet'>You are a trainer; you just don’t know it yet!</a></li><li><a href='https://snede.net/heres-why-you-should-use-grpc-for-everything/?utm_source=rss&utm_medium=rss&utm_campaign=heres-why-you-should-use-grpc-for-everything'>Heres why you should use gRPC for everything</a></li><li><a href='https://snede.net/git-does-not-remember-username-password/?utm_source=rss&utm_medium=rss&utm_campaign=git-does-not-remember-username-password'>Git does not remember username and password on Windows</a></li><li><a href='https://snede.net/10-tips-for-conducting-code-reviews/?utm_source=rss&utm_medium=rss&utm_campaign=10-tips-for-conducting-code-reviews'>10 tips for conducting code reviews</a></li><li><a href='https://snede.net/you-dont-need-a-idesigntimedbcontextfactory/?utm_source=rss&utm_medium=rss&utm_campaign=you-dont-need-a-idesigntimedbcontextfactory'>You don’t need a IDesignTimeDbContextFactory</a></li><li><a href='https://snede.net/add-nuget-package-xml-documentation-to-swagger/?utm_source=rss&utm_medium=rss&utm_campaign=add-nuget-package-xml-documentation-to-swagger'>Add NuGet package XML documentation to Swagger</a></li></ul>
<h2 class='channel-title'># <a href='https://dotnetcoretutorials.com' target='_blank'>https://dotnetcoretutorials.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dotnetcoretutorials.com/2021/08/10/generating-random-numbers-in-net/'>Generating Random Numbers In .NET</a></li><li><a href='https://dotnetcoretutorials.com/2021/08/06/why-you-should-always-use-asp-net-development-environment-for-local-development/'>Why You Should Always Use ASP.NET “Development” Environment For Local Development</a></li><li><a href='https://dotnetcoretutorials.com/2021/07/16/building-minimal-apis-in-net-6/'>Building Minimal APIs In .NET 6</a></li><li><a href='https://dotnetcoretutorials.com/2021/07/15/understanding-cyclomatic-complexity/'>Understanding Cyclomatic Complexity</a></li><li><a href='https://dotnetcoretutorials.com/2021/07/11/socks-proxy-support-in-net/'>SOCKS Proxy Support In .NET</a></li><li><a href='https://dotnetcoretutorials.com/2021/07/09/automated-code-cleanup-in-visual-studio/'>Automated Code Cleanup In Visual Studio</a></li><li><a href='https://dotnetcoretutorials.com/2021/06/26/code-first-vs-database-first-vs-model-first-entityframework-approaches-explained/'>Code First vs Database First vs Model First – EntityFramework Approaches Explained</a></li><li><a href='https://dotnetcoretutorials.com/2021/06/19/mocks-vs-stubs-vs-fakes-in-unit-testing/'>Mocks vs Stubs vs Fakes In Unit Testing</a></li><li><a href='https://dotnetcoretutorials.com/2021/05/23/auto-creating-private-readonly-fields-in-visual-studio/'>Auto Creating Private Readonly Fields In Visual Studio</a></li><li><a href='https://dotnetcoretutorials.com/2021/05/16/validating-an-email-in-a-net-api/'>Validating An Email In A .NET API</a></li></ul>
<h2 class='channel-title'># <a href='https://agirlamonggeeks.com' target='_blank'>https://agirlamonggeeks.com</a></h2>
<ul class='feed-items'>
<li><a href='https://agirlamonggeeks.com/2020/10/04/c-be-careful-with-path-combine/'>[C#] Be careful with Path.Combine()!</a></li><li><a href='https://agirlamonggeeks.com/2020/10/01/c-how-to-read-an-api-date-field-as-utc/'>[C#] How to read an API date field as UTC?</a></li><li><a href='https://agirlamonggeeks.com/2020/08/02/lifehacks-for-working-with-big-databases/'>Lifehacks for working with big databases</a></li><li><a href='https://agirlamonggeeks.com/2020/04/21/taking-microsoft-exams-online/'>Taking Microsoft exams online</a></li><li><a href='https://agirlamonggeeks.com/2020/04/06/az-900-exam-questions-answers-my-perspective/'>AZ-900 exam – questions & answers (my perspective)</a></li><li><a href='https://agirlamonggeeks.com/2019/10/20/how-to-turn-c-8-nullable-reference-types/'>How to turn on C# 8 Nullable Reference Types</a></li><li><a href='https://agirlamonggeeks.com/2019/06/04/cannot-implicitly-convert-type-abc-to-iabc-contravariance-vs-covariance-part-2/'>Cannot implicitly convert type ‘Abc<Derived>’ to ‘IAbc<Base>’ – Contravariance vs Covariance – part 2.</a></li><li><a href='https://agirlamonggeeks.com/2019/05/29/vs-in-generic-interfaces-contravariance-vs-covariance-the-easier-part-1/'><in T> vs <out T> – Contravariance vs Covariance – (the easier) part 1.</a></li><li><a href='https://agirlamonggeeks.com/2019/05/06/entity-framework-asnotracking-why-how-ef-and-ef-core/'>Entity Framework .AsNoTracking() – why & how (EF and EF Core)</a></li><li><a href='https://agirlamonggeeks.com/2019/03/22/enumerable-empty-vs-new-ienumerable-whats-better/'>Enumerable.Empty() vs new ‘IEnumerable’() – what’s better?</a></li><li><a href='https://agirlamonggeeks.com/2019/03/10/how-to-change-language-in-visual-studio-2019-after-installation/'>How to change language in Visual Studio 2019 (after installation)</a></li><li><a href='https://agirlamonggeeks.com/2018/11/28/c-8-features-part-3-index-type-recursive-pattern-tuned-switch-expression-recipe-for-getting-new-friends/'>C# 8 features – part 3 (Index type, Recursive pattern, tuned Switch expression => recipe for getting new friends)</a></li><li><a href='https://agirlamonggeeks.com/2018/11/25/c-8-features-part-2-async-method-with-yield-return/'>C# 8 features – part 2 (async method with yield return)</a></li><li><a href='https://agirlamonggeeks.com/2018/11/19/c-8-features-part-1/'>C# 8 features – part 1.</a></li><li><a href='https://agirlamonggeeks.com/2018/10/23/how-to-insert-update-more-than-4000-characters-in-an-oracle-table/'>How to insert/update more than 4000 characters in an Oracle table (because life cannot be too easy!)</a></li><li><a href='https://agirlamonggeeks.com/2018/08/26/painkiller-for-reading-logs-stack-trace-explorer/'>Application logs painkiller – Stack Trace Explorer</a></li><li><a href='https://agirlamonggeeks.com/2018/08/08/imagine-theres-no-nullreferenceexception-c-8-plans/'>Imagine there’s no… NullReferenceException! (C# 8 plans)</a></li><li><a href='https://agirlamonggeeks.com/2018/05/30/want-to-work-at-microsoft-you-need-to-read-this/'>Want to work at Microsoft? You need to read this!</a></li><li><a href='https://agirlamonggeeks.com/2018/03/03/c-stuff-nobody-told-you-delegate-is-a-class-and-there-is-a-good-reason-for-that/'>C# stuff nobody told you – delegate is a class! And there is a good reason for that!</a></li><li><a href='https://agirlamonggeeks.com/2018/02/19/c-delegates-a-fairy-tale-about-when-and-how-to-use-them/'>C# Delegates – a fairy tale about when (and how) to use them.</a></li></ul>
<h2 class='channel-title'># <a href='https://itviec.com/blog' target='_blank'>https://itviec.com/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://itviec.com/blog/sieu-ung-dung-la-gi/'>Siêu ứng dụng là gì? Việt Nam có phải là “vùng đất hứa” để phát triển siêu ứng dụng không?</a></li><li><a href='https://itviec.com/blog/low-code-platform-la-gi/'>Low code là gì? Liệu Lập trình viên có bị mất việc vào “tay” Low-Code?</a></li><li><a href='https://itviec.com/blog/ui-ux-design-tim-viec/'>Ngoài kỹ năng UI UX design, các designer non trẻ nên sở hữu 5 TỐ CHẤT này khi tìm việc</a></li><li><a href='https://itviec.com/blog/cong-ty-it-tiem-vaccine-covid-19-cho-nhan-vien/'>Danh sách những công ty IT đã triển khai tiêm vaccine COVID 19 cho nhân viên (Cập nhật mới nhất)</a></li><li><a href='https://itviec.com/blog/viec-lam-machine-learning-co-ban/'>Những vị trí liên quan đến Machine Learning cơ bản đang có nhiều cơ hội trên thị trường</a></li><li><a href='https://itviec.com/blog/machine-learning-la-gi/'>Machine Learning là gì và Cách giải thích đúng mà dễ hiểu nhất</a></li><li><a href='https://itviec.com/blog/nhan-vien-it-can-lam-gi-de-thich-nghi-voi-binh-thuong-moi-nam-2021/'>Nhân viên IT cần thay đổi thế nào để thích nghi với môi trường làm việc “bình thường mới”?</a></li><li><a href='https://itviec.com/blog/con-gai-co-nen-hoc-cong-nghe-thong-tin-khong/'>Những lý do vì sao con gái nên học Công nghệ Thông tin từ sớm</a></li><li><a href='https://itviec.com/blog/cong-ty-phan-mem-cong-ty-outsourcing-tot-nhat-viet-nam-2021/'>Công ty phần mềm và Outsourcing nên làm gì để nhân viên làm việc năng suất nhất?</a></li><li><a href='https://itviec.com/blog/danh-sach-cong-ty-cong-nghe-tot-nhat-nam-2021/'>Top 15 Công ty IT Tốt nhất Việt Nam 2021: Những chuyển biến tích cực</a></li></ul>
<h2 class='channel-title'># <a href='https://dotnetfalcon.com' target='_blank'>https://dotnetfalcon.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dotnetfalcon.com/adding-your-own-help-functionality-to-visual-studio-f1-help/'>Adding your own help functionality to Visual Studio F1 Help</a></li><li><a href='https://dotnetfalcon.com/implementing-the-repository-pattern-with-direct-iqueryable-support/'>Implementing the Repository pattern with direct IQueryable support</a></li><li><a href='https://dotnetfalcon.com/autofac-support-for-automapper/'>Autofac support for AutoMapper</a></li><li><a href='https://dotnetfalcon.com/the-specification-pattern-and-variance/'>The specification pattern and variance</a></li><li><a href='https://dotnetfalcon.com/supporting-async-linq-evaluation-on-iqueryable-mocks/'>Supporting async LInQ evaluation on IQueryable mocks</a></li><li><a href='https://dotnetfalcon.com/trying-the-azure-signalr-service/'>Trying the Azure SignalR service</a></li><li><a href='https://dotnetfalcon.com/default-interface-implementation-in-c-8/'>Default interface implementation in C# 8</a></li><li><a href='https://dotnetfalcon.com/duplex-service-over-tcp-with-wcf/'>Duplex service over TCP with WCF</a></li><li><a href='https://dotnetfalcon.com/using-the-specification-pattern-with-repository-and-unit-of-work/'>Using the Specification pattern with Repository and Unit of work</a></li><li><a href='https://dotnetfalcon.com/visual-studio-extension-to-change-the-c-language-version-of-a-project/'>Visual Studio extension to change the C# language version of a project</a></li><li><a href='https://dotnetfalcon.com/entity-framework-code-first-generators-templates/'>Entity Framework Code First generators templates</a></li><li><a href='https://dotnetfalcon.com/a-visual-studio-extension-to-really-clean-your-projects-2/'>A Visual Studio extension to really clean your projects</a></li><li><a href='https://dotnetfalcon.com/untitled/'>Using dependency injection to configure Entity Framework DbContexts</a></li><li><a href='https://dotnetfalcon.com/entity-framework-custom-migration-generator-decorators/'>Entity Framework custom migration generator decorators</a></li><li><a href='https://dotnetfalcon.com/design-patterns-medley-command-and-decorator/'>Design patterns medley: Command and decorator</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.ploeh.dk' target='_blank'>https://blog.ploeh.dk</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.ploeh.dk/2021/07/19/the-state-functor/'>The State functor</a></li><li><a href='https://blog.ploeh.dk/2021/07/12/a-reading-of-extensibility-for-the-masses/'>A reading of Extensibility for the Masses</a></li><li><a href='https://blog.ploeh.dk/2021/07/05/fractal-hex-flowers/'>Fractal hex flowers</a></li><li><a href='https://blog.ploeh.dk/2021/06/28/property-based-testing-is-not-the-same-as-partition-testing/'>Property-based testing is not the same as partition testing</a></li><li><a href='https://blog.ploeh.dk/2021/06/21/agile-pull-requests/'>Agile pull requests</a></li><li><a href='https://blog.ploeh.dk/2021/06/14/new-book-code-that-fits-in-your-head/'>New book: Code That Fits in Your Head</a></li><li><a href='https://blog.ploeh.dk/2021/06/07/abstruse-nomenclature/'>Abstruse nomenclature</a></li><li><a href='https://blog.ploeh.dk/2021/08/09/am-i-stuck-in-a-local-maximum/'>Am I stuck in a local maximum?</a></li><li><a href='https://blog.ploeh.dk/2021/08/03/the-tennis-kata-revisited/'>The Tennis kata revisited</a></li><li><a href='https://blog.ploeh.dk/2021/07/28/referential-transparency-fits-in-your-head/'>Referential transparency fits in your head</a></li></ul>
<h2 class='channel-title'># <a href='http://science-technology.vn' target='_blank'>http://science-technology.vn</a></h2>
<ul class='feed-items'>
<li><a href='https://science-technology.vn/?p=6435'>Vietnamese submission for WS2021</a></li><li><a href='https://science-technology.vn/?p=6220'>Proposal to Encode Two Vietnamese Alternate Reading Marks</a></li><li><a href='https://science-technology.vn/?p=6218'>IRG2490-Proposal to to modify source references of V-Source ideographs</a></li><li><a href='https://science-technology.vn/?p=6203'>Ngôn ngữ lập trình phổ biến 1965-2019</a></li><li><a href='https://science-technology.vn/?p=6200'>Thù lao ở thung lũng Silicon</a></li></ul>
<h2 class='channel-title'># <a href='http://www.giaosucan.com' target='_blank'>http://www.giaosucan.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.giaosucan.com/2021/08/nghe-devops-luong-bao-nhieu.html'>Nghề DevOps lương bao nhiêu</a></li><li><a href='https://www.giaosucan.com/2021/08/giai-phap-multi-tenancy.html'>Giải pháp multi-tenancy</a></li><li><a href='https://www.giaosucan.com/2021/07/logging-service.html'>Logging Service - Part 1</a></li><li><a href='https://www.giaosucan.com/2021/07/ki-su-luong-tram-cu.html'>Kĩ sư lương trăm củ</a></li><li><a href='https://www.giaosucan.com/2021/07/toi-va-chi-co-gai-voi-muc-luong-tram.html'>Tôi và chị, cô gái với mức lương trăm triệu</a></li><li><a href='https://www.giaosucan.com/2021/07/viet-code-va-viet-doc.html'>Viết code và viết doc</a></li><li><a href='https://www.giaosucan.com/2021/06/engineers-hate-sql.html'>ENGINEERS HATE SQL</a></li><li><a href='https://www.giaosucan.com/2021/06/nghi-viec.html'>Nghỉ việc</a></li><li><a href='https://www.giaosucan.com/2021/06/devops-tu-truyen.html'>DevOps tự truyện</a></li><li><a href='https://www.giaosucan.com/2021/05/theo-chi-hang-hoc-argocd-part-1.html'>Theo chị Hằng học ArgoCD - part 1</a></li><li><a href='https://www.giaosucan.com/2021/05/mot-ngay-cua-ki-su-devops.html'>Một ngày của kĩ sư DevOps</a></li><li><a href='https://www.giaosucan.com/2021/05/oc-code-ao-code.html'>Độc Code Đạo Code</a></li><li><a href='https://www.giaosucan.com/2021/05/frequencytribe-3-k8s-monitoring.html'>FrequencyTribe 3 - K8S monitoring</a></li><li><a href='https://www.giaosucan.com/2021/04/toi-tro-thanh-ti-phu-nho-nghe-it.html'>Tôi đã trở thành tỉ phú nhờ nghề IT</a></li><li><a href='https://www.giaosucan.com/2021/04/frequency-tribe-part-2-infra-deployment.html'>Frequency Tribe Part 2 - Infra deployment</a></li><li><a href='https://www.giaosucan.com/2021/04/buon-at-hay-buon-code.html'>Buôn đất hay buôn code</a></li><li><a href='https://www.giaosucan.com/2021/04/frequencytribe-chatbot.html'>FrequencyTribe - Chatbot</a></li><li><a href='https://www.giaosucan.com/2021/03/cau-chuyen-khach-hang.html'>Câu chuyện khách hàng</a></li><li><a href='https://www.giaosucan.com/2021/03/setup-ha-k8s-cluster.html'>Setup HA K8s cluster</a></li><li><a href='https://www.giaosucan.com/2021/03/coding-luan-su-3-anh-hung-truyen.html'>Coding luận sử 3 - Anh hùng truyện</a></li></ul>
<h2 class='channel-title'># <a href='https://quan-cam.com' target='_blank'>https://quan-cam.com</a></h2>
<ul class='feed-items'>
<li><a href='https://quancam.net/posts/chuyen-ve-cai-service-a'>Nhật ký hốt sh*t—Chuyện về cái service A</a></li><li><a href='https://quancam.net/posts/elixir-compiler-1'>Vài ghi chép về Elixir Compiler (phần 1)</a></li><li><a href='https://quancam.net/posts/lamport-timestamp'>Lamport timestamp</a></li><li><a href='https://quancam.net/posts/viet-cho-tuoi-20'>Viết cho tuổi 20</a></li><li><a href='https://quancam.net/posts/cache-stampede-hien-tuong-chat-dong-cache'>Cache stampede—Hiện tượng chất đống cache</a></li><li><a href='https://quancam.net/posts/exunit-capture-log-va-erlang-io-system'>ExUnit capture log và Erlang IO system</a></li><li><a href='https://quancam.net/posts/elixir-ngon-ngu-viet-bang-macro'>Elixir - Ngôn ngữ được viết bằng macros</a></li><li><a href='https://quancam.net/posts/timing-attack'>Timing attack</a></li><li><a href='https://quancam.net/posts/http-caching'>Một số kĩ thuật caching với HTTP/1.1</a></li><li><a href='https://quancam.net/posts/vo-chieu-thang-huu-chieu'>Vô chiêu thắng hữu chiêu</a></li></ul>
<h2 class='channel-title'># <a href='https://thefullsnack.com' target='_blank'>https://thefullsnack.com</a></h2>
<ul class='feed-items'>
<li><a href='https://thefullsnack.com/posts/sketching-thinking.html'>Paper Review: What do Sketches say about Thinking</a></li><li><a href='https://thefullsnack.com/posts/lucid-dream-learning.html'>Paper Review: Chuyện học khi "mê sảng"</a></li><li><a href='https://thefullsnack.com/posts/mechkeyboard-third-part.html'>Keyboard from Scratch: Từ A tới Z</a></li><li><a href='https://thefullsnack.com/posts/javascript-iterator.html'>Vài ghi chép về Iterator trong JavaScript</a></li><li><a href='https://thefullsnack.com/posts/javascript-replace-with-callback.html'>Hàm replace() xài với callback</a></li><li><a href='https://thefullsnack.com/posts/mechkeyboard-second-part.html'>Keyboard from Scratch: Debounce</a></li><li><a href='https://thefullsnack.com/posts/tail-call-optimization-javascript.html'>Tail Call Optimization là gì? Và tại sao bạn không cần quan tâm đến nó?</a></li><li><a href='https://thefullsnack.com/posts/unsubscribe.html'>Cái nút Unsubscribe</a></li><li><a href='https://thefullsnack.com/posts/a-taste-of-atomic-css.html'>A taste of Atomic CSS</a></li><li><a href='https://thefullsnack.com/posts/ripgrep-emacs.html'>Helm, Ripgrep và Emacs dùng... helm-ag</a></li><li><a href='https://thefullsnack.com/posts/framework-or-library.html'>Là framework? hay là library?</a></li><li><a href='https://thefullsnack.com/posts/blame-driven-development.html'>Blame Driven Development</a></li><li><a href='https://thefullsnack.com/posts/wtf-is-problem-solving-skill.html'>Bàn về Problem Solving Skill</a></li><li><a href='https://thefullsnack.com/posts/javascript-promise-va-map.html'>Promise, Async/Await và Map/Reduce</a></li><li><a href='https://thefullsnack.com/posts/paper-and-pen.html'>Giấy với bút</a></li><li><a href='https://thefullsnack.com/posts/review-why-functional-programming-matters.html'>Paper Review: Why Functional Programming Matters</a></li><li><a href='https://thefullsnack.com/posts/javascript-v8-notes.html'>Vài ghi chép về V8 và Garbage Collection</a></li><li><a href='https://thefullsnack.com/posts/css-specificity.html'>Hai kiểu lập trình viên</a></li><li><a href='https://thefullsnack.com/posts/spacemacs-to-initel.html'>Từ spacemacs đến init.el</a></li><li><a href='https://thefullsnack.com/posts/0x0b.html'>0x0B và JSON parser</a></li></ul>
<h2 class='channel-title'># <a href='https://ehkoo.com' target='_blank'>https://ehkoo.com</a></h2>
<ul class='feed-items'>
<li><a href='https://ehkoo.com/bai-viet/whats-new-in-javascript-es2020'>ES2020 có gì hot?</a></li><li><a href='https://ehkoo.com/bai-viet/why-trailing-comma-javascript'>Tại sao lại để dư một dấu phẩy?</a></li><li><a href='https://ehkoo.com/bai-viet/javascript-useful-object-constructor-methods'>Những phương thức hữu ích của Object constructor</a></li><li><a href='https://ehkoo.com/bai-viet/static-web-vuepress-github-pages'>Tạo web siêu dễ với VuePress và Github Pages</a></li><li><a href='https://ehkoo.com/bai-viet/essential-ecmascript'>Những điều cần biết về ECMAScript</a></li><li><a href='https://ehkoo.com/bai-viet/introduction-to-functional-utility-first-atomic-css'>Atomic CSS, Vì Một Thế Giới Hoà Bình</a></li><li><a href='https://ehkoo.com/bai-viet/ehkoo-what-is-webp-image-optimization-cloudinary'>Tối ưu hoá hình ảnh cho Ehkoo</a></li><li><a href='https://ehkoo.com/bai-viet/react-hooks-la-gi'>React Hooks là gì?</a></li><li><a href='https://ehkoo.com/bai-viet/console-khong-chi-co-log'>Console không chỉ có log</a></li><li><a href='https://ehkoo.com/bai-viet/free-javascript-books-beginner-advanced'>10+ tài liệu JavaScript từ cơ bản đến nâng cao</a></li><li><a href='https://ehkoo.com/bai-viet/nhung-thu-vien-xu-ly-ngay-thang-trong-javascript'>Những thư viện xử lý ngày tháng trong JavaScript</a></li><li><a href='https://ehkoo.com/bai-viet/can-ban-ve-css-variables'>Căn bản về CSS Variables</a></li><li><a href='https://ehkoo.com/bai-viet/tim-hieu-ve-proxy-trong-es6'>Tìm hiểu về Proxy trong ES6</a></li><li><a href='https://ehkoo.com/bai-viet/sublime-text-3-themes'>10+ giao diện đẹp xuất sắc cho Sublime Text 3</a></li><li><a href='https://ehkoo.com/bai-viet/tat-tan-tat-ve-promise-va-async-await'>Tất tần tật về Promise và async/await</a></li><li><a href='https://ehkoo.com/bai-viet/react-phat-hanh-phien-ban-16-4'>React 16.4 hỗ trợ các sự kiện của pointer</a></li><li><a href='https://ehkoo.com/bai-viet/vscode-must-have-plugins'>Những plugins không thể thiếu cho VSCode</a></li><li><a href='https://ehkoo.com/bai-viet/lap-trinh-front-end-duoc-loi-ich-gi-tu-http2'>Lập trình front-end hưởng lợi gì từ HTTP/2?</a></li><li><a href='https://ehkoo.com/bai-viet/lam-game-calculator-voi-ky-thuat-currying-va-react'>Làm game Calculator với kỹ thuật currying và React</a></li><li><a href='https://ehkoo.com/bai-viet/git-workflow-phan-nhanh-va-chia-viec-trong-nhom'>Cách phân nhánh và chia việc trong nhóm với Git</a></li></ul>
<h2 class='channel-title'># <a href='https://michaelscodingspot.com' target='_blank'>https://michaelscodingspot.com</a></h2>
<ul class='feed-items'>
<li><a href='https://michaelscodingspot.com/javascript-performance-apis/'>New browser APIs to detect JavaScript performance problems in production</a></li><li><a href='https://michaelscodingspot.com/slow-asp-net-server/'>Why is your ASP.NET server so slow? 10 performance problems and solutions</a></li><li><a href='https://michaelscodingspot.com/maximizing-the-power-of-logs-as-your-application-scales/'>Maximizing the power of logs as your application scales</a></li><li><a href='https://michaelscodingspot.com/what-i-learned-about-c-from-job-interviews/'>What I Learned About C# From Job Interviews</a></li><li><a href='https://michaelscodingspot.com/dynamic-queries/'>Dynamic Queries with Expressions Trees in C#</a></li><li><a href='https://michaelscodingspot.com/application-memory-health/'>6 Best Practices to Keep a .NET Application’s Memory Healthy</a></li><li><a href='https://michaelscodingspot.com/attributes-and-middleware-in-asp-net-core/'>Use Attributes & Middleware in ASP.NET Core for Logging, Telemetry, and Anything Else</a></li><li><a href='https://michaelscodingspot.com/self-publishing-programming-book/'>How I Self-Published a Programming Book and Lived to Tell About It</a></li><li><a href='https://michaelscodingspot.com/dotnet-dll-hell/'>Assembly Versioning and DLL Hell in C# .NET Framework: Problems and Solutions</a></li><li><a href='https://michaelscodingspot.com/productivity-tips-in-visual-studio/'>5 Productivity Tips in Visual Studio That You Should Know</a></li></ul>
<h2 class='channel-title'># <a href='https://coderethinked.com' target='_blank'>https://coderethinked.com</a></h2>
<ul class='feed-items'>
<li><a href='https://coderethinked.com/cancelling-a-request-issues-a-cancellation-on-backend/'>Cancelling a request issues a cancellation on backend?</a></li><li><a href='https://coderethinked.com/how-to-cancel-a-request-using-axios-in-vue-js/'>How to cancel a request using Axios in Vue JS</a></li><li><a href='https://coderethinked.com/observer-design-pattern-with-an-example-in-csharp/'>Observer Design Pattern with an example in CSharp</a></li><li><a href='https://coderethinked.com/integrating-backend-in-vue-applications-with-a-proxy/'>Integrating backend in Vue applications with a proxy</a></li><li><a href='https://coderethinked.com/v-tooltip-a-custom-directive-for-showing-tooltip-in-vue-js/'>v-tooltip: A custom directive for showing tooltip in VUE JS</a></li><li><a href='https://coderethinked.com/how-does-asp-net-core-processes-a-request/'>How does ASP.NET Core processes a request?</a></li><li><a href='https://coderethinked.com/configuring-dependency-injection-in-net-core-console-applications/'>Configuring Dependency Injection in .NET Core Console Applications</a></li><li><a href='https://coderethinked.com/how-to-mock-an-axios-call-with-jest-in-vue-tests-utils/'>How to Mock an AXIOS call with Jest in vue tests utils</a></li><li><a href='https://coderethinked.com/shallowmount-vs-mount-in-vue-test-utils-with-an-example/'>shallowMount vs mount in vue test utils with an example</a></li><li><a href='https://coderethinked.com/setting-up-unit-tests-in-vue-with-jest-framework/'>Setting up unit tests In Vue With Jest framework</a></li></ul>
<h2 class='channel-title'># <a href='https://www.meziantou.net' target='_blank'>https://www.meziantou.net</a></h2>
<ul class='feed-items'>
<li><a href='https://www.meziantou.net/lazy-load-assemblies-in-a-blazor-webassembly-application.htm?utm_medium=social&utm_source=syndication'>Lazy load assemblies in a Blazor WebAssembly application</a></li><li><a href='https://www.meziantou.net/using-foreach-with-ienumerator-t-iasyncenumerator-t-in-csharp-9.htm?utm_medium=social&utm_source=syndication'>Using foreach with IEnumerator<T> / IAsyncEnumerator<T> in C# 9</a></li><li><a href='https://www.meziantou.net/copying-text-to-clipboard-in-a-blazor-application.htm?utm_medium=social&utm_source=syndication'>Copying text to the clipboard in a Blazor application</a></li><li><a href='https://www.meziantou.net/anchor-navigation-in-a-blazor-application.htm?utm_medium=social&utm_source=syndication'>Anchor navigation in a Blazor application</a></li><li><a href='https://www.meziantou.net/splitting-code-and-markup-into-different-files-when-creating-a-blazor-component.htm?utm_medium=social&utm_source=syndication'>Splitting code and markup into different files when creating a Blazor component</a></li><li><a href='https://www.meziantou.net/running-and-debugging-a-dotnet-core-application-in-wsl-2-from-visual-studio.htm?utm_medium=social&utm_source=syndication'>Running and debugging a .NET Core application in WSL 2 from Visual Studio</a></li><li><a href='https://www.meziantou.net/optimizing-a-blazor-webassembly-application-size.htm?utm_medium=social&utm_source=syndication'>Optimizing a Blazor WebAssembly application size</a></li><li><a href='https://www.meziantou.net/using-hierarchyid-with-entity-framework-core.htm?utm_medium=social&utm_source=syndication'>Using SQL Server HierarchyId with Entity Framework Core</a></li><li><a href='https://www.meziantou.net/showing-a-confirm-dialog-before-doing-an-action-in-blazor.htm?utm_medium=social&utm_source=syndication'>Showing a confirm dialog before doing an action in Blazor</a></li><li><a href='https://www.meziantou.net/don-t-freeze-ui-while-executing-cpu-intensive-work-in-blazor-webassembly.htm?utm_medium=social&utm_source=syndication'>How to prevent the UI from freezing while executing CPU intensive work in Blazor WebAssembly</a></li></ul>
<h2 class='channel-title'># <a href='https://wesbos.com' target='_blank'>https://wesbos.com</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/TZnlAohJles/'>Uses</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/of0vG-oX8AM/'>Beginner JavaScript</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/x1gxY-UcH5Q/'>Flying a DJI Tello Drone with React and Node.js</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/qAiHDkMbeJQ/'>React’s New Context API Explained</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/b0aD4PsAHeg/'>React for Beginners Re-Recorded (again!)</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/8uUb7JRheUM/'>Announcing my CSS Grid Course</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/pg31NFs_HPo/'>Announcing Learn Node!</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/Mb8dj0obT90/'>The Breakout Email Management System</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/hE1NkIMQd5w/'>Announcing JavaScript30 — A Free 30 day Vanilla JS Coding Challenge</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/w1S9F5beCW4/'>A Dead Simple intro to Destructuring JavaScript Objects</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/CG7wC7bbFOk/'>Rename & Destructure Variables in ES6</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/Bw2kBtL4jw0/'>Setting Default Values with JavaScript’s Destructuring</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/Q12vvseuJRU/'>4 New String Methods in ES6 that you should know</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/ruWMja9pTCg/'>How to Sanitize Data with ES6 Template Strings</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/SFvr-m_nVZQ/'>Tagged Template Literals</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/-CbIIlSNU2M/'>Easy Creation of HTML with JavaScript’s Template Strings</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/20MJ4Em4qhY/'>An Intro to Template Strings</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/F7JSaRtTXXs/'>React For Beginners Updated and Re-Recorded!</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/zxdlBTArrx0/'>JavaScript Default Function Arguments</a></li><li><a href='http://feedproxy.google.com/~r/wesbos/ZXAx/~3/xiNZjWggMwA/'>JavaScript Arrow Functions and this scoping</a></li></ul>
<h2 class='channel-title'># <a href='https://nghethuatcoding.com' target='_blank'>https://nghethuatcoding.com</a></h2>
<ul class='feed-items'>
<li><a href='https://nghethuatcoding.com2020/05/10/cau-lenh-linux-hay-dung-trong-phan-tich-log'>6 câu lệnh linux hay dùng trong phân tích log</a></li><li><a href='https://nghethuatcoding.com2020/05/09/toan-tap-ve-startup-burnrate'>Toàn tập về startup - Burn Rate</a></li><li><a href='https://nghethuatcoding.com2020/05/02/dao-sau-ve-mysql'>Đào sâu về MySQL</a></li><li><a href='https://nghethuatcoding.com2019/08/03/ginco-da-su-dung-va-toi-uu-cloud-functions-nhu-the-nao'>Ginco đã sử dụng và tối ưu Cloud Functions như thế nào</a></li><li><a href='https://nghethuatcoding.com2019/07/07/xay-dung-ung-dung-realtime-messaging-bang-firebase-xu-li-100k-request-s/'>Xây dựng ứng dụng realtime messaging bằng Firebase xử lí 100k request/s</a></li><li><a href='https://nghethuatcoding.com2019/06/27/engineer-jav-thuc-hien-test-theo-cach-kinh-dien-nhat/'>Engineer JAV thực hiện test theo cách kinh điển nhất như thế nào</a></li><li><a href='https://nghethuatcoding.com2019/06/25/nhung-chu-y-khi-chon-mysql-lam-database/'>Những chú ý khi chọn MySQL làm database</a></li><li><a href='https://nghethuatcoding.com2019/06/15/thiet-ke-api-rate-limiting/'>Thiết kế API Rate Limiting</a></li><li><a href='https://nghethuatcoding.com2019/06/05/viblo-code-challenge-duoc-xay-dung-nhu-the-nao/'>Hệ thống Viblo Code Challenge được xây dựng như thế nào</a></li><li><a href='https://nghethuatcoding.com2019/06/01/discord-da-luu-tru-hang-ti-messages-moi-ngay-nhu-the-nao/'>Discord đã lưu trữ hàng tỉ messages mỗi ngày như thế nào</a></li><li><a href='https://nghethuatcoding.com2019/05/31/12-plugin-nen-dung-trong-adobe-xd/'>12 plugin nên dùng trong Adobe XD</a></li><li><a href='https://nghethuatcoding.com2019/05/26/tat-tan-tat-ve-apache-cassandra/'>Tất tần tật về Apache Cassandra</a></li><li><a href='https://nghethuatcoding.com2019/05/19/instagram-da-sinh-ra-id-trong-database-cua-ho-nhu-the-nao/'>Instagram đã sinh ra ID trong database của họ như thế nào</a></li><li><a href='https://nghethuatcoding.com2019/05/18/test-tai-he-thong-thuc-su-can-thiet/'>Test tải hệ thống thực sự cần thiết?</a></li><li><a href='https://nghethuatcoding.com2019/05/16/call-api-trong-vuejs-theo-cach-thong-minh-nhat/'>Call API trong VueJS theo cách thông minh nhất</a></li><li><a href='https://nghethuatcoding.com2019/05/13/thiet-ke-he-thong-url-shortening/'>Thiết kế hệ thống URL Shortening giống Bit.ly chịu tải 6 tỷ click 1 tháng</a></li><li><a href='https://nghethuatcoding.com2019/05/12/tai-sao-google-lai-tim-kiem-rat-nhanh/'>Tại sao Google lại tìm kiếm rất nhanh?</a></li><li><a href='https://nghethuatcoding.com2019/05/10/8-tips-giup-tang-hieu-nang-lam-viec-tren-github/'>8 tips giúp tăng hiệu suất làm việc trên Github</a></li><li><a href='https://nghethuatcoding.com2019/05/08/console-javascript-qua-kinh-khung/'>Console Javascript quá kinh khủng</a></li><li><a href='https://nghethuatcoding.com2019/05/07/designer-co-the-lam-gi-trong-toi-uu-hieu-nang-website/'>Designer nên làm gì trong việc tối ưu hiệu năng Website</a></li></ul>
<h2 class='channel-title'># <a href='http://codetunnel.com' target='_blank'>http://codetunnel.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.chevtek.io/how-dare-you-be-nice-on-a-qa-site/'>"How dare you be cordial on a QA site."</a></li><li><a href='https://www.chevtek.io/how-to-create-versatile-loading-spinner-management-in-react/'>How to do loading spinners, the React way.</a></li><li><a href='https://www.chevtek.io/npm-5-changes-to-npm-link/'>Npm 5 changes to npm link.</a></li><li><a href='https://www.chevtek.io/how-to-do-loading-spinners-the-angular-2/'>How to do loading spinners, the Angular 2+ way.</a></li><li><a href='https://www.chevtek.io/you-can-finally-npm-link-packages-that-contain-peer-dependencies/'>You can finally "npm link" packages that contain peer dependencies!</a></li><li><a href='https://www.chevtek.io/why-i-think-micro-packages-are-a-good-thing/'>Why I think "micro-packages" are a good thing.</a></li><li><a href='https://www.chevtek.io/its-always-something-stupid/'>It's Always Something Stupid</a></li><li><a href='https://www.chevtek.io/an-intuitive-way-to-organize-your-expressjs-routes/'>An Intuitive Way To Organize Your ExpressJS Routes</a></li><li><a href='https://www.chevtek.io/how-to-do-loading-spinners-the-angular-way-2/'>How to do loading spinners, the Angular way.</a></li><li><a href='https://www.chevtek.io/my-development-setup/'>My Development Setup</a></li><li><a href='https://www.chevtek.io/how-to-properly-preserve-legacy-urls-in-your-express-app/'>How To Properly Preserve Legacy URLs In Your Express App</a></li><li><a href='https://www.chevtek.io/merge-vs-rebase-part-3-what-is-a-rebase/'>Merge vs Rebase: Part 3 - What is a rebase?</a></li><li><a href='https://www.chevtek.io/merge-vs-rebase-part-2-what-is-a-merge/'>Merge vs Rebase: Part 2 - What is a merge?</a></li><li><a href='https://www.chevtek.io/merge-vs-rebase-part-1-what-is-a-commit-hash/'>Merge vs Rebase: Part 1 - What is a commit hash?</a></li><li><a href='https://www.chevtek.io/how-to-persist-url-hash-fragments-across-a-login-redirect/'>How to persist URL hash fragments across a login redirect.</a></li></ul>
<h2 class='channel-title'># <a href='https://code-maze.com' target='_blank'>https://code-maze.com</a></h2>
<ul class='feed-items'>
<li><a href='https://code-maze.com/working-with-asp-net-core-middleware/'>ASP.NET Core Middleware – Creating Flexible Application Flows</a></li><li><a href='https://code-maze.com/code-maze-weekly-88/'>Code Maze Weekly #88</a></li><li><a href='https://code-maze.com/azure-active-directory-b2c-with-blazor-webassembly-hosted-apps/'>Azure Active Directory B2C with Blazor WebAssembly Hosted Apps</a></li><li><a href='https://code-maze.com/code-maze-weekly-87/'>Code Maze Weekly #87</a></li><li><a href='https://code-maze.com/onion-architecture-in-aspnetcore/'>Onion Architecture in ASP.NET Core</a></li><li><a href='https://code-maze.com/code-maze-weekly-86/'>Code Maze Weekly #86</a></li><li><a href='https://code-maze.com/using-app-roles-with-azure-active-directory-and-blazor-webassembly-hosted-apps/'>Using App Roles with Azure Active Directory and Blazor WebAssembly Hosted Apps</a></li><li><a href='https://code-maze.com/code-maze-weekly-85/'>Code Maze Weekly #85</a></li><li><a href='https://code-maze.com/c-tips-to-improve-code-quality-and-performance/'>C# Tips to Improve Code Quality and Performance</a></li><li><a href='https://code-maze.com/code-maze-weekly-84/'>Code Maze Weekly #84</a></li></ul>
<h2 class='channel-title'># <a href='https://bloglaptrinh2016.wordpress.com' target='_blank'>https://bloglaptrinh2016.wordpress.com</a></h2>
<ul class='feed-items'>
<li><a href='https://bloglaptrinh2016.wordpress.com/2019/10/14/strobe-light-disco-music-party/'>Strobe Light – Disco Music Party</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2019/01/08/android-set-custom-font-from-assets-to-textview/'>Android Set custom font from Assets to Textview</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2019/01/08/android-textview-show-html-image-from-url/'>Android textview show html, image from URL</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2019/01/08/best-animations-for-page-transformer-viewpager-android/'>Best animations for page transformer Viewpager android</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2019/01/07/read-gradle-properties-best-way-to-store-your-api-keys-for-your-android-studio-project/'>Read gradle.properties – Best Way to Store your Api Keys for your Android Studio Project</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2018/12/30/doc-sach-phi-ly-tri/'>ĐỌC SÁCH PHI LÝ TRÍ</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2018/12/30/doc-sach-cach-song-tu-binh-thuong-tro-nen-phi-thuong/'>Đọc sách Cách Sống Từ Bình Thường Trở Nên Phi Thường</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2018/12/30/doc-sach-di-tim-le-song/'>Đọc sách Đi Tìm Lẽ Sống</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2018/12/30/con-nguoi-co-khi-phi-ly-tri-hon-chung-ta-tuong-con-nguoi-thuong-khong-hieu-duoc-tac-dong-cua-xuc-cam-doi-voi-nhung-gi-minh-muon-va-hay-danh-gia-qua-cao-nhung-gi-minh-co/'>Đọc sách Phi Lý Trí</a></li><li><a href='https://bloglaptrinh2016.wordpress.com/2018/12/30/doc-sach-mac-ke-thien-ha-song-nhu-nguoi-nhat/'>Đọc sách Mặc Kệ Thiên Hạ – Sống Như Người Nhật</a></li></ul>
<h2 class='channel-title'># <a href='https://ngoclamman.wordpress.com' target='_blank'>https://ngoclamman.wordpress.com</a></h2>
<ul class='feed-items'>
<li><a href='https://ngoclamman.wordpress.com/2020/12/01/iis-http-error-403-14-forbidden/'>[IIS] http error 403.14 – forbidden</a></li><li><a href='https://ngoclamman.wordpress.com/2020/11/30/mongodb-install-on-windows/'>[MongoDB] Install on Windows</a></li><li><a href='https://ngoclamman.wordpress.com/2020/11/01/windows-installation-erlang-and-rabbitmq/'>[RabbitMQ] Windows installation Erlang and RabbitMQ</a></li><li><a href='https://ngoclamman.wordpress.com/2019/03/07/mvc-ef-call-stored-procedure-from-entity-framework/'>[MVC – EF] Call Stored Procedure From Entity Framework</a></li><li><a href='https://ngoclamman.wordpress.com/2018/01/02/tach-chuoi-theo-ky-tu-dac-biet/'>[Excel] Tách chuỗi theo ký tự đặc biệt</a></li><li><a href='https://ngoclamman.wordpress.com/2017/11/14/sql-server-sql-server-sys-database/'>[SQL Server] Sql Server – Sys Database</a></li><li><a href='https://ngoclamman.wordpress.com/2017/10/31/sql-servertoi-uu-hoa-cau-lenh-sql-server/'>[SQL Server]Tối ưu hóa câu lệnh SQL Server</a></li><li><a href='https://ngoclamman.wordpress.com/2017/10/18/sql-server-send-database-mail-in-html-table-format-from-sql-server/'>[SQL SERVER] Send Database Mail in HTML Table Format from SQL Server</a></li><li><a href='https://ngoclamman.wordpress.com/2017/10/11/asp-net-page-life-cycle/'>ASP.NET page life cycle</a></li><li><a href='https://ngoclamman.wordpress.com/2017/10/05/system-odbc-driver-error/'>[System] ODBC Driver Error</a></li></ul>
<h2 class='channel-title'># <a href='https://mindofai.github.io' target='_blank'>https://mindofai.github.io</a></h2>
<ul class='feed-items'>
<li><a href='https://mindofai.github.io/Building-a-Real-Time-Chat-App-With-SignalR-and-Xamarin/'>Building a Real-Time Chat App With SignalR and Xamarin</a></li><li><a href='https://mindofai.github.io/Mobile-.NET-Developers-Philippines-February-Session/'>Mobile .NET Developers Philippines February Session</a></li><li><a href='https://mindofai.github.io/Creating-Native-macOS-Apps-with-Xamarin.Forms/'>Creating Native macOS Apps with Xamarin.Forms</a></li><li><a href='https://mindofai.github.io/Mobile-.NET-Developers-Philippines-October-Session/'>Mobile .NET Developers Philippines October Session</a></li><li><a href='https://mindofai.github.io/Solving-the-Marketing-Icon-issue-in-iTunes-Connect/'>Solving the Marketing Icon issue in iTunes Connect</a></li><li><a href='https://mindofai.github.io/Integrating-Xamarin-Test-Recorder-for-Mac-and-Xamarin-Test-Cloud/'>Integrating Xamarin Test Recorder for Mac and Xamarin Test Cloud</a></li><li><a href='https://mindofai.github.io/Mobile-.NET-Developers-Philippines-September-Session/'>Mobile .NET Developers Philippines September Session</a></li><li><a href='https://mindofai.github.io/Implementing-Localization-with-Xamarin.Forms/'>Implementing Localization with Xamarin.Forms using Resx files</a></li><li><a href='https://mindofai.github.io/Mobile-DevOps-Event-An-Agile-Efficient-and-Iterative-Mobile-Development-Journey/'>Mobile DevOps Event (An Agile Efficient and Iterative Mobile Development Journey)</a></li><li><a href='https://mindofai.github.io/Installing-Visual-Studio-for-Mac/'>Installing Visual Studio for Mac</a></li></ul>
<h2 class='channel-title'># <a href='https://www.kevinkuszyk.com' target='_blank'>https://www.kevinkuszyk.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.kevinkuszyk.com/2018/12/10/git-tips-6-using-git-with-multiple-email-addresses/'>Git Tips #6 - Using Git with Multiple Email Addresses</a></li><li><a href='https://www.kevinkuszyk.com/2016/11/28/connect-your-docker-client-to-a-remote-docker-host/'>Connect your Docker client to a remote Docker host</a></li><li><a href='https://www.kevinkuszyk.com/2016/11/24/ssh-to-a-linux-host-from-windows-10/'>SSH to a Linux host from Windows 10</a></li><li><a href='https://www.kevinkuszyk.com/2016/11/03/running-linux-docker-containers-on-windows-without-virtualization/'>Running Linux Docker containers on Windows without virtualization</a></li><li><a href='https://www.kevinkuszyk.com/2016/10/26/deploying-sql-databases-using-entity-framework-migrations-and-octopus-deploy/'>Deploying SQL databases using Entity Framework migrations and Octopus Deploy</a></li><li><a href='https://www.kevinkuszyk.com/2016/10/06/how-to-find-out-your-nuget-dependencies-in-code/'>How to find out your NuGet dependencies in code</a></li><li><a href='https://www.kevinkuszyk.com/2016/10/06/azure-cli-wont-upgrade-to-the-latest-version/'>Azure CLI won't upgrade to the latest version</a></li><li><a href='https://www.kevinkuszyk.com/2016/09/30/cloning-a-private-git-repository-with-libgit2sharp-and-git-credential-manager-for-windows/'>Cloning a private Git repository with LibGit2Sharp and Git Credential Manager for Windows</a></li><li><a href='https://www.kevinkuszyk.com/2016/08/19/paging-through-query-results-in-azure-documentdb/'>Paging through query results in Azure DocumentDB</a></li><li><a href='https://www.kevinkuszyk.com/2016/08/17/git-tips-5-prune-branches-to-keep-your-repro-in-good-shape/'>Git Tips #5 - Prune branches to keep your repro in good shape</a></li><li><a href='https://www.kevinkuszyk.com/2016/03/22/git-tips-4-setup-an-outlook-rule-to-filter-github-notifications/'>Git Tips #4 - Setup an Outlook rule to filter GitHub notifications</a></li><li><a href='https://www.kevinkuszyk.com/2016/03/09/git-tips-3-changing-the-git-rebase-comment-character/'>Git Tips #3 - Change the Git rebase comment character</a></li><li><a href='https://www.kevinkuszyk.com/2016/03/08/git-tips-2-change-editor-for-interactive-git-rebase/'>Git Tips #2 - Change editor for interactive Git rebase</a></li><li><a href='https://www.kevinkuszyk.com/2016/01/04/git-tips-1-save-a-stash-with-a-custom-message/'>Git Tips #1 - Save a stash with a custom message</a></li><li><a href='https://www.kevinkuszyk.com/2015/10/05/fixing-filevault-bitlocker-dual-boot-after-upgrading-to-el-capitan/'>Fixing FileVault / BitLocker dual boot after upgrading to El Capitan</a></li></ul>
<h2 class='channel-title'># <a href='http://duthaho.com' target='_blank'>http://duthaho.com</a></h2>
<ul class='feed-items'>
<li><a href='https://duthaho.com/how-i-build-blood-alcohol-calculator/'>Tôi đã làm trang web Đo nồng độ cồn?</a></li><li><a href='https://duthaho.com/a-bookmark-reading-list/'>A bookmark reading list for programmers</a></li><li><a href='https://duthaho.com/1977-javascript-quizzes/'>1977 câu hỏi xoáy đáp xoay trong JavaScript</a></li><li><a href='https://duthaho.com/prototype-in-javascript-2/'>Tìm hiểu Prototype trong JavaScript (Phần 2)</a></li><li><a href='https://duthaho.com/prototype-in-javascript/'>Tìm hiểu Prototype trong JavaScript (Phần 1)</a></li><li><a href='https://duthaho.com/js-cloning-array/'>1001 cách tạo Array trong JavaScript (Phần 2)</a></li><li><a href='https://duthaho.com/js-creating-array/'>1001 cách tạo Array trong JavaScript (Phần 1)</a></li><li><a href='https://duthaho.com/js-first-class-functions-2/'>First-class functions trong JavaScript là gì (Phần 2)?</a></li><li><a href='https://duthaho.com/js-first-class-functions/'>First-class functions trong JavaScript là gì (Phần 1)?</a></li><li><a href='https://duthaho.com/react-component-lifecycle-3/'>Tìm hiểu vòng đời của React 16+ component (Phần 3)</a></li><li><a href='https://duthaho.com/react-component-lifecycle-2/'>Tìm hiểu vòng đời của React 16+ component (Phần 2)</a></li><li><a href='https://duthaho.com/js-promise/'>Tìm hiểu về promise trong JavaScript</a></li><li><a href='https://duthaho.com/react-component-lifecycle-1/'>Tìm hiểu vòng đời của React 16+ component (Phần 1)</a></li><li><a href='https://duthaho.com/js-this-context/'>Tìm hiểu về this context trong JavaScript</a></li></ul>
<h2 class='channel-title'># <a href='https://thienn.com' target='_blank'>https://thienn.com</a></h2>
<ul class='feed-items'>
<li><a href='http://thienn.com/plug-in-architecture-on-aspnetcore-dependency-problems-solutions/'>Plug-in architecture on ASP.NET Core - Dependency problems and solutions</a></li><li><a href='http://thienn.com/simplcommerce-1-0-rc-available/'>SimplCommerce 1.0.0-RC Available</a></li><li><a href='http://thienn.com/deploying-simplcommerce-aspnetcore-aws-beanstalk-docker-postgresql/'>Deploying SimplCommcere, an ASP.NET Core Application to AWS Elastic Beanstalk with Docker and PostgreSQL</a></li><li><a href='http://thienn.com/aspnetcore-docker-multi-stage-builds-simplcommerce/'>How did I reduce the docker image of SimplCommerce from 900M to 145M using multi-stage builds</a></li><li><a href='http://thienn.com/aspnet-vs-aspnetcore/'>ASP.NET vs ASP.NET Core</a></li><li><a href='http://thienn.com/upgraded-projectjson-csproj-simplcommerce/'>Upgraded from project.json to csproj for SimplCommerce</a></li><li><a href='http://thienn.com/aspnetcore-beginner-guide/'>ASP.NET Core - A beginner guide</a></li><li><a href='http://thienn.com/change-primary-key-aspnetcore-identity-and-more/'>Change primary key for ASP.NET Core Identity and more</a></li><li><a href='http://thienn.com/modular-web-application-aspnetcore/'>Modular Web Application with ASP.NET Core</a></li><li><a href='http://thienn.com/dockerizing-real-world-aspnetcore-application/'>Dockerizing a real world asp.net core application</a></li></ul>
<h2 class='channel-title'># <a href='https://headmelted.com' target='_blank'>https://headmelted.com</a></h2>
<ul class='feed-items'>
<li><a href='https://headmelted.com/no-the-ipad-pro-is-not-a-development-machine-but-it-so-easily-could-be-41f24b56e6cb?source=rss----c8c132bdbe40---4'>No, The iPad Pro is not a development machine. But it so easily could be.</a></li><li><a href='https://headmelted.com/visual-studio-code-for-arm64-67c19625ba2c?source=rss----c8c132bdbe40---4'>Visual Studio Code for ARM64</a></li><li><a href='https://headmelted.com/introducing-archie-cbf77a7a64fb?source=rss----c8c132bdbe40---4'>Introducing Archie</a></li><li><a href='https://headmelted.com/securing-asp-net-with-free-ssl-tls-certificates-18282192afb0?source=rss----c8c132bdbe40---4'>Securing ASP.NET with free SSL/TLS certificates</a></li><li><a href='https://headmelted.com/securing-asp-net-cookies-a1e1b1648ed?source=rss----c8c132bdbe40---4'>Securing ASP.NET Cookies</a></li><li><a href='https://headmelted.com/continuous-delivery-with-azure-pipelines-and-github-releases-20a0155360d8?source=rss----c8c132bdbe40---4'>Continuous Delivery with Azure Pipelines and Github Releases</a></li><li><a href='https://headmelted.com/using-qemu-to-produce-debian-filesystems-for-multiple-architectures-280df41d28eb?source=rss----c8c132bdbe40---4'>Using QEMU to produce Debian filesystems for multiple architectures</a></li><li><a href='https://headmelted.com/how-to-build-secure-web-applications-a09065d8ed86?source=rss----c8c132bdbe40---4'>How to build secure web applications</a></li><li><a href='https://headmelted.com/serverless-showdown-4a771ca561d2?source=rss----c8c132bdbe40---4'>Serverless Hosting Comparison</a></li><li><a href='https://headmelted.com/coding-for-a-serverless-future-f34ae86c6c2?source=rss----c8c132bdbe40---4'>Coding for a serverless future</a></li></ul>
<h2 class='channel-title'># <a href='https://huydx.com' target='_blank'>https://huydx.com</a></h2>
<ul class='feed-items'>
<li><a href='https://huydx.com/post/639000824803147776'>Wrap up, 2020 was a strange year</a></li><li><a href='https://huydx.com/post/636398319576498176'>Escaping the build trap (book reading)</a></li><li><a href='https://huydx.com/post/622794082000961536'>Phim tài liệu "Long Time No See, WuHan"</a></li><li><a href='https://huydx.com/post/622703115536400384'>Note about Eclipse MAT (Memory Analyzer)</a></li><li><a href='https://huydx.com/post/618992624753360896'>Khảo sát nhỏ về thu nhập engineer tại Nhật</a></li><li><a href='https://huydx.com/post/615376174525399040'>The manager path, book reading #2</a></li><li><a href='https://huydx.com/post/614560718591770624'>Understand about how to implement (fast) queue (#1)</a></li><li><a href='https://huydx.com/post/613824334310653952'>Book reading #1</a></li><li><a href='https://huydx.com/post/190494915179'>May mắn</a></li><li><a href='https://huydx.com/post/190324941899'># Load average, again</a></li><li><a href='https://huydx.com/post/189975472624'>2019 summary</a></li><li><a href='https://huydx.com/post/185310201999'>Tìm đồng nghiệp thật khó</a></li><li><a href='https://huydx.com/post/182234004489'>Livelock</a></li><li><a href='https://huydx.com/post/178413348064'>UUID cho cách mạng 4.0</a></li><li><a href='https://huydx.com/post/177589341214'>Đi làm cách mạng 2.0^2 (phần 3)</a></li><li><a href='https://huydx.com/post/177519118669'>Đi làm cách mạng 2.0^2 (phần 2)</a></li><li><a href='https://huydx.com/post/177448914014'>Đi làm cách mạng 2.0^2</a></li><li><a href='https://huydx.com/post/177205592799'>Gặp anh T</a></li><li><a href='https://huydx.com/post/173260039949'>Load Balancing khó hay dễ</a></li><li><a href='https://huydx.com/post/170457666224'>Một vài ghi chú về CMS GC</a></li></ul>
<h2 class='channel-title'># <a href='https://www.dunebook.com' target='_blank'>https://www.dunebook.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.dunebook.com/20-awesome-opensource-flutter-applications/'>20 awesome Opensource Flutter Applications</a></li><li><a href='https://www.dunebook.com/how-to-accept-payments-in-your-mobile-app/'>How to accept payments in your mobile app</a></li><li><a href='https://www.dunebook.com/are-there-any-similarities-between-web-design-and-art/'>Are There any Similarities Between Web Design and Art?</a></li><li><a href='https://www.dunebook.com/tips-on-increasing-your-organic-traffic-on-wordpress/'>Tips on Increasing your organic traffic on WordPress</a></li><li><a href='https://www.dunebook.com/five-reasons-you-should-start-a-social-media-campaign/'>Five Reasons You Should Start a Social Media Campaign</a></li><li><a href='https://www.dunebook.com/top-10-seo-writing-tips-for-beginners-2021/'>Top 10 SEO Writing Tips for Beginners 2021</a></li><li><a href='https://www.dunebook.com/should-you-become-a-freelancer-in-2021-pros-and-cons/'>Should you become a freelancer in 2021? Pros and Cons</a></li><li><a href='https://www.dunebook.com/the-leading-renewable-energy-trends-in-2021/'>The Leading Renewable Energy Trends in 2021</a></li><li><a href='https://www.dunebook.com/top-20-web-developer-portfolio-templates/'>Top 20 Web Developer Portfolio templates</a></li><li><a href='https://www.dunebook.com/the-list-of-top-websites-to-check-the-grammar-of-an-essay/'>The list of top websites to check the grammar of an essay</a></li></ul>
<h2 class='channel-title'># <a href='https://dottutorials.net' target='_blank'>https://dottutorials.net</a></h2>
<ul class='feed-items'>
<li><a href='https://dottutorials.net/top-seo-tips-for-asp-net-website/'>Top SEO Tips for ASP.NET Website</a></li><li><a href='https://dottutorials.net/weather-app-using-open-weather-map-api-in-net-core/'>Create a Weather app using Open Weather Map API in .Net Core</a></li><li><a href='https://dottutorials.net/extract-movie-ratings-rotten-tomatoes-imdb-net-core/'>Extract Movie Ratings from Rotten Tomatoes and IMDb in .Net Core</a></li><li><a href='https://dottutorials.net/programmatically-generate-word-files-using-interop-in-net-core/'>Programmatically generate Microsoft Word files Using Interop in .Net Core</a></li><li><a href='https://dottutorials.net/how-to-check-for-application-version-updates-in-net-core/'>How to check for application version updates in .Net Core</a></li><li><a href='https://dottutorials.net/best-useful-asp-net-core-3-libraries/'>12 Useful Asp.Net Core 3 Libraries every Developer should know</a></li><li><a href='https://dottutorials.net/top-5-backend-frameworks-to-learn-in-2020/'>Top 5 Backend Frameworks to learn in 2020</a></li><li><a href='https://dottutorials.net/best-net-core-3-articles-from-past-month/'>Best .Net Core 3 Articles from the Past Month</a></li><li><a href='https://dottutorials.net/best-fast-cheap-windows-hosting-asp-net-core/'>Best Fast & Cheap Windows Shared Hostings For ASP.Net Core</a></li><li><a href='https://dottutorials.net/wpf-loading-animation-in-net-core-3/'>Creating Loading Animation for long Tasks in .Net Core 3 WPF</a></li></ul>
<h2 class='channel-title'># <a href='https://michielsioen.be' target='_blank'>https://michielsioen.be</a></h2>
<ul class='feed-items'>
<li><a href='http://msioen.github.io/2020-10-17-mutual-ssl-linux/'>Mutual SSL authentication on .NET Core</a></li><li><a href='http://msioen.github.io/2020-01-12-problem-solving/'>Problem solving</a></li><li><a href='http://msioen.github.io/2019-11-23-the-pwa-experiment-pt2-debugging/'>The PWA Experiment - pt II</a></li><li><a href='http://msioen.github.io/2019-10-26-the-pwa-experiment-pt1-setup/'>The PWA Experiment</a></li><li><a href='http://msioen.github.io/2019-01-29-xamarin-tizen-wearable-experience/'>C# All The Things - Tizen Wearable</a></li><li><a href='http://msioen.github.io/2018-03-01-menubarcodereader/'>Seamless QR scanning on Mac</a></li><li><a href='http://msioen.github.io/2017-12-28-il-weaving-pt2/'>Building a Fody plugin - pt II</a></li><li><a href='http://msioen.github.io/2017-12-02-wix-bootstrapper-customization/'>Customizing WiX bootstrapper layout</a></li><li><a href='http://msioen.github.io/2017-10-21-il-weaving/'>IL weaving</a></li><li><a href='http://msioen.github.io/2017-07-05-guidelines-core-building/'>Going crossplatform</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.codingmilitia.com' target='_blank'>https://blog.codingmilitia.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.codingmilitia.com/2021/07/27/next-level-console-apps-with-spectre-console/'>Next level console apps with Spectre.Console</a></li><li><a href='https://blog.codingmilitia.com/2021/05/10/mistaking-software-for-a-finished-product/'>Mistaking software for a finished product</a></li><li><a href='https://blog.codingmilitia.com/2021/04/07/virtual-as-a-code-smell/'>Virtual as a code smell*</a></li><li><a href='https://blog.codingmilitia.com/2021/03/14/setting-up-demos-in-azure-part-2-github-actions/'>Setting up demos in Azure - Part 2: GitHub Actions</a></li><li><a href='https://blog.codingmilitia.com/2021/03/07/setting-up-demos-in-azure-part-1-arm-templates/'>Setting up demos in Azure - Part 1: ARM templates</a></li><li><a href='https://blog.codingmilitia.com/2021/01/24/streamlining-package-versioning-with-minver/'>Streamlining package versioning with MinVer</a></li><li><a href='https://blog.codingmilitia.com/2020/12/22/getting-started-with-github-actions/'>Getting started with GitHub Actions</a></li><li><a href='https://blog.codingmilitia.com/2020/11/28/going-all-in-with-nullable-reference-types/'>Going all-in with nullable reference types</a></li><li><a href='https://blog.codingmilitia.com/2020/11/15/dotnet-conf-2020-and-dotnet-5-links/'>.NET Conf 2020 and .NET 5 links</a></li><li><a href='https://blog.codingmilitia.com/2020/10/24/2020-10-24-setting-up-a-build-with-nuke/'>Setting up a build with NUKE</a></li><li><a href='https://blog.codingmilitia.com/2020/09/21/shaking-things-up-a-bit-aspf02o-outro/'>Shaking things up a bit - ASPF02O Outro</a></li><li><a href='https://blog.codingmilitia.com/2020/09/07/some-comments-tips-rants-about-my-path-to-kubernetes-certification-ckad/'>Some comments, tips and rants about my path to Kubernetes certification</a></li><li><a href='https://blog.codingmilitia.com/2020/08/18/aspnet-045-from-zero-to-overkill-event-driven-integration-06-publishing-events-feat-apache-kafka/'>Event-driven integration #6 - Publishing events (feat. Apache Kafka) [ASPF02O|E045]</a></li><li><a href='https://blog.codingmilitia.com/2020/07/15/microservices-and-correctly-built-distributed-systems/'>Microservices and correctly built distributed systems</a></li><li><a href='https://blog.codingmilitia.com/2020/06/09/aspnet-044-from-zero-to-overkill-event-driven-integration-05-quick-intro-to-apache-kafka/'>Event-driven integration #5 - Quick intro to Apache Kafka [ASPF02O|E044]</a></li><li><a href='https://blog.codingmilitia.com/2020/05/07/aspnet-043-from-zero-to-overkill-event-driven-integration-04-outbox-publisher-feat-ihostedservice-channels/'>Event-driven integration #4 - Outbox publisher (feat. IHostedService & Channels) [ASPF02O|E043]</a></li><li><a href='https://blog.codingmilitia.com/2020/04/28/aspnet-042-from-zero-to-overkill-event-driven-integration-03-storing-events-in-the-outbox-table/'>Event-driven integration #3 - Storing events in the outbox table [ASPF02O|E042]</a></li><li><a href='https://blog.codingmilitia.com/2020/04/20/aspnet-041-from-zero-to-overkill-event-driven-integration-inferring-events-from-efcore-changes/'>Event-driven integration #2 - Inferring events from EF Core changes [ASPF02O|E041]</a></li><li><a href='https://blog.codingmilitia.com/2020/04/13/aspnet-040-from-zero-to-overkill-event-driven-integration-transactional-outbox-pattern/'>Event-driven integration #1 - Intro to the transactional outbox pattern [ASPF02O|E040]</a></li><li><a href='https://blog.codingmilitia.com/2020/04/05/aspnet-039-from-zero-to-overkill-event-driven-integration-overview/'>Event-driven integration - Overview [ASPF02O|E039]</a></li></ul>
<h2 class='channel-title'># <a href='https://jack-vanlightly.com' target='_blank'>https://jack-vanlightly.com</a></h2>
<ul class='feed-items'>
<li><a href='https://jack-vanlightly.com/blog/2020/5/26/with-great-observation-comes-great-insight'>With Great Observation Comes Great Insight</a></li><li><a href='https://jack-vanlightly.com/blog/2020/5/14/why-im-not-writing-much-on-my-blog-these-days'>Why I'm Not Writing Much On My Blog These Days</a></li><li><a href='https://jack-vanlightly.com/blog/2019/9/4/a-look-at-multi-topic-subscriptions-with-apache-pulsar'>A Look at Multi-Topic Subscriptions with Apache Pulsar</a></li><li><a href='https://jack-vanlightly.com/blog/2019/2/9/building-a-simple-distributed-system-logging'>Building A "Simple" Distributed System - It's the Logs Stupid</a></li><li><a href='https://jack-vanlightly.com/blog/2019/2/1/building-a-simple-distributed-system-the-implementation'>Building A "Simple" Distributed System - The Implementation</a></li><li><a href='https://jack-vanlightly.com/blog/2019/1/27/building-a-simple-distributed-system-formal-verification'>Building A "Simple" Distributed System - Formal Verification</a></li><li><a href='https://jack-vanlightly.com/blog/2019/1/27/building-a-simple-distributed-system-the-protocol'>Building A "Simple" Distributed System - The Protocol</a></li><li><a href='https://jack-vanlightly.com/blog/2019/1/25/building-a-simple-distributed-system-the-what'>Building a "Simple" Distributed System - The What</a></li><li><a href='https://jack-vanlightly.com/blog/2018/11/20/quorum-queues-making-rabbitmq-more-competitive'>Quorum Queues - Making RabbitMQ More Competitive in Reliable Messaging</a></li><li><a href='https://jack-vanlightly.com/blog/2018/11/14/why-i-am-not-a-fan-of-the-rabbitmq-sharding-plugin'>Why I Am Not a Fan of the RabbitMQ Sharding Plugin</a></li><li><a href='https://jack-vanlightly.com/blog/2018/10/25/testing-producer-deduplication-in-apache-kafka-and-apache-pulsar'>Testing Producer Deduplication in Apache Kafka and Apache Pulsar</a></li><li><a href='https://jack-vanlightly.com/blog/2018/10/21/how-to-not-lose-messages-on-an-apache-pulsar-cluster'>How to (not) Lose Messages on an Apache Pulsar Cluster</a></li><li><a href='https://jack-vanlightly.com/blog/2018/10/2/understanding-how-apache-pulsar-works'>Understanding How Apache Pulsar Works</a></li><li><a href='https://jack-vanlightly.com/blog/2018/9/18/how-to-lose-messages-on-a-kafka-cluster-part-2'>How to Lose Messages on a Kafka Cluster - Part 2</a></li><li><a href='https://jack-vanlightly.com/blog/2018/9/14/how-to-lose-messages-on-a-kafka-cluster-part1'>How to Lose Messages on a Kafka Cluster - Part 1</a></li><li><a href='https://jack-vanlightly.com/blog/2018/9/10/how-to-lose-messages-on-a-rabbitmq-cluster'>How to Lose Messages on a RabbitMQ Cluster</a></li><li><a href='https://jack-vanlightly.com/blog/2018/9/2/rabbitmq-vs-kafka-part-6-fault-tolerance-and-high-availability-with-kafka'>RabbitMQ vs Kafka Part 6 - Fault Tolerance and High Availability with Kafka</a></li><li><a href='https://jack-vanlightly.com/blog/2018/8/31/rabbitmq-vs-kafka-part-5-fault-tolerance-and-high-availability-with-rabbitmq'>RabbitMQ vs Kafka Part 5 - Fault Tolerance and High Availability with RabbitMQ Clustering</a></li><li><a href='https://jack-vanlightly.com/blog/2018/8/14/aws-security-securing-your-use-of-the-aws-cli-and-automation-tools'>AWS Security - Securing Your Use of the AWS CLI and Automation Tools</a></li><li><a href='https://jack-vanlightly.com/blog/2018/7/25/rabbitmq-work-queues-avoiding-data-inconsistency-with-rebalanser'>RabbitMQ Work Queues: Avoiding Data Inconsistency with Rebalanser</a></li></ul>
<h2 class='channel-title'># <a href='https://alexdunn.org' target='_blank'>https://alexdunn.org</a></h2>
<ul class='feed-items'>
<li><a href='https://alexdunn.org/2020/05/22/introducing-suave-streams/'>Introducing Suave Streams</a></li><li><a href='https://alexdunn.org/2020/02/18/xamarin-tip-ios-push-notification-device-token-extraction-in-ios-13/'>Xamarin.Tip – iOS Push Notification Device Token Extraction in iOS 13+</a></li><li><a href='https://alexdunn.org/2020/01/06/codemash-2020-this-week/'>CodeMash 2020 This Week!</a></li><li><a href='https://alexdunn.org/2020/01/06/xamarin-tip-fixing-missing-ios-app-icons/'>Xamarin.Tip – Fixing Missing iOS App Icons</a></li><li><a href='https://alexdunn.org/2019/10/14/meadow-tip-playing-jingle-bells-with-a-piezo-speaker/'>Meadow.Tip – Playing Jingle Bells with a Piezo Speaker Using C#</a></li><li><a href='https://alexdunn.org/2019/09/29/techorama-this-week-kotlin-c-flux-design-patterns-and-more/'>Techorama This Week – Kotlin, C#, Flux, Design Patterns, and more!</a></li><li><a href='https://alexdunn.org/2019/09/13/hackmit-2019-this-weekend/'>HACKMIT 2019 This Weekend!</a></li><li><a href='https://alexdunn.org/2019/07/15/video-kotlin-for-c-developers-at-ndc-oslo/'>Video – Kotlin for C# Developers at NDC Oslo</a></li><li><a href='https://alexdunn.org/2019/07/10/alexa-tip-build-unit-tested-skills-in-net/'>Alexa.Tip – Build Unit Tested Skills in .NET</a></li><li><a href='https://alexdunn.org/2019/07/05/alexa-tip-using-dependency-injection-with-handlers-in-net/'>Alexa.Tip – Using Dependency Injection with Handlers in .NET</a></li></ul>
<h2 class='channel-title'># <a href='https://www.blogofpi.com' target='_blank'>https://www.blogofpi.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.blogofpi.com/maximize-cost-savings-in-azure/?utm_source=rss&utm_medium=rss&utm_campaign=maximize-cost-savings-in-azure&utm_source=rss&utm_medium=rss&utm_campaign=maximize-cost-savings-in-azure'>Maximize Cost Savings in Azure</a></li><li><a href='https://www.blogofpi.com/sorting-and-paging-in-blazor-using-ef-core/?utm_source=rss&utm_medium=rss&utm_campaign=sorting-and-paging-in-blazor-using-ef-core&utm_source=rss&utm_medium=rss&utm_campaign=sorting-and-paging-in-blazor-using-ef-core'>Sorting and Paging in Blazor using EF Core</a></li><li><a href='https://www.blogofpi.com/get-started-with-azure-functions/?utm_source=rss&utm_medium=rss&utm_campaign=get-started-with-azure-functions&utm_source=rss&utm_medium=rss&utm_campaign=get-started-with-azure-functions'>Get Started with Azure Functions</a></li><li><a href='https://www.blogofpi.com/token-based-authentication-in-asp-net-core/?utm_source=rss&utm_medium=rss&utm_campaign=token-based-authentication-in-asp-net-core&utm_source=rss&utm_medium=rss&utm_campaign=token-based-authentication-in-asp-net-core'>Token Based Authentication in ASP.NET Core</a></li><li><a href='https://www.blogofpi.com/cascading-dropdown-in-blazor/?utm_source=rss&utm_medium=rss&utm_campaign=cascading-dropdown-in-blazor&utm_source=rss&utm_medium=rss&utm_campaign=cascading-dropdown-in-blazor'>Cascading Dropdown in Blazor</a></li><li><a href='https://www.blogofpi.com/crud-using-blazor-and-entity-framework-core/?utm_source=rss&utm_medium=rss&utm_campaign=crud-using-blazor-and-entity-framework-core&utm_source=rss&utm_medium=rss&utm_campaign=crud-using-blazor-and-entity-framework-core'>CRUD using Blazor and Entity Framework Core</a></li><li><a href='https://www.blogofpi.com/get-started-with-blazor/?utm_source=rss&utm_medium=rss&utm_campaign=get-started-with-blazor&utm_source=rss&utm_medium=rss&utm_campaign=get-started-with-blazor'>Get started with Blazor</a></li><li><a href='https://www.blogofpi.com/policy-based-authorization-in-asp-net-core/?utm_source=rss&utm_medium=rss&utm_campaign=policy-based-authorization-in-asp-net-core&utm_source=rss&utm_medium=rss&utm_campaign=policy-based-authorization-in-asp-net-core'>Policy based authorization in ASP.NET Core</a></li><li><a href='https://www.blogofpi.com/create-and-publish-nuget-package-in-dotnet-core/?utm_source=rss&utm_medium=rss&utm_campaign=create-and-publish-nuget-package-in-dotnet-core&utm_source=rss&utm_medium=rss&utm_campaign=create-and-publish-nuget-package-in-dotnet-core'>Create NuGet Package and Publish in Dotnet Core</a></li><li><a href='https://www.blogofpi.com/versioning-web-api/?utm_source=rss&utm_medium=rss&utm_campaign=versioning-web-api&utm_source=rss&utm_medium=rss&utm_campaign=versioning-web-api'>Versioning Web API</a></li></ul>
<h2 class='channel-title'># <a href='https://benfoster.io/blog' target='_blank'>https://benfoster.io/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://benfoster.io/blog/customize-authorization-response-aspnet-core/'>Customizing Authorization Responses in .NET 5.0</a></li><li><a href='https://benfoster.io/blog/level-up-your-dotnet-libraries/'>Level up your .NET libraries</a></li><li><a href='https://benfoster.io/blog/scale-up-hire-smart-advice-for-engineering-managers/'>Scale up, hire smart</a></li><li><a href='https://benfoster.io/blog/20200615-querying-a-dynamodb-partition-with-dotnet/'>Querying and paging a DynamoDB Partition using .NET</a></li><li><a href='https://benfoster.io/blog/optimising-dotnet-docker-images/'>Optimising .NET Core Docker images</a></li><li><a href='https://benfoster.io/blog/20200610-testing-ioptionsmonitor/'>Testing IOptionsMonitor</a></li><li><a href='https://benfoster.io/blog/running-load-tests-from-aws-cloud-with-k6/'>Running Load Tests From the Cloud With k6</a></li><li><a href='https://benfoster.io/blog/binding-validating-enums-aspnet-core/'>Binding and Validating Enums in ASP.NET Core</a></li><li><a href='https://benfoster.io/blog/serilog-best-practices/'>Serilog Best Practices</a></li><li><a href='https://benfoster.io/blog/aspnetcore-3-1-current-route-endpoint-name/'>Resolving the current route name in ASP.NET Core 3.1</a></li><li><a href='https://benfoster.io/blog/20190503-customising-url-generation-in-aspnet-core-mvc/'>Customising URL generation in ASP.NET Core MVC</a></li><li><a href='https://benfoster.io/blog/customising-nspec/'>Customising NSpec</a></li><li><a href='https://benfoster.io/blog/nspec-conventions/'>NSpec conventions</a></li><li><a href='https://benfoster.io/blog/zlib-compression-net-core/'>Zlib compression in .NET Core</a></li><li><a href='https://benfoster.io/blog/injecting-urlhelper-in-aspnet-core-mvc/'>Injecting UrlHelper in ASP.NET Core MVC</a></li><li><a href='https://benfoster.io/blog/aws-api-gateway-ip-restrictions/'>Applying IP Address restrictions in AWS API Gateway</a></li><li><a href='https://benfoster.io/blog/bare-metal-apis-with-aspnet-core-mvc/'>Bare metal APIs with ASP.NET Core MVC</a></li><li><a href='https://benfoster.io/blog/net-core-configuration-legacy-projects/'>Using .NET Core Configuration with legacy projects</a></li><li><a href='https://benfoster.io/blog/identity-server-post-registration-sign-in/'>Automatic post-registration sign-in with Identity Server</a></li><li><a href='https://benfoster.io/blog/how-to-configure-kestrel-urls-in-aspnet-core-rc2/'>How to configure Kestrel URLs in ASP.NET Core RC2</a></li></ul>
<h2 class='channel-title'># <a href='https://www.seeleycoder.com/blog' target='_blank'>https://www.seeleycoder.com/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://www.seeleycoder.com/blog/policy-based-authorization-aspnetcore/'>Understanding Policy-based authorization in ASP.NET Core</a></li><li><a href='https://www.seeleycoder.com/blog/sonarqube-with-github-actions-and-net-core-5-x/'>SonarQube with GitHub Actions and .NET Core 5.x</a></li><li><a href='https://www.seeleycoder.com/blog/mixed-model-binding-aspnetcore/'>Mixed model binding in ASP.NET Core</a></li><li><a href='https://www.seeleycoder.com/blog/asp-net-core-request-timeout-iis-in-process-mode/'>ASP.NET Core Request Timeout IIS In-Process Mode</a></li><li><a href='https://www.seeleycoder.com/blog/multiple-ssh-keys-on-github/'>Multiple SSH Keys on GitHub</a></li><li><a href='https://www.seeleycoder.com/blog/expanding-windows-authentication-net-core/'>Windows Authentication in NET Core: Expanding Role-Based Security</a></li><li><a href='https://www.seeleycoder.com/blog/web-accessibility-web-for-all/'>Web Accessibility – Web for all</a></li><li><a href='https://www.seeleycoder.com/blog/net-core-json-serialization/'>.NET Core JSON Serialization Changes – Newtonsoft vs System.Text.Json</a></li><li><a href='https://www.seeleycoder.com/blog/windows-authentication-with-react/'>Windows Authentication with React and .NET Core: Bare Bones</a></li><li><a href='https://www.seeleycoder.com/blog/optional-route-parameters-with-swagger-asp-net-core/'>Optional Route Parameters with Swagger and ASP.NET Core</a></li></ul>
<h2 class='channel-title'># <a href='https://www.layerworks.com' target='_blank'>https://www.layerworks.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.layerworks.com/blog/2020/8/19/control-sxa-page-designs-via-query-string'>Control SXA Page Designs via Query String</a></li><li><a href='https://www.layerworks.com/blog/2020/1/3/how-to-extend-sxa-sitemaps-and-a-few-reasons-why-youd-want-to'>How to extend SXA sitemaps and a few reasons why you'd want to</a></li><li><a href='https://www.layerworks.com/blog/2019/3/25/previewing-personalization-rules'>Previewing Personalization Rules</a></li><li><a href='https://www.layerworks.com/blog/2018/7/17/resetting-sitecore-profiles-personas'>Resetting Profiles</a></li><li><a href='https://www.layerworks.com/blog/2017/7/4/generating-xml-sitemaps-with-sitecore-powershell-extensions'>XML Sitemaps with SPE</a></li><li><a href='https://www.layerworks.com/blog/2016/8/8/slack-notification-tds-post-deploy-step'>TDS Post Build Step: Slack Notifications</a></li><li><a href='https://www.layerworks.com/blog/2015/11/18/sitecore-powershell-reports'>Sitecore PowerShell Reports</a></li><li><a href='https://www.layerworks.com/blog/2015/8/26/icon-font-picker-custom-field'>Icon Font Picker Field</a></li><li><a href='https://www.layerworks.com/blog/2015/7/17/sitecore-javascript-renderings'>JavaScript and Sitecore Renderings</a></li><li><a href='https://www.layerworks.com/blog/2015/6/12/fuzzy-sitecore-content-search'>MIT Proves that Sitecore Search is Optimal</a></li><li><a href='https://www.layerworks.com/blog/sitecore-token-replacement'>{Token} Replacement in Sitecore</a></li><li><a href='https://www.layerworks.com/blog/2015/4/17/sitecore-powershell-script-examples'>Sitecore PowerShell Scripts</a></li><li><a href='https://www.layerworks.com/blog/2015/2/11/encodenamereplacements-now-affects-media-library-item-urls'>GOTCHA: Change to Media Library URLs</a></li><li><a href='https://www.layerworks.com/blog/2015/1/1/indexing-datetime-fields-in-sitecore-7'>Quick Fix: Indexing DateTime Fields in Sitecore 7</a></li><li><a href='https://www.layerworks.com/blog/2014/12/16/sitecore-analytics-testing-tools'>Sitecore Analytics Testing Tools</a></li><li><a href='https://www.layerworks.com/blog/2014/11/11/mongodb-shell-csharp-driver-comparison-cheat-cheet'>MongoDB C# Driver Cheat Sheet</a></li><li><a href='https://www.layerworks.com/blog/2014/11/4/sitecore-azure-traffic-manager-degraded-heartbeat-failing'>Azure Traffic Manager Endpoint Degraded?</a></li></ul>
<h2 class='channel-title'># <a href='https://www.florin-pop.com' target='_blank'>https://www.florin-pop.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.florin-pop.com/blog/declare-your-love-as-a-programmer/'>Declare Your Love like a Programmer</a></li><li><a href='https://www.florin-pop.com/blog/created-a-video-a-day-for-a-month/'>I Created a Video per Day for the entire month of January</a></li><li><a href='https://www.florin-pop.com/blog/2019-in-review-2020-goals/'>2019 In Review and 2020 Goals (with numbers and earnings)</a></li><li><a href='https://www.florin-pop.com/blog/built-100-projects-in-100-days/'>How I built 100 Projects in 100 Days</a></li><li><a href='https://www.florin-pop.com/blog/my-first-week-on-youtube/'>My first week on YouTube</a></li><li><a href='https://www.florin-pop.com/blog/2019/10/text-to-life-effect/'>Text to Life Effect</a></li><li><a href='https://www.florin-pop.com/blog/2019/10/falling-snow-effect/'>Falling Snow Effect</a></li><li><a href='https://www.florin-pop.com/blog/2019/10/15-more-projects-of-100days100projects/'>15 More Projects of 100Days100Projects</a></li><li><a href='https://www.florin-pop.com/blog/2019/10/15-projects-of-100days100projects/'>15 Projects of 100Days100Projects</a></li><li><a href='https://www.florin-pop.com/blog/2019/09/random-meal-generator/'>Random Meal Generator</a></li><li><a href='https://www.florin-pop.com/blog/2019/09/100-days-100-projects/'>100 Days - 100 Projects Challenge</a></li><li><a href='https://www.florin-pop.com/blog/2019/09/social-panel/'>Social Panel</a></li><li><a href='https://www.florin-pop.com/blog/2019/09/pinky-404-page/'>Pinky 404 Page</a></li><li><a href='https://www.florin-pop.com/blog/2019/09/the-$200-challenge/'>The $200 Challenge</a></li><li><a href='https://www.florin-pop.com/blog/2019/08/ways-to-make-money-as-a-developer/'>Ways to make money as a developer</a></li><li><a href='https://www.florin-pop.com/blog/2019/08/jcc-counting-letters/'>JavaScript Coding Challenge: "Counting Letters"</a></li><li><a href='https://www.florin-pop.com/blog/2019/07/jcc-dubstep/'>JavaScript Coding Challenge: "Dubstep"</a></li><li><a href='https://www.florin-pop.com/blog/2019/07/sort-table-data-with-react/'>Sort table data with React</a></li><li><a href='https://www.florin-pop.com/blog/2019/07/testimonial-card/'>Testimonial Card</a></li><li><a href='https://www.florin-pop.com/blog/2019/07/jcc-multiple-of-index/'>JavaScript Coding Challenge: "Multiple of index"</a></li></ul>
<h2 class='channel-title'># <a href='https://freecoursesite.com' target='_blank'>https://freecoursesite.com</a></h2>
<ul class='feed-items'>
<li><a href='https://freecoursesite.com/1-advanced-javascript-concepts/?utm_source=rss&utm_medium=rss&utm_campaign=1-advanced-javascript-concepts'>JavaScript: The Advanced Concepts (2021)</a></li><li><a href='https://freecoursesite.com/1-the-complete-junior-to-senior-web-developer-roadmap-2018/?utm_source=rss&utm_medium=rss&utm_campaign=1-the-complete-junior-to-senior-web-developer-roadmap-2018'>The Complete Junior to Senior Web Developer Roadmap (2021)</a></li><li><a href='https://freecoursesite.com/the-complete-web-developer-zero-to-mastery-5/?utm_source=rss&utm_medium=rss&utm_campaign=the-complete-web-developer-zero-to-mastery-5'>The Complete Web Developer in 2021: Zero to Mastery</a></li><li><a href='https://freecoursesite.com/the-python-bible-everything-you-need-to-program-in-python-1/?utm_source=rss&utm_medium=rss&utm_campaign=the-python-bible-everything-you-need-to-program-in-python-1'>The Python Bible™ | Everything You Need to Program in Python</a></li><li><a href='https://freecoursesite.com/the-complete-oracle-sql-bootcamp-2021/?utm_source=rss&utm_medium=rss&utm_campaign=the-complete-oracle-sql-bootcamp-2021'>The Complete Oracle SQL Bootcamp (2021)</a></li><li><a href='https://freecoursesite.com/1-gatsby-tutorial-and-projects-course/?utm_source=rss&utm_medium=rss&utm_campaign=1-gatsby-tutorial-and-projects-course'>Gatsby V3 Tutorial and Projects Course</a></li><li><a href='https://freecoursesite.com/1-javascript-bible/?utm_source=rss&utm_medium=rss&utm_campaign=1-javascript-bible'>JavaScript Bible – JavaScript Bootcamp 2021</a></li><li><a href='https://freecoursesite.com/react-16-the-complete-guide-incl-react-router-4-redux-5/?utm_source=rss&utm_medium=rss&utm_campaign=react-16-the-complete-guide-incl-react-router-4-redux-5'>React – The Complete Guide (incl Hooks, React Router, Redux)</a></li><li><a href='https://freecoursesite.com/the-complete-node-js-developer-course-2nd-edition-3/?utm_source=rss&utm_medium=rss&utm_campaign=the-complete-node-js-developer-course-2nd-edition-3'>The Complete Node.js Developer Course (3rd Edition)</a></li><li><a href='https://freecoursesite.com/python-for-statistical-analysis/?utm_source=rss&utm_medium=rss&utm_campaign=python-for-statistical-analysis'>Python for Statistical Analysis</a></li><li><a href='https://freecoursesite.com/complete-python-bootcamp-go-from-zero-to-hero-in-python-4/?utm_source=rss&utm_medium=rss&utm_campaign=complete-python-bootcamp-go-from-zero-to-hero-in-python-4'>2021 Complete Python Bootcamp From Zero to Hero in Python</a></li><li><a href='https://freecoursesite.com/master-statistics-machine-learning-intuition-math-code/?utm_source=rss&utm_medium=rss&utm_campaign=master-statistics-machine-learning-intuition-math-code'>Master statistics & machine learning: intuition, math, code</a></li></ul>
<h2 class='channel-title'># <a href='http://collabnix.com' target='_blank'>http://collabnix.com</a></h2>
<ul class='feed-items'>
<li><a href='https://collabnix.com/getting-started-with-shipa/'>Getting Started with Shipa</a></li><li><a href='https://collabnix.com/visualizing-time-series-data-directly-over-iot-edge-device-using-dockerized-redistimeseries-grafana/'>Visualizing Time Series Data directly over IoT Edge device using Dockerized RedisTimeSeries & Grafana</a></li><li><a href='https://collabnix.com/getting-started-with-docker-dev-environments/'>A First Look at Dev Environments Feature under Docker Desktop 3.5.0</a></li><li><a href='https://collabnix.com/how-to-assemble-dji-robomaster-s1/'>How to assemble DJI Robomaster S1 for the first time?</a></li><li><a href='https://collabnix.com/building-your-first-jetson-container/'>Building Your First Jetson Container</a></li><li><a href='https://collabnix.com/what-you-should-expect-from-docker-bangalore-joint-meetup-with-jfrog-collabnix-community/'>What You Should Expect From Collabnix Joint Meetup with JFrog & Docker Bangalore Event?</a></li></ul>
<h2 class='channel-title'># <a href='https://kubernetes.io' target='_blank'>https://kubernetes.io</a></h2>
<ul class='feed-items'>
<li><a href='https://kubernetes.io/blog/2021/08/09/csi-windows-support-with-csi-proxy-reaches-ga/'>Blog: Kubernetes 1.22: CSI Windows Support (with CSI Proxy) reaches GA</a></li><li><a href='https://kubernetes.io/blog/2021/08/09/run-nodes-with-swap-alpha/'>Blog: New in Kubernetes v1.22: alpha support for using swap memory</a></li><li><a href='https://kubernetes.io/blog/2021/08/06/server-side-apply-ga/'>Blog: Kubernetes 1.22: Server Side Apply moves to GA</a></li><li><a href='https://kubernetes.io/blog/2021/08/04/kubernetes-1-22-release-announcement/'>Blog: Kubernetes 1.22: Reaching New Peaks</a></li><li><a href='https://kubernetes.io/blog/2021/07/29/roorkee-robots-releases-and-racing-the-kubernetes-1.21-release-interview/'>Blog: Roorkee robots, releases and racing: the Kubernetes 1.21 release interview</a></li><li><a href='https://kubernetes.io/blog/2021/07/26/update-with-ingress-nginx/'>Blog: Updating NGINX-Ingress to use the stable Ingress API</a></li><li><a href='https://kubernetes.io/blog/2021/07/20/new-kubernetes-release-cadence/'>Blog: Kubernetes Release Cadence Change: Here’s What You Need To Know</a></li><li><a href='https://kubernetes.io/blog/2021/07/15/sig-usability-spotlight-2021/'>Blog: Spotlight on SIG Usability</a></li><li><a href='https://kubernetes.io/blog/2021/07/14/upcoming-changes-in-kubernetes-1-22/'>Blog: Kubernetes API and Feature Removals In 1.22: Here’s What You Need To Know</a></li><li><a href='https://kubernetes.io/blog/2021/06/28/announcing-kubernetes-community-group-annual-reports/'>Blog: Announcing Kubernetes Community Group Annual Reports</a></li><li><a href='https://kubernetes.io/blog/2021/06/21/writing-a-controller-for-pod-labels/'>Blog: Writing a Controller for Pod Labels</a></li><li><a href='https://kubernetes.io/blog/2021/05/14/using-finalizers-to-control-deletion/'>Blog: Using Finalizers to Control Deletion</a></li><li><a href='https://kubernetes.io/blog/2021/04/23/kubernetes-release-1.21-metrics-stability-ga/'>Blog: Kubernetes 1.21: Metrics Stability hits GA</a></li><li><a href='https://kubernetes.io/blog/2021/04/22/evolving-kubernetes-networking-with-the-gateway-api/'>Blog: Evolving Kubernetes networking with the Gateway API</a></li><li><a href='https://kubernetes.io/blog/2021/04/21/graceful-node-shutdown-beta/'>Blog: Graceful Node Shutdown Goes Beta</a></li><li><a href='https://kubernetes.io/blog/2021/04/20/annotating-k8s-for-humans/'>Blog: Annotating Kubernetes Services for Humans</a></li><li><a href='https://kubernetes.io/blog/2021/04/20/defining-networkpolicy-conformance-cni-providers/'>Blog: Defining Network Policy Conformance for Container Network Interface (CNI) providers</a></li><li><a href='https://kubernetes.io/blog/2021/04/19/introducing-indexed-jobs/'>Blog: Introducing Indexed Jobs</a></li><li><a href='https://kubernetes.io/blog/2021/04/16/volume-health-monitoring-alpha-update/'>Blog: Volume Health Monitoring Alpha Update</a></li><li><a href='https://kubernetes.io/blog/2021/04/15/three-tenancy-models-for-kubernetes/'>Blog: Three Tenancy Models For Kubernetes</a></li></ul>
<h2 class='channel-title'># <a href='https://carlos.mendible.com' target='_blank'>https://carlos.mendible.com</a></h2>
<ul class='feed-items'>
<li><a href='https://carlos.mendible.com/2021/08/02/aks-persistent-volume-claim-with-an-azure-file-storage-protected-with-a-private-endpoint/'>AKS: Persistent Volume Claim with an Azure File Storage protected with a Private Endpoint</a></li><li><a href='https://carlos.mendible.com/2021/07/09/plan-ip-addressing-for-aks-configured-with-azure-cni-networking/'>Plan IP addressing for AKS configured with Azure CNI Networking</a></li><li><a href='https://carlos.mendible.com/2021/05/09/running-k3s-inside-wsl2-on-a-surface-pro-x/'>Running k3s inside WSL2 on a Surface Pro X</a></li><li><a href='https://carlos.mendible.com/2021/04/30/deploy-aks-kubecost-with-terraform/'>Deploy AKS + Kubecost with Terraform</a></li><li><a href='https://carlos.mendible.com/2021/04/12/deploy-a-private-azure-cloud-shell-with-terraform/'>Deploy a Private Azure Cloud Shell with Terraform</a></li><li><a href='https://carlos.mendible.com/2021/01/08/asp.net-core-opentelemetry-logging/'>ASP.NET Core OpenTelemetry Logging</a></li><li><a href='https://carlos.mendible.com/2020/11/18/dapr-reading-local-secrets-with-.net-5/'>Dapr: Reading local secrets with .NET 5</a></li><li><a href='https://carlos.mendible.com/2020/10/18/what-i-learned-from-hacktoberfest-2020/'>What I Learned From Hacktoberfest 2020</a></li><li><a href='https://carlos.mendible.com/2020/09/09/managing-terraform-cloud-with-.net-core/'>Managing Terraform Cloud with .NET Core</a></li><li><a href='https://carlos.mendible.com/2020/05/18/azure-functions-use-blob-trigger-with-private-endpoint/'>Azure Functions: use Blob Trigger with Private Endpoint</a></li></ul>
<h2 class='channel-title'># <a href='https://gokhanatil.com' target='_blank'>https://gokhanatil.com</a></h2>
<ul class='feed-items'>
<li><a href='https://gokhanatil.com/2020/04/use-snowflake-and-zepl-to-analyse-covid-19-coronavirus-data.html'>Use Snowflake and Zepl to Analyse Covid-19 (coronavirus) Data</a></li><li><a href='https://gokhanatil.com/2019/11/how-to-use-iam-authentication-for-rds-postgresql-with-glue-etl-jobs.html'>How to Use IAM authentication for RDS PostgreSQL with Glue ETL Jobs</a></li><li><a href='https://gokhanatil.com/2019/11/how-to-use-aws-s3-bucket-for-spark-history-server.html'>How to Use AWS S3 bucket for Spark History Server</a></li><li><a href='https://gokhanatil.com/2019/10/lambda-function-to-resize-ebs-volumes-of-emr-nodes.html'>Lambda Function to Resize EBS Volumes of EMR Nodes</a></li><li><a href='https://gokhanatil.com/2019/10/query-a-hbase-table-through-hive-using-pyspark-on-emr.html'>Query a HBASE table through Hive using PySpark on EMR</a></li><li><a href='https://gokhanatil.com/2019/09/amazon-qldb-and-the-missing-command-line-client.html'>Amazon QLDB and the Missing Command Line Client</a></li><li><a href='https://gokhanatil.com/2019/09/sample-aws-lambda-function-to-monitor-oracle-database.html'>Sample AWS Lambda Function to Monitor Oracle Database</a></li><li><a href='https://gokhanatil.com/2018/04/an-interesting-problem-with-odi-unable-to-retrieve-user-guid.html'>An Interesting Problem with ODI: Unable to retrieve user GUID</a></li><li><a href='https://gokhanatil.com/2018/04/pyspark-examples-5-discretized-streams-dstreams.html'>PySpark Examples #5: Discretized Streams (DStreams)</a></li><li><a href='https://gokhanatil.com/2018/04/pyspark-examples-3-4-spark-sql-module.html'>PySpark Examples #3-4: Spark SQL Module</a></li></ul>
<h2 class='channel-title'># <a href='https://stefanprodan.com' target='_blank'>https://stefanprodan.com</a></h2>
<ul class='feed-items'>
<li><a href='https://stefanprodan.com/2019/introducing-flagger-istio-progressive-delivery-operator/'>Introducing Flagger the Istio progressive delivery operator</a></li><li><a href='https://stefanprodan.com/2018/getting-started-with-openfaas-on-gke/'>Running OpenFaaS on GKE with preemptible node pools</a></li><li><a href='https://stefanprodan.com/2018/getting-started-with-openfaas-on-eks/'>Getting started with OpenFaaS on EKS</a></li><li><a href='https://stefanprodan.com/2018/scanning-kubernetes-deployments-with-kubesec/'>Scanning Kubernetes resources with Kubesec</a></li><li><a href='https://stefanprodan.com/2018/expose-kubernetes-services-over-http-with-ngrok/'>Expose Kubernetes services over HTTPS with Ngrok</a></li><li><a href='https://stefanprodan.com/2018/kubernetes-horizontal-pod-autoscaler-prometheus-metrics/'>Kubernetes Horizontal Pod Autoscaler with Prometheus custom metrics</a></li><li><a href='https://stefanprodan.com/2018/bootstrap-mongo-clusters-docker-swarm/'>Bootstrapping MongoDB sharded clusters on Docker Swarm</a></li><li><a href='https://stefanprodan.com/2018/kubernetes-scaleway-baremetal-arm-terraform-installer/'>Installing Kubernetes on bare-metal with Terraform Scaleway provider and kubeadm</a></li><li><a href='https://stefanprodan.com/2018/mgob-kubernetes-gke-guide/'>MGOB v0.9 - MongoDB backup automation for Kubernetes</a></li><li><a href='https://stefanprodan.com/2017/openfaas-kubernetes-ingress-ssl-gke/'>How to secure OpenFaaS with Let's Encrypt and basic auth on Google Kubernetes Engine</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.vietnamlab.vn' target='_blank'>https://blog.vietnamlab.vn</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.vietnamlab.vn/bao-cao-nghien-cuu-quy-2-nam-2021/'>Báo cáo nghiên cứu Quý 2 Năm 2021.</a></li><li><a href='https://blog.vietnamlab.vn/nft/'>Adam- Dự án NFT của tập đoàn GMO INTERNET, đứng đầu Nhật Bản hiện nay.</a></li><li><a href='https://blog.vietnamlab.vn/animation-v/'>Animation với CSS</a></li><li><a href='https://blog.vietnamlab.vn/untitled-7/'>Báo cáo nghiên cứu quý 1 năm 2021</a></li><li><a href='https://blog.vietnamlab.vn/dung-thu-he-thong-goi-y-bai-viet-fre/'>Cài đặt hệ thống gợi ý bài viết Made in Vietnam và FREE</a></li><li><a href='https://blog.vietnamlab.vn/le-tong-ket-nam-2020/'>Lễ tổng kết năm 2020!</a></li><li><a href='https://blog.vietnamlab.vn/tim-hieu-image-segmentation/'>Tìm hiểu Image Segmentation</a></li><li><a href='https://blog.vietnamlab.vn/nhung-tinh-nang-moi-trong-php-8/'>Những tính năng mới trong PHP 8.0</a></li><li><a href='https://blog.vietnamlab.vn/golang-module-intro/'>Golang module và cách sử dụng</a></li><li><a href='https://blog.vietnamlab.vn/restful-api-convention/'>Quy chuẩn đặt tên trong thiết kế RESTful API</a></li><li><a href='https://blog.vietnamlab.vn/tim-hieu-ve-nagios-he-thong-giam-sat-mang-manh-me/'>Tìm hiểu về Nagios công cụ giám sát mạng</a></li><li><a href='https://blog.vietnamlab.vn/quan-ly-state-bang-provider-trong-flutter/'>Quản lý state bằng Provider trong Flutter</a></li><li><a href='https://blog.vietnamlab.vn/code-chuan-nhu-file-thiet-ke-voi-figma/'>Code chuẩn thiết kế với Figma</a></li><li><a href='https://blog.vietnamlab.vn/extend-mixin-trong-sass/'>Khi nào sử dụng extends vs mixins trong SASS</a></li><li><a href='https://blog.vietnamlab.vn/cach-su-dung-figma/'>Giới thiệu công cụ Figma cho người mới bắt đầu</a></li></ul>
<h2 class='channel-title'># <a href='https://jimmybogard.com' target='_blank'>https://jimmybogard.com</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/wnTUa-d9JEs/'>Domain-Driven Refactoring: Defactoring and Pushing Behavior Down</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/oOqGzmCm1ss/'>Domain-Driven Refactoring: Extracting Domain Services</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/aql9--uhcCs/'>Domain-Driven Refactoring: Long Methods</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/3_UIxqZvPiE/'>Domain-Driven Refactoring: Procedural Beginnings</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/JXXw8hqbqTA/'>Domain-Driven Refactoring: Intro</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/tB4VB8cVDxc/'>Local Development with Azure Service Bus</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/9xtSchntVLI/'>Taming the WSL 2 Resource Monster</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/cPSKscyLKvM/'>Crossing the Generics Divide</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/aBWIuOMKiDM/'>OpenTelemetry 1.0 Extensions Released</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/ltrclayNb00/'>Choosing a ServiceLifetime</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/dADL6qz-sRE/'>A Lap Around ActivitySource and ActivityListener in .NET 5</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/Aso3dVtpXPA/'>Increasing Trace Cardinality with Activity Tags and Baggage</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/CUprcXnjepA/'>Building End-to-End Diagnostics: ActivitySource and OpenTelemetry 1.0</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/68xN75TCsLM/'>Vertical Slice Example Updated to .NET 5</a></li><li><a href='http://feedproxy.google.com/~r/GrabBagOfT/~3/m3d9p_Dm3kY/'>Mind Your Strings with .NET 5.0</a></li></ul>
<h2 class='channel-title'># <a href='https://jonhilton.net' target='_blank'>https://jonhilton.net</a></h2>
<ul class='feed-items'>
<li><a href='https://jonhilton.net/diagnosing-errors-in-your-code/'>Three ways to hack your brain to notice the small details</a></li><li><a href='https://jonhilton.net/blazor-refit/'>Sure, you could write all those Blazor HTTP calls yourself...</a></li><li><a href='https://jonhilton.net/choosing-a-blazor-component-library/'>With so many Blazor Component Libraries, which one is best for you?</a></li><li><a href='https://jonhilton.net/blazor-prerendering-net6/'>Will .NET 6 fix Blazor Prerendering?</a></li><li><a href='https://jonhilton.net/razor-pages-components/'>Razor Pages has Components too don't you know!</a></li><li><a href='https://jonhilton.net/blazor-tailwind-dark-mode-local-storage/'>Persisting your users preferences using Blazor and Local Storage</a></li><li><a href='https://jonhilton.net/blazor-tailwind-dark-mode/'>Dark mode for your web applications (using Blazor and Tailwind CSS)</a></li><li><a href='https://jonhilton.net/better-csharp-tests-lightbdd/'>Tests are hard, LightBDD can help</a></li><li><a href='https://jonhilton.net/blazor-dynamic-components/'>Is it possible to render components "dynamically" using Blazor?</a></li><li><a href='https://jonhilton.net/blazor-wasm-in-razor-pages/'>Render Blazor WASM components in your existing MVC/Razor Pages applications</a></li><li><a href='https://jonhilton.net/blazor-wasm-prerendering-missing-http-client/'>Prerendering your Blazor WASM application with .NET 5 (part 2 - solving the missing HttpClient problem)</a></li><li><a href='https://jonhilton.net/blazor-wasm-prerendering/'>Prerendering your Blazor WASM application with .NET 5 (part 1)</a></li><li><a href='https://jonhilton.net/blazor-css-isolation/'>From site.css to component styles</a></li><li><a href='https://jonhilton.net/blazor-update-html-head/'>Update the HTML head from your Blazor components</a></li><li><a href='https://jonhilton.net/when-does-blazor-render-your-ui/'>When does Blazor decide to render your UI?</a></li><li><a href='https://jonhilton.net/blazor-diagrams/'>Render diagrams on the fly in your Blazor apps</a></li><li><a href='https://jonhilton.net/obs-revealjs-greenscreen/'>Making Scott Hanselman's Powerpoint Greenscreen trick work with RevealJS via Blazor Server</a></li><li><a href='https://jonhilton.net/debuggable-network-requests/'>Edit and Replay your network requests, direct from the browser</a></li><li><a href='https://jonhilton.net/responsive-blazor-navbar/'>Make a responsive Navbar with Blazor and Tailwind?</a></li><li><a href='https://jonhilton.net/pimp-up-blazor-edit-forms-with-tailwind-css/'>Pimp up your Blazor EditForms with Tailwind CSS!</a></li></ul>
<h2 class='channel-title'># <a href='https://kudchikarsk.com' target='_blank'>https://kudchikarsk.com</a></h2>
<ul class='feed-items'>
<li><a href='https://kudchikarsk.com/state-pattern-csharp/'>State Pattern C#</a></li><li><a href='https://kudchikarsk.com/send-and-receive-emails-in-aspnet-with-csharp/'>Send and Receive Emails in ASP.NET with C#</a></li><li><a href='https://kudchikarsk.com/strategy-pattern-csharp/'>Strategy Pattern C#</a></li><li><a href='https://kudchikarsk.com/mediator-pattern-csharp/'>Mediator Pattern C#</a></li><li><a href='https://kudchikarsk.com/observer-pattern-csharp/'>Observer Pattern C#</a></li><li><a href='https://kudchikarsk.com/iterator-pattern-csharp/'>Iterator Pattern C#</a></li><li><a href='https://kudchikarsk.com/c-stringformat-and-stringbuilder/'>C# String.Format() and StringBuilder</a></li><li><a href='https://kudchikarsk.com/csharp-pattern-programs/'>C# Pattern Programs</a></li><li><a href='https://kudchikarsk.com/generics-in-csharp/'>Generics In C#</a></li><li><a href='https://kudchikarsk.com/c-string/'>C# String</a></li></ul>
<h2 class='channel-title'># <a href='https://dotnetcorecentral.com' target='_blank'>https://dotnetcorecentral.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dotnetcorecentral.com/blog/aws-dynamodb/'>AWS DynamoDB</a></li><li><a href='https://dotnetcorecentral.com/blog/aws-lambda/'>AWS Lambda</a></li><li><a href='https://dotnetcorecentral.com/blog/solid-design-principles/'>SOLID Design Principles</a></li><li><a href='https://dotnetcorecentral.com/blog/delegates-and-events/'>Delegates and Events</a></li><li><a href='https://dotnetcorecentral.com/blog/service-lifetime/'>Service Lifetime in Dependency Injection</a></li><li><a href='https://dotnetcorecentral.com/blog/async-and-await/'>Async and Await in C#</a></li><li><a href='https://dotnetcorecentral.com/blog/blazor/'>Blazor in .NET 5</a></li><li><a href='https://dotnetcorecentral.com/blog/rabbitmq-in-net-core/'>RabbitMQ in .Net Core</a></li><li><a href='https://dotnetcorecentral.com/blog/configuration-in-asp-net-core/'>How to manage Configuration in ASP.Net Core</a></li><li><a href='https://dotnetcorecentral.com/blog/background-tasks/'>How to run background tasks in ASP.NET Core Application</a></li></ul>
<h2 class='channel-title'># <a href='https://jeevasubburaj.com' target='_blank'>https://jeevasubburaj.com</a></h2>
<ul class='feed-items'>
<li><a href='https://jeevasubburaj.com/2019/08/13/screencastR-simple-screensharing-app-using-signalr-streaming/'>screencastR - Simple screen sharing app using SignalR streaming</a></li><li><a href='https://jeevasubburaj.com/2019/07/15/realtime-tic-tac-toe-blazor-game-with-bot-vs-multiplayer-using-signalR/'>Realtime Blazor Tic-Tac-Toe game - Bot vs Multiplayer using signalR</a></li><li><a href='https://jeevasubburaj.com/2019/05/09/future_of_dotnet_5_what_every_dotnet_framework_developers_must_know/'>.NET 5 is the Future of .Net - What every .Net developers must know</a></li><li><a href='https://jeevasubburaj.com/2019/03/30/real-time-baby-monitor-chrome-extension-streaming-from-raspberry-pi-using-signalr-and-cognitive-vision-service/'>Real Time Baby Monitor Chrome Extension - Streaming from Raspberry PI using SignalR and Cognitive Vision Service</a></li><li><a href='https://jeevasubburaj.com/2019/03/21/how-to-create-personal-blog-using-hexo-and-netlify-continuous-deployment/'>How to Create Personal Blog using Hexo and Netlify With Continuous Deployment</a></li><li><a href='https://jeevasubburaj.com/2019/01/25/c-hidden-gems-discards-variable/'>C# Hidden Gems – Discards Variable ( _ )</a></li><li><a href='https://jeevasubburaj.com/2018/12/06/containerizing-n-tier-mvc-net-framework/'>Containerizing N-Tier MVC .Net Framework Application with Docker</a></li><li><a href='https://jeevasubburaj.com/2018/09/12/real-time-cricket-score-chrome/'>Real Time Cricket Score Chrome Extension using Azure Functions and SignalR</a></li><li><a href='https://jeevasubburaj.com/2018/08/14/azure-signalr-messaging-with-net-core/'>Azure SignalR Messaging with .Net Core Console App Server and Client</a></li><li><a href='https://jeevasubburaj.com/2018/07/28/aspnet-core-basics-accessing/'>Asp.Net Core Basics- Accessing Configuration Settings from Multiple Sources</a></li><li><a href='https://jeevasubburaj.com/2018/07/11/magic-paste-universal-paste-data-to-web/'>Real Time Communication to Cross Platform Devices using Azure SignalR Service</a></li><li><a href='https://jeevasubburaj.com/2018/06/06/real-time-language-translation-chat/'>Real time Language Translation chat using SignalR and Azure Cognitive Services and TypedHttpClient - .Net Core 2.1</a></li><li><a href='https://jeevasubburaj.com/2018/05/21/parser-api-using-net-core-web-api-21/'>Parser API using .Net Core Web API 2.1 and Hosting in Raspberry PI</a></li><li><a href='https://jeevasubburaj.com/2018/05/01/simultaneous-data-queue-polling-request/'>Simultaneous Data Queue Polling Request Processing in SQL Server</a></li><li><a href='https://jeevasubburaj.com/2018/04/27/sql-server-tips-sql-server-paging-made/'>SQL Server Tips : SQL Server Paging made easy with OFFSET and FETCH Keyword</a></li><li><a href='https://jeevasubburaj.com/2018/04/19/android-app-free-packtpub-ebook/'>Android App - Free PacktPub Ebook Notifier (Weekend Project)</a></li><li><a href='https://jeevasubburaj.com/2018/04/05/net-hidden-gems-webdebugconfig-and/'>.Net Hidden Gems - Web.Debug.Config and Web.Release.Config</a></li><li><a href='https://jeevasubburaj.com/2018/03/27/how-to-build-personal-web-server-using/'>How to build Personal Web API Server using Raspberry PI and NodeJs</a></li></ul>
<h2 class='channel-title'># <a href='https://vnhacker.blogspot.com' target='_blank'>https://vnhacker.blogspot.com</a></h2>
<ul class='feed-items'>
<li><a href='http://vnhacker.blogspot.com/feeds/878587706598998394/comments/default'>BKAV lại bị hack</a></li><li><a href='http://vnhacker.blogspot.com/feeds/2344428476628471059/comments/default'>Google Cloud is hiring for Vietnamese speaking Customer Engineers</a></li><li><a href='http://vnhacker.blogspot.com/feeds/3397895728413743665/comments/default'>Cập nhật chiến dịch gây quỹ chống COVID của VietBay</a></li><li><a href='http://vnhacker.blogspot.com/feeds/6923680753000887420/comments/default'>Thư ngỏ gửi ông Phạm Quang Hiệu</a></li><li><a href='http://vnhacker.blogspot.com/feeds/7671152257579122430/comments/default'>Axie Infinity</a></li><li><a href='http://vnhacker.blogspot.com/feeds/214449861520482598/comments/default'>Đổ dầu vào lửa</a></li><li><a href='http://vnhacker.blogspot.com/feeds/8709381781698542600/comments/default'>Thương gửi Sài Gòn</a></li><li><a href='http://vnhacker.blogspot.com/feeds/3750709018285314931/comments/default'>Quyên góp giúp người Việt gặp khó khăn do COVID</a></li><li><a href='http://vnhacker.blogspot.com/feeds/8929056234531459795/comments/default'>Giá trị của tiền số</a></li><li><a href='http://vnhacker.blogspot.com/feeds/725596554847735249/comments/default'>Tôi đi biểu tình chống nạn thù ghét người gốc Á</a></li><li><a href='http://vnhacker.blogspot.com/feeds/7215211749532912448/comments/default'>VietBay Stop Asian Hate rally</a></li><li><a href='http://vnhacker.blogspot.com/feeds/2677602284531188168/comments/default'>Talk show Giang hồ mạng với Phương gà con, Mạnh Luật và hieupc: làm hacker là làm gì?</a></li><li><a href='http://vnhacker.blogspot.com/feeds/7566742137557858984/comments/default'>HOSE quá tải</a></li><li><a href='http://vnhacker.blogspot.com/feeds/7481560274191196480/comments/default'>Ẹo</a></li><li><a href='http://vnhacker.blogspot.com/feeds/4487535562453204989/comments/default'>Giáo sư Ngô Bảo Châu: đào Pi đậm đà bản sắc dân tộc Việt</a></li><li><a href='http://vnhacker.blogspot.com/feeds/4877963356553612607/comments/default'>10 năm</a></li><li><a href='http://vnhacker.blogspot.com/feeds/9028949078458295640/comments/default'>BTC lên sao Hỏa</a></li><li><a href='http://vnhacker.blogspot.com/feeds/3416465997274454130/comments/default'>Đi mua giày ski</a></li><li><a href='http://vnhacker.blogspot.com/feeds/344567417452687345/comments/default'>ETH vượt 1K USD</a></li><li><a href='http://vnhacker.blogspot.com/feeds/1374429679172783029/comments/default'>Bitcoin vượt 33K USD</a></li></ul>
<h2 class='channel-title'># <a href='https://particular.net/blog' target='_blank'>https://particular.net/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://particular.net/blog/cross-platform-integration-with-nservicebus-native-message-processing'>Cross-platform integration with NServiceBus native message processing</a></li><li><a href='https://particular.net/blog/the-network-is-homogeneous'>Fallacy #8: The network is homogeneous</a></li><li><a href='https://particular.net/blog/nservicebus-with-azure-functions-turns-1-0'>NServiceBus with Azure Functions turns 1.0</a></li><li><a href='https://particular.net/blog/azure-storage-queues-learns-some-new-tricks'>Azure Storage Queues learns some new tricks</a></li><li><a href='https://particular.net/blog/whats-new-sql-persistence-6-1'>What's new in SQL Persistence 6.1</a></li><li><a href='https://particular.net/blog/transport-cost-is-zero'>Fallacy #7: Transport cost is zero</a></li><li><a href='https://particular.net/blog/amazon-sqs-native-integration-and-iam-policy-management'>Amazon SQS native integration and IAM policy management</a></li><li><a href='https://particular.net/blog/updates-to-powershell-modules-feb-2021'>Updates to PowerShell modules</a></li><li><a href='https://particular.net/blog/whats-new-in-serviceinsight-2-4'>What's new in ServiceInsight 2.4</a></li><li><a href='https://particular.net/blog/autosave-for-your-business'>Autosave for your business</a></li><li><a href='https://particular.net/blog/there-is-one-administrator'>Fallacy #6: There is one administrator</a></li><li><a href='https://particular.net/blog/updates-in-servicecontrol-4-13'>Updates in ServiceControl 4.13</a></li><li><a href='https://particular.net/blog/transactions-with-azure-table-persistence'>Transactions with Azure Table Persistence</a></li><li><a href='https://particular.net/blog/whats-new-in-sql-server-transport-6-2'>What's new in SQL Server Transport 6.2</a></li><li><a href='https://particular.net/blog/servicepulse-1-27-release'>Improvements to monitoring in ServicePulse 1.27</a></li><li><a href='https://particular.net/blog/nservicebus-on-aws-lambda'>NServiceBus on AWS Lambda</a></li><li><a href='https://particular.net/blog/cosmosdb-persistence-preview'>The power of Cosmos DB comes to NServiceBus</a></li><li><a href='https://particular.net/blog/whats-new-in-serviceinsight-2-2'>What's new in ServiceInsight 2.2</a></li><li><a href='https://particular.net/blog/optimizations-to-scatter-gather-sagas'>Optimizations to scatter-gather sagas</a></li><li><a href='https://particular.net/blog/enhancements-in-nservicebus-hosting'>Enhancements in NServiceBus Hosting</a></li></ul>
<h2 class='channel-title'># <a href='https://www.confluent.io' target='_blank'>https://www.confluent.io</a></h2>
<ul class='feed-items'>
<li><a href='https://www.confluent.io/blog/how-we-designed-and-architected-the-confluent-cli/'>Designing and Architecting the Confluent CLI</a></li><li><a href='https://www.confluent.io/blog/confluent-developer-launches-free-apache-kafka-courses-and-tutorials-online/'>The New One-Stop Shop for Learning Apache Kafka</a></li><li><a href='https://www.confluent.io/blog/how-confluent-cloud-protects-kafka-data-integrity-for-eight-trillion-messages-per-day/'>Protecting Data Integrity in Confluent Cloud: Over 8 Trillion Messages Per Day</a></li><li><a href='https://www.confluent.io/blog/cloud-native-multi-tenant-kafka-with-confluent-cloud/'>From On-Prem to Cloud-Native: Multi-Tenancy in Confluent Cloud</a></li><li><a href='https://www.confluent.io/blog/splunk-s2s-source-premium-connector-for-confluent/'>Reduce Your Data Infrastructure TCO with Confluent’s New Splunk S2S Source Premium Connector</a></li><li><a href='https://www.confluent.io/blog/kafka-summit-apac-2021-recap/'>Kafka Summit APAC 2021 Recap</a></li><li><a href='https://www.confluent.io/blog/from-apache-kafka-to-confluent-cloud-optimizing-for-speed-scale-storage/'>Speed, Scale, Storage: Our Journey from Apache Kafka to Performance in Confluent Cloud</a></li><li><a href='https://www.confluent.io/blog/designing-an-elastic-apache-kafka-for-the-cloud/'>Making Apache Kafka Serverless: Lessons From Confluent Cloud</a></li><li><a href='https://www.confluent.io/blog/design-considerations-for-cloud-native-data-systems/'>Design Considerations for Cloud-Native Data Systems</a></li><li><a href='https://www.confluent.io/blog/ksqldb-0-19-adds-data-modeling-foreign-key-joins/'>Announcing ksqlDB 0.19.0</a></li></ul>
<h2 class='channel-title'># <a href='https://www.cuelogic.com' target='_blank'>https://www.cuelogic.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.cuelogic.com/blog/big-data-tools'>Top 10 Big Data Tools for 2021!</a></li><li><a href='https://www.cuelogic.com/blog/data-culture'>What is Data Culture? Why is it Essential for Solving Organizational Problems?</a></li><li><a href='https://www.cuelogic.com/blog/low-code-platform'>Low Code Platform: The Future of Software Development</a></li><li><a href='https://www.cuelogic.com/blog/zero-trust-architecture'>Zero Trust Architecture: Never Trust, Always Verify Approach to Cybersecurity</a></li><li><a href='https://www.cuelogic.com/blog/devops-maturity-model'>DevOps Maturity Model – Assess & Monitor your DevOps journey</a></li><li><a href='https://www.cuelogic.com/blog/bdd-vs-tdd'>BDD vs TDD : Highlighting the two important Quality Engineering Practices</a></li><li><a href='https://www.cuelogic.com/blog/feature-flags'>Getting Started With Feature Flags</a></li><li><a href='https://www.cuelogic.com/blog/data-mesh'>Data Mesh – Rethinking Enterprise Data Architecture</a></li><li><a href='https://www.cuelogic.com/blog/top-technology-trends-for-2021'>Top Technology Trends for 2021</a></li><li><a href='https://www.cuelogic.com/blog/infrastructure-as-code'>What is Infrastructure as Code and How Can You Leverage It?</a></li></ul>
<h2 class='channel-title'># <a href='https://www.magalix.com' target='_blank'>https://www.magalix.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.magalix.com/blog/cloud-identity-and-access-management-secrets-management'>Cloud Identity and Access Management: Secrets Management</a></li><li><a href='https://www.magalix.com/blog/identify-iac-violations-and-revert-misconfigured-resources-using-magalix'>Identify IaC Violations and Revert misconfigured resources using GitHub</a></li><li><a href='https://www.magalix.com/blog/6-cloud-native-security-trends-in-2021'>6 Cloud-Native Security Trends in 2021</a></li><li><a href='https://www.magalix.com/blog/product-in-depth-analysis-and-event-notification'>Product In-Depth: Analysis and Event Notification</a></li><li><a href='https://www.magalix.com/blog/what-is-iam-in-cloud-computing-all-you-wanted-to-know'>What is IAM in Cloud Computing: All You Wanted to Know</a></li><li><a href='https://www.magalix.com/blog/cloud-vulnerability-management-101-part-1-key-vulnerability-areas'>The 5 Most Critically Vulnerable Areas in Your Cloud Infrastructure</a></li><li><a href='https://www.magalix.com/blog/cloud-asset-management-pipeline-common-leaks-and-how-to-fix-them'>Cloud Asset Management Pipeline: Common Leaks and How to Fix Them</a></li><li><a href='https://www.magalix.com/blog/the-nist-cybersecurity-framework-whats-it-all-about'>The NIST Cybersecurity Framework: What’s It All About?</a></li><li><a href='https://www.magalix.com/blog/container-images-vulnerability-management-with-policy-as-code-trivy'>Container Images Vulnerability Management with Policy-as-Code & Trivy</a></li><li><a href='https://www.magalix.com/blog/codified-cloud-security-glossary-of-terms'>Codified Cloud Security - Glossary of Terms</a></li></ul>
<h2 class='channel-title'># <a href='https://www.grapecity.com' target='_blank'>https://www.grapecity.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.grapecity.com/blogs/how-to-integrate-synchronize-google-calendar-with-blazor-application'>How to Integrate and Synchronize Google Calendar with Your Blazor Application</a></li><li><a href='https://www.grapecity.com/blogs/whats-new-in-componentone-2021-v2'>What's New ComponentOne 2021 v2</a></li><li><a href='https://www.grapecity.com/blogs/how-to-create-rdl-report-net-c-sharp-code'>How to Create an RDL Report in .NET C# Code</a></li><li><a href='https://www.grapecity.com/blogs/wijmo-2021-v2-has-landed'>Wijmo 2021 v2 Has Landed</a></li><li><a href='https://www.grapecity.com/blogs/how-to-create-car-insurance-app-with-custom-shapes-javascript'>How to Create a Car Insurance Claim App with Custom Shapes in JavaScript</a></li><li><a href='https://www.grapecity.com/blogs/spread-net-v14-2-has-arrived'>Spread.NET v14.2 Has Arrived</a></li><li><a href='https://www.grapecity.com/blogs/incorporating-realtime-data-in-a-javascript-spreadsheet'>How to Incorporate Real-Time Data in a JavaScript Spreadsheet</a></li><li><a href='https://www.grapecity.com/blogs/how-to-generate-excel-spreadsheets-in-nodejs'>How to Generate an Excel Spreadsheet from your Node.js Application</a></li><li><a href='https://www.grapecity.com/blogs/npoi-apache-poi-alternative-gcexcel-net'>An NPOI Apache POI Alternative - GcExcel.NET</a></li><li><a href='https://www.grapecity.com/blogs/how-to-import-xlsx-from-a-url-with-pure-js-logic'>How to Import XLSX from a URL with Pure JS Logic</a></li><li><a href='https://www.grapecity.com/blogs/how-to-add-custom-table-net-report-application'>How to Add a Custom WYSIWYG Table to a .NET Report Application</a></li><li><a href='https://www.grapecity.com/blogs/create-angular-spreadsheets-with-angular-cli'>Create Angular Spreadsheet Apps with Angular CLI</a></li><li><a href='https://www.grapecity.com/blogs/merge-multiple-excel-workbooks-in-javascript'>How to Merge Multiple Excel Workbooks in JavaScript and SpreadJS</a></li><li><a href='https://www.grapecity.com/blogs/top-features-best-react-datagrid-web-applications'>The Top Features of FlexGrid, the Best React Datagrid for Web Applications</a></li><li><a href='https://www.grapecity.com/blogs/how-to-build-return-on-investment-calculator-blazor-c-sharp'>Building a Return On Investment Calculator Using Blazor</a></li><li><a href='https://www.grapecity.com/blogs/adding-spreadsheets-to-a-jamstack-application'>Adding Spreadsheets to a Jamstack Application</a></li><li><a href='https://www.grapecity.com/blogs/whats-new-react-18'>What's New in React 18</a></li><li><a href='https://www.grapecity.com/blogs/validation-techniques-asp-net-core-datagrid'>Top Validation Techniques for an ASP.NET Core Datagrid</a></li><li><a href='https://www.grapecity.com/blogs/create-and-view-pdf-forms-from-excel-templates-with-advanced-inputs-and-validations'>How to Create and View PDF Forms from Excel Templates with Advanced Inputs and Validations</a></li><li><a href='https://www.grapecity.com/blogs/net-5-datagrid-performance-benchmarks'>.NET 5 Performance Benchmarks - FlexGrid for WinForms</a></li></ul>
<h2 class='channel-title'># <a href='https://arbel.net' target='_blank'>https://arbel.net</a></h2>
<ul class='feed-items'>
<li><a href='https://arbel.net/2016/08/10/n-async-the-next-generation/'>*N Async, the next generation</a></li><li><a href='https://arbel.net/2016/03/27/simple-access-to-roslyns-internals/'>Simple access to Roslyn`s internals</a></li><li><a href='https://arbel.net/2016/02/22/roslynpad-01/'>RoslynPad 0.1</a></li><li><a href='https://arbel.net/2016/02/19/async-friendly-stack-traces/'>Async-friendly stack traces</a></li><li><a href='https://arbel.net/2015/12/11/adding-headers-and-instrumentation-to-service-fabrics-default-comm-stack/'>Adding headers and instrumentation to Service Fabric default comm. stack</a></li><li><a href='https://arbel.net/2015/07/23/windows-performance-monitor-reimagined/'>Windows Performance Monitor – Reimagined</a></li><li><a href='https://arbel.net/2015/07/23/better-stack-traces-with-async-in-silverlight/'>Better stack traces with async in Silverlight</a></li><li><a href='https://arbel.net/2015/04/01/roslynpad-reloaded/'>RoslynPad Reloaded</a></li><li><a href='https://arbel.net/2014/09/21/configureawait-or-not/'>To ConfigureAwait or not to ConfigureAwait?</a></li><li><a href='https://arbel.net/2014/04/23/the-misbehaving-dialog/'>The Misbehaving Dialog</a></li></ul>
<h2 class='channel-title'># <a href='https://decodenatura.com' target='_blank'>https://decodenatura.com</a></h2>
<ul class='feed-items'>
<li><a href='https://decodenatura.com/how-to-write-custom-react-fetch-hook/'>How to write a custom React fetch hook</a></li><li><a href='https://decodenatura.com/how-to-set-up-nextjs-typescript-eslint-prettier/'>How to setup NextJS with TypeScript and ESLint + prettier</a></li><li><a href='https://decodenatura.com/write-your-first-e2e-test-in-5-minutes/'>Write your first end-to-end test in 5 minutes</a></li><li><a href='https://decodenatura.com/how-to-add-a-trending-section-to-gatsby-blog/'>How to add a trending section to your gatsby blog</a></li><li><a href='https://decodenatura.com/how-to-add-styled-components-to-react-app/'>How to add styled-components to a React application</a></li><li><a href='https://decodenatura.com/what-i-learned-from-women-in-tech-in-my-life/'>What I learned from the women in tech in my life</a></li><li><a href='https://decodenatura.com/7-tips-to-improve-remote-company-culture/'>7 tips to improve remote company culture</a></li><li><a href='https://decodenatura.com/react-native-tutorial-todo-app/'>React Native Turotial: Todo App</a></li><li><a href='https://decodenatura.com/set-up-react-native-typescript-eslint-prettier/'>Set up React Native, TypeScript and ESLint + prettier</a></li><li><a href='https://decodenatura.com/props-cons-of-adopting-typescript-for-my-blog/'>Pros and cons of adopting TypeScript for my blog</a></li><li><a href='https://decodenatura.com/how-to-set-up-gatsby-typescript-eslint-prettier/'>How to setup gatsby with TypeScript and ESLint + prettier</a></li><li><a href='https://decodenatura.com/how-to-review-pr/'>How to review a Pull Request</a></li><li><a href='https://decodenatura.com/learning-to-work-remotely/'>Learning to work remotely</a></li><li><a href='https://decodenatura.com/about-css-in-js-react/'>About CSS-in-JS and React</a></li><li><a href='https://decodenatura.com/how-to-organize-a-remote-team/'>How to organize a remote team</a></li><li><a href='https://decodenatura.com/bad-comments-and-how-to-fix-them/'>Bad comments and how to fix them</a></li><li><a href='https://decodenatura.com/working-for-startups/'>Working for startups</a></li><li><a href='https://decodenatura.com/the-beauty-of-typescript/'>The beauty of TypeScript</a></li><li><a href='https://decodenatura.com/about-code-comments/'>About code comments</a></li><li><a href='https://decodenatura.com/git-workflow-in-5-minutes/'>Git workflow in 5 minutes</a></li></ul>
<h2 class='channel-title'># <a href='https://codeteddy.com' target='_blank'>https://codeteddy.com</a></h2>
<ul class='feed-items'>
<li><a href='https://codeteddy.com/2019/11/18/continuous-integration-and-deployment-ci-cd-of-asp-net-core-application-on-azure-web-app-using-jenkins-day-4/'>Continuous Integration and Deployment (CI/CD) of Asp.Net Core Application on Azure Web App using Jenkins – Day 4</a></li><li><a href='https://codeteddy.com/2019/11/12/continuous-integration-and-deployment-ci-cd-of-asp-net-core-application-on-azure-web-app-using-jenkins-day-3/'>Continuous Integration and Deployment (CI/CD) of Asp.Net Core Application on Azure Web App using Jenkins – Day 3</a></li><li><a href='https://codeteddy.com/2019/11/07/continuous-integration-and-deployment-ci-cd-of-asp-net-core-application-on-azure-web-app-using-jenkins-day-2/'>Continuous Integration and Deployment (CI/CD) of Asp.Net Core Application on Azure Web App using Jenkins – Day 2</a></li><li><a href='https://codeteddy.com/2019/11/04/continuous-integration-and-deployment-ci-cd-of-asp-net-core-application-on-azure-web-app-using-jenkins-day1/'>Continuous Integration and Deployment (CI/CD) of Asp.Net Core Application on Azure Web App using Jenkins – Day1</a></li><li><a href='https://codeteddy.com/2019/10/17/everything-software-developers-and-managers-need-to-know-about-agile-culture/'>Everything Software Developers and Managers Need to Know About Agile Culture</a></li><li><a href='https://codeteddy.com/2019/09/15/face-api-cognitive-service-day-4-face-classification-app-using-face-api/'>Face API Cognitive Service Day 4: Face classification app using Face API</a></li><li><a href='https://codeteddy.com/2019/09/10/face-api-cognitive-service-day-3-face-identification-using-face-api/'>Face API Cognitive Service Day 3: Face Identification using Face API</a></li><li><a href='https://codeteddy.com/2019/09/05/face-api-cognitive-service-day-2-exploring-face-api-sdk/'>Face API Cognitive Service Day 2: Exploring Face API SDK</a></li><li><a href='https://codeteddy.com/2019/09/02/face-api-cognitive-service-day-1-face-api-on-azure-portal/'>Face API Cognitive Service Day 1: Face API on Azure Portal</a></li><li><a href='https://codeteddy.com/2019/08/15/azure-kubernetes-services-day-three-deploying-asp-net-core-application-to-azure-kubernetes-services/'>Azure Kubernetes Services – Day Three: Deploying ASP.NET Core Application to Azure Kubernetes Services</a></li></ul>
<h2 class='channel-title'># <a href='https://stegosource.com' target='_blank'>https://stegosource.com</a></h2>
<ul class='feed-items'>
<li><a href='https://austingil.com/svg-favicons/'>OMG, SVG Favicons FTW!</a></li><li><a href='https://austingil.com/watching-changes-vue-js-component-slot-content/'>Watching for Changes in Vue.js Component Slot Content</a></li><li><a href='https://austingil.com/wordpress-is-still-pretty-darn-great/'>Opinion: WordPress is Still Pretty Darn Great</a></li><li><a href='https://austingil.com/typescript-the-easy-way/'>Get Started With TypeScript the Easy Way</a></li><li><a href='https://austingil.com/how-to-build-html-forms-right-security/'>How to Build HTML Forms Right: Security</a></li><li><a href='https://austingil.com/global-sass-vue-project/'>Automatically import SASS/SCSS into every Vue.js component</a></li><li><a href='https://austingil.com/build-html-forms-right-user-experience/'>How to Build HTML Forms Right: User Experience</a></li><li><a href='https://austingil.com/build-html-forms-right-styling/'>How to Build HTML Forms Right: Styling</a></li><li><a href='https://austingil.com/vuetensils-0-7-dates-tooltips-skip-links/'>Vuetensils 0.7: Dates, Tooltips, Skip links, and more.</a></li><li><a href='https://austingil.com/3-ways-prepopulate-vue-js-global-stores-state/'>3 Ways to Prepopulate Your Vue.js Global Store’s State</a></li></ul>
<h2 class='channel-title'># <a href='https://severalnines.com' target='_blank'>https://severalnines.com</a></h2>
<ul class='feed-items'>
<li><a href='https://severalnines.com/database-blog/clustercontrol-advanced-backup-management-mariabackup-part-iii'>ClusterControl - Advanced Backup Management - mariabackup Part III</a></li><li><a href='https://severalnines.com/database-blog/proactive-mongodb-monitoring-developer-studioadvisors-angle'>Proactive MongoDB Monitoring (Developer Studio/Advisors angle)</a></li><li><a href='https://severalnines.com/database-blog/clustercontrol-advanced-backup-management-mongodb'>ClusterControl - Advanced Backup Management - MongoDB</a></li><li><a href='https://severalnines.com/database-blog/comparison-between-clustercontrol-and-mongodb-ops-manager'>A Comparison Between ClusterControl and MongoDB OPS Manager</a></li><li><a href='https://severalnines.com/database-blog/most-popular-nosql-databases-supported-clustercontrol'>Most Popular NoSQL Databases Supported by ClusterControl</a></li><li><a href='https://severalnines.com/database-blog/clustercontrol-advanced-backup-management-postgresql'>ClusterControl - Advanced Backup Management - PostgreSQL</a></li><li><a href='https://severalnines.com/database-blog/how-choose-key-value-store'>How to Choose a Key-value Store</a></li><li><a href='https://severalnines.com/database-blog/intro-key-value-stores'>Intro To Key-value Stores</a></li><li><a href='https://severalnines.com/database-blog/introduction-redis-what-it-what-are-use-cases-etc'>Introduction to Redis (What it is, what are the use cases etc)</a></li><li><a href='https://severalnines.com/database-blog/upgrading-postgresql13'>Upgrading to PostgreSQL13</a></li></ul>
<h2 class='channel-title'># <a href='https://levelup.gitconnected.com' target='_blank'>https://levelup.gitconnected.com</a></h2>
<ul class='feed-items'>
<li><a href='https://levelup.gitconnected.com/7-programs-to-understand-all-35-keyword-in-python-fc0278dd37b7?source=rss----5517fd7b58a6---4'>7 Programs to Understand All 35 Keyword In Python</a></li><li><a href='https://levelup.gitconnected.com/how-i-start-a-hobby-project-79a222f47e7c?source=rss----5517fd7b58a6---4'>How I Start a Hobby Project</a></li><li><a href='https://levelup.gitconnected.com/optimize-images-from-an-external-website-with-the-image-component-from-next-js-aa104a1f78e0?source=rss----5517fd7b58a6---4'>Optimize Images From an External Website With the Image Component From Next.js</a></li><li><a href='https://levelup.gitconnected.com/10-common-mistakes-even-expert-developers-make-b7f04621854c?source=rss----5517fd7b58a6---4'>10 Common Mistakes Even Expert Developers Make</a></li><li><a href='https://levelup.gitconnected.com/do-python-tools-cut-the-mustard-for-living-documentation-7303e1a2ff6?source=rss----5517fd7b58a6---4'>Do Python Tools “cut the mustard” for Living Documentation?</a></li><li><a href='https://levelup.gitconnected.com/why-you-should-probably-leave-your-current-project-e79e1d79c4d?source=rss----5517fd7b58a6---4'>Why you should probably leave your current Project</a></li><li><a href='https://levelup.gitconnected.com/7-fascinating-open-source-projects-you-will-fall-in-love-with-9402b3fabbbc?source=rss----5517fd7b58a6---4'>7 Fascinating Open Source Projects You Will Fall in Love With</a></li><li><a href='https://levelup.gitconnected.com/googlenews-python-api-gain-30-minutes-a-day-with-this-robot-newsreader-48ae6c593ef0?source=rss----5517fd7b58a6---4'>Python: How I Gained 30 Minutes a Day With This Robot Newsreader</a></li><li><a href='https://levelup.gitconnected.com/patience-pays-b8d0ec62c509?source=rss----5517fd7b58a6---4'>Patience Pays</a></li><li><a href='https://levelup.gitconnected.com/joins-with-pandas-dataframes-bd077a6ec20d?source=rss----5517fd7b58a6---4'>Joins with Pandas Dataframes</a></li></ul>
<h2 class='channel-title'># <a href='https://visionsincode.wordpress.com' target='_blank'>https://visionsincode.wordpress.com</a></h2>
<ul class='feed-items'>
<li><a href='https://visionsincode.com/2021/07/13/installing-sitecore-content-serialization-package-from-a-nuget-package-using-github-packages-with-the-power-of-sitecore-cli-and-github-actions/'>Installing Sitecore Content Serialization package from a NuGet package using GitHub Packages, with the power of SITECORE CLI and GITHUB ACTIONS</a></li><li><a href='https://visionsincode.com/2021/07/06/use-github-packages-for-storing-sitecore-content-as-a-nuget-package-with-the-power-of-sitecore-cli-and-github-actions/'>Use Github Packages for storing Sitecore content as a nuget package, with the power of SITECORE CLI and GITHUB ACTIONS</a></li><li><a href='https://visionsincode.com/2021/05/23/build-and-push-sitecore-jss-proxy-image-with-github-packagesnpm-dist-packages-using-github-actions-part-2/'>Build and push Sitecore JSS Proxy image with GitHub Packages(npm dist packages) using GitHub Actions – part 2</a></li><li><a href='https://visionsincode.com/2021/05/10/build-and-publish-your-sitecore-jss-dist-as-an-npm-package-to-github-packages-part-1/'>Build and publish your Sitecore JSS dist as an NPM package to GitHub Packages – Part 1</a></li><li><a href='https://visionsincode.com/2021/05/01/handle-your-json-configs-in-your-sitecore-commerce-solution-like-ripleyin-alien/'>Handle your json configs in your Sitecore Commerce Solution like Ripley(in Alien)</a></li><li><a href='https://visionsincode.com/2021/04/16/building-and-pushing-docker-images-using-github-actions-for-your-sitecore-solution/'>Building and pushing docker images using GitHub Actions for your Sitecore solution</a></li><li><a href='https://visionsincode.com/2021/02/20/dictionarydomain-null-in-backend-in-your-sxa-jss-site/'>DictionaryDomain null (in backend) in your SXA JSS site</a></li><li><a href='https://visionsincode.com/2021/02/14/disk-space-full-running-your-sitecore-docker-instances/'>Disk space full running your Sitecore Docker instances</a></li><li><a href='https://visionsincode.com/2021/01/09/curl-your-way-out-when-404-page-not-found-in-your-sitecore-docker-setup/'>Curl your way out when 404 page not found in your #Sitecore Docker setup</a></li><li><a href='https://visionsincode.com/2020/12/13/running-sitecore-jss-with-node-headless-ssr-proxy-in-sitecore-10-all-in-docker-this-is-the-way/'>Running Sitecore JSS with Node Headless SSR Proxy in Sitecore 10, all in Docker – This is the Way</a></li></ul>
<h2 class='channel-title'># <a href='https://www.alachisoft.com/blogs' target='_blank'>https://www.alachisoft.com/blogs</a></h2>
<ul class='feed-items'>
<li><a href='https://www.alachisoft.com/blogs/use-snmp-counters-for-monitoring-ncache/'>Use SNMP Counters for Monitoring NCache</a></li><li><a href='https://www.alachisoft.com/blogs/say-hello-to-ncache-cloud/'>Say Hello to NCache Cloud</a></li><li><a href='https://www.alachisoft.com/blogs/use-ncache-cloud-in-aws/'>Use NCache Cloud in AWS</a></li><li><a href='https://www.alachisoft.com/blogs/use-ncache-cloud-in-azure/'>Use NCache Cloud in Azure</a></li><li><a href='https://www.alachisoft.com/blogs/introducing-node-js-in-ncache/'>Introducing Node.js in NCache</a></li><li><a href='https://www.alachisoft.com/blogs/cache-startup-loader-to-preload-data-in-ncache/'>Cache Startup Loader to Preload Data in NCache</a></li><li><a href='https://www.alachisoft.com/blogs/how-to-sync-cache-with-mongo-db/'>How to Sync Cache with Mongo DB</a></li><li><a href='https://www.alachisoft.com/blogs/ncache-performance-counters/'>NCache Performance Counters: Analysis and Monitoring</a></li><li><a href='https://www.alachisoft.com/blogs/take-down-cache-server/'>How to Take Down a Cache Server for Maintenance?</a></li><li><a href='https://www.alachisoft.com/blogs/recovering-partially-connected-cache-cluster/'>Recover from a Partially Connected Cache Cluster Without Any Downtime</a></li><li><a href='https://www.alachisoft.com/blogs/using-ncache-compact-serialization/'>How to Use Dynamic Compact Serialization?</a></li><li><a href='https://www.alachisoft.com/blogs/activating-ncache/'>How to Activate NCache?</a></li><li><a href='https://www.alachisoft.com/blogs/use-ncache-security-feature/'>How to Use NCache Security Feature</a></li><li><a href='https://www.alachisoft.com/blogs/how-to-use-cache-startup-loader/'>How to Use Cache Startup Loader?</a></li><li><a href='https://www.alachisoft.com/blogs/ncache-clr-stored-procedures/'>Using CLR Stored Procedures to Sync NCache with a Database</a></li><li><a href='https://www.alachisoft.com/blogs/ncache-hardware-recommendations/'>Hardware Recommendations</a></li><li><a href='https://www.alachisoft.com/blogs/how-to-quickly-use-ncache-with-nhibernate/'>How to Quickly Use NCache with NHibernate?</a></li><li><a href='https://www.alachisoft.com/blogs/how-to-configure-ncache-in-firewalled-environment/'>Configuring NCache behind Firewall</a></li><li><a href='https://www.alachisoft.com/blogs/how-to-configure-entity-framework-caching/'>How to Configure Entity Framework Caching?</a></li><li><a href='https://www.alachisoft.com/blogs/start-ncache-service/'>How to Start NCache Service on a 64-bit box?</a></li></ul>
<h2 class='channel-title'># <a href='https://minhhungit.github.io' target='_blank'>https://minhhungit.github.io</a></h2>
<ul class='feed-items'>
<li><a href='https://minhhungit.github.io/2020/12/26/012-introduce-dashboard-widget-system/'>Introduce A Dashboard Widget System For Serenity Framework</a></li><li><a href='https://minhhungit.github.io/2020/10/16/011-keep-menu-toggle-state-after-page-reload/'>Keep menu toggle state after page reload</a></li><li><a href='https://minhhungit.github.io/2020/10/07/010-adding-slickgrid-column-in-serenity-dynamically/'>Adding slickgrid column in Serenity dynamically</a></li><li><a href='https://minhhungit.github.io/2020/08/06/009-implement-helping-button-using-popover-bootstrap-3-on-serenity-form/'>Implement Helping Button Using Popover Bootstrap 3 On Serenity Form</a></li><li><a href='https://minhhungit.github.io/2020/06/10/008-create-serenity-toolbar-dropdown-button/'>Create Serenity Toolbar Dropdown Button</a></li><li><a href='https://minhhungit.github.io/2019/10/17/007-how-to-embed-gif-image-into-github-issue-or-wiki/'>How To Embed Gif Image Into Github Issue/Wiki</a></li><li><a href='https://minhhungit.github.io/2019/10/17/006-lookup-editor-pass-parameter-and-change-lookup-key/'>Serenity LookupEditor - Pass Parameter And Change LookupKey</a></li><li><a href='https://minhhungit.github.io/2019/10/03/005-how-to-create-slider-dialog-in-serenity-part-3/'>How To Create A Slider Dialog In Serenity (Part 3)</a></li><li><a href='https://minhhungit.github.io/2019/09/29/004-how-to-create-slider-dialog-in-serenity-part-2/'>How To Create A Slider Dialog In Serenity (Part 2)</a></li><li><a href='https://minhhungit.github.io/2019/09/26/002-how-to-create-slider-dialog-in-serenity-part-1/'>How To Create A Slider Dialog In Serenity (Part 1)</a></li></ul>
<h2 class='channel-title'># <a href='https://khalidabuhakmeh.com' target='_blank'>https://khalidabuhakmeh.com</a></h2>
<ul class='feed-items'>
<li><a href='https://khalidabuhakmeh.com/dotnet-source-generators-finding-class-declarations'>.NET Source Generators: Finding Class Declarations</a></li><li><a href='https://khalidabuhakmeh.com/redis-cli-connection-uri-with-stackexchangeredis'>Parse Redis-CLI Connection URI To Use With StackExchange.Redis</a></li><li><a href='https://khalidabuhakmeh.com/blazor-and-cancelling-asynchronous-calls-with-cancellationtokensource'>Blazor and Cancelling Asynchronous Calls With CancellationTokenSource</a></li><li><a href='https://khalidabuhakmeh.com/fix-blurry-ubuntu-display-parallels-vm'>Fix Blurry Ubuntu Display In A Parallels Virtual Machine</a></li><li><a href='https://khalidabuhakmeh.com/decrypt-secrets-into-aspnet-core-mvc-action-arguments-using-action-filters'>Decrypt Secrets Into ASP.NET Core MVC Action Arguments Using Action Filters</a></li><li><a href='https://khalidabuhakmeh.com/boost-aspnet-core-performance-with-static-content'>Boost ASP.NET Core Performance with Static Content</a></li><li><a href='https://khalidabuhakmeh.com/partial-range-http-requests-with-aspnet-core'>HTTP Range Requests and Partial Responses With ASP.NET Core</a></li><li><a href='https://khalidabuhakmeh.com/csharp-pattern-matching-quick-guide-and-examples'>C# Pattern Matching Quick Guide And Examples</a></li><li><a href='https://khalidabuhakmeh.com/preventing-duplicate-web-requests-to-aspnet-core'>Preventing Duplicate Web Requests To ASP.NET Core</a></li><li><a href='https://khalidabuhakmeh.com/working-with-dotnet-six-priorityqueue'>Working With .NET 6's PriorityQueue</a></li><li><a href='https://khalidabuhakmeh.com/the-difference-between-html-and-url-encode-in-dotnet'>The Difference Between HTML and URL Encode In .NET</a></li><li><a href='https://khalidabuhakmeh.com/working-with-dotnet-console-host-lifetime-events'>Working With .NET Console Host Lifetime Events</a></li><li><a href='https://khalidabuhakmeh.com/solve-for-the-next-dayofweek-from-datetime'>Solve For The Next DayOfWeek From DateTime</a></li><li><a href='https://khalidabuhakmeh.com/what-is-razor-aspnet'>What Is Razor - ASP.NET</a></li><li><a href='https://khalidabuhakmeh.com/access-background-services-from-aspnet-core'>Access Background Services From ASP.NET Core</a></li><li><a href='https://khalidabuhakmeh.com/read-write-excel-spreadsheets-with-csharp'>Read and Write Excel Spreadsheets With C#</a></li><li><a href='https://khalidabuhakmeh.com/add-svelte-to-aspnet-core-projects'>Add Svelte To ASP.NET Core Projects</a></li><li><a href='https://khalidabuhakmeh.com/fix-dotnet-icu-build-issues-in-github-actions'>Fix .NET ICU Build Issues In GitHub Actions</a></li><li><a href='https://khalidabuhakmeh.com/how-to-add-models-to-aspnet-core'>How To Add Models To ASP.NET Core</a></li><li><a href='https://khalidabuhakmeh.com/generate-links-to-aspnet-core-map-endpoints'>Generate Links To ASP.NET Core Map Endpoints</a></li></ul>
<h2 class='channel-title'># <a href='https://lcdung.top' target='_blank'>https://lcdung.top</a></h2>
<ul class='feed-items'>
<li><a href='https://lcdung.top/earthly-la-cong-nghe-gi/?utm_source=rss&utm_medium=rss&utm_campaign=earthly-la-cong-nghe-gi'>Earthly là công nghệ gì?</a></li><li><a href='https://lcdung.top/tao-du-an-app-template-lit-element-typescript-voi-snowpack/?utm_source=rss&utm_medium=rss&utm_campaign=tao-du-an-app-template-lit-element-typescript-voi-snowpack'>Tạo dự án app-template-lit-element-typescript với snowpack</a></li><li><a href='https://lcdung.top/review-sach-thoi-quen-thu-8/?utm_source=rss&utm_medium=rss&utm_campaign=review-sach-thoi-quen-thu-8'>REVIEW SÁCH: THÓI QUEN THỨ 8</a></li><li><a href='https://lcdung.top/lit-html-la-gi/?utm_source=rss&utm_medium=rss&utm_campaign=lit-html-la-gi'>Lit HTML là gì?</a></li><li><a href='https://lcdung.top/puppeter-not-working-by-chromium-on-vps-ubuntu-20-x-but-running-locally/?utm_source=rss&utm_medium=rss&utm_campaign=puppeter-not-working-by-chromium-on-vps-ubuntu-20-x-but-running-locally'>Puppeter not working by chromium on VPS Ubuntu 20.x but running locally</a></li><li><a href='https://lcdung.top/open-simulator-iphone-on-mac-via-terminal/?utm_source=rss&utm_medium=rss&utm_campaign=open-simulator-iphone-on-mac-via-terminal'>Open simulator iphone on Mac via Terminal</a></li><li><a href='https://lcdung.top/install-nvm/?utm_source=rss&utm_medium=rss&utm_campaign=install-nvm'>Install NVM</a></li><li><a href='https://lcdung.top/huong-dan-tao-mock-api-server-voi-post-man/?utm_source=rss&utm_medium=rss&utm_campaign=huong-dan-tao-mock-api-server-voi-post-man'>Hướng dẫn tạo mock API Server với Post Man</a></li><li><a href='https://lcdung.top/lead-engineer-trong-nhu-the-nao/?utm_source=rss&utm_medium=rss&utm_campaign=lead-engineer-trong-nhu-the-nao'>Lead Engineer trông như thế nào?</a></li><li><a href='https://lcdung.top/huong-dan-migration-confluence-server-sang-confluence-cloud/?utm_source=rss&utm_medium=rss&utm_campaign=huong-dan-migration-confluence-server-sang-confluence-cloud'>Hướng dẫn migration Confluence server sang Confluence Cloud</a></li></ul>
<h2 class='channel-title'># <a href='https://www.404podcast.org' target='_blank'>https://www.404podcast.org</a></h2>
<ul class='feed-items'>
<li><a href='https://www.404podcast.org/episodes/19/checkm8'>Chiếu bí iPhone</a></li></ul>
<h2 class='channel-title'># <a href='https://kruschecompany.com' target='_blank'>https://kruschecompany.com</a></h2>
<ul class='feed-items'>
<li><a href='https://kruschecompany.com/custom-software-development/'>What is custom software development and does your business need it?</a></li><li><a href='https://kruschecompany.com/adaptive-software-development-asd/'>What is Adaptive Software Development (ASD)? Understanding the Agile framework</a></li><li><a href='https://kruschecompany.com/agile-software-development/'>What is Agile software development?</a></li><li><a href='https://kruschecompany.com/devops-engineer/'>Profile of a DevOps engineer – role, skills & salary</a></li><li><a href='https://kruschecompany.com/software-development/'>Software development explained</a></li><li><a href='https://kruschecompany.com/software-agency-selection-blueprint/'>Choosing the right software agency for your project – the questions to ask</a></li><li><a href='https://kruschecompany.com/mobile-app-development/'>The complete guide to mobile app development in 2021</a></li><li><a href='https://kruschecompany.com/node-js-development/'>Node.js development – an introduction to the popular JS runtime environment</a></li><li><a href='https://kruschecompany.com/reactjs-development/'>ReactJS development – an introduction to the popular JS library and its applications</a></li></ul>
<h2 class='channel-title'># <a href='https://www.docker.com/blog' target='_blank'>https://www.docker.com/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://www.docker.com/blog/introduction-to-heredocs-in-dockerfiles/'>Introduction to heredocs in Dockerfiles</a></li><li><a href='https://www.docker.com/blog/docker-security-roundup-news-articles-sessions/'>Docker Security Roundup: News, Articles, Sessions</a></li><li><a href='https://www.docker.com/blog/engineering-update-buildkit-0-9-and-docker-buildx-0-6-releases/'>Engineering Update: BuildKit 0.9 and Docker Buildx 0.6 Releases</a></li><li><a href='https://www.docker.com/blog/level-up-security-with-scoped-access-tokens/'>Level Up Security with Scoped Access Tokens</a></li><li><a href='https://www.docker.com/blog/save-the-date-next-community-all-hands-on-september-16th/'>SAVE THE DATE : Next Community All Hands on September 16th !</a></li><li><a href='https://www.docker.com/blog/docker-captain-take-5-lucas-santos/'>Docker Captain Take 5 – Lucas Santos</a></li><li><a href='https://www.docker.com/blog/docker-for-node-js-developers-5-things-you-need-to-know-not-to-fail-your-security/'>Docker for Node.js Developers: 5 Things You Need to Know Not to Fail Your Security</a></li><li><a href='https://www.docker.com/blog/28485-2/'>Video: Docker Build: Simplify Cloud-native Development with Docker & DAPR</a></li><li><a href='https://www.docker.com/blog/dockercon-2021-women-in-tech-panel-2/'>DockerCon 2021: Women in Tech Panel</a></li><li><a href='https://www.docker.com/blog/improved-volume-management-docker-dev-environments-and-more-in-desktop-3-5/'>Improved Volume Management, Docker Dev Environments and more in Desktop 3.5</a></li></ul>
<h2 class='channel-title'># <a href='https://microsoft.github.io/AzureTipsAndTricks' target='_blank'>https://microsoft.github.io/AzureTipsAndTricks</a></h2>
<ul class='feed-items'>
<li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip327.html'>Tip 327 - How to use Azure Service Bus Queues</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip326.html'>Tip 326 - How to use Flexible Server in Azure Database for MySQL</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip325.html'>Tip 325 - How to build Blazor and C# APIs in Azure Static Web Apps</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip324.html'>Tip 324 - How to be productive with GitHub Codespaces</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip323.html'>Tip 323 - How to build serverless APIs with Azure Functions</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip322.html'>Tip 322 - How to perform opinion mining with Azure Cognitive Services</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip321.html'>Tip 321 - How to deploy Azure Cognitive Services in containers</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip320.html'>Tip 320 - How to get started with Neural Text to Speech in Azure</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip319.html'>Tip 319 - How to create custom handlers for Azure Functions</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip318.html'>Tip 318 - How to get started with Natural Language Understanding in Azure</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip317.html'>Tip 317 - How to migrate your MySQL database to the cloud</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip316.html'>Tip 316 - How to get started with Azure Health Bot</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip315.html'>Tip 315 - How to get started with Azure Digital Twins</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip314.html'>Tip 314 - How to get started with Metrics Advisor</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip313.html'>Tip 313 - How to develop apps with Azure Database for PostgreSQL using best practices</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip312.html'>Tip 312 - How to use Azure Container Registry for building and deploying .NET Core apps</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip311.html'>Tip 311 - How to run Logic Apps in a Docker container</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip310.html'>Tip 310 - How to use Blob versioning in Azure Storage</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip309.html'>Tip 309 - How to Deploy Steeltoe .NET apps to Azure Spring Cloud</a></li><li><a href='https://microsoft.github.io/AzureTipsAndTricks/blog/tip308.html'>Tip 308 - How to start and stop Azure Kubernetes clusters</a></li></ul>
<h2 class='channel-title'># <a href='https://www.raymondcamden.com' target='_blank'>https://www.raymondcamden.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.raymondcamden.com/2021/08/08/uploading-multiple-files-with-fetch'>Uploading Multiple Files with Fetch</a></li><li><a href='https://www.raymondcamden.com/2021/08/06/check-out-begin'>Check out Begin</a></li><li><a href='https://www.raymondcamden.com/2021/08/02/an-adobe-pdf-embed-plugin-for-eleventy'>An Adobe PDF Embed Plugin for Eleventy</a></li><li><a href='https://www.raymondcamden.com/2021/07/30/page-level-url-fetching-with-eleventy'>Page Level URL Fetching with Eleventy</a></li><li><a href='https://www.raymondcamden.com/2021/07/14/integrating-eleventy-with-github-flat-data'>Integrating Eleventy with GitHub Flat Data</a></li><li><a href='https://www.raymondcamden.com/2021/07/12/creating-an-additive-capture-shortcode-in-eleventy'>Creating an Additive Capture Shortcode in Eleventy</a></li><li><a href='https://www.raymondcamden.com/2021/07/09/graphing-movie-rating-distribution-for-no-good-reason'>Graphing Movie Rating Distribution For No Good Reason</a></li><li><a href='https://www.raymondcamden.com/2021/06/30/using-pipedream-to-proxy-other-apis'>Using Pipedream to Proxy Other APIs</a></li><li><a href='https://www.raymondcamden.com/2021/06/22/dynamic-short-urls-with-eleventy'>Dynamic Short URLs with Eleventy</a></li><li><a href='https://www.raymondcamden.com/2021/06/18/using-pdfs-with-the-jamstack-adding-search-with-text-extraction'>Using PDFs with the Jamstack - Adding Search with Text Extraction</a></li></ul>
<h2 class='channel-title'># <a href='https://completejavascript.com' target='_blank'>https://completejavascript.com</a></h2>
<ul class='feed-items'>
<li><a href='https://completejavascript.com/su-dung-sass-voi-create-react-app'>Sử dụng SASS với create-react-app</a></li><li><a href='https://completejavascript.com/lam-sao-bat-buoc-truyen-tham-so-vao-ham'>Làm sao để bắt buộc truyền tham số vào hàm?</a></li><li><a href='https://completejavascript.com/tagged-template-es6-la-gi'>Tagged template ES6 là gì?</a></li><li><a href='https://completejavascript.com/kiem-tra-empty-object-trong-javascript'>Cách kiểm tra empty object trong JavaScript</a></li><li><a href='https://completejavascript.com/sap-xep-tieng-viet-javascript'>Sắp xếp Tiếng Việt trong JavaScript</a></li><li><a href='https://completejavascript.com/tao-so-ngau-nhien-trong-javascript'>Tạo số ngẫu nhiên trong JavaScript</a></li><li><a href='https://completejavascript.com/xoan-nao-voi-phong-van-javascript-9'>Xoắn não với phỏng vấn JavaScript 9</a></li><li><a href='https://completejavascript.com/xoan-nao-voi-phong-van-javascript-8'>Xoắn não với phỏng vấn JavaScript 8</a></li><li><a href='https://completejavascript.com/react-render-single-dom-element'>Tại sao React yêu cầu render single DOM element?</a></li><li><a href='https://completejavascript.com/xu-ly-bat-dong-bo-song-song-tuan-tu'>Xử lý bất đồng bộ song song hay tuần tự?</a></li><li><a href='https://completejavascript.com/thu-thuat-su-dung-console-hieu-qua'>Một số thủ thuật sử dụng console hiệu quả</a></li><li><a href='https://completejavascript.com/ung-dung-cua-reduce-javascript'>Một vài ứng dụng của Reduce trong JavaScript</a></li><li><a href='https://completejavascript.com/tim-hieu-ve-symbol-trong-javascript'>Tìm hiểu về Symbol trong JavaScript</a></li><li><a href='https://completejavascript.com/tim-hieu-ve-http-cookie-voi-javascript'>Tìm hiểu về HTTP Cookie với JavaScript</a></li><li><a href='https://completejavascript.com/mot-so-bieu-thuc-chinh-quy-regexp-hay'>Một số biểu thức chính quy RegExp hay</a></li><li><a href='https://completejavascript.com/su-dung-es-modules-tren-trinh-duyet'>Sử dụng ES Modules trên trình duyệt</a></li><li><a href='https://completejavascript.com/xu-ly-bat-dong-bo-callback-promise-async-await'>Xử lý bất đồng bộ với callback, promise, async/await</a></li><li><a href='https://completejavascript.com/destructuring-assignment-trong-javascript'>Destructuring Assignment trong JavaScript</a></li><li><a href='https://completejavascript.com/xoan-nao-voi-phong-van-javascript-7'>Xoắn não với phỏng vấn JavaScript 7</a></li><li><a href='https://completejavascript.com/ket-thuc-som-promise-chaining-trong-javascript'>Kết thúc sớm Promise chaining trong JavaScript</a></li></ul>
<h2 class='channel-title'># <a href='https://altkomsoftware.pl/en' target='_blank'>https://altkomsoftware.pl/en</a></h2>
<ul class='feed-items'>
<li><a href='https://altkomsoftware.pl/en/blog/effective-it-business-strategy-for-your-business/'>Effective IT & Business Strategy For Your Business</a></li><li><a href='https://altkomsoftware.pl/en/blog/10-key-considerations-for-successful-cloud-migration-in-insurance-companies/'>10 key considerations for successful cloud migration in insurance companies</a></li><li><a href='https://altkomsoftware.pl/en/blog/business-blog/finops_cloud_cost_management/'>The FinOps – cloud cost management as a driver for growth and transformation</a></li><li><a href='https://altkomsoftware.pl/en/blog/business-process-modelling-using-camunda-advanced-features/'>Business Process Modelling using Camunda advanced features</a></li><li><a href='https://altkomsoftware.pl/en/blog/how-to-get-the-most-out-of-your-operations-teams/'>How to get the most out of your operations teams?</a></li><li><a href='https://altkomsoftware.pl/en/blog/promises-vs-observables-is-there-really-a-dilemma-here/'>Promises vs Observables – is there really a dilemma here?</a></li><li><a href='https://altkomsoftware.pl/en/blog/e-book-22-steps-to-reduce-your-aws-bill/'>E-book “22 steps to reduce your AWS bill”</a></li><li><a href='https://altkomsoftware.pl/en/blog/camunda-extensions/'>Camunda extensions</a></li><li><a href='https://altkomsoftware.pl/en/blog/better-unit-tests-with-custom-builders-asserts-and-a-sprinkle-of-ddd/'>Better Unit Tests With Custom Builders, Asserts And A Sprinkle of DDD</a></li><li><a href='https://altkomsoftware.pl/en/blog/business-blog/camunda-improves-the-business-it-collaboration/'>Camunda improves the business – IT collaboration. What impact does it have on projects?</a></li></ul>
<h2 class='channel-title'># <a href='https://www.humankode.com/' target='_blank'>https://www.humankode.com/</a></h2>
<ul class='feed-items'>
<li><a href='https://www.humankode.com/asp-net-core/logging-with-elasticsearch-kibana-asp-net-core-and-docker'>Logging with ElasticSearch, Kibana, ASP.NET Core and Docker</a></li><li><a href='https://www.humankode.com/security/how-to-encrypt-secrets-with-the-aws-key-management-service-kms'>How to Encrypt Secrets with the AWS Key Management Service (KMS)</a></li><li><a href='https://www.humankode.com/ssl/create-a-selfsigned-certificate-for-nginx-in-5-minutes'>Create a Self-Signed Certificate for Nginx in 5 Minutes</a></li><li><a href='https://www.humankode.com/ssl/how-to-set-up-free-ssl-certificates-from-lets-encrypt-using-docker-and-nginx'>How to Set Up Free SSL Certificates from Let's Encrypt using Docker and Nginx</a></li><li><a href='https://www.humankode.com/asp-net-core/develop-locally-with-https-self-signed-certificates-and-asp-net-core'>Develop Locally with HTTPS, Self-Signed Certificates and ASP.NET Core</a></li><li><a href='https://www.humankode.com/asp-net-core/how-to-store-secrets-in-azure-key-vault-using-net-core'>How to Store Secrets in Azure Key Vault Using .NET Core</a></li></ul>
<h2 class='channel-title'># <a href='https://josefottosson.se' target='_blank'>https://josefottosson.se</a></h2>
<ul class='feed-items'>
<li><a href='https://josef.codes/dealing-with-access-tokens-in-dotnet/'>Dealing with access tokens in dotnet</a></li><li><a href='https://josef.codes/asp-net-core-6-http-logging-log-requests-responses/'>ASP.NET Core 6 - HttpLogging - log requests/responses</a></li><li><a href='https://josef.codes/treat-you-integration-tests-as-external-consumers/'>Treat your integration tests as external consumers</a></li><li><a href='https://josef.codes/new-major-version-of-jos-contentserializer-version-5-0/'>New major version of JOS.ContentSerializer - Version 5.0</a></li><li><a href='https://josef.codes/transform-csharp-objects-to-a-flat-string-dictionary/'>Transform C# objects to a flat string dictionary</a></li><li><a href='https://josef.codes/wopi-integration-with-asp-net-core-lessons-learned/'>WOPI Integration with ASP.NET Core - lessons learned</a></li><li><a href='https://josef.codes/select-action-method-based-on-header-value-asp-net-core/'>Select action method based on header value - ASP.NET Core</a></li><li><a href='https://josef.codes/my-take-on-the-result-class-in-c-sharp/'>My take on the "Result class"</a></li><li><a href='https://josef.codes/azure-storage-zip-multiple-files-using-azure-functions/'>Azure Storage - Zip multiple files using Azure Functions</a></li><li><a href='https://josef.codes/polymorphic-deserialization-with-system-text-json/'>Polymorphic deserialization with System.Text.Json</a></li><li><a href='https://josef.codes/efficient-file-uploads-with-dotnet/'>Efficient file uploads with dotnet</a></li><li><a href='https://josef.codes/mongodb-missing-discriminator-array-when-doing-upserts-updateonemodel/'>MongoDB - Missing discriminator array when doing upserts with UpdateOneModel</a></li><li><a href='https://josef.codes/tidy-up-your-httpclient-usage/'>Tidy up your HttpClient usage</a></li><li><a href='https://josef.codes/c-sharp-throttle-http-requests-concurrent/'>C# - Throttle outgoing http requests - Concurrent</a></li><li><a href='https://josef.codes/csvhelper-read-column-value-into-a-list-property/'>CSVHelper - Read column value into a List property</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.danskingdom.com' target='_blank'>https://blog.danskingdom.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.danskingdom.com/Find-which-Windows-process-has-file-in-use/'>Find which Windows process has file in use</a></li><li><a href='https://blog.danskingdom.com/Master-the-Windows-copy-paste-clipboard/'>Master the Windows copy-paste clipboard</a></li><li><a href='https://blog.danskingdom.com/Reasons-to-use-both-a-local-and-global-editorconfig-file/'>Reasons to use both a local and global editorconfig file</a></li><li><a href='https://blog.danskingdom.com/Customize-Git-config-based-on-the-repository-path/'>Customize Git config based on the repository path</a></li><li><a href='https://blog.danskingdom.com/PowerShell-intellisense-on-the-command-line/'>PowerShell intellisense on the command line</a></li><li><a href='https://blog.danskingdom.com/Close-those-superfluous-Zoom-windows-automatically/'>Close those superfluous Zoom windows automatically</a></li><li><a href='https://blog.danskingdom.com/Get-up-and-running-with-AutoHotkey/'>Get up and running with AutoHotkey</a></li><li><a href='https://blog.danskingdom.com/Git-alias-to-reset-local-tags/'>Git alias to reset local tags</a></li><li><a href='https://blog.danskingdom.com/Watch-videos-faster-and-reclaim-your-time/'>Watch videos faster and reclaim your time</a></li><li><a href='https://blog.danskingdom.com/Bring-up-the-Windows-Terminal-in-a-keystroke/'>Bring up the Windows Terminal in a keystroke</a></li></ul>
<h2 class='channel-title'># <a href='https://ebaytech.berlin' target='_blank'>https://ebaytech.berlin</a></h2>
<ul class='feed-items'>
<li><a href='https://ebaytech.berlin/optimizing-multi-package-apps-with-typescript-project-references-d5c57a3b4440?source=rss----88511eccf63b---4'>Optimizing multi-package apps with TypeScript Project References</a></li><li><a href='https://ebaytech.berlin/computer-says-no-1abea1be84cd?source=rss----88511eccf63b---4'>Computer Says No!</a></li><li><a href='https://ebaytech.berlin/making-healthy-technical-decisions-1f52a2df47a9?source=rss----88511eccf63b---4'>Making healthy technical decisions</a></li><li><a href='https://ebaytech.berlin/online-experiments-in-turbulent-times-7a594ed73445?source=rss----88511eccf63b---4'>Online experiments in turbulent times</a></li><li><a href='https://ebaytech.berlin/shaping-an-application-with-packages-699027099ed5?source=rss----88511eccf63b---4'>Shaping an Application with Packages</a></li><li><a href='https://ebaytech.berlin/resiliency-and-disaster-recovery-with-kafka-b683a88aea0?source=rss----88511eccf63b---4'>Resiliency and Disaster Recovery with Kafka</a></li><li><a href='https://ebaytech.berlin/stop-tracking-total-hits-2f63bb5fb6f5?source=rss----88511eccf63b---4'>Stop tracking total hits</a></li><li><a href='https://ebaytech.berlin/100-percent-test-coverage-is-not-enough-3d733551bc3f?source=rss----88511eccf63b---4'>100% test coverage is not enough…</a></li><li><a href='https://ebaytech.berlin/milkman-ebay-c302a6c523f?source=rss----88511eccf63b---4'>Milkman@eBay</a></li><li><a href='https://ebaytech.berlin/modularizing-web-applications-with-ease-9099e20600f8?source=rss----88511eccf63b---4'>Modularizing Applications with Ease</a></li></ul>
<h2 class='channel-title'># <a href='https://dailydotnettips.com' target='_blank'>https://dailydotnettips.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dailydotnettips.com/integrate-azure-health-bot-with-application-insights/'>Integrate Azure Health Bot with Application Insights</a></li><li><a href='https://dailydotnettips.com/accessing-telemetry-and-analytics-for-your-azure-health-bot/'>Accessing Telemetry and Analytics for Your Azure Health Bot</a></li><li><a href='https://dailydotnettips.com/reviewing-audit-trails-for-azure-health-bot/'>Reviewing Audit Trails for Azure Health Bot</a></li><li><a href='https://dailydotnettips.com/how-to-check-the-health-status-of-visual-studio-services/'>How to check the Health Status of Visual Studio Services?</a></li><li><a href='https://dailydotnettips.com/whats-new-in-visual-studio-2022-intellicode-code-completions/'>What’s New in Visual Studio 2022 – IntelliCode Code Completions</a></li><li><a href='https://dailydotnettips.com/download-visual-studio-2022-first-preview/'>Download Visual Studio 2022 – First Preview</a></li><li><a href='https://dailydotnettips.com/bored-with-dark-and-light-themes-in-azure-devops-try-experimental-themes/'>Bored with Dark and Light Themes in Azure DevOps? – Try Experimental Themes</a></li><li><a href='https://dailydotnettips.com/did-you-know-you-can-now-copy-dashboard-in-azure-devops/'>Did you know – You can now Copy Dashboard in Azure DevOps?</a></li><li><a href='https://dailydotnettips.com/dont-see-the-preview-features-in-azure-devops-try-it/'>Don’t See the Preview Features in Azure DevOps – Try It</a></li><li><a href='https://dailydotnettips.com/command-line-arguments-and-c-9-0-top-level-statement-visual-studio/'>Command Line Arguments and C# 9.0 Top Level Statement – Visual Studio</a></li><li><a href='https://dailydotnettips.com/did-you-know-visual-studio-has-an-integrated-developer-command-prompt/'>Did you know – Visual Studio has an Integrated Developer Command Prompt?</a></li><li><a href='https://dailydotnettips.com/git-pull-request-deep-links-in-visual-studio/'>Git Pull Request Deep Links in Visual Studio</a></li><li><a href='https://dailydotnettips.com/control-auto-solution-load-with-git-repository-open-in-visual-studio/'>Control Auto Solution load with Git Repository Open in Visual Studio</a></li><li><a href='https://dailydotnettips.com/switch-between-git-repositories-and-branches-seamlessly-in-visual-studio/'>Switch between Git repositories and branches seamlessly in Visual Studio</a></li><li><a href='https://dailydotnettips.com/net-tips-and-tricks-azure-azure-health-bot-visual-studio-may-2021-recap/'>.NET Tips and Tricks – Azure, Azure Health Bot, Visual Studio – May 2021 Recap</a></li><li><a href='https://dailydotnettips.com/remove-unused-references-clean-up-project-references-and-nuget-packages-in-visual-studio/'>Remove Unused References – Clean up project references and NuGet packages in Visual Studio</a></li><li><a href='https://dailydotnettips.com/distribute-azure-health-chatbot-using-microsoft-teams-apps/'>Distribute Azure Health Chatbot Using Microsoft Teams Apps</a></li><li><a href='https://dailydotnettips.com/how-to-configure-azure-health-chatbot-for-microsoft-teams/'>How to configure Azure Health Chatbot for Microsoft Teams?</a></li><li><a href='https://dailydotnettips.com/create-your-first-ai-powered-compliant-chatbot-using-azure-health-bot/'>Create your first AI-powered, compliant Chatbot using Azure Health Bot</a></li><li><a href='https://dailydotnettips.com/the-fastest-way-to-get-started-with-microsoft-azure/'>The fastest way to get started with Microsoft Azure</a></li></ul>
<h2 class='channel-title'># <a href='https://thomaslarock.com/' target='_blank'>https://thomaslarock.com/</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/W-AoBXI5dXo/'>Microsoft Data Platform MVP – A Baker’s Dozen</a></li><li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/x3BsCfksD10/'>Twenty Years</a></li><li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/0LwvgUTE_es/'>SET NOCOUNT For SQL Server</a></li><li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/hJnuI_3mkc8/'>The Most Important Feature in Microsoft Teams You Aren’t Using</a></li><li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/8vqspBPobE4/'>You Can’t Marry Your Database, But You Can Have Relations</a></li><li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/kbLNiSkSHIA/'>Create and Use an Email Alias</a></li><li><a href='http://feedproxy.google.com/~r/SQLRockstar/~3/alKh0KuUD-I/'>Book Review: Calling Bullshit</a></li></ul>
<h2 class='channel-title'># <a href='https://www.brentozar.com' target='_blank'>https://www.brentozar.com</a></h2>
<ul class='feed-items'>
<li><a href='https://www.brentozar.com/archive/2021/08/video-office-hours-arctic-circle-puffins-edition/'>[Video] Office Hours: Arctic Circle Puffins Edition</a></li><li><a href='https://www.brentozar.com/archive/2021/08/video-office-hours-siglufjordur-airport-runway-edition/'>[Video] Office Hours: Siglufjörður Airport Runway Edition</a></li><li><a href='https://www.brentozar.com/archive/2021/08/whos-hiring-in-the-database-community-august-2021-edition/'>Who’s Hiring in the Database Community? August 2021 Edition</a></li><li><a href='https://www.brentozar.com/archive/2021/07/video-office-hours-ask-me-anything-about-professional-development/'>[Video] Office Hours: Ask Me Anything About Professional Development</a></li></ul>
<h2 class='channel-title'># <a href='https://bytefish.de' target='_blank'>https://bytefish.de</a></h2>
<ul class='feed-items'>
<li><a href='https://www.bytefish.de/blog/layered_architecture_dotnet.html'>Software Architectures: Layered Architecture with .NET</a></li><li><a href='https://www.bytefish.de/blog/sql_server_tvp_bulk_inserts.html'>Using SQL Server Table-valued Parameters (TVP) for Bulk Inserts</a></li><li><a href='https://www.bytefish.de/blog/aspnetcore_static_files_cors.html'>Enabling CORS for StaticFiles in ASP.NET Core</a></li><li><a href='https://www.bytefish.de/blog/spring_boot_multitenancy_entity_listeners.html'>Using EntityListeners to provide Multitenancy with Spring Boot</a></li><li><a href='https://www.bytefish.de/blog/spring_boot_multitenancy_using_rls.html'>Multitenancy with Spring Boot using Postgres Row Level Security</a></li><li><a href='https://www.bytefish.de/blog/aspnet_core_identity_database.html'>Renaming the Database Model of ASP.NET Core Identity</a></li><li><a href='https://www.bytefish.de/blog/sqlquery_with_ef_core.html'>SqlQuery with EntityFramework Core 3</a></li><li><a href='https://www.bytefish.de/blog/elasticsearch_fulltext_search.html'>Building a Fulltext Search Engine with ASP.NET Core, Angular 9, Elasticsearch and Tesseract</a></li><li><a href='https://www.bytefish.de/blog/spring_boot_multitenancy_async.html'>Spring Boot Multi-Tenant Applications: Preserving Tenant information in Asynchronous Methods</a></li><li><a href='https://www.bytefish.de/blog/spring_boot_multitenancy.html'>Providing Multitenancy with Spring Boot</a></li></ul>
<h2 class='channel-title'># <a href='https://www.sqlpassion.at' target='_blank'>https://www.sqlpassion.at</a></h2>
<ul class='feed-items'>
<li><a href='https://www.sqlpassion.at/archive/2021/07/05/relaunching-www-sqlpassion-at/?utm_source=rss&utm_medium=rss&utm_campaign=relaunching-www-sqlpassion-at'>Relaunching www.SQLpassion.at</a></li><li><a href='https://www.sqlpassion.at/archive/2021/05/03/my-upcoming-online-speaking-engagements/?utm_source=rss&utm_medium=rss&utm_campaign=my-upcoming-online-speaking-engagements'>My upcoming Online Speaking Engagements</a></li><li><a href='https://www.sqlpassion.at/archive/2021/03/22/sqlpassion-online-training-about-statistics-plan-caching-2/?utm_source=rss&utm_medium=rss&utm_campaign=sqlpassion-online-training-about-statistics-plan-caching-2'>SQLpassion Online Training about Statistics & Plan Caching</a></li><li><a href='https://www.sqlpassion.at/archive/2021/03/15/my-new-home-studio-setup/?utm_source=rss&utm_medium=rss&utm_campaign=my-new-home-studio-setup'>My new Home Studio Setup</a></li><li><a href='https://www.sqlpassion.at/archive/2021/02/15/building-an-amd-ryzen-system-for-microsoft-flight-simulator-2020/?utm_source=rss&utm_medium=rss&utm_campaign=building-an-amd-ryzen-system-for-microsoft-flight-simulator-2020'>Building an AMD Ryzen system for Microsoft Flight Simulator 2020</a></li><li><a href='https://www.sqlpassion.at/archive/2021/02/08/sqlpassion-online-training-about-locking-blocking-and-deadlocking/?utm_source=rss&utm_medium=rss&utm_campaign=sqlpassion-online-training-about-locking-blocking-and-deadlocking'>SQLpassion Online Training about Locking, Blocking, and Deadlocking</a></li><li><a href='https://www.sqlpassion.at/archive/2021/01/25/speaking-about-latches-spinlocks-at-the-eightkb-online-conference/?utm_source=rss&utm_medium=rss&utm_campaign=speaking-about-latches-spinlocks-at-the-eightkb-online-conference'>Speaking about Latches & Spinlocks at the EightKB Online Conference</a></li><li><a href='https://www.sqlpassion.at/archive/2021/01/19/announcing-www-chesspassion-at/?utm_source=rss&utm_medium=rss&utm_campaign=announcing-www-chesspassion-at'>Announcing www.CHESSpassion.at</a></li><li><a href='https://www.sqlpassion.at/archive/2021/01/07/sqlpassion-online-training-about-statistics-plan-caching/?utm_source=rss&utm_medium=rss&utm_campaign=sqlpassion-online-training-about-statistics-plan-caching'>SQLpassion Online Training about Statistics & Plan Caching</a></li><li><a href='https://www.sqlpassion.at/archive/2020/11/16/sqlpassion-black-friday-deal-2020/?utm_source=rss&utm_medium=rss&utm_campaign=sqlpassion-black-friday-deal-2020'>SQLpassion Black Friday Deal 2020</a></li></ul>
<h2 class='channel-title'># <a href='https://trituenhantao.info' target='_blank'>https://trituenhantao.info</a></h2>
<ul class='feed-items'>
<li><a href='https://trituenhantao.info/best-buy-is-offering-500-off-the-sony-x85j-65-inch-4k-smart-tv/'>Best Buy is offering $500 off the Sony X85J 65 inch 4K Smart TV</a></li><li><a href='https://trituenhantao.info/how-to-set-a-reminder-directly-from-an-android-notification/'>Android Tips: You can now set a reminder directly from an Android notification</a></li><li><a href='https://trituenhantao.info/the-kickboxer-luke-street-fighter-vs-last-new-character/'>The Kickboxer Luke – Street Fighter V’s Last New Character</a></li><li><a href='https://trituenhantao.info/snapchat-knows-when-you-were-born-if-you-used-it-to-check-your-horoscope/'>Snapchat knows when you were born – How does it work? Astrological profile is the Silent Mole</a></li><li><a href='https://trituenhantao.info/does-dark-mode-save-battery-life/'>Does Dark Mode Save Battery Life?</a></li></ul>
<h2 class='channel-title'># <a href='https://www.stevefenton.co.uk' target='_blank'>https://www.stevefenton.co.uk</a></h2>
<ul class='feed-items'>
<li><a href='https://www.stevefenton.co.uk/2021/08/the-boy-who-cried-wolf-an-alternative-ending/'>The Boy Who Cried Wolf – An Alternative Ending</a></li><li><a href='https://www.stevefenton.co.uk/2021/07/how-to-get-accurate-element-width-as-a-floating-point-number/'>How to get Accurate Element Width as a Floating Point Number</a></li><li><a href='https://www.stevefenton.co.uk/2021/06/counting-a-non-generic-ienumerable/'>Counting a Non-Generic IEnumerable</a></li><li><a href='https://www.stevefenton.co.uk/2021/06/uptime-checker-mythbusting/'>Uptime Checker Mythbusting</a></li><li><a href='https://www.stevefenton.co.uk/2021/06/how-to-debug-google-analytics-v4-ga4/'>How to Debug Google Analytics v4 (GA4)</a></li><li><a href='https://www.stevefenton.co.uk/2021/06/how-to-create-important-messages-in-teams/'>How to Create Important Messages in Teams</a></li><li><a href='https://www.stevefenton.co.uk/2021/06/pretty-output-from-json-stringify/'>Pretty Output from JSON.stringify</a></li><li><a href='https://www.stevefenton.co.uk/2021/05/duplication-vs-coupling/'>Duplication vs Coupling</a></li><li><a href='https://www.stevefenton.co.uk/2021/04/the-int-betweeners-or-an-extension-method-for-numbers/'>The Int Betweeners (or… An Extension Method for Numbers)</a></li><li><a href='https://www.stevefenton.co.uk/2021/04/check-css-support-in-css-using-supports-rules/'>Check CSS Support in CSS Using @supports Rules</a></li></ul>
<h2 class='channel-title'># <a href='https://dammecode.wordpress.com' target='_blank'>https://dammecode.wordpress.com</a></h2>
<ul class='feed-items'>
<li><a href='https://dammecode.wordpress.com/2021/05/04/kafka-va-nhung-cau-hoi/'>Kafka và những câu hỏi</a></li><li><a href='https://dammecode.wordpress.com/2021/04/11/cac-linux-commands-bo-tui/'>Các linux commands bỏ túi :)</a></li><li><a href='https://dammecode.wordpress.com/2021/03/18/tich-hop-prometheus-alertmanager-voi-servicenow/'>Tích hợp Prometheus Alertmanager với ServiceNow</a></li><li><a href='https://dammecode.wordpress.com/2021/03/14/ngan-gon-ve-nginx/'>Ngắn gọn về Nginx</a></li><li><a href='https://dammecode.wordpress.com/2021/03/03/cau-hinh-sasl-scram-cho-amazon-msk/'>Cấu hình SASL/SCRAM cho Amazon MSK</a></li><li><a href='https://dammecode.wordpress.com/2020/11/23/dung-keycloak-de-login-nhu-the-nao/'>Dùng Keycloak để login như thế nào?</a></li><li><a href='https://dammecode.wordpress.com/2020/11/08/weblate-cong-cu-ho-tro-translation-qua-tien-dung/'>Weblate – công cụ hỗ trợ translation quá tiện dụng!</a></li><li><a href='https://dammecode.wordpress.com/2020/10/25/co-ban-ve-may-ao-docker-va-kubernetes/'>Cơ bản về máy ảo, docker và Kubernetes</a></li><li><a href='https://dammecode.wordpress.com/2020/09/22/deploy-app-in-kubernetes-cluster/'>Deploy app in Kubernetes cluster</a></li><li><a href='https://dammecode.wordpress.com/2020/09/12/cac-cau-hoi-phong-van-ve-angular-thuong-gap/'>Các câu hỏi phỏng vấn về Angular thường gặp</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.usejournal.com' target='_blank'>https://blog.usejournal.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.usejournal.com/the-curious-case-of-humans-an-odd-tale-d5e969316480?source=rss----7b837cf1fd73---4'>The Curious Case of Humans: An odd tale</a></li><li><a href='https://blog.usejournal.com/looking-for-a-job-as-a-principal-engineer-during-a-pandemic-2020-65297ecfb82b?source=rss----7b837cf1fd73---4'>Looking for a job as a Principal Engineer during a pandemic [2020]</a></li><li><a href='https://blog.usejournal.com/form-flow-to-increase-quality-of-leads-landing-page-3c3b57807322?source=rss----7b837cf1fd73---4'>Form flow to increase quality of leads-Landing page</a></li><li><a href='https://blog.usejournal.com/write-a-book-in-only-2-days-ab3bf9fe60b7?source=rss----7b837cf1fd73---4'>Write a Book in Only 2 Days</a></li><li><a href='https://blog.usejournal.com/asynchronous-job-interviews-is-the-future-76de8862ae40?source=rss----7b837cf1fd73---4'>Asynchronous Job Interviews is the Future</a></li><li><a href='https://blog.usejournal.com/the-key-to-connection-325d4862cce7?source=rss----7b837cf1fd73---4'>The Key to Connection</a></li><li><a href='https://blog.usejournal.com/these-4-things-make-successful-people-different-933c351acc36?source=rss----7b837cf1fd73---4'>These 4 things make successful people different</a></li><li><a href='https://blog.usejournal.com/the-battle-for-audio-space-supremacy-clubhouse-spaces-greenroom-whos-next-981b47f5cde3?source=rss----7b837cf1fd73---4'>The Battle for Audio Space Supremacy: Clubhouse, Spaces, Greenroom… who’s next?</a></li><li><a href='https://blog.usejournal.com/best-smart-glasses-benefits-concerns-and-drivers-of-ar-vr-mr-xr-and-spatial-computing-tech-c3cba5af1077?source=rss----7b837cf1fd73---4'>Best Smart Glasses: Benefits, Concerns, and Drivers of AR, VR, MR, XR, and Spatial Computing Tech</a></li><li><a href='https://blog.usejournal.com/why-content-marketing-is-worthwhile-d8cac4e4e613?source=rss----7b837cf1fd73---4'>Why content marketing is worthwhile</a></li></ul>
<h2 class='channel-title'># <a href='https://towardsdatascience.com' target='_blank'>https://towardsdatascience.com</a></h2>
<ul class='feed-items'>
<li><a href='https://towardsdatascience.com/using-pgfplots-to-make-economic-graphs-in-latex-bcdc8e27c0eb?source=rss----7f60cf5620c9---4'>Using pgfplots to make economic graphs in LaTeX</a></li><li><a href='https://towardsdatascience.com/missing-data-points-in-your-monitoring-api-response-use-page-iterators-81d27e954c70?source=rss----7f60cf5620c9---4'>Missing data points in your monitoring API response? Use page iterators!</a></li><li><a href='https://towardsdatascience.com/3-reasons-why-optimization-should-be-included-in-every-data-science-graduate-program-7ec7a94062b?source=rss----7f60cf5620c9---4'>3 Reasons Why Optimization Should Be Included in Every Data Science Graduate Program</a></li><li><a href='https://towardsdatascience.com/7-embarrassingly-easy-ways-to-speed-up-your-python-program-88911b9192c1?source=rss----7f60cf5620c9---4'>7 Embarrassingly Easy Ways to Speed Up Your Python Program</a></li><li><a href='https://towardsdatascience.com/preprocessing-3d-volumes-for-tumor-segmentation-using-monai-and-pytorch-eaeb3d718570?source=rss----7f60cf5620c9---4'>Preprocessing 3D Volumes for Tumor Segmentation Using Monai and PyTorch</a></li><li><a href='https://towardsdatascience.com/mastering-time-series-analysis-in-python-8219047a0351?source=rss----7f60cf5620c9---4'>Mastering Time Series Analysis in Python</a></li><li><a href='https://towardsdatascience.com/hessian-matrix-and-optimization-problems-in-python-3-8-f7cd2a615371?source=rss----7f60cf5620c9---4'>Hessian matrix and optimization problems in Python 3.8</a></li><li><a href='https://towardsdatascience.com/ai-assisted-automated-machine-driven-data-labeling-approach-afde67e32c52?source=rss----7f60cf5620c9---4'>AI-Assisted Automated Machine-Driven Data Labeling Approach</a></li><li><a href='https://towardsdatascience.com/domain-adaptation-ml-for-multiple-datasets-3634af3c1a1b?source=rss----7f60cf5620c9---4'>Domain Adaptation — ML for multiple datasets</a></li><li><a href='https://towardsdatascience.com/data-scientists-are-really-just-product-managers-heres-why-b3e699c8296f?source=rss----7f60cf5620c9---4'>Data Scientists are Really Just Product Managers. Here’s Why.</a></li></ul>
<h2 class='channel-title'># <a href='https://developer.okta.com/blog' target='_blank'>https://developer.okta.com/blog</a></h2>
<ul class='feed-items'>
<li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/FssHero_UhY/aws-toolkit-for-visual-studio'>Using AWS Toolkit for Visual Studio</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/2RtkoMMnYyo/webforms-blazor-migration'>Web Forms Migration to Blazor in .NET Core</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/yDgk6WEySQI/libsodium-encryption-go-python'>Getting Started with Libsodium in Python and Go</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/isjj84pOYps/microprofile-content-negotiation'>Content Negotiation with a Java MicroProfile Application</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/K02sY3xG2A4/fix-common-problems-cors'>Fixing Common Problems with CORS and JavaScript</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/h_ySQgl2v6I/spring-webclient'>Spring WebClient for Easy Access to OAuth 2.0 Protected Resources</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/Nl-ILLIt5nI/toggle-feature-flags-csharp'>How to Toggle Functionality in C# with Feature Flags</a></li><li><a href='http://feedproxy.google.com/~r/OktaDeveloperBlog/~3/RfW9sJ1vs2o/spring-cloud-sleuth'>Easy Distributed Tracing with Spring Cloud Sleuth</a></li></ul>
<h2 class='channel-title'># <a href='https://www.elastic.co/blog' target='_blank'>https://www.elastic.co/blog</a></h2>
<ul class='feed-items'>
<li><a href='https://www.elastic.co/blog/culture-four-unexpected-benefits-of-working-in-a-distributed-engineering-org'>Four unexpected benefits of working in a distributed engineering org</a></li><li><a href='https://www.elastic.co/blog/elastic-recognized-for-innovation-by-google-cloud-and-microsoft'>Elastic recognized for innovation by Google Cloud and Microsoft</a></li><li><a href='https://www.elastic.co/blog/whats-new-elastic-7-14-0'>Elastic 7.14.0 introduces the industry’s first free and open Limitless XDR</a></li><li><a href='https://www.elastic.co/blog/whats-new-elastic-security-7-14-0'>What’s new in Elastic Security 7.14: Protect your company with Limitless XDR</a></li><li><a href='https://www.elastic.co/blog/whats-new-elastic-observability-7-14-0'>Elastic Observability 7.14: Unified telemetry and accelerated application root cause analysis</a></li><li><a href='https://www.elastic.co/blog/whats-new-elastic-enterprise-search-7-14-0'>What's new in Elastic Enterprise Search 7.14: Kibana integration and precision tuning</a></li><li><a href='https://www.elastic.co/blog/whats-new-elastic-cloud-7-14-0'>What’s new in Elastic Cloud for 7.14: Connect securely to your public cloud environments with Azure Private Link</a></li><li><a href='https://www.elastic.co/blog/whats-new-kibana-7-14-0'>What’s new in Kibana 7.14: Formulas and time shifts for richer ad hoc analysis</a></li><li><a href='https://www.elastic.co/blog/whats-new-elasticsearch-7-14-0'>Elasticsearch 7.14 released</a></li><li><a href='https://www.elastic.co/blog/elastic-stack-6-8-18-released'>Elastic Stack 6.8.18 released</a></li><li><a href='https://www.elastic.co/blog/introducing-limitless-xdr'>Limitless XDR defined: Ingest, retain, and analyze security data freely</a></li><li><a href='https://www.elastic.co/blog/save-10-percent-disk-space-on-your-logging-datasets-with-match-only-text'>Save 10% disk space on your logging datasets with match_only_text</a></li><li><a href='https://www.elastic.co/blog/elastic-agent-and-fleet-make-it-easier-to-integrate-your-systems-with-elastic'>Elastic Agent and Fleet make it easier to integrate your systems with Elastic</a></li><li><a href='https://www.elastic.co/blog/detecting-unusual-network-activity-with-elastic-security-and-machine-learning'>Detecting unusual network activity with Elastic Security and machine learning</a></li><li><a href='https://www.elastic.co/blog/troubleshooting-elasticsearch-ilm-common-issues-and-fixes'>Troubleshooting Elasticsearch ILM: Common issues and fixes</a></li><li><a href='https://www.elastic.co/blog/culture-five-tips-for-growing-your-career-in-tech-sales'>Five tips for growing your career in tech sales</a></li><li><a href='https://www.elastic.co/blog/monitoring-kubernetes-the-elastic-way-using-filebeat-and-metricbeat'>Monitoring Kubernetes the Elastic way using Filebeat and Metricbeat</a></li><li><a href='https://www.elastic.co/blog/collecting-and-operationalizing-threat-data-from-the-mozi-botnet'>Collecting and operationalizing threat data from the Mozi botnet</a></li><li><a href='https://www.elastic.co/blog/defending-the-internet-of-things-from-hackers-and-viruses'>Defending the Internet of Things from hackers and viruses</a></li><li><a href='https://www.elastic.co/blog/elastic-cloud-is-now-available-on-google-cloud-in-asia-pacific-northeast-3-seoul'>Elastic Cloud is now available on Google Cloud in Asia Pacific Northeast 3 (Seoul)</a></li></ul>
<h2 class='channel-title'># <a href='https://fidev.io' target='_blank'>https://fidev.io</a></h2>
<ul class='feed-items'>
<li><a href='https://fidev.io/stripe-checkout-in-flutter-web/?utm_source=rss&utm_medium=rss&utm_campaign=stripe-checkout-in-flutter-web'>Stripe Checkout in Flutter Web</a></li><li><a href='https://fidev.io/stripe-in-flutter-mobile/?utm_source=rss&utm_medium=rss&utm_campaign=stripe-in-flutter-mobile'>Stripe Checkout in mobile Flutter app</a></li><li><a href='https://fidev.io/interact-with-framy/?utm_source=rss&utm_medium=rss&utm_campaign=interact-with-framy'>Interacting with Widgets using Framy</a></li><li><a href='https://fidev.io/water-drop/?utm_source=rss&utm_medium=rss&utm_campaign=water-drop'>Water Drop effect in Flutter</a></li><li><a href='https://fidev.io/kinetic-poster/?utm_source=rss&utm_medium=rss&utm_campaign=kinetic-poster'>3D Kinetic Type Poster in Flutter</a></li><li><a href='https://fidev.io/sy-animation/?utm_source=rss&utm_medium=rss&utm_campaign=sy-animation'>SY Travel UI Challenge</a></li><li><a href='https://fidev.io/thanos-snap-effect-in-flutter/?utm_source=rss&utm_medium=rss&utm_campaign=thanos-snap-effect-in-flutter'>Thanos Snap Effect in Flutter</a></li><li><a href='https://fidev.io/tickets-advanced-transitions/?utm_source=rss&utm_medium=rss&utm_campaign=tickets-advanced-transitions'>Advanced transitions – UI Tickets Challenge</a></li><li><a href='https://fidev.io/tickets-challenge-parallax/?utm_source=rss&utm_medium=rss&utm_campaign=tickets-challenge-parallax'>Parallax effect in PageView – UI Tickets Challenge</a></li><li><a href='https://fidev.io/ripple-animation/?utm_source=rss&utm_medium=rss&utm_campaign=ripple-animation'>How to make ripple page transition in 3 minutes using Flutter</a></li></ul>
<h2 class='channel-title'># <a href='https://referbruv.com' target='_blank'>https://referbruv.com</a></h2>
<ul class='feed-items'>
<li><a href='https://referbruv.com/posts/implementing-cookie-authentication-in-aspnet-core-without-identity'>Implementing Cookie Authentication in ASP.NET Core without Identity</a></li><li><a href='https://referbruv.com/posts/writing-docker-container-logs-to-mysql-using-fluentd'>Writing Docker Container Logs to MySQL using Fluentd</a></li><li><a href='https://referbruv.com/posts/csharp-fundamentals-private-constructor-and-static-constructor-explained'>C# Fundamentals - Private Constructor and Static Constructor Explained</a></li><li><a href='https://referbruv.com/posts/ef-core-and-linq-client-vs-server-evaluation-and-immediate-vs-deferred-execution-explained'>EF Core and LINQ - Client vs Server Evaluation and Immediate vs Deferred Execution Explained</a></li><li><a href='https://referbruv.com/posts/garbage-collection-in-net-core-explained-concepts-and-best-practices'>Garbage Collection in .NET Core Explained - Concepts and Best Practices</a></li><li><a href='https://referbruv.com/posts/implementing-pagination-in-aspnet-core-web-api-and-entity-framework-core'>Implementing Pagination in ASP.NET Core Web API and Entity Framework Core</a></li><li><a href='https://referbruv.com/posts/building-custom-responses-for-unauthorized-requests-in-aspnet-core'>Building Custom Responses for UnAuthorized Requests in ASP.NET Core</a></li><li><a href='https://referbruv.com/posts/implementing-stream-based-communication-with-grpc-and-aspnet-core'>Implementing stream based communication with gRPC and ASP.NET Core</a></li><li><a href='https://referbruv.com/posts/building-a-simple-client-server-interaction-with-grpc-in-aspnet-core'>Building a simple Client-Server Interaction with gRPC in ASP.NET Core</a></li><li><a href='https://referbruv.com/posts/role-based-and-claims-based-authorization-in-aspnet-core-using-policies-hands-on'>Role-based and Claims-based Authorization in ASP.NET Core using Policies - Hands on</a></li></ul>
<h2 class='channel-title'># <a href='https://blog.rsuter.com' target='_blank'>https://blog.rsuter.com</a></h2>
<ul class='feed-items'>
<li><a href='https://blog.rsuter.com/versioned-aspnetcore-apis-with-openapi-generation-and-azure-api-management/'>How to set up an ASP.NET Core project with multiple API versions, OpenAPI generation and Azure API Management</a></li><li><a href='https://blog.rsuter.com/azure-event-hubs-improve-scalability-with-batch-parallelization/'>Azure Event Hubs: Improve scalability with batch parallelization</a></li><li><a href='https://blog.rsuter.com/azure-devops-my-versioning-flow-to-publish-dotnet-packages-from-github-repository/'>Azure DevOps: My versioning flow to publish .NET packages from a GitHub repository</a></li><li><a href='https://blog.rsuter.com/dotnet-dependency-injection-way-to-work-around-missing-named-registrations/'>Dependency Injection in .NET: A way to work around missing named registrations</a></li><li><a href='https://blog.rsuter.com/logging-with-ilogger-recommendations-and-best-practices/'>Logging with ILogger in .NET: Recommendations and best practices</a></li><li><a href='https://blog.rsuter.com/technology-summary-azure-blob-storage/'>Technology Summary: Azure Blob Storage</a></li><li><a href='https://blog.rsuter.com/azure-devops-how-to-update-the-azure-function-default-host-key-in-a-powershell-task/'>Azure DevOps: How to update the Azure Function default Host Key in a PowerShell task</a></li><li><a href='https://blog.rsuter.com/azure-devops-create-a-web-app-for-containers-ci-release-pipeline-for-an-asp-net-core-app/'>Azure DevOps: Create a Web App for Containers CI/Release pipeline for an ASP.NET Core app</a></li><li><a href='https://blog.rsuter.com/the-output-of-nullable-reference-types-and-how-to-reflect-it/'>C# 8: The output of Nullable Reference Types and how to reflect it</a></li><li><a href='https://blog.rsuter.com/missing-sdk-when-using-the-microsoft-build-package-in-net-core/'>Missing SDK when using the Microsoft.Build package in .NET Core</a></li><li><a href='https://blog.rsuter.com/how-to-use-a-private-vsts-nuget-package-feed-with-the-net-core-cli/'>Use private Azure DevOps NuGet package feeds with the .NET Core CLI</a></li><li><a href='https://blog.rsuter.com/how-to-publish-an-npm-package-in-appveyor/'>How to publish an NPM package in AppVeyor</a></li><li><a href='https://blog.rsuter.com/automatically-migrate-your-entity-framework-core-managed-database-on-asp-net-core-application-start/'>Automatically migrate your Entity Framework Core managed database on ASP.NET Core application start</a></li><li><a href='https://blog.rsuter.com/advanced-newtonsoft-json-dynamically-rename-or-ignore-properties-without-changing-the-serialized-class/'>Advanced Newtonsoft.Json: Dynamically rename or ignore properties without changing the serialized class</a></li><li><a href='https://blog.rsuter.com/nswag-tutorial-implement-a-custom-operation-processor-to-define-redoc-code-samples/'>NSwag Tutorial: Implement a custom operation processor to define ReDoc code samples</a></li><li><a href='https://blog.rsuter.com/how-to-instantiate-a-generic-type-in-typescript/'>How to instantiate a generic type in TypeScript</a></li><li><a href='https://blog.rsuter.com/use-t4-texttemplatingfilepreprocessor-in-net-standard-or-pcl-libraries/'>Use T4 TextTemplatingFilePreprocessor in .NET Standard or PCL libraries</a></li><li><a href='https://blog.rsuter.com/aurelia-js-detect-dirty-checked-properties-during-development/'>Aurelia JS: Detect dirty checked properties during development</a></li><li><a href='https://blog.rsuter.com/implement-custom-msbuild-tasks-and-distribute-them-via-nuget/'>Implement custom MSBuild tasks and distribute them via NuGet</a></li><li><a href='https://blog.rsuter.com/aurelia-js-implement-a-dialog-service-which-renders-bootstrap-ui-dialogs/'>Aurelia JS: Implement a dialog service which renders Bootstrap UI dialogs</a></li></ul>
<h2 class='channel-title'># <a href='https://tapchilaptrinh.vn' target='_blank'>https://tapchilaptrinh.vn</a></h2>
<ul class='feed-items'>
<li><a href='https://tapchilaptrinh.vn/2020/10/28/cach-tao-rest-api-voi-json-server/'>Cách tạo REST API với JSON Server</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/28/reactjs-tim-hieu-ve-component-life-cycle/'>ReactJS – Tìm hiểu về Component Life Cycle</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/28/reactjs-tim-hieu-ve-component-api/'>ReactJs – Tìm hiểu về Component API</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/28/huong-dan-su-dung-reactjs-props-va-state/'>Hướng dẫn sử dụng ReactJS Props và State</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/28/component-trong-react-va-cach-quan-ly-chung/'>Component trong React và cách quản lý chúng</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/23/tu-viet-hien-thi-helloworld-dau-tien-bang-reactjs/'>Tự viết hiển thị Helloworld đầu tiên bằng ReactJS</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/23/unit-testing-trong-angular-2/'>Unit Testing trong Angular</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/23/unit-test-nhung-buoc-chan-dau-tien/'>Unit Test – Những bước chân đầu tiên</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/22/su-dung-lombok-de-rut-gon-code-trong-java/'>Sử dụng Lombok để rút gọn code trong Java</a></li><li><a href='https://tapchilaptrinh.vn/2020/10/22/hot-reload-voi-du-an-spring-boot-tren-intellij/'>Hot Reload với dự án Spring Boot trên IntelliJ</a></li></ul>
<h2 class='channel-title'># <a href='https://edwardthienhoang.wordpress.com' target='_blank'>https://edwardthienhoang.wordpress.com</a></h2>
<ul class='feed-items'>
<li><a href='https://edwardthienhoang.wordpress.com/2021/08/09/su-ra-doi-cua-service-mesh/'>Sự ra đời của Service Mesh</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peoplware-chuong-16-thue-mot-nguoi-tung-hung/'>Peoplware – Chương 16: Thuê một người tung hứng</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peoplware-chuong-15-hay-noi-ve-kha-nang-lanh-dao/'>Peoplware – Chương 15: Hãy nói về khả năng lãnh đạo</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-14-nhan-to-hornblower/'>Peopleware – Chương 14: Nhân tố Hornblower</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-13-tung-buoc-di-len/'>Peopleware – Chương 13: Từng bước đi lên</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-12-hay-lap-lai-cua-ra-vao/'>Peopleware – Chương 12: Hãy lắp lại cửa ra vào</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-11-dien-thoai/'>Peopleware – Chương 11: Điện thoại</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-10-thoi-gian-dong-nao-so-voi-thoi-gian-co-mat/'>Peopleware – Chương 10: Thời gian động não so với thời gian có mặt</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-9-tiet-kiem-chi-phi-mat-bang/'>Peopleware – Chương 9: Tiết kiệm chi phí mặt bằng</a></li><li><a href='https://edwardthienhoang.wordpress.com/2021/08/08/peopleware-chuong-8-ban-chang-lam-xong-viec-gi-o-day-tu-9-den-5-gio/'>Peopleware – Chương 8: Bạn chẳng làm xong việc gì ở đây từ 9 đến 5 giờ.</a></li></ul>
</ul>
<!-- RSSDATA:END -->
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="site.js"></script>
</body>
</html>