<?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>64-bit | Learn C Games Programming Blog</title>
	<atom:link href="https://learncgames.com/category/64-bit/feed/" rel="self" type="application/rss+xml" />
	<link>https://learncgames.com</link>
	<description>A blog about C, programming games and my ebook(s).</description>
	<lastBuildDate>Tue, 18 Mar 2025 09:04:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://learncgames.com/wp-content/uploads/2020/03/cropped-favicon-32x32.png</url>
	<title>64-bit | Learn C Games Programming Blog</title>
	<link>https://learncgames.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">181446779</site>	<item>
		<title>How fast is a Raspberry Pi 5?</title>
		<link>https://learncgames.com/how-fast-is-a-raspberry-pi-5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-fast-is-a-raspberry-pi-5</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Tue, 18 Mar 2025 00:05:10 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[raspberry-pi]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[poker]]></category>
		<category><![CDATA[speed]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=3340</guid>

					<description><![CDATA[<p>I recently bought one with 8 GB RAM pictured above. I haven&#8217;t got an SSD for it yet so am still pottering about with an SD Card. I&#8217;ve installed VS Code, clang. and Rust along with the VS Code extensions Rust-Analyzer and codelldb. Out of curiosity I compiled and ran a Rust program that reads [&#8230;]</p>
The post <a href="https://learncgames.com/how-fast-is-a-raspberry-pi-5/">How fast is a Raspberry Pi 5?</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:20,&quot;href&quot;:&quot;https:\/\/github.com\/David-H-Bolton\/Projects\/blob\/main\/rust_pokerhand_faster.zip&quot;,&quot;archived_href&quot;:&quot;&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[],&quot;broken&quot;:false,&quot;last_checked&quot;:null,&quot;process&quot;:&quot;done&quot;}]'></div>
<p><img fetchpriority="high" decoding="async" class="alignleft size-full wp-image-3341" src="https://learncgames.com/wp-content/uploads/2025/03/raspi-5.png" alt="Raspberry PI 5" width="606" height="402" srcset="https://learncgames.com/wp-content/uploads/2025/03/raspi-5.png 606w, https://learncgames.com/wp-content/uploads/2025/03/raspi-5-300x199.png 300w" sizes="(max-width: 606px) 100vw, 606px" />I recently bought one with 8 GB RAM pictured above. I haven&#8217;t got an SSD for it yet so am still pottering about with an SD Card.</p>
<p>I&#8217;ve installed VS Code, clang. and Rust along with the VS Code extensions Rust-Analyzer and codelldb.</p>
<p>Out of curiosity I compiled and ran a Rust program that reads in a text file of 1,000 lines of text with each line holding 7 random cards like this: AH 6D 2C 4S JD QH QC.</p>
<p>The idea is to load the file into RAM then process each line and determine the best poker hand.</p>
<p>On my PC 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz (which runs Windows 11), I compared running the Rust program in Windows 11, on Ubuntu 24.04 LTS running in a Hyper-V VM on the same PC and on the Raspberry Pi 5 using it&#8217;s own Debian (Bookworm) version.</p>
<p>Here are the times per hand.</p>
<ul>
<li><strong>Windows</strong>: 175 ns.</li>
<li><strong>Ubuntu on Hyper-V</strong> 125 ns</li>
<li><strong>Raspberry Pi 5</strong>: 175 ns.</li>
</ul>
<p>You can download the project with the test cards from <a title="Download Rust project zip file from GitHub" href="https://github.com/David-H-Bolton/Projects/blob/main/rust_pokerhand_faster.zip">GitHub</a>. This link is a zip file containing the project file.</p>
<p>To run it in release in VS Code, in the terminal type in</p>
<pre>cargo run --release 1000_card_hands.txt</pre>
<pre><img decoding="async" class="alignleft size-full wp-image-3342" src="https://learncgames.com/wp-content/uploads/2025/03/timings.png" alt="Timings running under Ubuntu" width="710" height="90" srcset="https://learncgames.com/wp-content/uploads/2025/03/timings.png 710w, https://learncgames.com/wp-content/uploads/2025/03/timings-300x38.png 300w" sizes="(max-width: 710px) 100vw, 710px" /></pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Or you can view the test cards which include the results with commemts in the test file. No need to run it release.</p>
<pre>cargo run --features=show_cards test_card_hands.txt

<img decoding="async" class="alignleft size-full wp-image-3344" src="https://learncgames.com/wp-content/uploads/2025/03/showcards.png" alt="Showing cards with test data" width="815" height="431" srcset="https://learncgames.com/wp-content/uploads/2025/03/showcards.png 815w, https://learncgames.com/wp-content/uploads/2025/03/showcards-300x159.png 300w, https://learncgames.com/wp-content/uploads/2025/03/showcards-768x406.png 768w" sizes="(max-width: 815px) 100vw, 815px" />
</pre>
<p>What is so suprising is that the time on Windows and Rapberry Pi 5 are the same. Windows is running a virus checker (Windows Defender) and I guess that might slow it a bit. </p>The post <a href="https://learncgames.com/how-fast-is-a-raspberry-pi-5/">How fast is a Raspberry Pi 5?</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3340</post-id>	</item>
		<item>
		<title>Bit of a curiosity &#8211; Rust runs slower on Windows than Linux</title>
		<link>https://learncgames.com/bit-of-a-curiosity-rust-runs-slower-on-windows-than-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bit-of-a-curiosity-rust-runs-slower-on-windows-than-linux</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Fri, 28 Feb 2025 00:00:38 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[Techniques]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[poker]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=3317</guid>

					<description><![CDATA[<p>And it is a fair comparison because the Linux I&#8217;m running (Ubuntu 24.04 LTS) runs on my Windows 11 box in a hyper-V VM. I wrote a Poker hand evaluation program which loaded a text file containing lines of seven playing cards in text format TS 2C 4D sort of thing. It was seven cards [&#8230;]</p>
The post <a href="https://learncgames.com/bit-of-a-curiosity-rust-runs-slower-on-windows-than-linux/">Bit of a curiosity – Rust runs slower on Windows than Linux</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>And it is a fair comparison because the Linux I&#8217;m running (Ubuntu 24.04 LTS) runs on my Windows 11 box in a hyper-V VM. I wrote a Poker hand evaluation program which loaded a text file containing lines of seven playing cards in text format TS 2C 4D sort of thing. It was seven cards because there&#8217;s two in your hand and five on the table.</p>
<p>There were 1,000 lines of these and the program loaded the file into memory, holding the cards in a Vec&lt;Vec&lt;Card&gt;&gt;. Then it loops through the 1,000 elements and figures out the best hand for each set.  The bit that was timed was the loop not the loading the file into memory.</p>
<p>The source file is on GitHub. It has the project files plus some test cards. You can try it yourself. <strong>Note at the bottom of this article is a link to a much faster version.</strong></p>
<pre>https://github.com/David-H-Bolton/Projects/blob/main/rust_pokerhand.zip</pre>
<p>On my PC, the Windows one average time per hand is 768 ns. On Ubuntu is 540ns. Mad eh! The same program runs in 70% of the time on Linux compared to Windows. Both are run with this command from a terminal/command line.</p>
<pre>cargo run --release 1000_card_hads.txt</pre>
<p>You can also try the test_card_hands.txt but you need to enable the show_cards feature. That shows the cards but doesn&#8217;t do timing. The default is do the timing but don&#8217;t show the cards or the evaluation.</p>
<pre>cargo run --release --features show_card test_card_hands.txt</pre>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-3319" src="https://learncgames.com/wp-content/uploads/2025/02/testcards.png" alt="Shows the Rust program with the feature" width="750" height="431" srcset="https://learncgames.com/wp-content/uploads/2025/02/testcards.png 750w, https://learncgames.com/wp-content/uploads/2025/02/testcards-300x172.png 300w" sizes="auto, (max-width: 750px) 100vw, 750px" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The test cards say what each hand is and the output at the bottom is the program working out each hand.<br />
The file</p>
<pre>https://github.com/David-H-Bolton/Projects/blob/main/rust_pokerhand_faster.zip</pre>
<p>contains a much faster version. On Linux it takes about 127 ns per hand. On Windows it&#8217;s about 190 ns.</p>The post <a href="https://learncgames.com/bit-of-a-curiosity-rust-runs-slower-on-windows-than-linux/">Bit of a curiosity – Rust runs slower on Windows than Linux</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3317</post-id>	</item>
		<item>
		<title>Did you know? Visual Studio is 32-bit only!</title>
		<link>https://learncgames.com/did-you-know-visual-studio-is-32-bit-only/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=did-you-know-visual-studio-is-32-bit-only</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Sun, 21 Mar 2021 00:00:02 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[32-bit]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=2921</guid>

					<description><![CDATA[<p>Update: This is now obsolete as Visual Studio 2022 which appeared in November 2021 is 64-bit.  D&#8217;oh! It&#8217;s quite surprising that in this day and age, that there is still 32-bit software in use. Visual Studio is a prime example.   Windows has been 64-bit for quite a while now. If you look in Task Manager, [&#8230;]</p>
The post <a href="https://learncgames.com/did-you-know-visual-studio-is-32-bit-only/">Did you know? Visual Studio is 32-bit only!</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:89,&quot;href&quot;:&quot;https:\/\/unix.stackexchange.com\/questions\/106234\/determine-if-a-specific-process-is-32-or-64-bit&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20260110034729\/https:\/\/unix.stackexchange.com\/questions\/106234\/determine-if-a-specific-process-is-32-or-64-bit&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 11:47:56&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-12 09:02:16&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-17 09:40:28&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-20 10:06:10&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-07 22:12:57&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-13 18:57:20&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-04 11:55:08&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-10 11:59:25&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-13 14:30:50&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-18 15:40:26&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-18 15:40:26&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:90,&quot;href&quot;:&quot;https:\/\/developercommunity.visualstudio.com\/t\/visual-studio-x64-implementation\/1372671&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20220820044348\/https:\/\/developercommunity.visualstudio.com\/t\/visual-studio-x64-implementation\/1372671&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 11:47:57&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-12 09:02:16&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-17 09:40:28&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-20 10:06:10&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-07 22:12:58&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-13 18:57:21&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-04 11:55:08&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-10 11:59:23&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-13 14:30:50&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-18 15:40:26&quot;,&quot;http_code&quot;:503}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-18 15:40:26&quot;,&quot;http_code&quot;:503},&quot;process&quot;:&quot;done&quot;}]'></div>
<p><strong>Update: This is now obsolete as Visual Studio 2022 which appeared in November 2021 is 64-bit.  D&#8217;oh!</strong></p>
<p>I<img loading="lazy" decoding="async" class="alignleft size-medium wp-image-2922" src="https://learncgames.com/wp-content/uploads/2021/03/taskmanager-300x235.jpg" alt="Task Manager screenshot" width="300" height="235" srcset="https://learncgames.com/wp-content/uploads/2021/03/taskmanager-300x235.jpg 300w, https://learncgames.com/wp-content/uploads/2021/03/taskmanager.jpg 537w" sizes="auto, (max-width: 300px) 100vw, 300px" />t&#8217;s quite surprising that in this day and age, that there is still 32-bit software in use. Visual Studio is a prime example.   Windows has been 64-bit for quite a while now.</p>
<p>If you look in Task Manager, you&#8217;ll probably notice that programs with a (<em>32 bit</em>) after their name are few and far between.</p>
<p>On the screenshot, only one out of 11 is 32-bit and that&#8217;s pretty typical.  Linux and Mac are probably similar.  Here&#8217;s a s<a title="Link to StackExchange question on 32 or 64-bit." href="https://unix.stackexchange.com/questions/106234/determine-if-a-specific-process-is-32-or-64-bit" target="_blank" rel="nofollow noopener">tackexchange question</a> on how to tell if a process is 32 or 64 bit.</p>
<p>In Visual Studio, it&#8217;s very easy to switch between 32-bit or 64-bit compile target. Unless I have a real need, I go for 32-bit for programs I write because they are typically not going to need over 4 GB of RAM. And 32-bit code usually runs faster than 64-bit because instructions are typically shorter which means more instructions in the execution cache etc.</p>
<p>However some systems have a lot of code and there are people who want a 64-bit version of Visual Studio.  You can r<a title="Link to Visual Studo developer community requests" href="https://developercommunity.visualstudio.com/t/visual-studio-x64-implementation/1372671" target="_blank" rel="nofollow noopener">ead some of their requests here</a>.</p>
<p>I&#8217;m still on a Linux laptop BTW. My new cooler has turned up and tomorrow I hope to install it. The Windows screenshot came from my work laptop which I emailed to myself!</p>The post <a href="https://learncgames.com/did-you-know-visual-studio-is-32-bit-only/">Did you know? Visual Studio is 32-bit only!</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2921</post-id>	</item>
		<item>
		<title>Benchmarking my Raspberry Pi</title>
		<link>https://learncgames.com/benchmarking-my-raspberry-pi/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=benchmarking-my-raspberry-pi</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Fri, 19 Jun 2020 23:00:06 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[benchmarks]]></category>
		<category><![CDATA[hardinfo]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=841</guid>

					<description><![CDATA[<p>I played with a couple of free packages today. I can recommend hardinfo. (sudo apt install hardinfo to install then hardinfo to run ) though less about the benchmarks than the information it gives on your system. I&#8217;ve got both 32-bit Raspbian and 64-bit Raspberry Pi OS on two sd cards and intend to run [&#8230;]</p>
The post <a href="https://learncgames.com/benchmarking-my-raspberry-pi/">Benchmarking my Raspberry Pi</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-842" src="https://learncgames.com/wp-content/uploads/2020/06/hardinfo.png" alt="hardinfo running on Raspberry Pi" width="450" height="305" srcset="https://learncgames.com/wp-content/uploads/2020/06/hardinfo.png 450w, https://learncgames.com/wp-content/uploads/2020/06/hardinfo-300x203.png 300w" sizes="auto, (max-width: 450px) 100vw, 450px" />I played with a couple of free packages today. I can recommend hardinfo. (<em>sudo apt install hardinfo</em> to install then <em>hardinfo</em> to run ) though less about the benchmarks than the information it gives on your system.</p>
<p>I&#8217;ve got both 32-bit Raspbian and 64-bit Raspberry Pi OS on two sd cards and intend to run both and compare benchmarks just to see the difference.</p>
<p>Another benchmark utility that looks interesting is sysbench <em>(sudo apt install sysbench </em>to install<em>). </em>It runs from the terminal and lets you run benchmarks against file io, cpu, memory threads, mutex and oltp.  Just type <em>sysbench</em> and you&#8217;ll get a list of commands.</p>
<p>&nbsp;</p>The post <a href="https://learncgames.com/benchmarking-my-raspberry-pi/">Benchmarking my Raspberry Pi</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">841</post-id>	</item>
		<item>
		<title>How to install VSCodium on a Raspberry Pi.</title>
		<link>https://learncgames.com/how-to-install-vscodium-on-a-raspberry-pi/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-vscodium-on-a-raspberry-pi</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Thu, 18 Jun 2020 23:00:55 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[raspberry-pi]]></category>
		<category><![CDATA[flameshot]]></category>
		<category><![CDATA[vscodium]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=831</guid>

					<description><![CDATA[<p>It was very easy.  This was onto my Pi 4 running 64-bit Raspberry Pi OS. Go to the releases page on the vsCodium website, it&#8217;s on GitHub.  If you are running 32-bit Pi OS then you need the codium_1.46.0-1591900344_armhf.deb file (the number will most likely have changed).  For the 64-bit one, you need the codium_1.46.0-1591900344_arm64.deb. [&#8230;]</p>
The post <a href="https://learncgames.com/how-to-install-vscodium-on-a-raspberry-pi/">How to install VSCodium on a Raspberry Pi.</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:658,&quot;href&quot;:&quot;https:\/\/github.com\/VSCodium\/vscodium\/releases&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20260206172453\/https:\/\/github.com\/VSCodium\/vscodium\/releases&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-09 15:55:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-13 15:42:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-17 09:04:29&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-21 08:11:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 08:54:16&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-27 16:03:45&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-04 14:59:22&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-07 17:39:07&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-12 15:19:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-16 07:42:01&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-19 18:31:10&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-24 18:10:28&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-28 13:42:16&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-02 11:24:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-05 20:41:13&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-10 13:08:24&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-14 00:18:40&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-17 10:52:57&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-04-20 18:05:22&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 18:05:22&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]'></div>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-834" src="https://learncgames.com/wp-content/uploads/2020/06/vscodiumpi-1.png" alt="64-bit VSCodium running on a 64-bit PI." width="500" height="308" srcset="https://learncgames.com/wp-content/uploads/2020/06/vscodiumpi-1.png 500w, https://learncgames.com/wp-content/uploads/2020/06/vscodiumpi-1-300x185.png 300w" sizes="auto, (max-width: 500px) 100vw, 500px" />It was very easy.  This was onto my Pi 4 running 64-bit Raspberry Pi OS.</p>
<p>Go to the <a title="Link to VSCodium release page" href="https://github.com/VSCodium/vscodium/releases" target="_blank" rel="nofollow noopener noreferrer">releases page</a> on the vsCodium website, it&#8217;s on GitHub.  If you are running 32-bit Pi OS then you need the<em> codium_1.46.0-1591900344_<strong>armhf</strong>.deb</em> file (the number will most likely have changed).  For the 64-bit one, you need the<em> codium_1.46.0-1591900344_<strong>arm64</strong>.deb.</em></p>
<p>When you click on the link it will download and ask if you want to keep it. It will then give you the option of opening it and select the archiver. That will install it for you.</p>
<p>After that, to run it from the command line just type <strong>codium</strong>.</p>
<p>Or as I just discovered. Look on the pull down menu, go onto accessories and you should see (probably near the bottom) VSCodium. Move the mouse over and right-click.You&#8217;ll see a popup menu with <strong>Add to Desktop</strong> and <strong>Properties</strong>. If you click the former, you get an icon on your desktop.</p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-836" src="https://learncgames.com/wp-content/uploads/2020/06/icons.png" alt="Raspberry Pi Icons" width="158" height="361" srcset="https://learncgames.com/wp-content/uploads/2020/06/icons.png 158w, https://learncgames.com/wp-content/uploads/2020/06/icons-131x300.png 131w" sizes="auto, (max-width: 158px) 100vw, 158px" />Screenshots were captured with the Flameshot utility. It&#8217;s installed with <em>sudo apt install flameshot. </em>That&#8217;s the VSCodium and Flameshot icons.</p>
<p>&nbsp;</p>The post <a href="https://learncgames.com/how-to-install-vscodium-on-a-raspberry-pi/">How to install VSCodium on a Raspberry Pi.</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">831</post-id>	</item>
		<item>
		<title>Playing with 64-bit Raspberry Pi OS</title>
		<link>https://learncgames.com/playing-with-64-bit-raspberry-pi-os/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=playing-with-64-bit-raspberry-pi-os</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Thu, 11 Jun 2020 23:00:28 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[raspberry-pi]]></category>
		<category><![CDATA[Raspberry Pi OS]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=785</guid>

					<description><![CDATA[<p>So after deciding I was going to wait until the 64-bit Pi OS was tested and ready for use, I changed my mind and downloaded the beta and installed it. It ran ok, though as with any Beta there are bound to be little glitches. There&#8217;s a survey where they are interested in what the [&#8230;]</p>
The post <a href="https://learncgames.com/playing-with-64-bit-raspberry-pi-os/">Playing with 64-bit Raspberry Pi OS</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:673,&quot;href&quot;:&quot;http:\/\/code.headmelted.com&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20201201232800\/http:\/\/code.headmelted.com\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 17:24:11&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-02-12 19:38:44&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-02-17 05:26:17&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-02-20 16:20:56&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-02-27 16:30:51&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-03-04 20:45:44&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-03-08 11:39:35&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-03-11 18:06:24&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-03-15 04:58:03&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-03-22 17:26:41&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-03-28 14:01:53&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-04-02 19:15:45&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-04-09 10:42:45&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-04-12 13:35:41&quot;,&quot;http_code&quot;:404}],&quot;broken&quot;:true,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-12 13:35:41&quot;,&quot;http_code&quot;:404},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:674,&quot;href&quot;:&quot;https:\/\/medium.com\/@matteocroce\/why-you-should-run-a-64-bit-os-on-your-raspberry-pi4-bd5290d48947&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20200913020838\/https:\/\/medium.com\/@matteocroce\/why-you-should-run-a-64-bit-os-on-your-raspberry-pi4-bd5290d48947&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 17:24:15&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-17 02:13:10&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-21 19:04:08&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-26 08:26:38&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-02 08:31:57&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-06 04:00:27&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-11 15:32:46&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-17 11:47:16&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-04 20:55:48&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-14 23:33:13&quot;,&quot;http_code&quot;:403}],&quot;broken&quot;:true,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-14 23:33:13&quot;,&quot;http_code&quot;:403},&quot;process&quot;:&quot;done&quot;}]'></div>
<figure id="attachment_788" aria-describedby="caption-attachment-788" style="width: 640px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-full wp-image-788" src="https://learncgames.com/wp-content/uploads/2020/06/binary-2925964_640.jpg" alt="Binary digits" width="640" height="128" srcset="https://learncgames.com/wp-content/uploads/2020/06/binary-2925964_640.jpg 640w, https://learncgames.com/wp-content/uploads/2020/06/binary-2925964_640-300x60.jpg 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /><figcaption id="caption-attachment-788" class="wp-caption-text">From Pixabay.com</figcaption></figure>
<p>So after deciding I was going to wait until the 64-bit Pi OS was tested and ready for use, I changed my mind and downloaded the beta and installed it.</p>
<p>It ran ok, though as with any Beta there are bound to be little glitches. There&#8217;s a survey where they are interested in what the PI is being used for and it showed UNDEFINED for my Pi&#8217;s serial number, though</p>
<pre>cat /proc/cpuinfo</pre>
<p>worked fine and displayed it.</p>
<p>The display utility let me change my display to 75 HZ at 1920 x 1080 and then promptly crashed. After reboot though it was at 75 HZ.</p>
<p>My main reason for trying it out though, I was curious about development tools, particularly IDES. I had forgotten that <a title="Link to code.headmelted.com" href="http://code.headmelted.com" target="_blank" rel="noopener noreferrer">code.headmelted.com</a>, the alternative source for Visual Studio Code (my favourite) supported arm64 which is what the 64-bit runs.  I was able to install VS Code from there without any problems.</p>
<h2>64-bit vs 32-bit</h2>
<p>32-bit has the memory limitation of 3 GB (in both Windows and Linux)  whereas 64-bit offers any amount of RAM up to what&#8217;s available. It&#8217;s not that big  thing with a 4 GB PI but with 8 GB it can make a big difference. <a title="Link to 64-bit vs 32-bit benchmark article" href="https://medium.com/@matteocroce/why-you-should-run-a-64-bit-os-on-your-raspberry-pi4-bd5290d48947" target="_blank" rel="nofollow noopener noreferrer"> This article</a> (<em>Sorry that the link is to an article on Medium.com which offers a few free articles then paid</em>) suggests that 64-bit Debian (which Raspberry Pi OS is) is quite a bit faster than 32-bit.  My impression is that it feels a bit snappier but that could be wishful thinking n my part!</p>
<p>I&#8217;ll put Asteroids on and see what fps I can get though that may not be a great way to compare them as the GPU plays a big part and I can&#8217;t see it making any difference, but I could be completely wrong on that. More as I investigate further.</p>The post <a href="https://learncgames.com/playing-with-64-bit-raspberry-pi-os/">Playing with 64-bit Raspberry Pi OS</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">785</post-id>	</item>
		<item>
		<title>Raspberry Pi 4B with 8 GB RAM on sale</title>
		<link>https://learncgames.com/raspberry-pi-4b-with-8-gb-ram-on-sale/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=raspberry-pi-4b-with-8-gb-ram-on-sale</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Tue, 02 Jun 2020 23:00:58 +0000</pubDate>
				<category><![CDATA[64-bit]]></category>
		<category><![CDATA[raspberry-pi]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[RAM]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=725</guid>

					<description><![CDATA[<p>I won&#8217;t be buying one for the moment but I mention it for another reason. 4 GB is the maximum RAM that a 32-bit OS can use, and on the PI like on Windows it&#8217;s actually 3 GB. To be fair you can have two processes each with 3 GB on the 8 GB Pi. [&#8230;]</p>
The post <a href="https://learncgames.com/raspberry-pi-4b-with-8-gb-ram-on-sale/">Raspberry Pi 4B with 8 GB RAM on sale</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:559,&quot;href&quot;:&quot;https:\/\/pixabay.com\/users\/BenjaminNelan-268798\/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1719218&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20251010065837\/https:\/\/pixabay.com\/users\/benjaminnelan-268798\/?utm_source=link-attribution&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 16:07:51&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-09 17:00:23&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-12 22:35:49&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-17 02:13:11&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-26 08:26:38&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-01 15:07:29&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-06 04:00:27&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-11 15:32:45&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-17 11:47:16&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-24 15:45:53&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-30 19:12:33&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-04 03:02:35&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-07 07:19:48&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-12 04:23:18&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-17 05:32:10&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-20 13:11:15&quot;,&quot;http_code&quot;:403}],&quot;broken&quot;:true,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 13:11:15&quot;,&quot;http_code&quot;:403},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:560,&quot;href&quot;:&quot;https:\/\/pixabay.com\/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1719218&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20260205102120\/https:\/\/pixabay.com\/?utm_source=link-attribution&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 16:07:53&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-09 17:00:23&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-17 02:13:11&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-26 08:26:38&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-01 15:07:29&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-06 04:00:27&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-11 15:32:45&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-17 11:47:16&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-24 15:45:53&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-30 19:12:33&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-04 03:02:35&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-07 07:19:49&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-12 04:23:19&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-17 05:32:09&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-20 13:11:13&quot;,&quot;http_code&quot;:403}],&quot;broken&quot;:true,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 13:11:13&quot;,&quot;http_code&quot;:403},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:681,&quot;href&quot;:&quot;https:\/\/www.raspberrypi.org\/blog\/8gb-raspberry-pi-4-on-sale-now-at-75&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20211005232152\/https:\/\/www.raspberrypi.org\/blog\/8gb-raspberry-pi-4-on-sale-now-at-75\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 17:34:24&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-02-10 06:26:36&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-17 02:13:15&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-21 19:04:09&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-02-26 08:26:40&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-01 15:07:27&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-06 04:00:29&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-11 15:32:45&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-17 11:47:17&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-24 08:20:45&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-03-30 19:12:34&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-04 03:02:37&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-07 07:19:46&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-12 04:23:20&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-15 19:34:33&quot;,&quot;http_code&quot;:403},{&quot;date&quot;:&quot;2026-04-20 11:09:48&quot;,&quot;http_code&quot;:403}],&quot;broken&quot;:true,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 11:09:48&quot;,&quot;http_code&quot;:403},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:697,&quot;href&quot;:&quot;https:\/\/www.raspberrypi.org\/forums\/viewtopic.php?f=117&amp;t=275370&quot;,&quot;archived_href&quot;:&quot;&quot;,&quot;redirect_href&quot;:&quot;https:\/\/forums.raspberrypi.com\/viewtopic.php?f=117&quot;,&quot;checks&quot;:[],&quot;broken&quot;:false,&quot;last_checked&quot;:null,&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:698,&quot;href&quot;:&quot;https:\/\/hackaday.com\/2020\/01\/28\/raspberry-pi-4-benchmarks-32-vs-64-bits&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20251209044155\/https:\/\/hackaday.com\/2020\/01\/28\/raspberry-pi-4-benchmarks-32-vs-64-bits\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 17:35:25&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-10 06:26:35&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-17 02:13:12&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-26 08:26:39&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-01 15:07:30&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-06 04:00:27&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-11 15:32:45&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-17 11:47:16&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-24 15:45:54&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-30 19:12:33&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-04 03:02:35&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-07 07:19:48&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-04-12 04:23:19&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-17 05:32:12&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-20 13:11:14&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 13:11:14&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:699,&quot;href&quot;:&quot;https:\/\/dietpi.com\/phpbb\/viewtopic.php?p=23153&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20210119062023\/https:\/\/dietpi.com\/phpbb\/viewtopic.php?p=23153&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 17:35:30&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-10 06:26:37&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-17 02:13:12&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-26 08:26:41&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-01 15:07:31&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-06 04:00:30&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-11 15:32:46&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-17 11:47:18&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-24 15:45:56&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-30 19:12:37&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-04 03:02:39&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-09 23:05:01&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-14 02:53:11&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-17 11:55:57&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-20 13:11:17&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 13:11:17&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;}]'></div>
<figure id="attachment_638" aria-describedby="caption-attachment-638" style="width: 300px" class="wp-caption alignleft"><img loading="lazy" decoding="async" class="size-medium wp-image-638" src="https://learncgames.com/wp-content/uploads/2020/05/raspberry-pi-1719218_640-300x175.jpg" alt="Raspberry-Pi" width="300" height="175" srcset="https://learncgames.com/wp-content/uploads/2020/05/raspberry-pi-1719218_640-300x175.jpg 300w, https://learncgames.com/wp-content/uploads/2020/05/raspberry-pi-1719218_640.jpg 640w" sizes="auto, (max-width: 300px) 100vw, 300px" /><figcaption id="caption-attachment-638" class="wp-caption-text">Image by <a href="https://pixabay.com/users/BenjaminNelan-268798/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1719218">Benjamin Nelan</a> from <a href="https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1719218">Pixabay</a></figcaption></figure>
<p>I won&#8217;t be buying one for the moment but I mention it for another reason. 4 GB is the maximum RAM that a 32-bit OS can use, and on the PI like on Windows it&#8217;s actually 3 GB. To be fair you can have two processes each with 3 GB on the 8 GB Pi.</p>
<p>The <a title="Link to RaspberryPi announcement about 8GB Pi" href="https://www.raspberrypi.org/blog/8gb-raspberry-pi-4-on-sale-now-at-75/" target="_blank" rel="nofollow noopener noreferrer">announcement</a> did mention that a beta 64-bit Raspbian OS is available for download and it&#8217;s <a title="Link to 64-bit Raspberry Pi OS (beta)" href="https://www.raspberrypi.org/forums/viewtopic.php?f=117&amp;t=275370" target="_blank" rel="noopener noreferrer">here</a>. <a title="Link to 32-bit vs 64-bit speed comparison" href="https://hackaday.com/2020/01/28/raspberry-pi-4-benchmarks-32-vs-64-bits/" target="_blank" rel="noopener noreferrer">This article</a> shows that the 64-bit Os they tested is faster on the Pi than 32-bit.  This <a title="Link to DietPi forum on enabling 64-bit" href="https://dietpi.com/phpbb/viewtopic.php?p=23153" target="_blank" rel="nofollow noopener noreferrer">link</a> to the DietPi forum tells you how to boot dietpi into 64-bit.</p>
<p>It&#8217;s to be hoped that 64-bit ARM development software will become available. Clang and gcc should be but I&#8217;m thinking of the code.headmelted.com version of Visual Studio Code.</p>
<p>As always if you are buying a Raspberry Pi 4B, I strongly suggest you get a case with a fan. They are not expensive and do make a difference. Despite running the Asteroids game, which is pretty intense, I have never got my 4B temperature above 51C. THat said I&#8217;ve ordered a touchscreen with a case for a 4B on the back and it doesn&#8217;t seem to take a fan. So it will be interesting to see what its like fanless. More on that when the touchscreen arrives.</p>
<p>&nbsp;</p>The post <a href="https://learncgames.com/raspberry-pi-4b-with-8-gb-ram-on-sale/">Raspberry Pi 4B with 8 GB RAM on sale</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">725</post-id>	</item>
	</channel>
</rss>
