<?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>ChexEd.com</title>
	<atom:link href="https://www.chexed.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.chexed.com</link>
	<description>Educating My Fellow Man</description>
	<lastBuildDate>Thu, 05 Mar 2026 18:02:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.chexed.com/wp-content/uploads/2017/09/cropped-LogoBasic-1-32x32.png</url>
	<title>ChexEd.com</title>
	<link>https://www.chexed.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Right Click Export First/Last Frame at JPG</title>
		<link>https://www.chexed.com/right-click-export-first-last-frame-at-jpg/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Sun, 08 Feb 2026 23:35:12 +0000</pubDate>
				<category><![CDATA[AroundTheWeb]]></category>
		<category><![CDATA[Asking AI]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[video]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=818</guid>

					<description><![CDATA[Technical Documentation: Right-Click Video Frame Extraction Target System: Windows 10 / Windows 11 Core Dependencies: FFmpeg &#38; Windows Registry Functionality: Instant extraction of high-quality JPG images from the first or &#8230; ]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Technical Documentation: Right-Click Video Frame Extraction</h2>



<p><strong>Target System:</strong> Windows 10 / Windows 11</p>



<p><strong>Core Dependencies:</strong> FFmpeg &amp; Windows Registry</p>



<p><strong>Functionality:</strong> Instant extraction of high-quality JPG images from the first or last frame of a video file via the File Explorer context menu.</p>



<h3 class="wp-block-heading">Disclaimer</h3>



<p><strong><em>Use at Your Own Risk:</em></strong><em> The following instructions involve modifying the Windows Registry and running custom batch scripts. While these steps are designed to be safe, any modifications to system settings carry a risk of unintended behavior. </em><strong><em>Ensure you have a system backup before proceeding.</em></strong><em> The author is not responsible for any data loss or system instability resulting from these procedures. Created with Google Gemini &amp; David Rader II.</em></p>



<h3 class="wp-block-heading">1. Prerequisites: FFmpeg Installation</h3>



<p>FFmpeg must be installed and properly configured in your system path for these tools to function.</p>



<p>To check: Open a Command Prompt and type</p>



<pre class="wp-block-code"><code>ffmpeg -version</code></pre>



<ul class="wp-block-list">
<li><strong>To install:</strong> If FFmpeg is not recognized, run the following command in an Administrator Command Prompt:</li>
</ul>



<pre class="wp-block-code"><code>winget install ffmpeg</code></pre>



<ul class="wp-block-list">
<li><strong>Note:</strong> You may need to restart your computer or the <strong>Windows Explorer</strong> process after installation to update the system path.</li>
</ul>



<h3 class="wp-block-heading">2. Script Configuration</h3>



<p>Create a dedicated folder for your custom scripts (e.g., <strong>C:\Program Specials\</strong>) and save the following two files inside it. <em>Pay special attention to this folder, as its exact path is throughout the scritpt.</em></p>



<h3 class="wp-block-heading">A. Export Last Frame Script (export_lastframe.bat)</h3>



<p>Code snippet</p>



<pre class="wp-block-code"><code>@echo off set "input=%~1" set "output=%~dpn1_lastframe.jpg" ffmpeg -sseof -1 -i "%input%" -update 1 -q:v 2 "%output%" -y</code></pre>



<h3 class="wp-block-heading">B. Export First Frame Script (export_firstframe.bat)</h3>



<p>Code snippet</p>



<pre class="wp-block-code"><code>@echo off set "input=%~1" set "output=%~dpn1_firstframe.jpg" ffmpeg -i "%input%" -frames:v 1 -q:v 2 "%output%" -y</code></pre>



<h3 class="wp-block-heading">3. Context Menu Integration</h3>



<p>To add these options to your right-click menu, create the following registry files.</p>



<h3 class="wp-block-heading">Installer (AddVideoTools.reg)</h3>



<p>Save this code as a .reg file and double-click it to apply. <em>Note: If you used a different folder for your scripts, ensure you update the paths below using double backslashes (e.g., C:\\Scripts\\).</em></p>



<p>Code snippet</p>



<pre class="wp-block-code"><code>Windows Registry Editor Version 5.00 ; Generic Video Association &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\ExportLastFrame] @="Export Last Frame" "Icon"="imageres.dll,-68" &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\ExportLastFrame\command] @="\"C:\\Program Specials\\export_lastframe.bat\" \"%1\"" &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\ExportFirstFrame] @="Export First Frame" "Icon"="imageres.dll,-68" &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\ExportFirstFrame\command] @="\"C:\\Program Specials\\export_firstframe.bat\" \"%1\"" ; Specific Extension Overrides (MP4/MOV) &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4\shell\ExportLastFrame] @="Export Last Frame" &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4\shell\ExportLastFrame\command] @="\"C:\\Program Specials\\export_lastframe.bat\" \"%1\"" &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\.mov\shell\ExportLastFrame] @="Export Last Frame" &#91;HKEY_CLASSES_ROOT\SystemFileAssociations\.mov\shell\ExportLastFrame\command] @="\"C:\\Program Specials\\export_lastframe.bat\" \"%1\""</code></pre>



