Re: [Mono-dev] One more library for creating ncurses-like apps

2014-09-16 Thread elwood
Yes, ofc. Added to readme.md (see License anchor). On Tue, Sep 16, 2014 at 2:15 AM, Miguel de Icaza mig...@xamarin.com wrote: Ok, can you update your repo to list the license? On Mon, Sep 15, 2014 at 12:55 PM, elwood elwood...@gmail.com wrote: Ok, let it be MIT On Mon, Sep 15, 2014 at

[Mono-dev] a set of tests to find out the difference between .Net and Mono implementation

2014-09-16 Thread 何子杰Hzj_jie
hi, all,i am trying to move my code mainly vb.net from .net to mono, there are ~300 test cases, which can help to find out the difference between .Net and Mono implementation.if you are interesting, you can enlist the code from codeplex,

Re: [Mono-dev] One more library for creating ncurses-like apps

2014-09-16 Thread Juan Cristóbal Olivares
Hi: Do you accept pull requests? Some small fixes I would like to contribute: - There's a missing reference in the Xaml project (mono) to the JSIL.Meta assembly - There are few unused variables Regards On Sat, Sep 13, 2014 at 7:01 AM, elwood elwood...@gmail.com wrote: Hi! I'm developing my

Re: [Mono-dev] One more library for creating ncurses-like apps

2014-09-16 Thread elwood
Hi ! Yes, of course, if you want to create an issue or pull request, you can do this on github. About missing references I can say that mono solution may be outdated. If it is, I will refresh it (I develop using Visual Studio, and then, after solution being changed, I need to do synchronous

Re: [Mono-dev] One more library for creating ncurses-like apps

2014-09-16 Thread Juan Cristóbal Olivares
Great! I just have one recommendation. It would be nice if the comments are in English. Even when it's not my mother tongue either, it's the best way to get more people to understand your code and contribute. Regards. On Tue, Sep 16, 2014 at 7:54 AM, elwood elwood...@gmail.com wrote: Hi ! Yes,

Re: [Mono-dev] a set of tests to find out the difference between .Net and Mono implementation

2014-09-16 Thread Marek Safar
Hi, i tried it myself, and find out several issues, which are mainly against Mono 3.10 from development tree. Thanks for the analysis more comments inline. 1. GC thought GC.Collect() does not guarantee all the inaccessible objects are finalized and reclaimed, .Net implementation

Re: [Mono-dev] a set of tests to find out the difference between .Net and Mono implementation (Mono-devel-list Digest, Vol 113, Issue 25)

2014-09-16 Thread Jo Shields
On 16/09/14 12:31, Marek Safar wrote: Linux, it's not. i do not think this is a Mono issue, but will it be better to help set the execute permission if Process.Start calls a non-executable file? or at least provide a more friendly exception, current the error message is 'Cannot find the

Re: [Mono-dev] a set of tests to find out the difference between .Net and Mono implementation (Mono-devel-list Digest, Vol 113, Issue 25)

2014-09-16 Thread Nikita Tsukanov
If you really mean to execute an arbitrary file (Process.Start(foo.xlsx) will open foo.xlsx in Excel, on Windows, for example) then call /usr/bin/xdg-open thing - this is probably the most useful use-case, and is also valid when thing is a URL, opening in the default browser. AFAIK, xdg-open is

Re: [Mono-dev] One more library for creating ncurses-like apps

2014-09-16 Thread Miguel de Icaza
I added this to the web site. That said, that page is really out of date. On Sat, Sep 13, 2014 at 6:01 AM, elwood elwood...@gmail.com wrote: Hi! I'm developing my fun project - https://github.com/elw00d/consoleframework . It is library for creating TUI apps and can be run in Mono. I see

Re: [Mono-dev] a set of tests to find out the difference between .Net and Mono implementation (Mono-devel-list Digest, Vol 113, Issue 25)

2014-09-16 Thread 何子杰Hzj_jie
Yes, in the scenario to start a URL or an xls file, the behavior is correct. But think about a different scenario, the logic extract a set of files from a gzip package to the hard disk, start the executable file in the package, the Process.Start will fail. And except for some tricks, dev cannot

Re: [Mono-dev] a set of tests to find out the difference between .Net and Mono implementation

2014-09-16 Thread 何子杰Hzj_jie
Thank you Marek, 1. GC It's do tricky, briefly WeakReference an object, and call GC.Collect() and GC.WaitForPendingFinalizers() for several times 3 in my case , in .Net, the WeakReference will be invalid. in Mono, I did not see the same behavior. I agree your point, there should be no

Re: [Mono-dev] a set of tests to find out the difference between .Net and Mono implementation

2014-09-16 Thread Jonathan Pryor
On Sep 16, 2014, at 6:10 AM, 何子杰Hzj_jie hzj_...@hotmail.com wrote: 1. GC thought GC.Collect() does not guarantee all the inaccessible objects are finalized and reclaimed, .Net implementation usually be able to delete all the inaccessible objects. impacts, delegate_pinning_test, it make sure

Re: [Mono-dev] One more library for creating ncurses-like apps

2014-09-16 Thread elwood
Agree, it is good point. Usually I try to write comments in english, but sometimes it is very hard to me to translate russian precisely ) So, I think, I will translate russian comments to english in background mode, and I hope eventually 100% will be english. Thank you for feedback. On Tue, Sep

Re: [Mono-dev] Show thread names with ps or top?

2014-09-16 Thread BlueWall
On Wed, Mar 19, 2014 at 4:01 PM, mickeyf lt;mickey@gt; wrote: I can show the threads associated with my process using ps or top, but not their names. Should I expect to be able to show the names of threads that were named in mono using myThread.Name = whatever? If so, how? Or is this

Re: [Mono-dev] Show thread names with ps or top?

2014-09-16 Thread Zoltan Varga
Hi, It should be in mono 3.6.0 and later versions. Zoltan On Tue, Sep 16, 2014 at 5:59 PM, BlueWall jam...@bluewallgroup.com wrote: On Wed, Mar 19, 2014 at 4:01 PM, mickeyf lt;mickey@gt; wrote: I can show the threads associated with my process using ps or top, but not