TextAnalysisTool.NET(textanalysistool.github.io) |
TextAnalysisTool.NET(textanalysistool.github.io) |
Is a good Linux command line tool in the same genre
It is also a good OS-X/FreeBSD command line tool as well.
My guess is that it's aimed more at the humanities. Hence the GUI. My experience: in the world of humanities text analysis, there are just a ton of Java programs which were funded by some academic grant. Mostly they are closed source, not updated, might have a horrible GUI, and the website is always written in 8 point font.... Don't hate them for what they are....
https://superuser.com/questions/706761/textanalysistool-net-...
Not to mention, non tech people will now be able to use what once could’ve only been done with cryptic regex.
If you just want to change the format it works. If you need more than programming skills it seems too fail duo to the amount of text.
E.g. if you have a list of items and want ChatGPT to generate a meta field which it cannot generate using simple python code it stops after 10 to 20 elements.
Thus at least the cloud version doesn't work so well here.
I also wanted it to help me fill out my i18n file with translations and plural forms. Even thought he got every word correct i needed to split it into multiple requests. Not sure if the api would have worked better (used the web frontend).
For the plural forms I finally added them myself as it was way faster for my natural language than copy pasting all the small chunks. Really hoped for more help there.
> I open-source pretty much all my work, but TextAnalysisTool.NET is an exception due to a variety of historical reasons. Sorry about that!
ETA2: Would the downvoter care to explain why? Genuinely puzzled.
Perhaps it might be[0]?
I'm not quite sure how I feel about that however... :-D
What's wrong with this? Genuine question.
Modern .NET is fully open-source with a permissive MIT licence. This includes the compiler and analysers infrastructure (Roslyn), the package manager (Nuget), and even the shell language (PowerShell).
It is a superb alternative to Java, Go, and similar languages. Why is using .NET on Linux or MacOS such a weird thing?
In my experience, is as great as any other backend stack for UNIX. But, hey! If anyone wants to ban a piece of software on their systems for whatever random reason, they're free to do that. Luckily they have tons of alternatives from companies with great sense of ethics (Go, Swift, Java, ...)
Love the sarcasm here, heh.
Deploying on Debian Linux behind a reverse proxy.
It's a comfy life. Everything (more so than the Java ecosystem) just works.
That said, I still have that nagging fear that Microsoft will do a Microsoft in some way and I'll be forced back onto Windows with all its attendant horrors.
The current implementation is not as good as what you get from javascript world.
1. https://www.theverge.com/2021/10/22/22740701/microsoft-dotne...
Some other concerns are raised here. E.g. I wasn't aware that the debugger was licenced restrictively and not under the same permissive licence as the rest of .NET Core.
Well I am quite far into this project using .NET. Hopefully it doesn't get worse.
Running .net code on Linux is fine, though.
This is vsdbg (which comes with Visual Studio 2022 and the Microsoft-provided binary of VS Code).
There are alternatives like OmniSharp[1], the debugger shipped with JetBrains Rider, and Samsung's netcoredbg[2].
I've been using Omnisharp for ages, but I could never get netcoredbg working.
Last time I tried te integration with emacs-dap it kept segfaulting for no obvious reason.
But I may give it another try now!