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....
TextAnalysisTool.NET
31–40 of 45 posts
Re: TextAnalysisTool.NET
#32Earlier quoted context omitted.
> (Not .NET I should say ;)) Perhaps it might be[0]? I'm not quite sure how I feel about that however... :-D 0 - https://learn.microsoft.com/en-us/dotnet/core/install/
Everyone has autonomy over their own system. Who are we to judge if they want to do something like that.
Re: TextAnalysisTool.NET
#33Earlier quoted context omitted.
Everyone has autonomy over their own system. Who are we to judge if they want to do something like that.
> do something like that 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?
Running .net code on Linux is fine, though.
Re: TextAnalysisTool.NET
#34Earlier quoted context omitted.
> do something like that 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?
Developing a .NET CRUD webapp on Mac using Rider, ASP.NET + EF Core and PgSQL. 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...
Re: TextAnalysisTool.NET
#35Earlier quoted context omitted.
There is however no indication if it failed on a line when using ChatGPT, it could provide you with a slightly incorrect result.
Yeah that's always been a fear but I always dog food and I've had no issues yet
Re: TextAnalysisTool.NET
#36Earlier quoted context omitted.
Everyone has autonomy over their own system. Who are we to judge if they want to do something like that.
> do something like that 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?
Re: TextAnalysisTool.NET
#37Earlier quoted context omitted.
> do something like that 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?
As far as I know the .net debugger infrastructure is not open source, so unless you are happy to stay within the confines of VSCode, I think that your options are pretty limited for stepping through your code. 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].
Re: TextAnalysisTool.NET
#38Earlier quoted context omitted.
> do something like that 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?
As far as I know the .net debugger infrastructure is not open source, so unless you are happy to stay within the confines of VSCode, I think that your options are pretty limited for stepping through your code. Running .net code on Linux is fine, though.
Re: TextAnalysisTool.NET
#39Earlier quoted context omitted.
As far as I know the .net debugger infrastructure is not open source, so unless you are happy to stay within the confines of VSCode, I think that your options are pretty limited for stepping through your code. Running .net code on Linux is fine, though.
> the .net debugger infrastructure is not open source 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]. [1]: https://github.com/OmniSharp [2]: https://github.com/Samsung/netcoredbg
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!