Project ideas from Hacker News discussions.

Windows 11 Notepad to support Markdown

📝 Discussion Summary (Click to expand)

1. Notepad is no longer a “plain‑text” editor
Users lament that the new Windows 11 Notepad now renders Markdown, shows a Copilot sidebar, and even requires a Microsoft account.

“Notepad is supposed to be a bare bones editor – where you go when everything else fails.” – nnevatie
“The new workflow will be ‘AI, I need to view this text file and add some words to it.’” – zombot

2. Security is a major concern
The update has exposed a host of vulnerabilities, from supply‑chain attacks to a CVE‑2026‑20841 RCE that can be triggered by a malicious Markdown link.

“An attacker could trick a user into clicking a malicious link inside a Markdown file opened in Notepad.” – password4321
“The new Notepad app Remote Code Execution Vulnerability” – password4321

3. Lightweight, “no‑frills” editors are still king
Many users prefer Notepad++, VS Code, Emacs, or even terminal editors over the bloated Windows version.

“Notepad++ is great, though they have a dubious habit of dumping political messages on releases.” – somenameforme
“I use VS Code, it is quite quick when you disable all extensions.” – SamuelAdams

4. Political messaging in open‑source tools is divisive
Notepad++’s occasional political banners have sparked debate about whether developers should embed opinions in free software.

“They have a selective political stance, and it feels risky to give them access to my machine.” – cogman10
“If software is a personal creative expression, you must be prepared for people who don’t like your political views.” – bigstrat2003

5. User experience has deteriorated
Performance regressions, confusing UI changes, and mandatory features (Copilot, auto‑save) frustrate users who relied on the old, instant‑on editor.

“The new Notepad is hilariously buggy… it refuses to open files of a certain size.” – 0cf8612b2e1e
“I never figured out how to disable the Copilot button, and it keeps popping up.” – tom_

6. Microsoft’s strategy is seen as “bloat‑ification” and loss of control
Critics argue that Microsoft is turning a simple tool into a marketing platform, pushing AI, and removing the original lightweight experience.

“Microsoft is trying to make the OS a platform for AI, not a simple text editor.” – steve1977
“If Microsoft really wanted a built‑in text editor that had features Notepad didn’t, they should have made a second application rather than ruining the minimalist one.” – CivBase

These six themes capture the core of the discussion: the shift in Notepad’s purpose, security fallout, the continued demand for lightweight editors, the controversy over political content, user‑experience pain points, and the broader critique of Microsoft’s product‑management choices.


🚀 Project Ideas

Portable Minimal Text Editor (PMTE)

Summary

  • A tiny, dependency‑free Windows executable that behaves like classic Notepad but with modern conveniences (UTF‑8, LF/CRLF toggle, tab‑width setting, undo granularity).
  • Solves the pain of losing a reliable, lightweight editor after the Windows 11 update and the need to run it on locked‑down machines or USB sticks.
  • Core value: “One click, no install, no bloat, no AI, no politics.”

Details

Key Value
Target Audience Windows users who need a quick, reliable plain‑text editor on any machine (including corporate, sandboxed, or legacy systems).
Core Feature Win32 API‑based editor with optional line‑ending toggle, tab‑width, and granular undo.
Tech Stack C++17, Win32 API, minimal third‑party libs (none).
Difficulty Medium (requires careful Win32 coding, packaging).
Monetization Hobby

Notes

  • “I need a plain text editor that works on a library computer” – many commenters lament the loss of classic Notepad.
  • The tool can be dropped onto a USB stick and run without admin rights, addressing the “no installation” frustration.
  • The small binary (~200 KB) keeps the “bare‑bones” promise that users love.

AI Feature Toggle Utility (AFTU)

Summary

  • A lightweight Windows utility that scans and disables AI‑related features (Copilot, auto‑correct, smart‑quotes) in built‑in apps like Notepad, Edge, and Office.
  • Addresses the “AI is shoved into everything” and “I want to disable Copilot” pain points.
  • Core value: “Turn off the unwanted AI with a single click.”

Details

Key Value
Target Audience Windows 10/11 users, IT admins, privacy‑conscious individuals.
Core Feature GUI to toggle registry keys and app settings that enable/disable AI features.
Tech Stack C# (.NET 6), Windows Forms/WPF, PowerShell scripts for registry edits.
Difficulty Low (mostly registry manipulation).
Monetization Hobby

