<?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/">
  <channel>
    <title>DEV Community: Joseph Fernando</title>
    <description>The latest articles on DEV Community by Joseph Fernando (@axcelblade).</description>
    <link>https://dev.to/axcelblade</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3401599%2F7817d2ae-1463-4b74-9c8d-ae2853ccbd39.png</url>
      <title>DEV Community: Joseph Fernando</title>
      <link>https://dev.to/axcelblade</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/axcelblade"/>
    <language>en</language>
    <item>
      <title>🧰 Windows OS Error Check &amp; Repair via Command Line</title>
      <dc:creator>Joseph Fernando</dc:creator>
      <pubDate>Thu, 31 Jul 2025 02:12:38 +0000</pubDate>
      <link>https://dev.to/axcelblade/windows-os-error-check-repair-via-command-line-2p46</link>
      <guid>https://dev.to/axcelblade/windows-os-error-check-repair-via-command-line-2p46</guid>
      <description>&lt;p&gt;This guide explains how to check and fix system errors on Windows using the command line tools. We'll cover the necessary commands and steps to identify and resolve common issues.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠 1. System File Checker (SFC)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🔧 Steps
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Open Command Prompt as Administrator: Press Windows + X → select Command Prompt (Admin) or Windows Terminal (Admin).&lt;/li&gt;
&lt;li&gt;Run the following.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sfc /scannow
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Wait until the scan completes. Do not close the window during the process.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  🛠 2. Deployment Imaging Service and Management Tool (DISM)
&lt;/h2&gt;

&lt;p&gt;The DISM tool repairs the Windows system image and component store.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✅ Commands to Run in Sequence
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;DISM /Online /Cleanup-Image /CheckHealth
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;DISM /Online /Cleanup-Image /ScanHealth
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;DISM /Online /Cleanup-Image /RestoreHealth
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  🔍 Description
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;/CheckHealth – Quickly checks for known corruption.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;/ScanHealth – Performs a deeper scan for problems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;/RestoreHealth – Repairs the image using Windows Update or a specified source.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  ✅ Recommended Full Repair Sequence
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Open terminal as Administrator.&lt;/li&gt;
&lt;li&gt;Run the following
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;DISM /Online /Cleanup-Image /RestoreHealth
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Then run
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sfc /scannow
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  ⚙️ Automate with a Batch File
&lt;/h2&gt;

&lt;p&gt;Instead of running each command manually, you can use a batch file to automate the process.&lt;/p&gt;

&lt;h3&gt;
  
  
  ▶️ How to Run
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Right-click the file repair-windows.bat and choose Run as Administrator.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  ℹ️ Notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;These tools are built into Windows and safe to use.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Requires an internet connection for DISM if using Windows Update as the repair source.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can use these commands to fix issues like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Missing/corrupt system files&lt;/li&gt;
&lt;li&gt;Random crashes or BSODs&lt;/li&gt;
&lt;li&gt;Windows Update problems&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

</description>
      <category>cmd</category>
      <category>windows</category>
      <category>repair</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>🚀 Warp.dev – The Modern Terminal Built for Teams and Speed</title>
      <dc:creator>Joseph Fernando</dc:creator>
      <pubDate>Thu, 31 Jul 2025 02:07:51 +0000</pubDate>
      <link>https://dev.to/axcelblade/warpdev-the-modern-terminal-built-for-teams-and-speed-1hh4</link>
      <guid>https://dev.to/axcelblade/warpdev-the-modern-terminal-built-for-teams-and-speed-1hh4</guid>
      <description>&lt;p&gt;In a world where developer productivity is everything, why are we still using terminals that haven’t evolved in decades?&lt;/p&gt;

&lt;p&gt;Enter &lt;a href="https://www.warp.dev" rel="noopener noreferrer"&gt;&lt;strong&gt;Warp&lt;/strong&gt;&lt;/a&gt; — a &lt;strong&gt;blazingly fast, Rust-based terminal&lt;/strong&gt; that reimagines the command-line interface with a &lt;strong&gt;modern UI, collaborative features, and built-in AI assistance&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚡ What is Warp?
&lt;/h2&gt;

&lt;p&gt;Warp is a &lt;strong&gt;GPU-accelerated terminal&lt;/strong&gt; built in Rust that delivers a snappy, intuitive, and collaborative command-line experience. It keeps the power of the traditional terminal but layers on modern UX features that make it more useful, especially for teams.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  ✅ 1. Blocks Instead of Walls of Text
&lt;/h3&gt;

&lt;p&gt;Every command and its output is a “block” — making it easy to read, copy, or share just the part you need.&lt;/p&gt;

&lt;h3&gt;
  
  
  📝 2. Built-in Command Palette (Like VS Code)
&lt;/h3&gt;

&lt;p&gt;No more remembering complex flags or searching man pages. Press &lt;code&gt;Cmd + P&lt;/code&gt; and use the command palette to discover and run commands faster.&lt;/p&gt;

&lt;h3&gt;
  
  
  🤝 3. Warp Drive (Team Collaboration)
&lt;/h3&gt;

&lt;p&gt;Save commonly used commands, workflows, or snippets and share them with your team. It’s like a terminal wiki.&lt;/p&gt;

&lt;h3&gt;
  
  
  🧠 4. AI Command Suggestions
&lt;/h3&gt;

&lt;p&gt;Stuck with a CLI problem? Warp AI helps generate shell commands from natural language right in the terminal.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔒 5. Cloud-Free by Default
&lt;/h3&gt;

&lt;p&gt;While collaboration features are cloud-based, everything else runs locally. You can opt out of any network features.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧪 Why I Use Warp
&lt;/h2&gt;

&lt;p&gt;As a developer who frequently switches between projects, I found traditional terminals too… "texty." Warp’s intuitive design, especially the &lt;strong&gt;blocks&lt;/strong&gt; and &lt;strong&gt;searchable output&lt;/strong&gt;, saves me time every day.&lt;/p&gt;

&lt;p&gt;Also, the &lt;strong&gt;input editor&lt;/strong&gt; lets you use multiline commands with syntax highlighting and autocomplete — like an IDE inside your terminal.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Installation
&lt;/h2&gt;

&lt;p&gt;You can get started quickly:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
brew install --cask warp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>programming</category>
      <category>ai</category>
      <category>beginners</category>
      <category>warp</category>
    </item>
  </channel>
</rss>