<h3 class="wp-block-heading">Uninstaller (UninstallVideoTools.reg)</h3>



<p>Save this code as a .reg file to cleanly remove the options from your menu at any time.</p>



<p>Code snippet</p>



<pre class="wp-block-code"><code>Windows Registry Editor Version 5.00 &#91;-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\ExportLastFrame] &#91;-HKEY_CLASSES_ROOT\SystemFileAssociations\video\shell\ExportFirstFrame] &#91;-HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4\shell\ExportLastFrame] &#91;-HKEY_CLASSES_ROOT\SystemFileAssociations\.mp4\shell\ExportFirstFrame] &#91;-HKEY_CLASSES_ROOT\SystemFileAssociations\.mov\shell\ExportLastFrame] &#91;-HKEY_CLASSES_ROOT\SystemFileAssociations\.mov\shell\ExportFirstFrame]</code></pre>



<h3 class="wp-block-heading">5. Usage Instructions</h3>



<ol class="wp-block-list">
<li>Navigate to a video file in File Explorer.</li>



<li><strong>Right-click</strong> the file.</li>



<li>Select <strong>Export First Frame</strong> or <strong>Export Last Frame</strong>.</li>



<li>The extracted JPG will appear in the same folder as the original video.</li>
</ol>



<p></p>



