Skip to content

lemesevkirill/PasteLikeHuman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🧠 HumanizerTrayApp

HumanizerTrayApp is a small fan project built with Avalonia (.NET 8) for Windows and macOS.

It sits quietly in your system tray and — on click — processes your clipboard text, replacing all those smart quotes, fancy dashes, and typographic fluff introduced by ChatGPT, Word, Notion, and the like.

🔧 What it does

public static string ApplyAllRules(string input)
{
    return input
        .Replace("—", "-")     // em dash
        .Replace("–", "-")     // en dash
        .Replace("−", "-")     // math minus
        .Replace("«", """)    // guillemet left
        .Replace("»", """)    // guillemet right
        .Replace("“", """)    // double curly quotes
        .Replace("”", """)
        .Replace("‘", "'")     // single curly quotes
        .Replace("’", "'");
}

💻 Why it exists

ChatGPT and many text editors like to replace standard ASCII characters with typographically “correct” symbols — dashes, quotes, etc.

But in code, Markdown, YAML, CLI, and other structured formats — these break things or simply get annoying.

HumanizerTrayApp fixes that with one click:
copy → click → paste → done.

📎 Screenshot

screenshot

📫 Feedback

This is a personal side project.
But if you want to contribute rules or report a bug, open an issue or drop me a message at 'lemesev.kirill@gmail.com'

About

Because copy-pasting from ChatGPT shouldn’t scream “I’m not human!”

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages