<?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>Forem: MentalistOps</title>
    <description>The latest articles on Forem by MentalistOps (@mentalistops).</description>
    <link>https://forem.com/mentalistops</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%2F3583877%2F51f9caef-92b5-4bf9-b4c8-2183b14826c1.jpeg</url>
      <title>Forem: MentalistOps</title>
      <link>https://forem.com/mentalistops</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/mentalistops"/>
    <language>en</language>
    <item>
      <title>Automate Gmail Spam Detection with Python</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Fri, 09 Jan 2026 13:23:58 +0000</pubDate>
      <link>https://forem.com/mentalistops/automate-gmail-spam-detection-with-python-4f88</link>
      <guid>https://forem.com/mentalistops/automate-gmail-spam-detection-with-python-4f88</guid>
      <description>&lt;p&gt;🛡️ Automate Gmail Spam Detection with Python - Clean Your Inbox Automatically&lt;br&gt;
published: true&lt;br&gt;
description: Build an intelligent spam detector that automatically analyzes and trashes suspicious emails in Gmail&lt;/p&gt;

&lt;h1&gt;
  
  
  🛡️ Automate Gmail Spam Detection with Python
&lt;/h1&gt;

&lt;p&gt;Tired of manually sorting through spam emails every day? I built a Python script that automatically detects suspicious emails and moves them to trash!&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;✅ Scans your Gmail inbox for suspicious patterns&lt;br&gt;&lt;br&gt;
✅ Detects phishing attempts, fake offers, and spam&lt;br&gt;&lt;br&gt;
✅ Automatically moves spam to trash&lt;br&gt;&lt;br&gt;
✅ Shows detailed reports of what was found&lt;br&gt;&lt;br&gt;
✅ 100% reversible - emails go to trash, not deleted&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;The script uses a &lt;strong&gt;smart scoring system&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pattern Recognition&lt;/strong&gt;: Detects phrases like “urgent win”, “confirm password”, “prize awarded”&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Domain Filtering&lt;/strong&gt;: Flags temporary email services (tempmail, guerrillamail, etc.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Behavioral Analysis&lt;/strong&gt;: Checks for excessive capitals, too many exclamation marks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scoring&lt;/strong&gt;: Emails with suspicious score ≥ 3 get moved to trash&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;p&gt;🔍 &lt;strong&gt;Intelligent Detection&lt;/strong&gt; - Uses regex patterns to identify spam&lt;br&gt;&lt;br&gt;
🚨 &lt;strong&gt;Phishing Protection&lt;/strong&gt; - Catches common phishing tactics&lt;br&gt;&lt;br&gt;
📊 &lt;strong&gt;Detailed Logging&lt;/strong&gt; - See exactly why each email was flagged&lt;br&gt;&lt;br&gt;
⚙️ &lt;strong&gt;Fully Customizable&lt;/strong&gt; - Add your own patterns and rules&lt;br&gt;&lt;br&gt;
🔐 &lt;strong&gt;Secure&lt;/strong&gt; - Uses official Gmail API with OAuth2&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Setup
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Enable Gmail API in Google Cloud Console&lt;/li&gt;
&lt;li&gt;Install dependencies: &lt;code&gt;google-api-python-client&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Run the script and authorize access&lt;/li&gt;
&lt;li&gt;Watch it clean your inbox automatically!&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Sample Output
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;📧 Analyzing 50 emails...

⚠️  SUSPICIOUS EMAIL (Score: 5)
   From: noreply@tempmail123.com
   Subject: URGENT! You Won $1,000,000...
   ✓ Moved to trash

Analysis complete: 12 spam emails removed
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Saves Time&lt;/strong&gt;: No more manual spam sorting&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Better Security&lt;/strong&gt;: Catches phishing before you see it&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Peace of Mind&lt;/strong&gt;: Your inbox stays clean automatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Learning Tool&lt;/strong&gt;: Great project to understand Gmail API&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Interested?
&lt;/h2&gt;

&lt;p&gt;This is a practical automation tool that can save you hours every week. Perfect for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Anyone overwhelmed by spam emails&lt;/li&gt;
&lt;li&gt;Developers wanting to learn Gmail API&lt;/li&gt;
&lt;li&gt;People looking to automate their workflow&lt;/li&gt;
&lt;li&gt;Security-conscious users&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Want the complete script?&lt;/strong&gt; Email me at &lt;strong&gt;&lt;a href="mailto:mentalist.ops@protonmail.com"&gt;mentalist.ops@protonmail.com&lt;/a&gt;&lt;/strong&gt; and I’ll send you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full Python source code&lt;/li&gt;
&lt;li&gt;Setup instructions&lt;/li&gt;
&lt;li&gt;Customization guide&lt;/li&gt;
&lt;li&gt;Troubleshooting tips&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;-----☕ Support My Work&lt;br&gt;
If you found this helpful and want to see more automation scripts and tutorials, consider supporting me!&lt;br&gt;
☕ Follow me on Ko-fi &lt;a href="https://ko-fi.com/mentalistops" rel="noopener noreferrer"&gt;https://ko-fi.com/mentalistops&lt;/a&gt;&lt;br&gt;
Your support helps me create more free tools and educational content for the developer community. Every coffee counts! &lt;/p&gt;

&lt;h2&gt;
  
  
  ⚠️ Disclaimer
&lt;/h2&gt;

&lt;p&gt;This script is provided for &lt;strong&gt;educational and personal use only&lt;/strong&gt;. By using this tool, you acknowledge that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You are solely responsible for any actions taken with this script&lt;/li&gt;
&lt;li&gt;The author is not liable for any damages, data loss, or misuse&lt;/li&gt;
&lt;li&gt;You must comply with Gmail’s Terms of Service and API usage policies&lt;/li&gt;
&lt;li&gt;Use at your own risk - always test on non-critical accounts first&lt;/li&gt;
&lt;li&gt;Review trashed emails regularly to prevent false positives&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;I decline all responsibility for improper use or any damages caused by this script.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What spam patterns do you encounter most? Let me know in the comments!&lt;/em&gt; 👇&lt;/p&gt;

</description>
      <category>python</category>
      <category>productivity</category>
      <category>security</category>
      <category>automation</category>
    </item>
    <item>
      <title>Automate Gmail Spam Detection with Python</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Fri, 09 Jan 2026 13:08:42 +0000</pubDate>
      <link>https://forem.com/mentalistops/automate-gmail-spam-detection-with-python-1lcc</link>
      <guid>https://forem.com/mentalistops/automate-gmail-spam-detection-with-python-1lcc</guid>
      <description>&lt;p&gt;&lt;em&gt;What spam patterns do you encounter most? Let me know in the comments!&lt;/em&gt; 👇&lt;/p&gt;

</description>
      <category>python</category>
      <category>productivity</category>
      <category>security</category>
      <category>automation</category>
    </item>
    <item>
      <title>WINDOWS SOS – NOW AVAILABLE IN EXTENDED VERSION</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Tue, 30 Dec 2025 18:17:18 +0000</pubDate>
      <link>https://forem.com/mentalistops/windows-sos-now-available-in-extended-version-24f7</link>
      <guid>https://forem.com/mentalistops/windows-sos-now-available-in-extended-version-24f7</guid>
      <description>&lt;p&gt;👋 Hi everyone!&lt;br&gt;&lt;br&gt;
After 140+ views and great feedback, I’ve released an &lt;strong&gt;extended version&lt;/strong&gt; of my PowerShell script &lt;em&gt;Windows SOS&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;What’s new?&lt;br&gt;
The new edition includes &lt;strong&gt;9 interactive diagnostic modules&lt;/strong&gt; to fix common Windows issues: BSOD, network, audio, updates, slow PC, printers, full disk, and more.&lt;/p&gt;

&lt;p&gt;What you get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full &lt;code&gt;.ps1&lt;/code&gt; script with interactive menu&lt;/li&gt;
&lt;li&gt;Usage guide (IT/EN)&lt;/li&gt;
&lt;li&gt;MIT License&lt;/li&gt;
&lt;li&gt;Ethical disclaimer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Available on Ko-fi for €19.99&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
👉 &lt;a href="https://ko-fi.com/mentalistops/shop" rel="noopener noreferrer"&gt;Get the extended version on Ko-fi&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks to everyone who supported the project! 🙏&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>automation</category>
      <category>codenewbie</category>
      <category>software</category>
    </item>
    <item>
      <title>I built a Python tool to hunt down Remote Access Trojans on Windows</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Mon, 29 Dec 2025 20:12:18 +0000</pubDate>
      <link>https://forem.com/mentalistops/i-built-a-python-tool-to-hunt-down-remote-access-trojans-on-windows-3ian</link>
      <guid>https://forem.com/mentalistops/i-built-a-python-tool-to-hunt-down-remote-access-trojans-on-windows-3ian</guid>
      <description>&lt;p&gt;Let’s be honest: Remote Access Trojans (RATs) are one of the most insidious threats on Windows machines. They hide in plain sight, persist across reboots, and often leave no obvious trace. So I built a tool to expose them.&lt;/p&gt;

&lt;p&gt;🔐 Introducing RAT Hunter – Pro Edition&lt;/p&gt;

&lt;p&gt;A portable Python script designed to scan your Windows system for signs of RAT activity, persistence mechanisms, and suspicious behaviors — all without installing anything.&lt;/p&gt;




&lt;p&gt;⚙️ What it does&lt;/p&gt;

&lt;p&gt;• 🧠 Analyzes autoruns, services, scheduled tasks, WMI events&lt;br&gt;
• 🕵️‍♀️ Flags suspicious executables, hidden startup entries, and stealthy persistence&lt;br&gt;
• 📦 Runs from terminal, USB, or recovery environment&lt;br&gt;
• 🧾 Outputs clean, readable results for forensic use&lt;/p&gt;




&lt;p&gt;🧰 Why I built it&lt;/p&gt;

&lt;p&gt;I wanted a tool that:&lt;/p&gt;

&lt;p&gt;• Works offline&lt;br&gt;
• Doesn’t rely on antivirus&lt;br&gt;
• Gives clear, actionable insights&lt;br&gt;
• Can be used by analysts, sysadmins, or curious users&lt;/p&gt;




&lt;p&gt;📦 What’s inside&lt;/p&gt;

&lt;p&gt;• &lt;code&gt;rat_hunter_pro.py&lt;/code&gt; – the main script&lt;br&gt;
• &lt;code&gt;README.txt&lt;/code&gt; – bilingual usage guide&lt;br&gt;
• &lt;code&gt;LICENSE.txt&lt;/code&gt; – MIT license&lt;br&gt;
• &lt;code&gt;DISCLAIMER.txt&lt;/code&gt; – ethical use only&lt;br&gt;
• &lt;code&gt;requirements.txt&lt;/code&gt; – no external dependencies&lt;/p&gt;




&lt;p&gt;🧪 Use cases&lt;/p&gt;

&lt;p&gt;• Forensic triage&lt;br&gt;
• OSINT investigations&lt;br&gt;
• Security audits&lt;br&gt;
• Personal system checks&lt;/p&gt;




&lt;p&gt;💸 Available on Ko-fi&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://ko-fi.com/mentalistops" rel="noopener noreferrer"&gt;https://ko-fi.com/mentalistops&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;🧠 Bonus&lt;/p&gt;

&lt;p&gt;No installation. No GUI. Just pure terminal power.&lt;br&gt;
If you want to know what’s really running on your system — this tool will tell you.&lt;/p&gt;

</description>
      <category>python</category>
      <category>security</category>
      <category>cybersecurity</category>
      <category>software</category>
    </item>
    <item>
      <title>I built a Windows diagnostic tool in Python to detect RATs, persistence, and suspicious logs</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Mon, 29 Dec 2025 19:50:27 +0000</pubDate>
      <link>https://forem.com/mentalistops/i-built-a-windows-diagnostic-tool-in-python-to-detect-rats-persistence-and-suspicious-logs-hmp</link>
      <guid>https://forem.com/mentalistops/i-built-a-windows-diagnostic-tool-in-python-to-detect-rats-persistence-and-suspicious-logs-hmp</guid>
      <description>&lt;p&gt;Hi Devs 👋&lt;/p&gt;

&lt;p&gt;Over the past few months, I’ve been building a series of lightweight diagnostic tools for Windows, designed for anyone who wants to analyze their system for anomalies, persistence techniques, or potential malware traces.&lt;/p&gt;

&lt;p&gt;🎯 System Hunter – Pro Edition is a modular Python suite that includes:&lt;/p&gt;

&lt;p&gt;• 🧠 Log Hunter – Scans system logs for critical or suspicious events&lt;br&gt;
• 🛡️ Persistence Hunter – Detects persistence mechanisms (Run keys, services, WMI)&lt;br&gt;
• 🧹 Cleanup Hunter – Removes temp files, suspicious executables, and RAT leftovers&lt;/p&gt;

&lt;p&gt;✅ No installation required&lt;br&gt;
✅ Human-readable output&lt;br&gt;
✅ MIT License + Ethical Disclaimer included&lt;/p&gt;

&lt;p&gt;📦 Available on Ko-fi:&lt;br&gt;
👉 &lt;a href="https://ko-fi.com/mentalistops" rel="noopener noreferrer"&gt;https://ko-fi.com/mentalistops&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;🧪 Designed for:&lt;/p&gt;

&lt;p&gt;• Personal forensic analysis&lt;br&gt;
• OSINT and digital investigations&lt;br&gt;
• Security audits on Windows systems&lt;/p&gt;

&lt;p&gt;💡 Feedback, suggestions, or forks are welcome!&lt;/p&gt;




&lt;p&gt;🔐 This tool is intended for ethical and responsible use only.&lt;br&gt;
Thanks for your support 🙏&lt;/p&gt;

</description>
      <category>python</category>
      <category>security</category>
      <category>cybersecurity</category>
      <category>github</category>
    </item>
    <item>
      <title>I built a free PowerShell tool to fix common Windows 11 issues (BSOD, network, audio, login, updates)</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Sat, 01 Nov 2025 14:46:17 +0000</pubDate>
      <link>https://forem.com/mentalistops/i-built-a-free-powershell-tool-to-fix-common-windows-11-issues-bsod-network-audio-login-5dfm</link>
      <guid>https://forem.com/mentalistops/i-built-a-free-powershell-tool-to-fix-common-windows-11-issues-bsod-network-audio-login-5dfm</guid>
      <description>&lt;h1&gt;
  
  
  🛠️ Windows SOS – A Free Troubleshooting Script for Windows 11
&lt;/h1&gt;

&lt;p&gt;Hey Devs 👋&lt;/p&gt;

&lt;p&gt;I’ve built something I wish existed years ago: a &lt;strong&gt;modular, interactive PowerShell script&lt;/strong&gt; that helps users fix the most common Windows 11 issues — without needing to be a tech expert.&lt;/p&gt;

&lt;p&gt;Introducing &lt;strong&gt;Windows SOS&lt;/strong&gt;, a free and open-source troubleshooting tool that covers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⚠️ BSOD (Blue Screen of Death)&lt;/li&gt;
&lt;li&gt;🌐 Network issues&lt;/li&gt;
&lt;li&gt;🔄 Windows Update failures&lt;/li&gt;
&lt;li&gt;🔇 Audio problems&lt;/li&gt;
&lt;li&gt;🔐 Login and PIN errors&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s designed to be simple, readable, and expandable. You can run it directly in PowerShell and get guided fixes with useful commands and tips.&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;Download the base version (free):&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/MentalistOps/MentalistOps/archive/refs/heads/main.zip" rel="noopener noreferrer"&gt;WindowsSOS v1.0 ZIP&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  [About me]
&lt;/h2&gt;

&lt;h2&gt;
  
  
  💡 Why I built this
&lt;/h2&gt;

&lt;p&gt;Too many users struggle with Windows errors that could be solved in minutes — if only they had the right guidance. I wanted to create a tool that’s:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Easy to use&lt;/li&gt;
&lt;li&gt;Safe to run&lt;/li&gt;
&lt;li&gt;Open to contributions&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔒 Want the extended version?
&lt;/h2&gt;

&lt;p&gt;The base version is free and public.&lt;br&gt;&lt;br&gt;
The &lt;strong&gt;extended version&lt;/strong&gt; includes modules for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🐢 Slow PC / CPU overload&lt;/li&gt;
&lt;li&gt;🖨️ Printer not detected&lt;/li&gt;
&lt;li&gt;💾 Disk full or unreadable&lt;/li&gt;
&lt;li&gt;🧼 System cleanup and maintenance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📬 If you're interested, contact me at:&lt;br&gt;&lt;br&gt;
&lt;code&gt;mentalistops [at] protonmail [dot] com&lt;/code&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 Connect with me
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/MentalistOps/MentalistOps/archive/refs/heads/main.zip" rel="noopener noreferrer"&gt;https://github.com/MentalistOps/MentalistOps/archive/refs/heads/main.zip&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;a href="https://github.com/MentalistOps/MentalistOps" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🧠 &lt;a href="https://mentalistops.webnode.it/contatti/" rel="noopener noreferrer"&gt;My website&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💰 &lt;a href="https://www.paypal.com/ncp/payment/VUWZ3AE85H6XL" rel="noopener noreferrer"&gt;Support the project&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading — feedback and contributions are welcome!&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>opensource</category>
      <category>automation</category>
      <category>software</category>
    </item>
    <item>
      <title>🛠️ QMR-Lite – Cognitive Recovery Toolkit for Windows 11 23H2</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Fri, 31 Oct 2025 13:15:43 +0000</pubDate>
      <link>https://forem.com/mentalistops/qmr-lite-cognitive-recovery-toolkit-for-windows-11-23h2-1n02</link>
      <guid>https://forem.com/mentalistops/qmr-lite-cognitive-recovery-toolkit-for-windows-11-23h2-1n02</guid>
      <description>&lt;p&gt;QMR-Lite is a modular PowerShell framework developed by MentalistOps to simulate the upcoming “Quick Machine Recovery” feature from Windows 11 24H2 — but fully compatible with earlier builds (21H2 to 23H2).🔧 Key Features:• Detects system instability (BSODs, crashes, critical events)&lt;br&gt;
• Backs up and restores system configurations&lt;br&gt;
• Auto-fixes common issues (Explorer, network, services)&lt;br&gt;
• Event monitoring with automated response&lt;br&gt;
• Fully documented, reversible, and offline-friendly&lt;br&gt;
📁 Structure:• &lt;code&gt;modules/&lt;/code&gt; – PowerShell scripts&lt;br&gt;
• &lt;code&gt;docs/&lt;/code&gt; – user guide&lt;br&gt;
• &lt;code&gt;.gitignore&lt;/code&gt;, &lt;code&gt;LICENSE&lt;/code&gt;, &lt;code&gt;README.md&lt;/code&gt;&lt;br&gt;
🔐 License: MIT&lt;br&gt;
💬 Feedback &amp;amp; requests: mentalistops [at] protonmail [dot] com&lt;br&gt;
💸 Support: GitHub: github.com/MentalistOps/QMR-Lite&lt;/p&gt;

&lt;p&gt;Hi everyone,&lt;br&gt;&lt;br&gt;
I’ve recently published &lt;strong&gt;QMR-Lite&lt;/strong&gt;, an open-source PowerShell framework designed for intelligent and modular recovery on Windows 10/11 systems (up to 23H2).&lt;/p&gt;

&lt;h3&gt;
  
  
  🔧 Included modules:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;bootcheck.ps1&lt;/code&gt; – Detects boot errors&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;restorepoint.ps1&lt;/code&gt; – Creates reversible restore points&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;configbackup.ps1&lt;/code&gt; – Saves user configuration files&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;quickfix.ps1&lt;/code&gt; – Fixes common issues&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;watchdog.ps1&lt;/code&gt; – Monitors critical system events&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📌 Key features:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;No installation required
&lt;/li&gt;
&lt;li&gt;Fully documented and reversible
&lt;/li&gt;
&lt;li&gt;Compatible with forensic environments, VMs, and live systems
&lt;/li&gt;
&lt;li&gt;Designed for sysadmins, advanced users, and digital investigators&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔗 GitHub crepository:
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/MentalistOps/QMR-Lite" rel="noopener noreferrer"&gt;https://github.com/MentalistOps/QMR-Lite&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  📥 Direct download (ZIP):
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/MentalistOps/QMR-Lite/archive/refs/heads/main.zip" rel="noopener noreferrer"&gt;Download QMR-Lite&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;💬 I’m actively seeking technical feedback and suggestions.&lt;br&gt;&lt;br&gt;
Feel free to test it in a sandbox or VM and share your thoughts!👋&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>opensource</category>
      <category>automation</category>
      <category>testing</category>
    </item>
    <item>
      <title>Introducing SysBrain: A Cognitive Automation Framework for Windows Power Users”</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Thu, 30 Oct 2025 18:20:08 +0000</pubDate>
      <link>https://forem.com/mentalistops/introducing-sysbrain-a-cognitive-automation-framework-for-windows-power-users-537</link>
      <guid>https://forem.com/mentalistops/introducing-sysbrain-a-cognitive-automation-framework-for-windows-power-users-537</guid>
      <description>&lt;p&gt;🧠 SysBrain – Cognitive Automation Framework for Windows&lt;/p&gt;

&lt;p&gt;SysBrain is a modular framework for intelligent automation and system optimization on Windows.&lt;br&gt;
Created by MentalistOps, it offers ethical, documented, and customizable solutions for advanced users, freelancers, and digital analysts.&lt;/p&gt;




&lt;p&gt;🔧 What makes SysBrain different?&lt;/p&gt;

&lt;p&gt;Unlike traditional debloat tools or static scripts, SysBrain adapts to the user’s context.&lt;br&gt;
It analyzes system behavior and proposes tailored actions based on user profiles like:&lt;/p&gt;

&lt;p&gt;• 🎮 Gamer&lt;br&gt;
• 🧑‍💼 Office user&lt;br&gt;
• 🕵️ Investigator / OSINT analyst&lt;br&gt;
• 🧘 Minimalist&lt;/p&gt;




&lt;p&gt;⚙️ Key Features&lt;/p&gt;

&lt;p&gt;• System optimization (RAM, CPU, startup)&lt;br&gt;
• Deep cleaning and resource management&lt;br&gt;
• Automation of repetitive tasks&lt;br&gt;
• Behavioral analysis and semantic logic&lt;br&gt;
• Modular scripts (PowerShell, Python)&lt;br&gt;
• Ethical design with full transparency&lt;/p&gt;




&lt;p&gt;📁 Repository Structure&lt;/p&gt;

&lt;p&gt;SysBrain/&lt;br&gt;
├── modules/&lt;br&gt;
├── profiles/&lt;br&gt;
├── docs/&lt;br&gt;
├── LICENSE&lt;br&gt;
└── README.md&lt;/p&gt;




&lt;p&gt;📬 Custom Requests&lt;/p&gt;

&lt;p&gt;Need a personalized module?&lt;br&gt;
Contact me directly:&lt;/p&gt;

&lt;p&gt;• 📧 Email: &lt;a href="mailto:mentalistops@protonmail.com"&gt;mentalistops@protonmail.com&lt;/a&gt;&lt;br&gt;
• 🌐 Website: &lt;a href="https://mentalistops.webnode.it/contatti" rel="noopener noreferrer"&gt;https://mentalistops.webnode.it/contatti&lt;/a&gt;&lt;br&gt;
• 💸 Support: &lt;a href="https://www.paypal.com/ncp/payment/VUWZ3AE85H6XL" rel="noopener noreferrer"&gt;https://www.paypal.com/ncp/payment/VUWZ3AE85H6XL&lt;/a&gt;&lt;br&gt;
• 🧑‍💻 GitHub &amp;amp; dev.to: &lt;a class="mentioned-user" href="https://dev.to/mentalistops"&gt;@mentalistops&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;🧠 Related Projects&lt;/p&gt;

&lt;p&gt;• SysSentinel → Active defense and threat monitoring&lt;br&gt;
• MentalistOps → Behavioral profiling and ethical OSINT&lt;br&gt;
• CyberMindConfigurator → Guided configuration tool (coming soon)&lt;/p&gt;




&lt;p&gt;“Automation is not just code. It’s context, ethics, and responsibility.”&lt;br&gt;
— MentalistOps&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>security</category>
      <category>opensource</category>
    </item>
    <item>
      <title>How I Diagnose PCs the Unconventional Way</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Mon, 27 Oct 2025 22:43:23 +0000</pubDate>
      <link>https://forem.com/mentalistops/how-i-diagnose-pcs-the-unconventional-way-2kom</link>
      <guid>https://forem.com/mentalistops/how-i-diagnose-pcs-the-unconventional-way-2kom</guid>
      <description>&lt;p&gt;“Smart people solve problems. Geniuses avoid them.”&lt;br&gt;
That’s not just a quote I live by—it’s the foundation of how I approach diagnostics.&lt;/p&gt;




&lt;p&gt;🔍 The Conventional Way (and Why I Don’t Rely on It)&lt;/p&gt;

&lt;p&gt;Most technicians run a few standard tools:&lt;/p&gt;

&lt;p&gt;• Task Manager for performance&lt;br&gt;
• SFC or DISM for system files&lt;br&gt;
• Antivirus scans&lt;br&gt;
• Maybe a third-party suite like CCleaner or Speccy&lt;/p&gt;

&lt;p&gt;These are fine for surface-level issues. But they don’t tell you why the system is behaving poorly. They treat symptoms—not causes.&lt;/p&gt;




&lt;p&gt;🧠 My Approach: Pattern Recognition + System Behavior&lt;/p&gt;

&lt;p&gt;I don’t just look at what’s broken. I look at how the system behaves under stress, over time, and in context.&lt;/p&gt;

&lt;p&gt;🔹 I analyze:&lt;/p&gt;

&lt;p&gt;• CPU load patterns: not just spikes, but idle behavior and thermal throttling&lt;br&gt;
• RAM usage trends: memory leaks, caching inefficiencies, and swap file abuse&lt;br&gt;
• Disk I/O latency: not just read/write speed, but how the OS interacts with storage&lt;br&gt;
• Network stack behavior: DNS resolution time, packet loss, and Winsock anomalies&lt;/p&gt;

&lt;p&gt;🔹 I use:&lt;/p&gt;

&lt;p&gt;• Custom scripts to flush, reset, and benchmark subsystems&lt;br&gt;
• Manual inspection of event logs and reliability history&lt;br&gt;
• My own scoring system to rate system health from 0 to 100&lt;/p&gt;




&lt;p&gt;🧪 I Don’t Just Diagnose—I Simulate&lt;/p&gt;

&lt;p&gt;I often simulate real-world stress:&lt;/p&gt;

&lt;p&gt;• Launching multiple apps with different memory profiles&lt;br&gt;
• Running background services to mimic startup load&lt;br&gt;
• Testing network behavior under VPN or proxy conditions&lt;/p&gt;

&lt;p&gt;This helps me catch issues that don’t show up in idle mode.&lt;/p&gt;




&lt;p&gt;🦾 Tools I Trust (and Sometimes Build)&lt;/p&gt;

&lt;p&gt;I use tools like:&lt;/p&gt;

&lt;p&gt;• &lt;code&gt;Sysinternals Suite&lt;/code&gt; for deep system inspection&lt;br&gt;
• &lt;code&gt;HWiNFO&lt;/code&gt; for hardware-level data&lt;br&gt;
• &lt;code&gt;CrystalDiskInfo&lt;/code&gt; for SMART diagnostics&lt;br&gt;
• And I’m learning Rust to build my own diagnostic utilities that go beyond what’s available&lt;/p&gt;




&lt;p&gt;🧠 MentalistOps Philosophy&lt;/p&gt;

&lt;p&gt;“I don’t fix what’s broken. I understand why it broke—and make sure it doesn’t happen again.”&lt;/p&gt;

&lt;p&gt;I don’t rely on automation alone. I combine intuition, experience, and technical depth to create a diagnostic process that’s tailored to each machine.&lt;/p&gt;




&lt;p&gt;👋 Final Thoughts&lt;/p&gt;

&lt;p&gt;If you’re a technician, developer, or just someone who wants to understand their system better—start thinking beyond the obvious.&lt;br&gt;
Look for patterns, not just problems.&lt;br&gt;
Build your own tools.&lt;br&gt;
Challenge the defaults.&lt;/p&gt;

&lt;p&gt;Because the real fix isn’t in the patch—it’s in the perspective.&lt;/p&gt;

&lt;p&gt;– MentalistOps 👋&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>tutorial</category>
      <category>opensource</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>I’m Not Like the Others: A Technical Autodidact Who Builds His Own Challenges</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Mon, 27 Oct 2025 22:29:50 +0000</pubDate>
      <link>https://forem.com/mentalistops/im-not-like-the-others-a-technical-autodidact-who-builds-his-own-challenges-gfj</link>
      <guid>https://forem.com/mentalistops/im-not-like-the-others-a-technical-autodidact-who-builds-his-own-challenges-gfj</guid>
      <description>&lt;p&gt;🧠 Introduction&lt;/p&gt;

&lt;p&gt;“I didn’t follow a traditional path. I didn’t collect certifications or degrees. What I did collect was curiosity, drive, and a deep love for evolution—especially in the world of technology.”&lt;/p&gt;




&lt;p&gt;🔧 Who I Am&lt;/p&gt;

&lt;p&gt;I’m an autodidact. I’ve spent years immersed in the world of tech and IT, driven by a passion that never fades. I specialize in advanced diagnostics, system security, and performance optimization, primarily on Windows, but I’ve also extended my tools and knowledge to macOS.&lt;/p&gt;




&lt;p&gt;🧨 Why I’m Not Like the Others&lt;/p&gt;

&lt;p&gt;Most technicians rely on commercial tools.&lt;br&gt;
I build my own.&lt;/p&gt;

&lt;p&gt;Most follow tutorials.&lt;br&gt;
I challenge them.&lt;/p&gt;

&lt;p&gt;Most solve problems.&lt;br&gt;
I design systems that avoid them altogether.&lt;/p&gt;




&lt;p&gt;🦾 Learning Rust: My Next Evolution&lt;/p&gt;

&lt;p&gt;Right now, I’m diving into the Rust programming language. Why? Because I want to build tools that are not only fast and efficient, but also safe, portable, and future-proof. Rust is helping me level up my skills and think differently about how I approach diagnostics and automation.&lt;/p&gt;




&lt;p&gt;🧠 The MentalistOps Philosophy&lt;/p&gt;

&lt;p&gt;“Smart people solve problems, but geniuses avoid them.”&lt;/p&gt;

&lt;p&gt;That’s the principle I build on.&lt;/p&gt;

&lt;p&gt;• Every problem is a puzzle worth solving&lt;br&gt;
• Every limitation is an invitation to grow&lt;br&gt;
• Every day is a chance to evolve through technology&lt;/p&gt;




&lt;p&gt;👋 Closing Thoughts&lt;/p&gt;

&lt;p&gt;I’m not here to follow trends.&lt;br&gt;
I’m here to create tools that redefine them.&lt;/p&gt;

&lt;p&gt;If you’re like me—driven by passion, evolution, and the thrill of building smarter systems—then welcome to the forge.&lt;/p&gt;

&lt;p&gt;– MentalistOps 👋&lt;br&gt;
👤 Author Bio &lt;/p&gt;

&lt;p&gt;MentalistOps – Self-taught technician and diagnostics enthusiast. Passionate about building smarter systems and evolving through technology. I don’t follow the manual—I write my own.&lt;/p&gt;

</description>
      <category>rust</category>
      <category>career</category>
      <category>tooling</category>
      <category>devjournal</category>
    </item>
    <item>
      <title>AutoFixer Lite: A Cross-Platform System Diagnostics Tool in Rust (Full Version Available Upon Request)</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Mon, 27 Oct 2025 13:24:43 +0000</pubDate>
      <link>https://forem.com/mentalistops/autofixer-lite-a-cross-platform-system-diagnostics-tool-in-rust-full-version-available-upon-5hcn</link>
      <guid>https://forem.com/mentalistops/autofixer-lite-a-cross-platform-system-diagnostics-tool-in-rust-full-version-available-upon-5hcn</guid>
      <description>&lt;h1&gt;
  
  
  🔧 AutoFixer Lite: A Cross-Platform System Diagnostics Tool in Rust
&lt;/h1&gt;

&lt;p&gt;Hey developers 👋&lt;br&gt;&lt;br&gt;
I'm excited to share &lt;strong&gt;AutoFixer Lite&lt;/strong&gt;, a lightweight system diagnostics tool written in &lt;strong&gt;Rust&lt;/strong&gt;, designed to run on both &lt;strong&gt;Windows 11&lt;/strong&gt; and &lt;strong&gt;macOS&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 What is AutoFixer?
&lt;/h2&gt;

&lt;p&gt;AutoFixer Lite is a command-line utility that helps you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📦 Check disk space usage&lt;/li&gt;
&lt;li&gt;🧠 List currently running processes&lt;/li&gt;
&lt;li&gt;🖥️ Run seamlessly on Windows and macOS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the &lt;strong&gt;lite version&lt;/strong&gt;, intended for basic diagnostics.&lt;br&gt;&lt;br&gt;
The &lt;strong&gt;full version&lt;/strong&gt; includes automatic fixes, logging, Linux support, and more — available &lt;strong&gt;upon request after donation&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🦀 Why Rust?
&lt;/h2&gt;

&lt;p&gt;Rust is fast, safe, and ideal for building reliable system tools.&lt;br&gt;&lt;br&gt;
AutoFixer leverages Rust’s cross-platform capabilities to deliver consistent performance across operating systems.&lt;/p&gt;




&lt;h2&gt;
  
  
  📦 Installation
&lt;/h2&gt;

&lt;p&gt;If you have Rust installed, you're ready to go:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
git clone https://github.com/your-username/autofixer-lite.git
cd autofixer-lite
cargo build --release
cargo run


Support the Project

If you’d like access to the full version or want to support future development:

• 💰 Donate: paypal.com/ncp/payment/VUWZ3AE85H6XL
• 📬 Contact: `mentalistops [at] proton [dot] mail [dot] com`


---

🧠 What’s Next?

AutoFixer is just getting started.
I’m working on an extended version with interactive CLI menus, advanced logging, and server diagnostics.
If you’re interested in testing, contributing, or accessing the full version — reach out!

Thanks for reading and supporting independent dev tools 🙌
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>opensource</category>
      <category>rust</category>
      <category>softwaredevelopment</category>
      <category>developer</category>
    </item>
    <item>
      <title>my ambitions</title>
      <dc:creator>MentalistOps</dc:creator>
      <pubDate>Mon, 27 Oct 2025 08:52:32 +0000</pubDate>
      <link>https://forem.com/mentalistops/my-ambitions-18g4</link>
      <guid>https://forem.com/mentalistops/my-ambitions-18g4</guid>
      <description>&lt;p&gt;Always open to discovering new languages ​​that help me build ethical and functional tools.&lt;br&gt;
I'm learning Rust because I want to write robust and fast system tools. I'm enjoying using Bash to automate processes on macOS and Linux, and I'm experimenting with Python to create more flexible CLIs.&lt;br&gt;
fn main() {&lt;br&gt;
    println!("Hello from Rust!");&lt;br&gt;
}👈&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>learning</category>
      <category>rust</category>
      <category>python</category>
    </item>
  </channel>
</rss>
