Re: [Mono-list] Mono developer needed

2010-03-29 Thread Miguel de Icaza
Hello, > If you are interested, please contact me ASAP at 425.274.4530 and I > will then send you the list of bugs that we have. Did you file those bugs in Bugzilla? Just so we can help coordinate tracking the bug fixes? Miguel. ___ Mono-list mail

Re: [Mono-list] FastCGI Nginx web page update

2010-03-24 Thread Miguel de Icaza
Hello, > Hi folks, I have noticed that page about running mono stuff on Nginx > webserver on mono project website > (http://www.mono-project.com/FastCGI_Nginx) is kinda obsolete so if > there is someone who maintains the website he can update it based on > my blog post about Running Mono ASP.NET

Re: [Mono-list] gsharp crashes on key pres

2010-03-24 Thread Miguel de Icaza
Hello, Your gsharp does not match the Mono.CSharp assembly, you have Mono Tools from 2.6 installed, but you have Mono 2.4 as your runtime. > When I run gsharp, it starts, but crashes the moment I start to type. > > awill...@linux-yu4c:~> gsharp > ** (gsharp:21524): WARNING **: Missing method

Re: [Mono-list] Considering to move to Mono

2010-03-22 Thread Miguel de Icaza
Hello, Most things that you listed work, some you will need to test yourself: > - RESTful webservice, and would be nice to have the new UriTemplates of .NET > 3.5 SP1. This one; Not clear what this even is. > - The service should work as : ConcurrencyMode=ConcurrencyMode.Multiple, > Insta

Re: [Mono-list] Moonlight Support Windows Phone 7

2010-03-22 Thread Miguel de Icaza
> Suggestion is to allow u to use Linux or a Mac to write Windows Phone 7 apps > in MonoDevelop It is not a bad idea, but there are a few challenges: * Lack of simulator to test the results * Lack of a physical device today to test the results Perhaps in the future. _

Re: [Mono-list] Monovation: Assembly Injection into Live Processes

2010-03-22 Thread Miguel de Icaza
> I read http://tirania.org/blog/archive/2008/Sep-29.html this article by > Miguel on attaching an assembly into a live mono process. How is this any > different to attaching a DLL to a running process? I do this already, but > once the DLL is attached, it can't be unloaded without using an AppDo

Re: [Mono-list] Moonlight Support Windows Phone 7

2010-03-22 Thread Miguel de Icaza
> I'm gonna ask the question :-) > > Will Moonlight support Windows Phone 7 dev just like MS Siverlight does? Since Windows 7 only runs managed code and not native code, Moonlight can not be ported to the Windows 7 phone. It also makes very little sense to port Moonlight to it, as you have the f

Re: [Mono-list] Using Tao with mono

2010-03-22 Thread Miguel de Icaza
> OpenTK looks neat but one of the nifty things about Tao was that it > aimed to provide XNA API compatibility. This is news to me. Perhaps Mono.XNA was using Tao, but I do not believe that Tao ever ventured into the XNA world. Miguel ___ Mono-list m

Re: [Mono-list] DLR solutions for Javascript/ECMAScript

2010-03-04 Thread Miguel de Icaza
Hello, Here they are: * Script for .NET (http://blogs.remobjects.com/blogs/ck/2010/02/23/p1175) This seems to be the most complete. * IronJS (http://github.com/fholm/IronJS) New fresh effort * Jint (http://jint.codeplex.com/ my bad, this one is not DLR-based, but an interpreter)

Re: [Mono-list] TweetSharp Failing

2010-03-03 Thread Miguel de Icaza
> Please let me know if this is a bug and I'll file a report with a test > case using TweetSharp. The smaller the test case, the better. Please file the most simple program (ideally without a dependency on TweetSharp) that will show the failure on Mono, but success on Windows. miguel _

Re: [Mono-list] Powershell over Linux

2010-03-01 Thread Miguel de Icaza
> > PowerShell 2.0 allow to work on remote computer using WinRM. This service > is > built on a DMTF standard WS-Management. According to wikipedia Novell is > working on a Suse version of this standard. > None of that is part of Mono. But if someone wants to write that code, I wont stop them ;-)

Re: [Mono-list] Powershell over Linux

2010-03-01 Thread Miguel de Icaza
> > Google gives me a project from Sources Forges called PASH, but its seems to > be unactive since 2008. > > Any newes ? > That is about right; That project needs a new maintainer that would take it forward. On the other hand, when I talk to users of PowerShell, it seems that a major driver fo

Re: [Mono-list] Performance benchmark

2010-02-28 Thread Miguel de Icaza
n May of 2004 where Atsushi and Uma were discussing all the pending failures in the test suite, and Atsushi set out to fix both mscorlib as well as System.Data. Those correspond to the changes of May 11th 2004. On Sun, Feb 28, 2010 at 4:21 PM, Miguel de Icaza wrote: > I modified my local cop

Re: [Mono-list] Performance benchmark

2010-02-28 Thread Miguel de Icaza
I modified my local copy to use the unmanaged double to decimal conversion, these are the results: Trunk, with the current implementation: mono$ mono 5.exe first=00:00:01.9547310 decimal=00:00:00.7654980 justpow=00:00:00.1711550 second=00:00:01.6576570 Combined=00:00:03.509 Trunk, with local

Re: [Mono-list] Performance benchmark

2010-02-28 Thread Miguel de Icaza
> > I looked a little bit into this, and although the above looks > computationally intensive, in Mono the above goes through vast paths of GC > bound operations as our implementation for the Decimal (double) sadly goes > through a very inefficient code path. It allocates strings, formats > strin

Re: [Mono-list] Performance benchmark

2010-02-28 Thread Miguel de Icaza
> > > I include my sample. > This time for real using System; class X { static void Main () { var start = DateTime.UtcNow; decimal d = 0; double f; for (int ct = 0; ct < 100; ct++) d = Convert.ToDecimal(Math.Pow(ct, 4)); Console.WriteLine ("first={0}", DateTime.UtcNow -start

Re: [Mono-list] Performance benchmark

2010-02-28 Thread Miguel de Icaza
Hello, First, some stupid Math calculations: > >for (int ct = 0; ct < 100; ct++) >{ >decimal d = > Convert.ToDecimal(Math.Pow(ct, 4)); >d = > Convert.

Re: [Mono-list] Cannot run C# WinForms on Mac OS X

2010-02-23 Thread Miguel de Icaza
Hello, Please run the program `mono-test-install' which will make some common checks on your system to ensure that things are properly configured. > Hi, > > I'm new to Mac and Mono. I've used Unix but it was a while ago. I've > been developing using .Net for about a year, programming for ma

Re: [Mono-list] F# support on mono, performance

2010-02-02 Thread Miguel de Icaza
> Mono runs on s390x, IA64 and HPPA but LLVM does not. However, LLVM has code > gens for PowerPC 64, Thumb, CellSPU, PIC16, MSP430, SystemZ and XCore but > Mono does not. You are confused. s390x is SystemZ. Mono also supports PowerPC32 and PowerPC64 and has support for ARM, Thumb is just a v

Re: [Mono-list] Building mono in release mode

2010-02-01 Thread Miguel de Icaza
Hello, > We were wondering if when building mono does it build alll the base case > library dll's in release mode. THere was a question about this given if > there is an exception , in the stack trace we see full line numbers in the > base class libraries which you would only see if its built in d

Re: [Mono-list] F# support on mono, performance

2010-02-01 Thread Miguel de Icaza
> I recognize that you are targeting mono for embedded devices (i.e. > iphone/ipad, etc), so want to control the footprint.For the niche > that represents science, finance, however, we "selfishly" are most > interested in performance ;)So am looking forward to strides in > this area with m

Re: [Mono-list] mono performance, 20x differential with Java (what am i doing wrong)

2010-02-01 Thread Miguel de Icaza
Hello, > > Feel free to contribute the changes required to remove the limitations > > on when/where mono performs TCO. That would allow you to contribute F# > > patches if you wish. > I'm intrigued - why say that? I mean - what's the point? What are you > trying to achieve, really? Because i

Re: [Mono-list] mono performance, 20x differential with Java (what am i doing wrong)

2010-01-29 Thread Miguel de Icaza
> Thanks. I can get by with "unsafe" for C# code. That said, I am unsure if > I will have any opportunities to do this in the context of F#.Is it > possible to turn off array bounds checking from VM args for my long running > stuff? The patch I included removes all bounds checking from

Re: [Mono-list] mono performance, 20x differential with Java (what am i doing wrong)

2010-01-29 Thread Miguel de Icaza
Hello Jonathan, We were recently investigating some work on this area and there are a couple of things that you can do to improve the execution speed for computationally intensive code: * Compile Mono using the LLVM backend, I strongly recommend that you use Mono from SVN wh

Re: [Mono-list] Help in dealing with Mono/.NET PInvoke issue

2010-01-12 Thread Miguel de Icaza
Hello, > Sorry, I just realized that I have been abusing the ASCX term. > > What I'm calling ASCX are actually simple System.Windows.Forms.UserControl > classes. For example: > > public partial class ascx_LogViewer : UserControl Those are supported just fine. The only problem is when

Re: [Mono-list] Help in dealing with Mono/.NET PInvoke issue

2010-01-11 Thread Miguel de Icaza
Hello, > (see screenshot of it running here http://bit.ly/84oIqn (with > MonoDevelop on the background)) I am not sure what an ASCX control is, is that some sort of ASP.NET control hosted on a browser? > Basically what I need is: > * WinForm environment similar with VisualStudio or MonoDev

Re: [Mono-list] Help in dealing with Mono/.NET PInvoke issue

2010-01-08 Thread Miguel de Icaza
d contact the authors of the Dock and have them remove the Win32 dependency, but chances are, it is not really easy to do. > > Dinis Cruz > > On 8 Jan 2010, at 21:36, Miguel de Icaza wrote: > > > Hello, > > > >> I've just checked-in the code that cont

Re: [Mono-list] Help in dealing with Mono/.NET PInvoke issue

2010-01-08 Thread Miguel de Icaza
Hello, > I've just checked-in the code that contains this project, so now all > relevant source code is on the O2Platform sourcecode You will likely need to find an alternative to this widget (the DockPanel) as the code has some 24 P/Invokes, and chances are that the code depends on those calls t

Re: [Mono-list] SIGSEGV Error with MarshalByRefObject implementing a generic interface

2010-01-08 Thread Miguel de Icaza
Hello, I have filed the bug: https://bugzilla.novell.com/show_bug.cgi?id=569390 > yes, i know, i should do this > but my last error report was not recognized at all :-((so i tried the forum > this time:confused: > > > > Rodrigo Kumpera wrote: > > > > Please file a bug report on t

Re: [Mono-list] monodoc.dll looking for missing method in mscorlib.dll

2009-12-29 Thread Miguel de Icaza
Hello, I got a similar error shortly before I left on vacation. The problem was that I somehow upgraded parts of Mono, but not all. The fix is to force the upgrade on all packages from the same repo. But I forget what I did to fix it. ___ Mo

Re: [Mono-list] Novell.Directory.Ldap

2009-12-14 Thread Miguel de Icaza
Hello, > Accept LDAP Certificate? [Y]: > Failed (Get Certificate) > Connecting to ldaps://127.0.0.1/... > ** > ERROR:mini-sparc.c:1245:emit_pass_other: code should not be reached > Stacktrace: > >at Novell.Directory.Ldap.Connection.writeMessage > (Novell.Directory.Ldap.Message) <0x>

Re: [Mono-list] Thread Pool issues

2009-12-11 Thread Miguel de Icaza
Hello, > The problem is we have a web service using mod_mono 2.4.2.3 on Apache > 2.2.13. The problem occurs when a lot of simultaneous web requests come in, > and/or we spawn a lot of background threads (by "a lot" I mean about 20-25). > At this time, one of our web service threads gets a Thread

Re: [Mono-list] Novell.Directory.Ldap

2009-12-11 Thread Miguel de Icaza
Hello, I think you are going to need to ask the iFolder people where they are getting their Novell.Directory.Ldap assembly from, it is definitely not the one that we ship with mono as our versions do not match this one: > ** (/usr/local/bin/SimiasServerSetup.exe:25211): WARNING **: The > fo

Re: [Mono-list] Novell.Directory.Ldap

2009-12-09 Thread Miguel de Icaza
You do not have a full Mono setup, that is why you get the errors about the Novell.Ldap librayr. > Hello, > > I have posted this message yesterday but I don't see it in the mailing > list... > > I'm trying to build and install iFolder from sources on Debian/Linux > (sparc server). I have built

Re: [Mono-list] Porting PyGtk tutorial to GTK# - Help needed

2009-11-25 Thread Miguel de Icaza
Hello, It occurred to me that we could start a Wave and have interested parties contribute to the wave to port the various tutorials to Gtk# Anyone up for it? On Nov 25, 2009, at 3:33 PM, Miguel de Icaza wrote: > Hello, > >> This was a good idea, but Andy's domain

Re: [Mono-list] Sites Using Mono

2009-11-25 Thread Miguel de Icaza
Hello, > Thank you very much Miguel, I appreciate you so much, but all I found best > were that two single host sites. I was need a mono reference like > monster.com, reddit.com to make a decision for a similar project. There was an interesting blog post from Jon Skeet on a similar matter recent

Re: [Mono-list] mono 2.4.2.3 openoffice 3 cli_uno_bridge broken?

2009-11-25 Thread Miguel de Icaza
Hello, I have CCed Michael Meeks who works in our Open Office team, perhaps he can shed some light as to what is needed. > Hi, > > I'm desperatly trying to make the interop between C# and OpenOffice work on > Linux using mono. (My program does work on Windows). > > Technical context: > - O

Re: [Mono-list] Porting PyGtk tutorial to GTK# - Help needed

2009-11-25 Thread Miguel de Icaza
Hello, > This was a good idea, but Andy's domain seems to be down which means > his email might be down as well. > > Are there any additional tutorials besides what is listed here? > http://www.mono-project.com/GtkSharpTutorials > > Searching for GTK# on Google yields a lot of GTK+ results, maki

Re: [Mono-list] Sites Using Mono

2009-11-22 Thread Miguel de Icaza
Hello, > Thank you very much Peter. You can simply use alexa.com to compare the > traffic load of your web sites with others. The highest ones I found on mono > page were http://www.govtrack.us/ govtrack.us and > http://www.whorunsgov.com/ Washington's Post WhoRunsGov , but they're far > from e

Re: [Mono-list] Mono uses tons of memory compiling

2009-11-15 Thread Miguel de Icaza
91-- Reading suppressions file: valgrind-suppressions > --7491-- Reading suppressions file: /usr/lib/valgrind/default.supp > > The project has like 4k files, 30mb. > > Miguel de Icaza-2 wrote: > > > > Hello, > > > > To use valgrind, you want to use the mono

Re: [Mono-list] Mono uses tons of memory compiling

2009-11-10 Thread Miguel de Icaza
Hello, > I'm compiling a C# application, it's normal that when it compiles mono uses > up to 1GB of memory? > I have run valgrind with mono, but i had to stop it because there were tons > of errors, giving a big log -> > http://wikisend.com/download/442520/valgrind.log. To use valgrind, you want

Re: [Mono-list] Using mdb on a "hardened" system?

2009-11-09 Thread Miguel de Icaza
Hello Mike, Although I do not have an answer for you when it comes to PaX or any other hardened features, I can tell you that you might want to try Mono 2.6 from SVN (not the releases tarballs) and MonoDevelop 2.2 from SVN as they both support the new Soft Debugger. The support is not com

Re: [Mono-list] Is Mono serious? Is Mono still alive?

2009-11-03 Thread Miguel de Icaza
Hello, > I believe Miguel said about a dozen of Novell devs worked on Mono (+ > contributors), I don't know much other than that. There are currently some 34 full time developers at Novell working on Mono related technologies: Mono (core, class libraries, compilers), Mono for Visual Studio, MonoT

Re: [Mono-list] multi-threading operation on Oracle database led to program crash !!!

2009-11-03 Thread Miguel de Icaza
Hello, > Sample repro can be found here: > https://bugzillafiles.novell.org/attachment.cgi?id=170208 So this sample without any threads is crashing the Mono runtime? That would point to some P/Invoke signature being wrong. ___ Mono-list maillist -

Re: [Mono-list] multi-threading operation on Oracle database led to program crash !!!

2009-11-03 Thread Miguel de Icaza
Hello, > I used Mono+System.Data.OracleClient+instantclient to access Oracle database > in multi-threading way on x64bit SUSE Linux. It would be useful to have a test case to reproduce this issue. > > Your reply will be highly appreciated! > > My program run several minutes and crashed and ex

Re: [Mono-list] Why mono GC does not realloc the heap after collect?

2009-11-03 Thread Miguel de Icaza
Because Mono does not support a collector like this, it uses a different kind, a conservative collector. > //Example code > //On the NetFarmewort - all work fine > //On Mono - ~105MiB in the heap, after GC.Collect(). Expected ~5 MiB > > using System; > using System.Collections.Ge

Re: [Mono-list] Simd...which dll?

2009-10-10 Thread Miguel de Icaza
Hello, > Hello, which mono.simd.dll should I reference in my project? I have two > choices it seems: > > 1) C:\Program files (x86)\Mono-2.2\lib\mono\2.0\Mono.SIMD.dll This is the SDK assembly, what compilers use to know what is available on the system, this is what you should reference. > 2) C:

Re: [Mono-list] Porting MS C++ Managed Extensions

2009-10-10 Thread Miguel de Icaza
Hello, > I have received some questions on whether I could make my project > cross-platform. I think mono wouldn't have any problems with the plain .NET > code (C#) but its the interop that uses the C++ managed extensions that is > MS specific. > > Is there such a thing as managed extensions on o

Re: [Mono-list] Can Mono rescue fyireporting.com reporting engine

2009-10-10 Thread Miguel de Icaza
Hello, If someone would like to do that, I suggest that they copy the code to a site like Google Code and host the original code plus any patches there. > If a maintainer could be found who was motivated enough to keep the > project alive and well, then it might be a possibility. Though it'

Re: [Mono-list] Location of MonoPosixHelper source code

2009-10-10 Thread Miguel de Icaza
> Hi all. I want to ask where I can download the source code of > MonoPosixHelper.dll. Documentation for this library will also be useful. > Thanks. The code lives in mono/support Miguel ___ Mono-list maillist - Mono-list@lists.ximian.com http://lis

Re: [Mono-list] Mono Bug: Type.Missing != Missing.Value

2009-09-23 Thread Miguel de Icaza
Hello Dino, This has been fixed on Mono trunk (what will become Mono 2.6) and on the 2.4 branch, so the next 2.4.x release will also include this fix. Thanks for the report! Miguel. > It looks like Mono has a bug w/ Type.Missing not being the same as > System.Reflection.Missing.Value: >

Re: [Mono-list] Extremely poor performance of ODFConverter/Mono on Linux vs Windows .Net

2009-09-11 Thread Miguel de Icaza
Hello, > Even in "wine + .NET 2.0 Framework" ODFConverter has more than 2 times better > performance (20 sec against 50 sec in Mono)! > Seems that XSLT operations in Mono implemented not so efficient as they made > in .NET :,( > > I think it is worth to improve in next Mono releases. We are taki

Re: [Mono-list] CPUID??

2009-09-10 Thread Miguel de Icaza
Hello, > How would i get CPUID or any other hardware specific unique identifiers under > mono? Normally i would get this from System.Management, but this isn't > availible under mono. I am absolutely trying to aviod having to PInvoke an > external library, as i dont want to, nor have the ability t

Re: [Mono-list] Embedding ghsarp?

2009-09-10 Thread Miguel de Icaza
Hello, > I'm playing with gsharp [lovely!] > with my Gtk# application. But > I don't see any way to 'embed' the gsharp CLI into an application. What > I want is just a button in the app that opens gsharp conencted to > [withing?] the application. Has an

[Mono-list] Mono on AIX, HP-UX, RHEL

2009-09-08 Thread Miguel de Icaza
Hello folks, I am running a survey to understand if there is interest in a commercially supported version of Mono for assorted proprietary Unix versions and on Red Hat's Enterprise Linux: If you want Mono on these platforms, please share your thoughts here: http://spreadsheets.google.co

Re: [Mono-list] 2.4.2.3 Invalid IL Code seen

2009-09-01 Thread Miguel de Icaza
Hello, > > I'm unsure whether this is a problem with Mono or with Liquid's library, so > > I'm > > posting here in case this rings a bell with someone. The Liquid code runs > > fine > > on Windows under .NET 2.0. The fact that it is in the Liquid "resigtration" > > code > > may be a key piece o

Re: [Mono-list] mono_class_from_mono_type: implement me 0x00 compiler error

2009-08-10 Thread Miguel de Icaza
Hello, > Starting '/Library/Frameworks/Mono.framework/Versions/2.4.2/bin/mono ( > "/Library/Frameworks/Mono.framework/Versions/2.4.2/lib/mono/1.0/gmcs.exe" > @"/var/folders/bG/bG41nk9bEIatgMl3pAAYkE+++TI/-Tmp-/tmp1b4d1b13.tmp")' in There is something pretty wrong there; Why is gmcs.exe in the 1

Re: [Mono-list] [Mono-dev] The Mono 1.0 profile.

2009-07-21 Thread Miguel de Icaza
Hello, > Personally, I think we'll waste more cycles on this than that it will bring > benefit. Well, it will happen in stages; Disabling the net_1_1 build will be the first step, the second step will be the incremental removal of the NET_1_1 removals and NET_2_0 as we transition into a world wh

Re: [Mono-list] The Mono 1.0 profile.

2009-07-21 Thread Miguel de Icaza
Hello Gert, > Will you be removing all 1.0 specific code (paths)? > Will support for building the net_1_1 profile be removed altogether (or will > you just need to opt-in)? Yes, I would like to do that: remove all the ifdefs for net_1_1 on post Mono 2.6 releases, and remove all the tests for 1.1

[Mono-list] The Mono 1.0 profile.

2009-07-20 Thread Miguel de Icaza
Hello folks, The upcoming Mono 2.6 will be the last Mono release to support the .NET 1.0 profile. Pretty much all developers have moved to use generics-aware code these days, and supporting the 1.0 profile has become an large tax on the development team. 1.0 applications run just fin

Re: [Mono-list] Moonlight 2.0?

2009-05-11 Thread Miguel de Icaza
Hello, > That's great, is it part of the mono download? If so, which version did it > first appear in? > > Has anyone tested it with Netflix "Watch Instantly"? At this point this is not possible due to DRM. It would be good if you could articulate the need for DRM in the Silverlight forums.

Re: [Mono-list] developing moonlight apps

2009-05-06 Thread Miguel de Icaza
Hello, > Thanks! But there is some guide or tutorial to begin? Right now it is a little bit cumbersome. But maybe you could convince Michael to do a MonoDevelop/trunk preview for you that contains the Silverlight bits. Then it would be smooth sailing. Miguel. _

Re: [Mono-list] Moonlight 2.0?

2009-05-04 Thread Miguel de Icaza
Hello, > Has moonlight 2.0 been released? According to the roadmap, an alpha should > be out now and a beta very soon: > > http://www.mono-project.com/MoonlightRoadmap It has just been released. We got delayed by a few loose ends here and there. ___

Re: [Mono-list] Mono Winforms rendered to memory buffer

2009-04-30 Thread Miguel de Icaza
Hello, > Is there a way to use Mono/Winforms in a way that will render everything to > a memory buffer? I'm sure it's possible since we have the source code, but > anything that will help steer me in the right direction to get started with > this would be mucho appreciated. You would likely want

Re: [Mono-list] autotools support

2009-04-29 Thread Miguel de Icaza
Hello, > My question is, what is the best way to do that? It seems far easier > to use just a plain Makefile to build software for the CLR than using > the autotools. Does anyone know if autotools has support for building > CLR software natively, or if it has any (solid) extensions that are > tr

Re: [Mono-list] gdiplus.dll not found

2009-04-24 Thread Miguel de Icaza
Hello, > I tried mod_mono with Mono 2.4 and got exception: You can run the command: mono-test-install And it will help you diagnose this problem Miguel ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/li

Re: [Mono-list] Porting desktop application to OSX/Iphone

2009-04-21 Thread Miguel de Icaza
> 2) I too would like to use it on the *official* iPhone platform, so I > guess the best option would be variant c). The only mechanism supported today is Unity. Anything else right now is out of the question, it is too hard, too fragile and will not support any useful API. Hopefully this will

Re: [Mono-list] Telerik announces ASP.NET RadControls support for Mono 2.4

2009-04-07 Thread Miguel de Icaza
Hello, > Excellent!!! > > A long time waiting for that! > > The compatible version of RadControls for ASP.NET AJAX is now > available for download? Yes. Miguel. > > > []s > > > Pedro. > > > > > 2009/4/6 Miguel de Icaza >

[Mono-list] Telerik announces ASP.NET RadControls support for Mono 2.4

2009-04-06 Thread Miguel de Icaza
Hello folks, I wanted to share with everyone on the lists a very important announcement from Telerik, the creators of RadControls for ASP.NET. As of today Telerik is making RadControls for ASP.NET available and supported for Linux users using Mono 2.4 on their systems. Third-party contr

Re: [Mono-list] Diva

2009-03-22 Thread Miguel de Icaza
Hello, > What ever happened to the Diva Video Editor project? It looked really > promising. It might be best at this point to write a Silverlight version of the program. Building it on Silverlight would have several advantages: it would allow developers on Windows and MacOS to contribute and

Re: [Mono-list] Mdb Crash (libmonodebuggerreadline)

2009-03-22 Thread Miguel de Icaza
> Some one help me? > > I absolutly need to run the debugger... ARGGHH :-) > > Thanks in advance! The debugger is incorrectly compiled, it is missing the library in the error message. ___ Mono-list maillist - Mono-list@lists.ximian.com http://l

Re: [Mono-list] Compiling AOT

2009-03-10 Thread Miguel de Icaza
Hello, > I'm compiling my libraries AOT for the first time. I notice the .so > file is created is of simiar size to the original library so that begs > the question, does compiling AOT double the footprint needs? (ie. if I > compile all the mono libraries and my own libraries) Code compiled with

Re: [Mono-list] Re quest to add links to the mono-project.com site

2009-03-03 Thread Miguel de Icaza
Hello, > IronPython Mono Winforms tutorial > http://zetcode.com/tutorials/ironpythontutorial/ > > and > > GTK# tutorial > http://zetcode.com/tutorials/gtksharptutorial/ I have added both to the: www.mono-project.com/Articles page. These are great new resources! _

Re: [Mono-list] Embedded Databases in .NET/Mono

2009-03-03 Thread Miguel de Icaza
Hello, > Currently I am fiddling around with different embedded databases on the .NET > platform (SQLite, SQLServerCE). But both are either not supported in Mono or > use a different API, which makes things very complicated. > Does anyone know an embedded database, which is easy to install (or doe

Re: [Mono-list] Mono 2.2 Linux installer?

2009-01-25 Thread Miguel De Icaza
Hello, > Since day one, going back to release 1.2.6, I've always been utterly > dependent on the mono installer. > http://ftp.novell.com/pub/mono/archive/1.9.1/linux-installer/2/mono-1.9.1_2-installer.bin > > Will there be a linux-installer for 2.2? We are not planning on bringing back the Linux

Re: [Mono-list] C# and Mono Licensing Question

2009-01-16 Thread Miguel de Icaza
Hello, > all i would have to do is link the runtime libraries dynamically that that > if a person who purchased by game wanted to update the runtime > libraries(even tho I doubt any gamer would ever do that) all he would have > to do is download the new version of the runtime libraries and just dr

Re: [Mono-list] Running Mono on Embedded Linux

2009-01-04 Thread Miguel de Icaza
> 1. Connecting the WEB via HTTP requests and respond > 2. Connecting USB devices (via SerialPort) > 3. Have a (minimal) GUI designed by Visual Studio designer > > - Should it be possible to install Mono on the machine mentioned above and > run it? Yes. Some vendors have created similar c

Re: [Mono-list] Detecting if platform is Mac

2009-01-04 Thread Miguel de Icaza
> Apparently in .NET 3.5 Microsoft added two members to the > System.PlatformID type, called Xbox and MacOSX. Is there any support in > Mono for these? Of course, I don't care about the Xbox value I am just > interested in being able to detect whether my code is running on MacOS > or Linux.

Re: [Mono-list] Speed up make in cygwin

2008-12-25 Thread Miguel de Icaza
Hello, > I do'nt want 1.1, doc, man stuff. > > How to speed up make ? It depends on which area of the code you are working on. If you are doing a full bootstrap, you do this from the mono/ toplevel directory. For example, I use: cd mono/mono; make install For changes

Re: [Mono-list] Detect plug/unplug ethernet cable

2008-12-19 Thread Miguel de Icaza
> ...if there isn't a way to do this... there is a workaround to know this > event for example reading a particular file or execute a shell command or in > some other way in any languages (c/c++...)!? You can read the status from /sys/devices ___ Mono-

Re: [Mono-list] SPAM-LOW: Re: NUnit Version - Upgrade soon?

2008-12-01 Thread Miguel de Icaza
you can do: mcs -pkg:nunit-2.4 file.cs Miguel > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Miguel De Icaza > Sent: Tuesday, November 25, 2008 10:12 AM > To: Michael Franz > Cc: mono-list@

Re: [Mono-list] NUnit Version - Upgrade soon?

2008-11-25 Thread Miguel De Icaza
Hello, Is it ok to submit patches to mono that depend on the latest version of NUnit? As long as the resulting code *builds* you can. So I think this means "no". Miguel. Michael On Tue, Nov 18, 2008 at 3:25 PM, Miguel de Icaza <[EMAIL PROTECTED]> wrote: Hello, &

Re: [Mono-list] NUnit Version - Upgrade soon?

2008-11-18 Thread Miguel de Icaza
t; On Sun, Nov 16, 2008 at 10:54 PM, Miguel de Icaza <[EMAIL PROTECTED]> > wrote: > Hello, > > > > I use NUnit for work and have been using the latest version > for > > months. I wrote some test for Mono and found out t

Re: [Mono-list] SSL and SMTP

2008-11-16 Thread Miguel de Icaza
Hello, > For the record, these procedure got me working (you need to follow all steps): > > http://go-mono.com/forums/#nabble-td19851624|a19892174 This question keeps popping up in the forums and irc, it seems like we need to add this to the FAQ. ___

Re: [Mono-list] Generic Linux installer for Mono 2.1 still missing (or just the files)

2008-11-16 Thread Miguel de Icaza
> Why make it predict anything? From my experience, packages are either > put into /usr/local, /usr or /opt - why not just have a radio button on > the installer? Developers used the installer to install private copies of Mono in their home directories. I also loved the idea of the installer, but

Re: [Mono-list] Mono.Simd - Phylosophical comments

2008-11-16 Thread Miguel de Icaza
Hello, I just wanted to clarify Rodrigo's post a little: > 3) I would add more high level constructs like Matrix that > make use of the > SIMD hardware. > > We first need to expose a rich and usable set of intrinsics to what > SSE currently has. Once we do finish wit

Re: [Mono-list] NUnit Version - Upgrade soon?

2008-11-16 Thread Miguel de Icaza
Hello, > I use NUnit for work and have been using the latest version for > months. I wrote some test for Mono and found out that the version > that Mono is using does not support some of the asserts I am using > (IsEmpty). Is there any plan to upgrade the version of NUnit that is > used with the

Re: [Mono-list] Support for system.web.ui.webparts

2008-11-08 Thread Miguel de Icaza
Hello, > Does anyone have any information on when mono might support this namespace? There are currently no plans to support it. This namespace will be implemented when contributors send unit test cases + implementations following it. Very few people use this feature, so it is not a major feat

Re: [Mono-list] MS Robotics runtime port

2008-11-08 Thread Miguel de Icaza
Hello, > I didn't know about this---thanks! Two points worth noting: > > 1) In the CCRDSS license in section 3 iii that we cannot: > > "distribute Distributable Code to run on a platform other than the > Windows platform;" I wonder if this means that you are not able to redistribute the code, b

Re: [Mono-list] SerialPort Events in Mono 2.0.

2008-11-04 Thread Miguel de Icaza
Hell, > I've been trying to get my c# windows code to work on linux and I had no > such luck. My question is: Has the SerialPort class been implemented > completely in mono 2.0 or it's still missing the events, such as > DataRecieved, or some methods, such as ReadExisitng?(As I've found from > ema

Re: [Mono-list] Looking for advice on accessing MySQL database

2008-11-01 Thread Miguel de Icaza
Hello, > I'm sure that a ton of people must be using MySQL so I'm hoping that I'm > just missing something simple. Could you post a very simple program that is failing for you, as well as the error that you get? ___ Mono-list maillist - Mono-list@lis

Re: [Mono-list] MS Robotics runtime port

2008-11-01 Thread Miguel de Icaza
Hello, > After reading Mono's roadmap, does not seem like MS Robotics runtime (CCR > and DSS) will be ported to Mono in a very near future. > > Thus, has anybody successfully achieved on his own compiling CCR and DSS > libraries under Mono? I would be very interested in knowing how difficult to >

Re: [Mono-list] Power Pc support ppc64

2008-10-24 Thread Miguel de Icaza
Hello, > I was wondering what the status is of mono running on the power architecture > , specifically the ppc64 given we would like run it on the IBM power pc > architecture. I found the thread on bugzilla #324134 that was started last > july and I see there are still posts to it as of the past w

[Mono-list] Mono on OSX and iPhone Survey.

2008-10-19 Thread Miguel de Icaza
Hello folks, To better understand where we should take Mono in the future for OSX, I have put together a quick survey. Your feedback will help us shape the future of Mono on OSX: http://spreadsheets.google.com/viewform?key=pvPgcz_0Kij3soDnggioyfw&hl=en Miguel.

Re: [Mono-list] ETA for mono 2.0 installer on Mac 10.4

2008-10-12 Thread Miguel de Icaza
Hello, > I'm not sure how 2.0 is released with out having a installer but does anyone > know what the eta is im really intrested in checking this out for the macs > where i work We finally have a build, and could use some testers. Andrew will post details soon, _

Re: [Mono-list] Complier Bug Prevents Compilation

2008-10-12 Thread Miguel de Icaza
> >From what I can tell its having trouble with a rather harmless looking > method declaration: > > public override StrategyResult Initialize(IContext context) Nope, that is not it. The problem is caused in an invocation (see the stack trace). The best thing to do would be to create a sma

Re: [Mono-list] Mono for PDA / Windows CE 5.0 + Windows Mobile 6 ?

2008-10-12 Thread Miguel de Icaza
> Now, I'll probably need very quickly to developpe 'simple' PDA softwares > (grid / combos / databases...). Is Mono able to compile source code for PDA > ??? If yes, what kind of addons I'll have to install. And, moreover, what > kind of plateforms are compatible (Treo, Blackberry, ...) Mono doe

Re: [Mono-list] Some issues with mono 2.0

2008-09-24 Thread Miguel de Icaza
Hello Maxim, We are unaware of this problem, do you think you could provide a test case that illustrates this problem so we can look into it? > Hello! > > We've got some issues with mono 2.0 (it seems like Preview 2 or RC1, > compiled from SVN 2.0 branch). > 1) In rush hours mod_mono server

Re: [Mono-list] Name of the CSharp Shell

2008-09-21 Thread Miguel de Icaza
Hello, > What about css? C Sharp Shell. > > Pros: Really easy to type > Cons: It's not a style sheet. > > Though i think the 'con' on imcs could easily be applied to any name > you choose. imcs would be my next choice. Major con: it is ungoogable, since everyone talks about the Cascading Style

[Mono-list] Name of the CSharp Shell

2008-09-21 Thread Miguel de Icaza
Hey folks, The name of the C# shell today is `csharp', but this is awkward to type, we have been considering renaming it, the options are: * csi - stands for C# interactive Pros: short, cute, easy to remember. Cons: popular TV show. * imcs - interactive Mono C# compiler

<    1   2   3   4   5   6   7   8   9   10   >