Notes

  • “I never want to see Copilot pop up in Notepad” – a common complaint.
  • The tool can be distributed as a portable exe, making it usable in restricted environments.
  • Provides a quick “de‑bloat” solution without uninstalling apps.

Markdown Previewer (MDP)

Summary

  • A small, cross‑platform desktop app that renders Markdown files in a clean, syntax‑highlighted preview window.
  • Solves the frustration of having to open Markdown in a full editor or browser, and the lack of a native viewer.
  • Core value: “Instant, distraction‑free Markdown viewing.”

Details

Key Value
Target Audience Developers, writers, documentation teams who work with Markdown.
Core Feature Single‑window preview with live reload, syntax highlighting, and optional copy‑to‑clipboard.
Tech Stack Rust + Tauri (WebView2), minimal dependencies.
Difficulty Medium (embedding WebView, handling live reload).
Monetization Hobby

Notes

  • “I want to read a .md file without the editor’s UI” – many commenters want a lightweight viewer.
  • The app can be launched via context menu or drag‑and‑drop, fitting into existing workflows.
  • No heavy Electron bundle; keeps the footprint small.

Lightweight Notepad++ Alternative (LNA)

Summary

  • An open‑source, Windows‑only editor inspired by Notepad++ but stripped to essential features: syntax highlighting, line‑ending support, undo/redo, and a plugin system that is opt‑in.
  • Addresses the “Notepad++ is too feature‑filled” and “political messages in releases” concerns.
  • Core value: “A clean, customizable editor without the baggage.”

Details

Key Value
Target Audience Windows users who need a code‑friendly editor but dislike Notepad++’s auto‑updates and political messages.
Core Feature Scintilla‑based editor with optional plugin loader, no auto‑update, no political banners.
Tech Stack C++ (Qt or wxWidgets), Scintilla, Git for version control.
Difficulty Medium‑High (GUI, plugin architecture).
Monetization Hobby (open source).

Notes

  • “I want a Notepad++‑style editor that doesn’t spam me with political messages” – a recurring theme.
  • The project can ship a signed binary and a simple installer, ensuring trust.
  • Plugin system allows users to add features only if they want them.

Secure Sandbox Editor (SSE)

Summary

  • A sandboxed text editor that runs inside a lightweight container (Windows Sandbox or Docker) to isolate the editing process from the host.
  • Meets the need for secure editing on corporate machines where installing third‑party software is restricted.
  • Core value: “Edit safely, no risk of malware or data leakage.”

Details

Key Value
Target Audience IT departments, security‑aware users, corporate environments.
Core Feature Editor (e.g., Notepad++ or LNA) launched inside a sandbox with read‑only file access, auto‑cleanup.
Tech Stack Docker (Windows containers), PowerShell scripts, optional GUI launcher.
Difficulty Medium (container orchestration, file sharing).
Monetization Hobby (open source).

Notes

  • “I need to edit a file on a locked‑down machine” – many commenters face this restriction.
  • The sandbox ensures that any malicious code in the editor cannot escape to the host.
  • The tool can be distributed as a single script that sets up the sandbox and launches the editor.

Command‑Line Text Editor with Syntax Highlighting (CTE)

Summary

  • A single‑binary, cross‑platform CLI editor (built in Rust) that supports syntax highlighting, line‑ending conversion, and a granular undo stack.
  • Addresses the “I want a terminal editor that works on Windows, Linux, and macOS” and “I need a lightweight editor for quick notes” pain points.
  • Core value: “Fast, portable, no GUI, no bloat.”

Details

Key Value
Target Audience Developers, sysadmins, power users who prefer terminal tools.
Core Feature TUI editor with syntax highlighting, configurable keybindings, undo/redo, line‑ending toggle.
Tech Stack Rust, termion/crossterm, syntect for syntax highlighting.
Difficulty Medium (TUI development, cross‑platform build).
Monetization Hobby

Notes

  • “I want a lightweight editor that works in a terminal” – a common request.
  • The binary can be distributed via Cargo or pre‑built binaries, making it easy to drop into any environment.
  • The editor can be used in Windows Sandbox or on a USB stick, satisfying the “no install” requirement.

Read Later