Category: TransGlot
-
Inspired by Command-Line Utilities- part 2- implementation
The translation of Evan Hahn’s blog post utilities to powershell took me in total 4 hours of vibe coding. Notes: I did not give the AI the code, but the description of the tool I have put each category into a special file I haven’t implemented all – because some were pretty useless for me…
-
Inspired by Command-Line Utilities- part 1–idea
I recently stumbled upon Evan Hahn’s blog post about his collection of command-line utilities, and I have to say—I’m genuinely impressed. What Makes These Tools So Impressive? The brilliance isn’t in the complexity of these scripts. It’s in their simplicity and practicality. Evan has created dozens of small utilities that solve real, everyday problems: Clipboard…
-
Conclusions: Translating fp-filters from TypeScript to C# with AI Assistance
1. AI Accelerates Porting, but Human Oversight Is Essential AI tools (GPT-4, GPT-5, Claude, Copilot, CodeRabbit) greatly speed up translation and refactoring, but human review is crucial for correctness, especially for edge cases and build issues. 2. Iterative Improvements Work Best Incremental changes—such as improving code coverage, refactoring namespaces, and enhancing documentation—yield better results than…
-
Adding Linq functions
LINQ is a powerful feature in C#, and this post showcases its integration into filter tests. By adding LINQ-friendly overloads and corresponding BDD tests, the filters became more versatile and idiomatic for C# developers. I give the general instruction that, << for any function with 2 parameters, add a function that can be used in…
-
Converting from https://github.com/Oaxoa/fp-filters – generate
History of how I ported https://github.com/Oaxoa/fp-filters to csharp So to port from Javascript to CSharp I followed those steps Clone the original project – easy Open in VSCode – easy Start discussing with GPT4.1 . Easy enough – see Whole discussion Verifying the results. This was the difficult part. So in the time span of…
-
TransCSharpGlot programming
History of how I ported https://github.com/Oaxoa/fp-filters to csharp This is my first attempt to utilize AI to translate from a programming language to another . To be easy, I choose the npm package https://github.com/Oaxoa/fp-filters to be translated to C# nuget package . It could bring some benefits to C# programmer to replace var numbers =…