<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments for TheCodeBuzz	</title>
	<atom:link href="https://thecodebuzz.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://thecodebuzz.com</link>
	<description>Best Practices for Software Development</description>
	<lastBuildDate>Sat, 04 Apr 2026 17:07:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		Comment on Neo4J Delete or Reset Databases with examples by admin		</title>
		<link>https://thecodebuzz.com/neo4j-delete-reset-databases-nodes-relationship-with-examples/comment-page-1/#comment-152400</link>

		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 04 Apr 2026 17:07:29 +0000</pubDate>
		<guid isPermaLink="false">https://www.thecodebuzz.com/?p=28423#comment-152400</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://thecodebuzz.com/neo4j-delete-reset-databases-nodes-relationship-with-examples/comment-page-1/#comment-152378&quot;&gt;Desain Kreatif&lt;/a&gt;.

Hi Dessain - Thank you. glad it helped you!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://thecodebuzz.com/neo4j-delete-reset-databases-nodes-relationship-with-examples/comment-page-1/#comment-152378">Desain Kreatif</a>.</p>
<p>Hi Dessain &#8211; Thank you. glad it helped you!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Neo4J Delete or Reset Databases with examples by Desain Kreatif		</title>
		<link>https://thecodebuzz.com/neo4j-delete-reset-databases-nodes-relationship-with-examples/comment-page-1/#comment-152378</link>

		<dc:creator><![CDATA[Desain Kreatif]]></dc:creator>
		<pubDate>Sat, 04 Apr 2026 11:22:57 +0000</pubDate>
		<guid isPermaLink="false">https://www.thecodebuzz.com/?p=28423#comment-152378</guid>

					<description><![CDATA[bbe&lt;/a&gt;
I was struggling with a &#039;Memory Limit Exceeded&#039; error while trying to clear my dev graph, and the batched transaction example worked perfectly. Adding this to my Cypher cheat sheet immediately. Thanks!]]></description>
			<content:encoded><![CDATA[<p>bbe<br />
I was struggling with a &#8216;Memory Limit Exceeded&#8217; error while trying to clear my dev graph, and the batched transaction example worked perfectly. Adding this to my Cypher cheat sheet immediately. Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Consuming WCF Web Services in .NET Core using ChannelFactory by User2		</title>
		<link>https://thecodebuzz.com/consume-wcf-web-services-in-net-core-using-channelfactory/comment-page-1/#comment-144893</link>

		<dc:creator><![CDATA[User2]]></dc:creator>
		<pubDate>Thu, 15 Jan 2026 15:12:28 +0000</pubDate>
		<guid isPermaLink="false">https://thecodebuzz.com/?p=3866#comment-144893</guid>

					<description><![CDATA[Super helpful and clear series of articles on WCF. Thanks so much for your efforts.]]></description>
			<content:encoded><![CDATA[<p>Super helpful and clear series of articles on WCF. Thanks so much for your efforts.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Run C# SSH Client Commands In .NET with Examples by Sohel Khan		</title>
		<link>https://thecodebuzz.com/c-sharp-send-ssh-command-net-core-example/comment-page-1/#comment-139515</link>

		<dc:creator><![CDATA[Sohel Khan]]></dc:creator>
		<pubDate>Wed, 23 Jul 2025 07:22:50 +0000</pubDate>
		<guid isPermaLink="false">https://www.thecodebuzz.com/?p=23342#comment-139515</guid>

					<description><![CDATA[Subject: Application Using Limited Cores When Run via C# Code

Message:
Hello Team,

I have an issue where an application executable utilizes all 39 logical cores when I run it directly from the Command Prompt. However, when I execute the same command using C# code (shown below), the application only uses 13 cores.

Additionally, I created a mediator console application that only runs the same command, and when I run that console app from my local system to a Google Cloud VM, it also only uses 13 cores.

Could you please help me understand why this behavior is occurring? Is there any patch, configuration, or workaround available to ensure the application uses all 39 cores when triggered via code?

C# Code Used:
public async Task ExecuteChassisSim(string command)
{
    //command = &quot;C:\\ChassisSimTechnologies\\ChassisSim_v3_45\\ChassisSim_v3_45_elite.exe C:\\ChassisSimTechnologies\\csim_batch_file.txt&quot;;
    using (var client = new SshClient(Global.Host, Global.Username, Global.Password))
    {
        await client.ConnectAsync(default);
        var cmd = client.RunCommand(command);
        client.Disconnect();
        return cmd.Result;
    }
}


Thanks in advance for your assistance.]]></description>
			<content:encoded><![CDATA[<p>Subject: Application Using Limited Cores When Run via C# Code</p>
<p>Message:<br />
Hello Team,</p>
<p>I have an issue where an application executable utilizes all 39 logical cores when I run it directly from the Command Prompt. However, when I execute the same command using C# code (shown below), the application only uses 13 cores.</p>
<p>Additionally, I created a mediator console application that only runs the same command, and when I run that console app from my local system to a Google Cloud VM, it also only uses 13 cores.</p>
<p>Could you please help me understand why this behavior is occurring? Is there any patch, configuration, or workaround available to ensure the application uses all 39 cores when triggered via code?</p>
<p>C# Code Used:<br />
public async Task ExecuteChassisSim(string command)<br />
{<br />
    //command = &#8220;C:\\ChassisSimTechnologies\\ChassisSim_v3_45\\ChassisSim_v3_45_elite.exe C:\\ChassisSimTechnologies\\csim_batch_file.txt&#8221;;<br />
    using (var client = new SshClient(Global.Host, Global.Username, Global.Password))<br />
    {<br />
        await client.ConnectAsync(default);<br />
        var cmd = client.RunCommand(command);<br />
        client.Disconnect();<br />
        return cmd.Result;<br />
    }<br />
}</p>
<p>Thanks in advance for your assistance.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Hide Tags in WordPress post- Guidelines by admin		</title>
		<link>https://thecodebuzz.com/how-to-hide-tags-in-wordpress-post-guidelines/comment-page-1/#comment-138451</link>

		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 29 Jun 2025 14:38:28 +0000</pubDate>
		<guid isPermaLink="false">https://www.thecodebuzz.com/?p=18261#comment-138451</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://thecodebuzz.com/how-to-hide-tags-in-wordpress-post-guidelines/comment-page-1/#comment-137327&quot;&gt;Tina&lt;/a&gt;.

Hi Tina - Please make sure , to clear cache if any every time you change the settings]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://thecodebuzz.com/how-to-hide-tags-in-wordpress-post-guidelines/comment-page-1/#comment-137327">Tina</a>.</p>
<p>Hi Tina &#8211; Please make sure , to clear cache if any every time you change the settings</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
