<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HowToSolutions</title>
	<atom:link href="https://www.howtosolutions.net/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.howtosolutions.net</link>
	<description>Solutions to coding and other tech problems</description>
	<lastBuildDate>Wed, 16 Oct 2024 08:44:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to create simple TypeScript Project on Windows</title>
		<link>https://www.howtosolutions.net/2024/10/creating-typescript-project-on-windows-step-by-step-guide/</link>
					<comments>https://www.howtosolutions.net/2024/10/creating-typescript-project-on-windows-step-by-step-guide/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 15 Oct 2024 20:41:52 +0000</pubDate>
				<category><![CDATA[JS / TS]]></category>
		<category><![CDATA[Beginner’s Guide]]></category>
		<category><![CDATA[TypeScript]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6431</guid>

					<description><![CDATA[<p>In this article, we will create a simple TypeScript project on Windows and then build and run it from our terminal (command prompt or PowerShell). First, we will install Node.js on our computer, create the Node.js project, install TypeScript, and then build and run the project. After that, we will install another package, but this time we will build and run using the "build" and "start" scripts from config.json file. 1) Installing Node.js To install Node.js go to Node.js download page and download the latest LTS version (LTS stands for long-term support). Run the downloaded .msi file and follow the </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2024/10/creating-typescript-project-on-windows-step-by-step-guide/">How to create simple TypeScript Project on Windows</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2024/10/creating-typescript-project-on-windows-step-by-step-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Golang: How to install Go on Ubuntu Server</title>
		<link>https://www.howtosolutions.net/2024/04/installing-go-language-in-ubuntu-server-step-by-step/</link>
					<comments>https://www.howtosolutions.net/2024/04/installing-go-language-in-ubuntu-server-step-by-step/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 10 Apr 2024 08:00:05 +0000</pubDate>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Go]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6402</guid>

					<description><![CDATA[<p>Recently I wanted to try a project on my Ubuntu server, but it was built with Golang language, so I had to install Go on my server to get started. In this post, we will first download the latest release, install Go, and finally verify if it was installed successfully. Step 1 - Downloading Go First, we need to copy a download link for the Linux release from the offical Go download page. The featured downloaded version should be suitable for most cases as this will be the most recent and stable release. Right-click and copy the Linux download link. </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2024/04/installing-go-language-in-ubuntu-server-step-by-step/">Golang: How to install Go on Ubuntu Server</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2024/04/installing-go-language-in-ubuntu-server-step-by-step/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Blazor: How to fix System.NullReferenceException in _Host.cshtml file</title>
		<link>https://www.howtosolutions.net/2023/12/blazor-fixing-system-nullreference-exception-in-host-cshtml-file/</link>
					<comments>https://www.howtosolutions.net/2023/12/blazor-fixing-system-nullreference-exception-in-host-cshtml-file/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 09 Dec 2023 14:00:03 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Blazor]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6390</guid>

					<description><![CDATA[<p>I'm currently experimenting with Blazor, a Microsoft Web Framework, and the other day I encountered a strange error that took me a while to figure out how to fix. When running the Blazor Server App, I received the System.NullReferenceException: 'Object reference not set to an instance of an object.' exception error in Visual Studio inside the generated _Host.cshtml file. The error didn't even show in the browser, it happened still in Visual Studio at Pages/_Host.cshtml at the following line: &#60;component type="typeof(App)" render-mode="ServerPrerendered" /&#62; Examining the exception in greater detail revealed that it happened at Pages__Host.ExecuteAsync() method, but this didn't help </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2023/12/blazor-fixing-system-nullreference-exception-in-host-cshtml-file/">Blazor: How to fix System.NullReferenceException in _Host.cshtml file</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2023/12/blazor-fixing-system-nullreference-exception-in-host-cshtml-file/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Substrate: How to install subkey tool</title>
		<link>https://www.howtosolutions.net/2023/04/installing-substrate-subkey-tool-in-linux-system/</link>
					<comments>https://www.howtosolutions.net/2023/04/installing-substrate-subkey-tool-in-linux-system/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 12 Apr 2023 11:28:35 +0000</pubDate>
				<category><![CDATA[Blockchain]]></category>
		<category><![CDATA[Substrate]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6374</guid>

					<description><![CDATA[<p>Subkey is a command-line utility for the Substrate framework used to create and manage keys, sign and verify signatures and interact with the keystore file. In this article, we will demonstrate how to build a subkey tool from the source code and then install it so that it is available anywhere in the system. It is assumed that you already have the Rust toolchain with the nightly release and nightly WebAssembly (wasm) targets installed on your system. These are needed when working with the substrate framework. Check this page on how to install it for Linux. Step 1 - Download </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2023/04/installing-substrate-subkey-tool-in-linux-system/">Substrate: How to install subkey tool</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2023/04/installing-substrate-subkey-tool-in-linux-system/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Ubuntu: Fixing install wasm-bindgen-cli problem</title>
		<link>https://www.howtosolutions.net/2023/02/ubuntu-cargo-install-wasm-bindgen-cli-linker-cc-openssl-errors/</link>
					<comments>https://www.howtosolutions.net/2023/02/ubuntu-cargo-install-wasm-bindgen-cli-linker-cc-openssl-errors/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 10 Feb 2023 13:30:42 +0000</pubDate>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[WebAssembly]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6351</guid>

					<description><![CDATA[<p>The wasm-bindgen-cli is a command line tool that is used to generate JavaScript bindings for the WebAssembly modules. It was used in a previous tutorial on how to create and run a Wasm Rust module in a browser. I was using Windows when I wrote that article, but a few days ago, I went through the tutorial using Ubuntu 20.04 and encountered few errors when attempting to install wasm-bindgen-cli tool. To install the wasm-bindgen-cli tool, we use the following command: cargo install wasm-bindgen-cli Aside from a bit lengthy installation process, I didn't have any other issues when using Windows, but </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2023/02/ubuntu-cargo-install-wasm-bindgen-cli-linker-cc-openssl-errors/">Ubuntu: Fixing install wasm-bindgen-cli problem</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2023/02/ubuntu-cargo-install-wasm-bindgen-cli-linker-cc-openssl-errors/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>GTmetrix: How to test website speed without ads</title>
		<link>https://www.howtosolutions.net/2023/01/gtmetrix-how-to-analyze-website-speed-without-ads/</link>
					<comments>https://www.howtosolutions.net/2023/01/gtmetrix-how-to-analyze-website-speed-without-ads/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 11 Jan 2023 19:26:05 +0000</pubDate>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Web Design Issues]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6333</guid>

					<description><![CDATA[<p>GTmetrix is a free online website performance testing tool. We can use this tool to identify and fix issues with our websites like page load speed and web page size. But, what if we have ads on our website from Google AdSense or Ezoic and we want to test the speed and performance of the website without the ads? In this post, we will show you how to do this without turning off the ads on the website itself. The main reason we would want to run the GTmetrix without the ads on the website is that we can't do </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2023/01/gtmetrix-how-to-analyze-website-speed-without-ads/">GTmetrix: How to test website speed without ads</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2023/01/gtmetrix-how-to-analyze-website-speed-without-ads/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create a JavaScript project in VS Code</title>
		<link>https://www.howtosolutions.net/2023/01/vs-code-create-javascript-project-in-visual-studio-code/</link>
					<comments>https://www.howtosolutions.net/2023/01/vs-code-create-javascript-project-in-visual-studio-code/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 02 Jan 2023 13:13:53 +0000</pubDate>
				<category><![CDATA[VS Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<guid isPermaLink="false">https://www.howtosolutions.net/?p=6318</guid>

					<description><![CDATA[<p>When learning about front-end web development, it might be better to learn the basics of JavaScript first before jumping to more complex frameworks and libraries like React or Vue. VS Code is a popular, open-sourced lightweight code editor and in this post, we will create an empty JavaScript project using Visual Studio Code and it can be used as a basis for building more complex web apps. An HTML page, a JavaScript file, and a CSS stylesheet will be used to create the final web page. We will then copy a code from the CodePen example to make the web </p>
<p>The post <a rel="nofollow" href="https://www.howtosolutions.net/2023/01/vs-code-create-javascript-project-in-visual-studio-code/">How to create a JavaScript project in VS Code</a> appeared first on <a rel="nofollow" href="https://www.howtosolutions.net">HowToSolutions</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.howtosolutions.net/2023/01/vs-code-create-javascript-project-in-visual-studio-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
