<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Hongbo Liu</title>
    <description>The latest articles on DEV Community by Hongbo Liu (@liuhongbo).</description>
    <link>https://dev.to/liuhongbo</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1047357%2F6fdb75bc-6361-4407-a431-dab68002dd01.jpg</url>
      <title>DEV Community: Hongbo Liu</title>
      <link>https://dev.to/liuhongbo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/liuhongbo"/>
    <language>en</language>
    <item>
      <title>Work with the ChatGPT and GPT-4 models in C#</title>
      <dc:creator>Hongbo Liu</dc:creator>
      <pubDate>Mon, 24 Apr 2023 18:35:51 +0000</pubDate>
      <link>https://dev.to/liuhongbo/work-with-the-chatgpt-and-gpt-4-models-in-c-2f3j</link>
      <guid>https://dev.to/liuhongbo/work-with-the-chatgpt-and-gpt-4-models-in-c-2f3j</guid>
      <description>&lt;p&gt;A Practical Guide to Integrating the Conversational Interfaces with Chat API&lt;br&gt;
&lt;a href="https://devedium.com/work-with-the-chatgpt-and-gpt-4-models-in-c-ef9ee370897"&gt;Work with the ChatGPT and GPT-4 models in C#&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>chatgpt</category>
      <category>conversational</category>
      <category>openai</category>
    </item>
    <item>
      <title>Asynchronous Streams in C#: Effortless Async Data Processing</title>
      <dc:creator>Hongbo Liu</dc:creator>
      <pubDate>Sat, 22 Apr 2023 17:44:42 +0000</pubDate>
      <link>https://dev.to/liuhongbo/asynchronous-streams-in-c-effortless-async-data-processing-md9</link>
      <guid>https://dev.to/liuhongbo/asynchronous-streams-in-c-effortless-async-data-processing-md9</guid>
      <description>&lt;p&gt;Easy Async Programming with C# 8.0’s Asynchronous Streams&lt;br&gt;
&lt;a href="https://devedium.com/asynchronous-streams-in-c-effortless-async-data-processing-d1cd5d5ed6f6"&gt;Asynchronous Streams in C#: Effortless Async Data Processing&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>asynchronous</category>
      <category>programming</category>
      <category>streams</category>
    </item>
    <item>
      <title>How to Implement API Client-Side Rate Limiting in C#</title>
      <dc:creator>Hongbo Liu</dc:creator>
      <pubDate>Fri, 21 Apr 2023 12:39:37 +0000</pubDate>
      <link>https://dev.to/liuhongbo/how-to-implement-api-client-side-rate-limiting-in-c-2465</link>
      <guid>https://dev.to/liuhongbo/how-to-implement-api-client-side-rate-limiting-in-c-2465</guid>
      <description>&lt;p&gt;Learn how to efficiently manage API requests and avoid hitting limits with practical examples. &lt;br&gt;
&lt;a href="https://devedium.com/how-to-implement-api-client-side-rate-limiting-in-c-f91202da2112"&gt;How to Implement API Client-Side Rate Limiting in C#&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>api</category>
      <category>ratelimiting</category>
      <category>developertips</category>
    </item>
    <item>
      <title>Python Crash Course for C# Developers: A Quick Reference Guide</title>
      <dc:creator>Hongbo Liu</dc:creator>
      <pubDate>Tue, 28 Mar 2023 00:42:57 +0000</pubDate>
      <link>https://dev.to/liuhongbo/python-crash-course-for-c-developers-a-quick-reference-guide-3dmi</link>
      <guid>https://dev.to/liuhongbo/python-crash-course-for-c-developers-a-quick-reference-guide-3dmi</guid>
      <description>&lt;p&gt;&lt;a href="https://devedium.com/python-crash-course-for-c-developers-a-quick-reference-guide-86ca519b83c8"&gt;From C# to Python: A handy cheat sheet for transitioning developers.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>python</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Object Mapper with the .NET Compiler Platform SDK and Roslyn</title>
      <dc:creator>Hongbo Liu</dc:creator>
      <pubDate>Sat, 18 Mar 2023 13:10:33 +0000</pubDate>
      <link>https://dev.to/liuhongbo/object-mapper-with-the-net-compiler-platform-sdk-and-roslyn-1lbd</link>
      <guid>https://dev.to/liuhongbo/object-mapper-with-the-net-compiler-platform-sdk-and-roslyn-1lbd</guid>
      <description>&lt;h2&gt;
  
  
  Discover a High-performance Object Mapper with the .NET Compiler Platform SDK and Roslyn
&lt;/h2&gt;




&lt;p&gt;Hi everyone! 🌟&lt;/p&gt;

&lt;p&gt;I recently wrote an blog on how to build a high-performance object mapper using the .NET Compiler Platform SDK (also known as Roslyn). If you're a .NET developer looking to learn .NET Compiler Platform SDK, my blog might be helpful!&lt;/p&gt;

&lt;p&gt;In the blog, I cover:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;An introduction to object mappers and their importance in .NET applications.&lt;/li&gt;
&lt;li&gt;A brief overview of the .NET Compiler Platform SDK (Roslyn) and how it can be used to build powerful tools and analyzers.&lt;/li&gt;
&lt;li&gt;A step-by-step guide to creating a high-performance object mapper using the .NET Compiler Platform SDK, including:

&lt;ul&gt;
&lt;li&gt;Setting up your project and installing the necessary dependencies.&lt;/li&gt;
&lt;li&gt;Writing the code to generate object mapping code at compile-time.&lt;/li&gt;
&lt;li&gt;Implementing the object mapper in your .NET applications.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;A comparison of the performance of the custom-built object mapper with other popular object mapping libraries, showcasing the advantages of using the .NET Compiler Platform SDK.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By the end of the story, you'll have a solid understanding of the .NET Compiler Platform SDK.&lt;/p&gt;

&lt;p&gt;Ready to dive in? 🏊‍♂️&lt;/p&gt;

&lt;p&gt;👉 Read the full story: &lt;a href="https://devedium.com/use-the-net-compiler-platform-sdk-to-build-a-high-performance-object-mapper-63791ab209f3"&gt;Use the .NET Compiler Platform SDK to build a High-performance Object Mapper&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy coding! 🚀&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>programming</category>
      <category>performance</category>
    </item>
  </channel>
</rss>
