<?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/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Miscellaneous - Forum				            </title>
            <link>https://www.tweaking4all.com/forum/miscellaneous-development/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 16 Mar 2026 23:53:20 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Museum of code Disease</title>
                        <link>https://www.tweaking4all.com/forum/miscellaneous-development/museum-of-code-disease/</link>
                        <pubDate>Tue, 12 Aug 2025 22:02:56 +0000</pubDate>
                        <description><![CDATA[Hi all,I created a collection of intentionally AWFUL code examples to educate anti-patterns through humor! Each &quot;exhibit&quot; has:- Nightmare file: Maximum chaos (for example, `#define TRUE FALS...]]></description>
                        <content:encoded><![CDATA[Hi all,<br /><br />I created a collection of intentionally <strong>AWFUL</strong> code examples to <strong>educate</strong> anti-patterns through humor! <br /><br />Each <em>"exhibit"</em> has:<br /><br />- Nightmare file: Maximum chaos (for example, `#define TRUE FALSE`),<br />- Autopsy file: Educational commentary explaining the disasters,<br /><br />Perfect for code review training and learning what NOT to do!<br /><br /><strong>WARNING: DO NOT USE IN PRODUCTION!</strong> <br /><br /><a href="https://github.com/ikelaiah/museum-of-code-disease" target="_blank" rel="noopener">https://github.com/ikelaiah/museum-of-code-disease</a><br /><br />Thanks,<br />Iwan]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/miscellaneous-development/">Miscellaneous</category>                        <dc:creator>Anonymous</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/miscellaneous-development/museum-of-code-disease/</guid>
                    </item>
				                    <item>
                        <title>macOS - How to determine minimum OS version requirement for an executabe</title>
                        <link>https://www.tweaking4all.com/forum/miscellaneous-development/macos-how-to-determine-minimum-os-version-requirement-for-an-executabe/</link>
                        <pubDate>Sun, 07 Jan 2024 17:59:22 +0000</pubDate>
                        <description><![CDATA[Just something I needed to know while trying to find why Lazarus no longer observed dark mode under macOS.
Seems this may be SDK version related, so I tried to figure out what the minimum m...]]></description>
                        <content:encoded><![CDATA[<p>Just something I needed to know while trying to find why Lazarus no longer observed dark mode under macOS.</p>
<p>Seems this may be SDK version related, so I tried to figure out what the minimum macOS version requirements where for certain applications.</p>
<p>The newer way (binfilename = the filename of your executable):</p>
<pre contenteditable="false">otool -l binfilename | grep minos</pre>
<p>For older macOS versions (I presume before Big Sur):</p>
<pre contenteditable="false">otool -l binfilename | grep -A 3 LC_VERSION_MIN_MACOSX</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/miscellaneous-development/">Miscellaneous</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/miscellaneous-development/macos-how-to-determine-minimum-os-version-requirement-for-an-executabe/</guid>
                    </item>
				                    <item>
                        <title>macOS - Determine Xcode command tools version in Terminal</title>
                        <link>https://www.tweaking4all.com/forum/miscellaneous-development/macos-determine-xcode-command-tools-version-in-terminal/</link>
                        <pubDate>Wed, 11 Oct 2023 08:04:30 +0000</pubDate>
                        <description><![CDATA[With all the changes lately, I found it a challenge to determine what version command-line tools I had installed on my Mac.
After all, XCode gives me a rather useless number:
$ xcode-selec...]]></description>
                        <content:encoded><![CDATA[<p>With all the changes lately, I found it a challenge to determine what version command-line tools I had installed on my Mac.</p>
<p>After all, XCode gives me a rather useless number:</p>
<pre contenteditable="false">$ xcode-select --version

xcode-select version 2397</pre>
<p>But with some help I did find that the CLang version (<strong>clang --version</strong>) is the indicator we need to look for (now that makes sense, and why is Xcode version not showing this?)</p>
<pre contenteditable="false">$ clang --version

Apple clang version 15.0.0 (clang-1500.0.40.1)
Target: arm64-apple-darwin22.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin</pre>
<p>So there ya go: command line tools 15 ... (in this example)</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/miscellaneous-development/">Miscellaneous</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/miscellaneous-development/macos-determine-xcode-command-tools-version-in-terminal/</guid>
                    </item>
				                    <item>
                        <title>macOS - How to make a backup of your signing certificates with the help of Xcode</title>
                        <link>https://www.tweaking4all.com/forum/miscellaneous-development/macos-how-to-make-a-backup-of-your-signing-certificates-with-the-help-of-xcode/</link>
                        <pubDate>Wed, 11 Oct 2023 07:43:30 +0000</pubDate>
                        <description><![CDATA[I&#039;m sure I&#039;m not the only one and I&#039;m a little surprised to see how cumbersome Apple has made it to work with signing certificates.I use more than 1 Mac to develop software, which need the s...]]></description>
                        <content:encoded><![CDATA[<p>I'm sure I'm not the only one and I'm a little surprised to see how cumbersome Apple has made it to work with signing certificates.<br />I use more than 1 Mac to develop software, which need the signing certificates, but I do not use Xcode ... at all. I just cannot stand XCode.</p>
<p>So on one of my computers I have everything setup real nice, so that manual signing works flawless.<br />Now comes the disaster on how to copy my certificates to my other Mac, and to my surprise Xcode comes to the rescue.<br />Yes you heard me right; I'm not using Xcode, but I have it installed anyway (SDK's, Command-line tools, signing tools etc come nicely bundled with this).</p>
<p><strong>Backup Certificates:</strong></p>
<ol>
<li>Start XCode</li>
<li>Go to <strong>Xcode</strong> menu -&gt; <strong>Settings</strong> -&gt; <strong>Account</strong> and select your account.</li>
<li>At the bottom click the dotted circle:
<p> </p>
460
 <br /><br /></li>
<li>Select "<strong>Export Apple ID and Code Signing Assets...</strong>" which will bundle all this in a single file (password protected).</li>
</ol>
<p> </p>
<p>You may have noticed in step 3 that there is a "<strong>Import Apple ID and Code Signing Assets...</strong>" option. <br />You can use this option on the other Mac to import your certificates again.</p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/miscellaneous-development/">Miscellaneous</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/miscellaneous-development/macos-how-to-make-a-backup-of-your-signing-certificates-with-the-help-of-xcode/</guid>
                    </item>
							        </channel>
        </rss>
		