<p>Also, posted on my LinkedIn profile (<a href="https://www.linkedin.com/in/davidraderii/">David</a>)</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Turning Off a KTC Monitor</title>
		<link>https://www.chexed.com/turning-off-a-ktc-monitor/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Wed, 12 Nov 2025 05:20:44 +0000</pubDate>
				<category><![CDATA[Tech Tips]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=813</guid>

					<description><![CDATA[Seems like a simple task, but a non-standard method of turning off combined with a lack of instructions makes it a bit of a pain. To turn off a KTC &#8230; ]]></description>
										<content:encoded><![CDATA[
<p>Seems like a simple task, but a non-standard method of turning off combined with a lack of instructions makes it a bit of a pain.</p>



<p>To turn off a KTC monitor, one proven method is to simply follow these steps:</p>



<ol class="wp-block-list">
<li>Hold the power button in (press in on the joystick) the back until the menu appears</li>



<li>Let go immediately (the menu should still stay present)</li>



<li>Hold the power button again</li>



<li>The monitor goes off</li>
</ol>



<p>If it&#8217;s not working, it&#8217;s possible either 1. You&#8217;re accidentally pressing a directional signal within the joystick or 2. Your monitor has a different method.</p>



<p>Good luck ladies and gentleman.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Exploring the AI Frontier: Early Impressions  Versus Gemini&#8217;s Subscription Tiers</title>
		<link>https://www.chexed.com/exploring-the-ai-frontier-early-impressions-versus-geminis-subscription-tiers/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Sat, 11 Oct 2025 23:59:27 +0000</pubDate>
				<category><![CDATA[AroundTheWeb]]></category>
		<category><![CDATA[Asking AI]]></category>
		<category><![CDATA[DIY - Do It Yourself]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[ai]]></category>
		<category><![CDATA[claude]]></category>
		<category><![CDATA[gemini]]></category>
		<category><![CDATA[tool]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=809</guid>

					<description><![CDATA[== UPDATE 3/5/26 == Anthropics code now automatically &#8220;compresses&#8221; conversations to limit the necessity to start new chats. Their new project focus allows greater cohesivity. You&#8217;ll notice see on occasion &#8230; ]]></description>
										<content:encoded><![CDATA[
<p><strong>== UPDATE 3/5/26 ==</strong></p>



<p>Anthropics code now automatically &#8220;compresses&#8221; conversations to limit the necessity to start new chats. Their new project focus allows greater cohesivity.</p>



<p>You&#8217;ll notice see on occasion Claude when it says &#8220;compacting our conversation so we can keep chatting…&#8221; which can reduce the need for <a href="https://www.linkedin.com/pulse/out-tokens-sharing-my-prompt-continue-ai-chat-david-rader-ii-9yd0e/">this conversation saving script</a>.</p>



<p>At this point, I think Claude may be slightly better, but Gemini is still easier to use. However, I&#8217;m taking &#8220;slightly better&#8221; at this point.</p>



<h4 class="wp-block-heading">The Value Proposition: Claude Takes the Lead <strong>March 5, 2026</strong></h4>



<p>For the record, this review is entirely from &#8220;browser&#8221; based experience. There are desktop programs which may allow for better interactivity with any AI  software. They&#8217;re not exactly intuitive at this point.</p>



<p><strong>== END UPDATE 3/5/26 ==</strong></p>



<p>Exploring the AI Frontier: Early Impressions of Claude and Gemini&#8217;s Subscription Tiers</p>



<p>As a relatively new enthusiast diving into the world of large language models, I&#8217;m continually looking for the best tools to fuel my projects. Recently, I decided to compare the $20-per-month subscription plans offered by two of the biggest players: <strong>Anthropic&#8217;s Claude</strong> and <strong>Google&#8217;s Gemini</strong>. While both promise powerful capabilities, my initial experience revealed a stark difference in their usability, particularly for the hobbyist with a demanding schedule.</p>



<h5 class="wp-block-heading">The Value Proposition: Gemini Takes the Lead Oct. 11, 2025</h5>



<p>My hands-on experimentation quickly demonstrated that at the $20 price point, <strong>Gemini</strong> offers significantly more robust usage limits. I&#8217;ve been able to work on projects for an entire day, generating a considerable volume of tokens without hitting any frustrating roadblocks. For someone like me, who might only get a few dedicated hours a week to focus on a hobby project, this &#8220;all-day&#8221; availability is a massive benefit, allowing for deep, uninterrupted creative flow.</p>



<p><strong>Claude allows you to upload more documents (Gemini, only 10), however, the token limit seems to be incredibly lower. </strong>I&#8217;ve always binge coded, whether by hand or via A.I. help. Why? Because I&#8217;m a time limited human like most of you. I&#8217;m going to continue using Claude for a full month, if I can stand the hang-ups. As a hobbyist, I can&#8217;t justify putting more than $20 a month into it, but Claude&#8217;s token limit by its very nature renders it completely useless for hours at a time.</p>



<p>I just wrote an article on LinkedIn regarding <a href="https://www.linkedin.com/pulse/out-tokens-sharing-my-prompt-continue-ai-chat-david-rader-ii-9yd0e/">a useful prompt to restart a token-limit reached conversation</a>.</p>



<h5 class="wp-block-heading">Claude&#8217;s Token Trap: A Frustrating Limit</h5>



<p>The experience with <strong>Claude</strong> was, unfortunately, much less forgiving. Despite the identical $20 monthly fee, I found myself hitting the <strong>maximum token limit</strong> for my entire plan in just a few short hours of focused work.</p>



<p>The system is apparently designed with a token quota that <strong>resets every five hours</strong> from what I&#8217;ve read online. For a user who has a rare window of time-say, a Saturday afternoon-to dedicate to a project, this model is incredibly restrictive. On the occasions I <em>do</em> carve out a few hours to work, Claude becomes essentially <strong>useless within two hours</strong>, forcing me to wait almost three more hours for the five-hour clock to refresh. This stop-start nature breaks the rhythm of work and makes the platform a poor choice for the dedicated, yet time-constrained, hobbyist. It does excellent when it works, but &#8220;when it works&#8221; just simply isn&#8217;t enough.</p>



<h5 class="wp-block-heading">Conclusion: Aligning Price with Purpose</h5>



<p>While both models boast cutting-edge performance, my early takeaway is that <strong>Gemini</strong> offers a far more practical and usable experience at the $20 subscription tier. Its generous limits allow for extended, deep-dive work sessions, making it the clear choice for the user who needs their AI assistant to be available when <em>they</em> are. Claude, by contrast, with its restrictive and rapidly consumed token quota, appears ill-suited for the sporadic but intense usage patterns of a casual but serious hobbyist.</p>



<p>It&#8217;s a crucial lesson in understanding that the best AI for a project isn&#8217;t just about raw performance—it&#8217;s also about the <strong>practicality and generosity of the subscription model</strong>.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>Have you experimented with other AI subscription tiers? I&#8217;d be interested to hear if this token-limit disparity holds true across other services.</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Manage Grok or &#8220;X&#8221; Twitter Subscription</title>
		<link>https://www.chexed.com/manage-grok-or-x-twitter-subscription/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Tue, 08 Jul 2025 07:45:59 +0000</pubDate>
				<category><![CDATA[AroundTheWeb]]></category>
		<category><![CDATA[Asking AI]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[ai]]></category>
		<category><![CDATA[llm]]></category>
		<category><![CDATA[tool]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=805</guid>

					<description><![CDATA[Get right to it; Manage your subscription / unsubscribe:https://twitter.com/settings/subscription A little review of the Grok LLM; Grok has been very interesting and I often prefer it due to it&#8217;s direct &#8230; ]]></description>
										<content:encoded><![CDATA[
<p><strong>Get right to it; Manage your subscription / unsubscribe:<br></strong><a href="https://twitter.com/settings/subscription">https://twitter.com/settings/subscription</a></p>



<p>A little review of the Grok LLM;</p>



<p>Grok has been very interesting and I often prefer it due to it&#8217;s direct &#8220;attitude&#8221; &#8211; the satirical nature also makes it less of a droning experience. It&#8217;s powerful, no real complaints.</p>



<p>I can&#8217;t afford to subscribe to all of them to test them fully, so I&#8217;m rotating.</p>



<p>So far I haven&#8217;t found any that make it &#8220;easy&#8221; to unsubscribe &#8211; layers of menus. Even asking the chatbot itself often doesn&#8217;t get you there. By design or are things just changing so fast even the LLM&#8217;s can&#8217;t keep up? Might be a bit of both.</p>



<p>It&#8217;s funny, even premium Grok still watermarks its images though.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img fetchpriority="high" decoding="async" width="384" height="512" src="https://www.chexed.com/wp-content/uploads/2025/07/ManageSubscription.jpg" alt="" class="wp-image-806" srcset="https://www.chexed.com/wp-content/uploads/2025/07/ManageSubscription.jpg 384w, https://www.chexed.com/wp-content/uploads/2025/07/ManageSubscription-225x300.jpg 225w" sizes="(max-width: 384px) 100vw, 384px" /></figure>
</div>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Grade Year Calculator</title>
		<link>https://www.chexed.com/grade-year-calculator/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Tue, 03 Jun 2025 04:25:02 +0000</pubDate>
				<category><![CDATA[Asking AI]]></category>
		<category><![CDATA[DIY - Do It Yourself]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=799</guid>

					<description><![CDATA[With incredible help from Google&#8217;s Gemini AI to make a calculator in which you type a grade, year and season (spring/fall since school years cross over each time)&#8230; And it &#8230; ]]></description>
										<content:encoded><![CDATA[
<p>With incredible help from Google&#8217;s Gemini AI to make a calculator in which you type a grade, year and season (spring/fall since school years cross over each time)&#8230; And it calculates the expected grades forwards and backwards.</p>



<p>You can try it on President Barack Obama <em>(try grade 12, 1979, spring)</em>, yourself or your child to determine when they will graduate or what grade they were in at a year in the past.</p>



<p class="has-text-align-center"><a href="https://www.chexed.com/gradeyears.php"><strong>Grade Year Calculator &#8211; ChexEd</strong></a></p>



<p>Thanks for looking! Let me know what you think on my <a href="https://www.linkedin.com/posts/davidraderii_with-incredible-help-from-googles-gemini-activity-7335521217073848320-OfGP?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAAAJLCtMB-M0hHOu0tfIN3qB-QxkX4re3kzo">LinkedIn post</a>!</p>



<p>Snapshot:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="685" height="728" src="https://www.chexed.com/wp-content/uploads/2025/06/2025-06-03-1.png" alt="" class="wp-image-801" srcset="https://www.chexed.com/wp-content/uploads/2025/06/2025-06-03-1.png 685w, https://www.chexed.com/wp-content/uploads/2025/06/2025-06-03-1-282x300.png 282w, https://www.chexed.com/wp-content/uploads/2025/06/2025-06-03-1-600x638.png 600w" sizes="(max-width: 685px) 100vw, 685px" /></figure>
</div>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>&#8220;Picked for you&#8221; on Threads</title>
		<link>https://www.chexed.com/picked-for-you-on-threads/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Sun, 04 Aug 2024 02:54:49 +0000</pubDate>
				<category><![CDATA[AroundTheWeb]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Notes]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[threads]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=787</guid>

					<description><![CDATA[If you ever see this, it means Threads picked the post for you. It can be unclear and appear that the &#8220;pick&#8221; may appear to have been done by the &#8230; ]]></description>
										<content:encoded><![CDATA[
<p class="has-pale-cyan-blue-background-color has-background">If you ever see this, it means <strong>Threads picked the post for you.</strong> It can be unclear and appear that the &#8220;pick&#8221; may appear to have been done by the person shown in the notifications.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="671" height="175" src="https://www.chexed.com/wp-content/uploads/2024/08/PickedForYou_2024-08-03.png" alt="" class="wp-image-788" srcset="https://www.chexed.com/wp-content/uploads/2024/08/PickedForYou_2024-08-03.png 671w, https://www.chexed.com/wp-content/uploads/2024/08/PickedForYou_2024-08-03-300x78.png 300w, https://www.chexed.com/wp-content/uploads/2024/08/PickedForYou_2024-08-03-600x156.png 600w" sizes="(max-width: 671px) 100vw, 671px" /></figure>



<p class="has-pale-cyan-blue-background-color has-background"><strong>Rest assured, it&#8217;s just a vague message from Threads, suggesting the post to you.</strong> Good User Interface (U.I.) would suggest they should use familiar language &#8220;Suggested for you&#8221; or more clear language &#8220;Threads picked for you.&#8221;</p>



<p class="has-pale-cyan-blue-background-color has-background">Hopefully this clears it up for you better than Threads did!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>If a human were to attempt to become a jack of all trades and an expert at a few, what gameplan would you lay out?</title>
		<link>https://www.chexed.com/if-a-human-were-to-attempt-to-become-a-jack-of-all-trades-and-an-expert-at-a-few-what-gameplan-would-you-lay-out/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Thu, 23 May 2024 01:54:25 +0000</pubDate>
				<category><![CDATA[AroundTheWeb]]></category>
		<category><![CDATA[Asking AI]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[tool]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=773</guid>

					<description><![CDATA[The question: If a human were to attempt to become a jack of all trades and an expert at a few, what gameplan would you lay out? The answer below &#8230; ]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img loading="lazy" decoding="async" width="1024" height="734" src="https://www.chexed.com/wp-content/uploads/2024/05/base_output_02135_-1024x734.png" alt="Man and Machine can be Friends" class="wp-image-775" style="width:250px;height:auto" srcset="https://www.chexed.com/wp-content/uploads/2024/05/base_output_02135_-1024x734.png 1024w, https://www.chexed.com/wp-content/uploads/2024/05/base_output_02135_-300x215.png 300w, https://www.chexed.com/wp-content/uploads/2024/05/base_output_02135_-768x550.png 768w, https://www.chexed.com/wp-content/uploads/2024/05/base_output_02135_-600x430.png 600w, https://www.chexed.com/wp-content/uploads/2024/05/base_output_02135_.png 1072w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>The question<mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-luminous-vivid-amber-color">:</mark><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-vivid-purple-color"> If a human were to attempt to become a jack of all trades and an expert at a few, what gameplan would you lay out?</mark></strong></p>



<p>The answer below is an amazing answer in my opinion! I would like to add that strong communication is important in large part; because interacting with the right teacher can reduce the time to learn any field significantly. The best teacher isn&#8217;t always the best for everyone, but at the right time for the right person; a student/teacher conversation can turn a Volkswagon Beetle into a Falcon Heavy rocket. It might take some time to grow, of course&#8230; Sometimes a shifted perspective creates an immediate epiphany though!</p>



<p><em><code><strong>Message below from Gemini May 22, 2024:</strong></code></em></p>



<p><strong>Here&#8217;s a gameplan for someone who wants to be a jack of all trades and an expert in a few areas:</strong></p>



<p><strong>Foundational Skills:</strong></p>



<ul class="wp-block-list">
<li><strong>Learn How to Learn:</strong> This is the most crucial skill. Mastering different subjects requires efficient learning techniques. Explore memory hacks, time management for studying, and effective research methods.</li>



<li><strong>Develop Strong Communication:</strong> Being able to explain complex concepts clearly and concisely is valuable in any field. Hone your writing, public speaking, and active listening skills.</li>



<li><strong>Problem-Solving:</strong> A jack of all trades needs to be resourceful and adaptable. Practice critical thinking, breaking down problems, and finding creative solutions.</li>
</ul>



<p><strong>Building Expertise:</strong></p>



<ul class="wp-block-list">
<li><strong>Choose Your Expertise Areas:</strong> Pick 2-3 fields where you truly want to become an expert. Consider your interests, career goals, and market demands.</li>



<li><strong>Structured Learning:</strong> For each chosen field, develop a structured learning plan. This could involve courses, certifications, books by renowned authors, or online tutorials.</li>



<li><strong>Immerse Yourself:</strong> Actively engage with your chosen fields. Participate in online communities, attend workshops, and network with professionals in those areas.</li>
</ul>



<p><strong>Developing Breadth of Knowledge:</strong></p>



<ul class="wp-block-list">
<li><strong>Microlearning:</strong> There are tons of resources for acquiring snippets of knowledge on diverse topics. Explore online courses with short modules, podcasts, documentaries, or audiobooks.</li>



<li><strong>Thematic Approach:</strong> Instead of randomly picking up skills, group your learning thematically. For example, learn basic mechanics, carpentry, and electrical work to become a well-rounded handyman.</li>



<li><strong>Hands-on Projects:</strong> Apply your learnings in real-world projects. This reinforces knowledge, builds practical skills, and exposes you to the realities of different fields.</li>
</ul>



<p><strong>Remember:</strong></p>



<ul class="wp-block-list">
<li><strong>Focus on Balance:</strong> Don&#8217;t spread yourself too thin. Allocate dedicated time for in-depth learning in your expert areas while consistently adding to your general knowledge.</li>



<li><strong>Enjoy the Journey:</strong> Learning should be stimulating. Explore topics that genuinely interest you, and don&#8217;t be afraid to experiment.</li>



<li><strong>Embrace Lifelong Learning:</strong> The world is constantly evolving. Stay curious, keep learning, and update your knowledge base throughout your life.</li>
</ul>



<p>By following these steps, you can become a well-rounded individual with a broad knowledge base and expertise in a few specific areas. This combination can be highly valuable in various aspects of life.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img loading="lazy" decoding="async" width="734" height="1024" src="https://www.chexed.com/wp-content/uploads/2024/05/ManAndMachineCanBeFriends-734x1024.png" alt="Man And Machine Can Be Friends" class="wp-image-774" style="width:348px;height:auto" srcset="https://www.chexed.com/wp-content/uploads/2024/05/ManAndMachineCanBeFriends-734x1024.png 734w, https://www.chexed.com/wp-content/uploads/2024/05/ManAndMachineCanBeFriends-215x300.png 215w, https://www.chexed.com/wp-content/uploads/2024/05/ManAndMachineCanBeFriends-600x838.png 600w, https://www.chexed.com/wp-content/uploads/2024/05/ManAndMachineCanBeFriends.png 768w" sizes="auto, (max-width: 734px) 100vw, 734px" /><figcaption class="wp-element-caption">Man And Machine Can Be Friends</figcaption></figure>
</div>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Brass Seaside Object, Unidentified</title>
		<link>https://www.chexed.com/brass-object-unidentified/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Sun, 04 Feb 2024 15:45:57 +0000</pubDate>
				<category><![CDATA[Exploring]]></category>
		<category><![CDATA[FeelsGoodMan]]></category>
		<category><![CDATA[Journal]]></category>
		<category><![CDATA[ocean treasure]]></category>
		<category><![CDATA[recycling]]></category>
		<category><![CDATA[scavenging]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=750</guid>

					<description><![CDATA[We found this while at a beach in Maryland after a big storm. It looks like it&#8217;s some kind of squeegee thing, assumingly for a ship considering the location and &#8230; ]]></description>
										<content:encoded><![CDATA[
<p>We found this while at a beach in Maryland after a big storm. It looks like it&#8217;s some kind of squeegee thing, assumingly for a ship considering the location and material.</p>



<p>The hole is threaded and with the direction of the writing, I assume a pole goes inside to act as a handle.</p>



<p>There looks to be a slot where perhaps a rubber or other softer material would be slid in to.</p>



<p>It appears to be brass and is non-magnetic. We&#8217;re thinking about restoring it. Either way, we couldn&#8217;t read enough information on it to tell who made it.</p>



<p>A Google image search doesn&#8217;t bring it up either. Google brings up &#8220;Rope Cleats&#8221; made for tying a ships ropes to, but this has distinct features that make it appear to be an incorrect match. For example, the angles of the slopes.</p>



<p>In case it helps another searcher one day, here are some pictures.</p>



<p></p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1023" height="768" data-id="752" src="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033710449-Medium.jpg" alt="" class="wp-image-752" srcset="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033710449-Medium.jpg 1023w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033710449-Medium-600x450.jpg 600w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033710449-Medium-300x225.jpg 300w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033710449-Medium-768x577.jpg 768w" sizes="auto, (max-width: 1023px) 100vw, 1023px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1023" height="768" data-id="755" src="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033705036.MP-Medium.jpg" alt="" class="wp-image-755" srcset="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033705036.MP-Medium.jpg 1023w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033705036.MP-Medium-600x450.jpg 600w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033705036.MP-Medium-300x225.jpg 300w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033705036.MP-Medium-768x577.jpg 768w" sizes="auto, (max-width: 1023px) 100vw, 1023px" /></figure>



<figure class="wp-block-image size-full is-style-default"><img loading="lazy" decoding="async" width="1023" height="768" data-id="751" src="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033735367-Medium.jpg" alt="" class="wp-image-751" srcset="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033735367-Medium.jpg 1023w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033735367-Medium-600x450.jpg 600w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033735367-Medium-300x225.jpg 300w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033735367-Medium-768x577.jpg 768w" sizes="auto, (max-width: 1023px) 100vw, 1023px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1023" height="768" data-id="753" src="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033731853-Medium.jpg" alt="" class="wp-image-753" srcset="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033731853-Medium.jpg 1023w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033731853-Medium-600x450.jpg 600w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033731853-Medium-300x225.jpg 300w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_033731853-Medium-768x577.jpg 768w" sizes="auto, (max-width: 1023px) 100vw, 1023px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1020" height="768" data-id="758" src="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173720489-Medium.jpg" alt="" class="wp-image-758" srcset="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173720489-Medium.jpg 1020w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173720489-Medium-600x452.jpg 600w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173720489-Medium-300x226.jpg 300w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173720489-Medium-768x578.jpg 768w" sizes="auto, (max-width: 1020px) 100vw, 1020px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1020" height="768" data-id="759" src="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173734215-Medium.jpg" alt="" class="wp-image-759" srcset="https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173734215-Medium.jpg 1020w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173734215-Medium-600x452.jpg 600w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173734215-Medium-300x226.jpg 300w, https://www.chexed.com/wp-content/uploads/2024/02/PXL_20240204_173734215-Medium-768x578.jpg 768w" sizes="auto, (max-width: 1020px) 100vw, 1020px" /></figure>
</figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Install Photoshop BETA for Generative Fill</title>
		<link>https://www.chexed.com/how-to-install-photoshop-beta-for-generative-fill/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Thu, 22 Jun 2023 01:02:09 +0000</pubDate>
				<category><![CDATA[ART]]></category>
		<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[Tools and Utilities]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=712</guid>

					<description><![CDATA[How to Install Photoshop BETA for Generative Fill (Includes Screenshot) I wrote this article, because every time I searched for Photoshop Beta in the Creative Cloud, it just took me &#8230; ]]></description>
										<content:encoded><![CDATA[
<p>How to Install Photoshop BETA for Generative Fill (Includes Screenshot)</p>



<ol class="wp-block-list">
<li>Open Creative Cloud Desktop (Adobe Software Hub)</li>



<li>Click Apps at the top</li>



<li>Scroll on the left navigation panel down to &#8220;Categories&#8221;</li>



<li>Click &#8220;Beta Apps&#8221;</li>



<li>Find Photoshop (Beta) on the right</li>



<li>Click Install</li>
</ol>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="656" src="https://www.chexed.com/wp-content/uploads/2023/06/PhotoshopBetaInstall-1024x656.png" alt="How to install Photoshop Beta for Generative Fill" class="wp-image-713" srcset="https://www.chexed.com/wp-content/uploads/2023/06/PhotoshopBetaInstall-1024x656.png 1024w, https://www.chexed.com/wp-content/uploads/2023/06/PhotoshopBetaInstall-600x384.png 600w, https://www.chexed.com/wp-content/uploads/2023/06/PhotoshopBetaInstall-300x192.png 300w, https://www.chexed.com/wp-content/uploads/2023/06/PhotoshopBetaInstall-768x492.png 768w, https://www.chexed.com/wp-content/uploads/2023/06/PhotoshopBetaInstall.png 1298w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>I wrote this article, because every time I searched for Photoshop Beta in the Creative Cloud, it just took me to the website to reinstall creative cloud. Little to no instruction. Here&#8217;s some real instructions!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>HASH regarding AI Generated Images</title>
		<link>https://www.chexed.com/hash-regarding-ai-generated-images/</link>
		
		<dc:creator><![CDATA[ChexEd]]></dc:creator>
		<pubDate>Sat, 25 Feb 2023 05:26:17 +0000</pubDate>
				<category><![CDATA[AroundTheWeb]]></category>
		<category><![CDATA[ART]]></category>
		<category><![CDATA[Electronic Security]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools and Utilities]]></category>
		<guid isPermaLink="false">https://www.chexed.com/?p=706</guid>

					<description><![CDATA[In the context of images including AI-generated images using StableDiffusion, a &#8220;hash&#8221; refers to a unique identifier or digital fingerprint that is generated from the image data. In my experience &#8230; ]]></description>
										<content:encoded><![CDATA[
<p>In the context of images including AI-generated images using StableDiffusion, a &#8220;hash&#8221; refers to a unique identifier or digital fingerprint that is generated from the image data. In my experience a &#8220;HASH&#8221; can be used to fingerprint other media as well, such as executable &#8220;.exe&#8221; files or anything else.</p>



<p>A hash function is a mathematical algorithm that takes in a set of data (in this case, an image) and generates a fixed-size output, which is a unique representation of the input data. This output is often called a hash code or a digest. Even a small change in the input data will produce a vastly different hash code.</p>



<p>This HASH verification can be used to verify different versions of a file, for example. Hashes are often used to verify the integrity of data and to ensure that the data has not been tampered with.</p>



<p>In the case of AI-generated images, a hash can be used to verify the authenticity of the image, to ensure that the image has not been altered or manipulated after it was generated by the AI system.</p>



<p>Hashes are also useful for content-based image retrieval, where images are indexed and retrieved based on their similarity to other images. In this case, the hash can be used to quickly compare images and identify those that are similar to each other.</p>



<p>You can use <a href="https://www.virustotal.com/" target="_blank" rel="noreferrer noopener">VirusTotal</a> to check a files hash up to 650 MB. Of course, you can also scan other files to validate the files have been unaltered as well!</p>



<p>Here is a list of free hash-makers/readers:<br><a href="https://www.makeuseof.com/tag/free-hash-checkers-file-integrity/" target="_blank" rel="noreferrer noopener">https://www.makeuseof.com/tag/free-hash-checkers-file-integrity/</a></p>



<p class="has-text-align-right"><sup>Modified response from ChatGPT.</sup></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
