User miguel.de.icaza - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:20:18Z http://stackoverflow.com/feeds/user/16929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1939607/mono-under-jboss/1944619#1944619 0 Answer by miguel.de.icaza for Mono under Jboss miguel.de.icaza 2009-12-22T07:01:29Z 2009-12-22T07:01:29Z <p>Mainsoft sells a product that recompiles .NET code into Java code that can be hosted inside a J2EE server.</p> <p>You can check their offering here: <a href="http://www.mainsoft.com/" rel="nofollow">http://www.mainsoft.com/</a></p> http://stackoverflow.com/questions/1889595/how-to-create-osx-package-that-runs-mono-application-natively-bootstrapper/1892105#1892105 4 Answer by miguel.de.icaza for How to create OSX Package that runs Mono application "natively" (Bootstrapper) miguel.de.icaza 2009-12-12T02:57:27Z 2009-12-16T22:56:36Z <p>As the other posting indicates, all you need to do is package your software following the .app layout for the software.</p> <p>In general, you need to provide a bash script that does something as simple as:</p> <pre><code>#!/bin/sh exec /Library/Frameworks/Mono.framework/Versions/Current/bin/mono YourApp.exe </code></pre> <p>That is all you need, but you could spice that script up to probe for Mono being installed, and if not, offer for it to be installed. See how Monodevelop does it:</p> <p><a href="http://anonsvn.mono-project.com/viewvc/trunk/monodevelop/main/build/MacOSX/monodevelop?revision=148173&amp;view=markup" rel="nofollow">http://anonsvn.mono-project.com/viewvc/trunk/monodevelop/main/build/MacOSX/monodevelop?revision=148173&amp;view=markup</a></p> http://stackoverflow.com/questions/1875336/why-would-a-self-hosted-service-hang-after-handling-one-response-running-on-mono/1877782#1877782 3 Answer by miguel.de.icaza for Why would a self-hosted service hang after handling one response running on Mono? miguel.de.icaza 2009-12-09T23:50:42Z 2009-12-09T23:50:42Z <p>Would you mind testing our Mono 2.6 preview packages?</p> <p>WCF was not very strong in Mono 2.4, it was merely shipped as a preview.</p> http://stackoverflow.com/questions/1829954/write-to-a-file-in-monotouch/1830160#1830160 2 Answer by miguel.de.icaza for Write to a File in Monotouch miguel.de.icaza 2009-12-02T01:41:28Z 2009-12-02T01:41:28Z <p>The following How To from the MonoTouch user wiki web site has a few pointers to where to store your files:</p> <p><a href="http://wiki.monotouch.net/HowTo/Files/HowTo%3a%5FStore%5FFiles" rel="nofollow">http://wiki.monotouch.net/HowTo/Files/HowTo%3a%5FStore%5FFiles</a></p> http://stackoverflow.com/questions/1754449/is-monodevelopers-editor-slow-for-you/1773682#1773682 1 Answer by miguel.de.icaza for Is MonoDeveloper's editor slow for you? miguel.de.icaza 2009-11-20T22:43:39Z 2009-11-20T22:43:39Z <p>We have heard about this bug on some MacBooks but we are unable to reproduce.</p> <p>Would you mind trying this trick, some people have reported that this fixes the problem for them (we recently added this to our <a href="http://monotouch.net/Documentation/Troubleshoot" rel="nofollow">http://monotouch.net/Documentation/Troubleshoot</a> page):</p> <p>Sometimes the MonoDevelop source editor becomes extremely slow, appearing to hang for several seconds between typing characters.</p> <p>This issue is very rare and extremely hard to reproduce - it usually cannot be reproduced on the same machine after restarting MonoDevelop. For this reason we would appreciate it if you could perform several debugging steps before restarting MonoDevelop, and send the results to us.</p> <ol> <li>Try closing the editor tab, and re-opening it. Does it take a little bit of editing or moving the caret around until the slowdown happens again?</li> <li>Disable "Beam Sync" using the "Quartz Debug" developer tool (which you can find using Spotlight), and check whether the source editor performance is restored to normal.</li> <li>Try repeating step (1) with Beam Sync still disabled.</li> <li>If the editor hangs for more than a few seconds, try to run "killall -QUIT monodevelop" in a terminal while it is hung. It may be difficult to time the kill command to happen while the editor is hung, but it's essential to do so, because the command forces Mono to write stack traces of all threads to the MD log, which we can use to discover what state the threads are in while the MD is hung.</li> </ol> <p>Please attach the MD log, ~/.config/MonoDevelop/log (in future versions of MD it is ~/Library/Logs/MonoDevelop/MonoDevelop.log).</p> http://stackoverflow.com/questions/1757768/playing-a-sound-with-monotouch/1773674#1773674 0 Answer by miguel.de.icaza for Playing a Sound With Monotouch miguel.de.icaza 2009-11-20T22:40:46Z 2009-11-20T22:40:46Z <p>You need the first line:</p> <p>var path = NSBundle.MainBundle.PathForResource("MatchGame", "caf"); </p> <p>Then make sure that your audio file is included in the application by making sure that your CAF file is flagged as "Content" in the Properties pane, otherwise the file is not copied to the resulting application package (your .app)</p> <p>You can follow the steps documented here (they are for images, but apply the same to audio files):</p> <p><a href="http://wiki.monotouch.net/HowTo/Images/Add%5Fan%5FImage%5Fto%5Fyour%5FProject" rel="nofollow">http://wiki.monotouch.net/HowTo/Images/Add%5Fan%5FImage%5Fto%5Fyour%5FProject</a></p> <p>Additionally, this is a good resource for where you should store files:</p> <p><a href="http://wiki.monotouch.net/HowTo/Files/HowTo%3a%5FStore%5FFiles" rel="nofollow">http://wiki.monotouch.net/HowTo/Files/HowTo%3a%5FStore%5FFiles</a></p> http://stackoverflow.com/questions/1669033/asp-net-mvc-mono-2-4/1688390#1688390 1 Answer by miguel.de.icaza for asp.net mvc mono 2.4 miguel.de.icaza 2009-11-06T15:40:14Z 2009-11-06T15:40:14Z <p>Jackson Harper runs his site on a similar system running on Linode.</p> <p>You might want to check his blog, slides and his pre-configured appliance that runs ASP.NET MVC here:</p> <p><a href="http://blog.monoontheweb.info/" rel="nofollow">http://blog.monoontheweb.info/</a></p> http://stackoverflow.com/questions/1670377/on-the-fly-conversion-of-mpeg-files-on-monotouch/1688326#1688326 2 Answer by miguel.de.icaza for On-the-fly conversion of MPEG files on MonoTouch miguel.de.icaza 2009-11-06T15:29:30Z 2009-11-06T15:29:30Z <p>Compile ffmpeg as a library in XCode and then link it to your program: <a href="http://wiki.monotouch.net/HowTo/Interop/Consuming%5F3rd%5FParty%5FObjC%5FLibraries" rel="nofollow">http://wiki.monotouch.net/HowTo/Interop/Consuming%5F3rd%5FParty%5FObjC%5FLibraries</a></p> <p>Since applications can only statically link on the iPhone, instead of using P/Invoke over a shared library name, like this:</p> <p>[DllImport ("ffmpeg.so")] extern static int ffmpeg_init ();</p> <p>You need to use the __Internal target:</p> <p>[DllImport ("__Internal")] extern static int ffmpeg_init ();</p> http://stackoverflow.com/questions/1686605/issue-with-monotouch/1688307#1688307 0 Answer by miguel.de.icaza for Issue with MonoTouch miguel.de.icaza 2009-11-06T15:26:02Z 2009-11-06T15:26:02Z <p>Start the MonoDevelop program and select "New Solution" and then select the iPhone template.</p> <p>There are a handful of walk through documents like: <a href="http://monotouch.net/Tutorials/MonoDevelop%5FHelloWorld" rel="nofollow">http://monotouch.net/Tutorials/MonoDevelop%5FHelloWorld</a></p> <p>Or a complete step-by-step screencast here:</p> <p><a href="http://www.codesnack.com/blog/2009/9/20/getting-started-with-monotouch.html" rel="nofollow">http://www.codesnack.com/blog/2009/9/20/getting-started-with-monotouch.html</a></p> <p>Building Hello world: <a href="http://tv.falafel.com/iphone/09-09-18/Writing%5Fyour%5FFirst%5FIPhone%5Fapplication%5Fin%5FC%5Fusing%5FMonoTouch.aspx" rel="nofollow">http://tv.falafel.com/iphone/09-09-18/Writing%5Fyour%5FFirst%5FIPhone%5Fapplication%5Fin%5FC%5Fusing%5FMonoTouch.aspx</a></p> http://stackoverflow.com/questions/1548492/why-is-it-not-possible-to-use-the-mpmovieplayercontroller-more-than-once 1 Why is it not possible to use the MPMoviePlayerController more than once? miguel.de.icaza 2009-10-10T17:08:17Z 2009-10-24T19:11:51Z <p>In MonoTouch, we ran into this problem with the Movie Player sample in that it would only play the video once, but would not play it a second time. </p> <p>I am asking this question to post an answer, since it has been hitting various folks.</p> http://stackoverflow.com/questions/1522260/is-there-a-way-to-mix-monotouch-and-objective-c/1590710#1590710 2 Answer by miguel.de.icaza for Is there a way to mix MonoTouch and Objective-C? miguel.de.icaza 2009-10-19T19:45:25Z 2009-10-19T19:45:25Z <p>Over the weekend it emerged that someone has been porting Cocos2D to .NET, so you could also do the whole work on .NET:</p> <p><a href="http://github.com/city41/CocosNet" rel="nofollow">http://github.com/city41/CocosNet</a></p> <p>Cocos2D started as a Python project, that later got ported to Objective-C, and now there is an active effort to bring it to C#. It is not finished, but the author is accepting patches and might be a better way forward.</p> http://stackoverflow.com/questions/1583856/is-monotouch-worth-the-cost-or-should-i-just-learn-objective-c/1589479#1589479 17 Answer by miguel.de.icaza for Is MonoTouch worth the cost or should I just learn Objective-C? miguel.de.icaza 2009-10-19T15:46:19Z 2009-10-19T15:46:19Z <p>There is a lot of hearsay in this post from developers that have not tried MonoTouch <em>and</em> Objective-C. It seems to be mostly be Objective-C developers that have never tried MonoTouch.</p> <p>I am obviously biased, but you can check out what the MonoTouch community has been up to in:</p> <p><a href="http://monotouch.info" rel="nofollow">http://monotouch.info</a></p> <p>There you will find several articles from developers that have developed in both Objective-C and C#. </p> http://stackoverflow.com/questions/1562929/how-can-i-launch-multiple-instances-of-monodevelop-on-the-mac 6 How can I launch multiple instances of MonoDevelop on the Mac? miguel.de.icaza 2009-10-13T21:14:49Z 2009-10-15T01:13:02Z <p>I would like to open a new MonoDevelop instance to work on a different project on the Mac, and the OS is currently preventing me from opening a new instance.</p> http://stackoverflow.com/questions/1468404/cross-iphone-communication-using-mono-touch/1549052#1549052 5 Answer by miguel.de.icaza for Cross iPhone communication using mono touch miguel.de.icaza 2009-10-10T20:52:40Z 2009-10-10T20:52:40Z <p>Use the MonoTouch.GameKit API to communicate with other nearby iPhones. It is available in MonoTouch 1.1.1 (released on October 8th).</p> <p>Here is an introduction to GameKit programming:</p> <p><a href="http://developer.apple.com/iPhone/library/documentation/NetworkingInternet/Conceptual/GameKit%5FGuide/Introduction/Introduction.html" rel="nofollow">http://developer.apple.com/iPhone/library/documentation/NetworkingInternet/Conceptual/GameKit%5FGuide/Introduction/Introduction.html</a></p> http://stackoverflow.com/questions/1515853/what-are-the-following-constructs-in-mono-cecil-referring-to-in-c/1548640#1548640 2 Answer by miguel.de.icaza for What are the following constructs in Mono.Cecil referring to in C#? miguel.de.icaza 2009-10-10T18:02:39Z 2009-10-10T18:02:39Z <p>Those terms represent the underlying ECMA Common Language Infrastructure terms. The .NET Framework offers an abstract layer over those concepts. </p> <p>You want to look at Partition III of the ECMA 335 specification:</p> <p><a href="http://www.ecma-international.org/publications/standards/Ecma-335.htm" rel="nofollow">http://www.ecma-international.org/publications/standards/Ecma-335.htm</a></p> http://stackoverflow.com/questions/1520556/are-xmlmtomreader-and-xmlmtomwriter-fully-implemented-in-mono-project/1548628#1548628 1 Answer by miguel.de.icaza for Are XmlMtomReader and XmlMtomWriter fully implemented in Mono project? miguel.de.icaza 2009-10-10T17:58:42Z 2009-10-10T17:58:42Z <p>The APIs are available on the current Mono 2.6 preview, but they are not available on the 2.4 release (the current official release).</p> http://stackoverflow.com/questions/1512760/options-for-game-development-with-monotouch/1548544#1548544 4 Answer by miguel.de.icaza for Options for game development with MonoTouch miguel.de.icaza 2009-10-10T17:32:06Z 2009-10-10T17:32:06Z <p>OpenGL is fully supported in MonoTouch, we distribute OpenTK with support for OpenGL ES 1 and ES 2, so it has a nice binding that you can use from managed languages like C#.</p> <p>As the previous poster hinted, there is XnaTouch available today, and there is some talk about bringing Cocos2D on the Monotouch-o-sphere.</p> <p>An alternative to using MonoTouch with OpenGL or XnaTouch is to use another Mono-based framework that is entirely focused on gaming, the Unity3D platform. This is a professional tool for building 3D and 2D games and goes beyond what Xna does, it is an entire gaming IDE with a full game engine.</p> http://stackoverflow.com/questions/1522260/is-there-a-way-to-mix-monotouch-and-objective-c/1548531#1548531 2 Answer by miguel.de.icaza for Is there a way to mix MonoTouch and Objective-C? miguel.de.icaza 2009-10-10T17:26:14Z 2009-10-10T17:26:14Z <p>The setup that you describe is possible, but the pipeline is not as smooth as it is when you do your entire project in MonoTouch. This is in fact how we bootstrapped MonoTouch: we took an existing Objective-C sample and we then replaced the bits one by one with managed code. </p> <p>We dropped those samples as they bitrot.</p> <p>But you can still get this done, use the mtouch's --xcode command line option to generate a sample program for you, and then copy the bits that you want from the generated template.m into your main.m. Customize the components that you want, and just start the XCode project from there.</p> <p>During your development cycle, you will continue to use mtouch --xcode</p> http://stackoverflow.com/questions/1455064/dblinq-and-mono-2-4-working-together/1469146#1469146 0 Answer by miguel.de.icaza for DbLinq and Mono 2.4: Working Together? miguel.de.icaza 2009-09-23T23:59:45Z 2009-09-23T23:59:45Z <p>Mono 2.6 will include for the first time a preview of DbLinq with Mono. You can take it out for a spin today if you install DbLinq on your own side-by-side with your current Mono setup.</p> http://stackoverflow.com/questions/1463145/http-500-error-in-apache-modmono-but-not-in-xsp/1469143#1469143 0 Answer by miguel.de.icaza for HTTP 500 error in Apache/mod_mono but not in xsp miguel.de.icaza 2009-09-23T23:58:44Z 2009-09-23T23:58:44Z <p>Do you have any logs that you could share with us so we can help you diagnose the problem?</p> http://stackoverflow.com/questions/1433058/is-there-a-webclient-object-that-can-be-used-in-monotouch/1469127#1469127 1 Answer by miguel.de.icaza for Is there a WebClient object that can be used in MonoTouch? miguel.de.icaza 2009-09-23T23:55:21Z 2009-09-23T23:55:21Z <p>A full sample that shows http, https using the .NET APIs as well as one using the Cocoa API is available in:</p> <p><a href="http://anonsvn.mono-project.com/source/trunk/monotouch/samples/HttpClient/" rel="nofollow">http://anonsvn.mono-project.com/source/trunk/monotouch/samples/HttpClient/</a></p> <p>The short sort story is: just use System.Net.WebRequest as you would with regular .NET</p> http://stackoverflow.com/questions/1449804/sizewithfont-with-monotouch/1469110#1469110 1 Answer by miguel.de.icaza for sizeWithFont with MonoTouch miguel.de.icaza 2009-09-23T23:51:55Z 2009-09-23T23:51:55Z <p>The next update (MonoTouch 1.1) will have the methods available as UIView.StringSize (string str, UIFont font)</p> http://stackoverflow.com/questions/1468393/how-can-i-play-a-sound-on-the-iphone-using-mono-touch/1469106#1469106 4 Answer by miguel.de.icaza for How can I play a sound on the iPhone using mono touch? miguel.de.icaza 2009-09-23T23:50:40Z 2009-09-23T23:50:40Z <p>From the HowTo at: <a href="http://wiki.monotouch.net/HowTo/Sound/Play%5Fa%5FSound%5For%5FAlert" rel="nofollow">http://wiki.monotouch.net/HowTo/Sound/Play%5Fa%5FSound%5For%5FAlert</a></p> <pre><code>var sound = SystemSound.FromFile (new NSUrl ("File.caf")); sound.PlaySystemSound (); </code></pre> http://stackoverflow.com/questions/1468559/how-can-i-shrink-the-size-of-my-mono-touch-application/1469032#1469032 11 Answer by miguel.de.icaza for How can I shrink the size of my mono touch application miguel.de.icaza 2009-09-23T23:24:50Z 2009-09-23T23:29:54Z <p>This is from the mailing list post today:</p> <blockquote> <p>In addition to this thread, I wanted to give folks a heads up on what we have been up to with MonoTouch and disk/memory usage.</p> <ul> <li><p>New ARM optimizations.</p> <p>In the upcoming version of MonoTouch, a new ARM optimization will for example reduce mscorlib native code by 300k. So it will go from 800k to 500k. You can expect the same kind of savings in other assemblies as well. </p> <p>This was implemented by a technique that reuses many of the wrapper functions that Mono uses to shared wrappers. </p></li> <li><p>Enhanced Linker</p> <p>The linker is improving, and it will no longer for example pull any of Mono.Security.dll, unless you use the http stack. This in the example below will remove some 300k from the final distribution as well. </p> <p>The linker is still too conservative, and we will continue to enhance it to be more aggressive and remove more code. </p></li> <li><p>In general</p> <p>Since we started, one of our goals to ensure that we would have a small footprint, so we invested significant time on our linker, and we continue to invest in it. </p></li> </ul> </blockquote> http://stackoverflow.com/questions/1166252/net-xmpp-libraries-under-apache-mit-or-ms-pl-licenses 9 .NET XMPP libraries under Apache, MIT or MS-PL licenses? miguel.de.icaza 2009-07-22T15:48:10Z 2009-08-20T19:53:30Z <p>I am looking for a liberally licensed (MIT, X11, Apache, etc) version of the XMPP protocol for .NET and Mono.</p> <p>There are a handful of libraries under the GPL, LGPL and LGPL v2 for .NET and Mono, but none of those are suitable for the kind of application that I have in mind (integrating it with Mono's stack where we go for no-strings attached frameworks).</p> http://stackoverflow.com/questions/1251159/readconsoleoutput-writeconsoleoutput-readconsoleinput-functionality-in-mono-und/1274656#1274656 0 Answer by miguel.de.icaza for ReadConsoleOutput, WriteConsoleOutput, ReadConsoleInput functionality in Mono under Linux miguel.de.icaza 2009-08-13T21:21:37Z 2009-08-13T21:21:37Z <p>What functionality are you missing exactly?</p> http://stackoverflow.com/questions/1272252/moonlight-on-powerpc-mac/1274639#1274639 4 Answer by miguel.de.icaza for Moonlight on PowerPC Mac miguel.de.icaza 2009-08-13T21:19:16Z 2009-08-13T21:19:16Z <p>Moonlight currently is made up of a few components:</p> <ul> <li>Mono Runtime (cross platform, works on many platforms, including PowerPC and OSX)</li> <li>Graphics engine (cross platform)</li> <li>Video engine (cross platform)</li> <li>Browser gate (currently only supports Firefox)</li> <li>Windowing system integration (currently only supports X11)</li> </ul> <p>There have been discussions about writing more browser gateways for new browsers, but so far it has not been a priority. If Moonlight were to be ported to the Mac, a gate to Safari would be necessary.</p> <p>Currently Moonlight is very tied to the X11 implementation, so that piece would also have to be decoupled to work on other windowing systems.</p> <p>It should be relatively easy (couple of weeks of work) to get the Moonlight engine to run on the Mac. Doing the gateway to the browser might be a few more weeks.</p> <p>Miguel.</p> http://stackoverflow.com/questions/1219918/newbie-question-gtk-mono-on-osx/1220829#1220829 2 Answer by miguel.de.icaza for Newbie Question: GTK# (Mono) on OSX miguel.de.icaza 2009-08-03T05:59:53Z 2009-08-03T05:59:53Z <p>You have a mixed setup.</p> <p>The Gtk in /opt/local/var/macports did not come from Mono's installer for OSX, you probably got it earlier from macports. The Mono installer places its files under /Library/Frameworks/Mono.framework/</p> <p>Chances are, you have something else on your path, since it works out of the box after I installed the Mono.Framework from the Mono web site (with the command line example that you have above).</p> http://stackoverflow.com/questions/1161473/how-can-php-talk-to-a-c-process-running-on-mono/1166308#1166308 1 Answer by miguel.de.icaza for How can PHP talk to a C# process running on mono? miguel.de.icaza 2009-07-22T15:54:45Z 2009-07-22T15:54:45Z <p>Another option is to write a PHP module that embeds the Mono runtime in your application.</p> <p>Here is the documentation on embedding the Mono runtime in your application, in this case, it would be PHP:</p> <p><a href="http://mono-project.com/Embedding_Mono" rel="nofollow">http://mono-project.com/Embedding_Mono</a></p> http://stackoverflow.com/questions/1162562/whats-the-difference-between-ahead-of-time-compiled-code-and-natively-compiled-c/1166288#1166288 3 Answer by miguel.de.icaza for What's the difference between ahead of time compiled code and natively compiled code miguel.de.icaza 2009-07-22T15:52:35Z 2009-07-22T15:52:35Z <p>When you use aot=full (only supported on a few platforms) then no code will be JITed at runtime.</p> <p>But you still require a runtime to provide many of the features that your application uses. Mono's runtime includes support for garbage collection, thread management, the IO-layer, the IOremapping layer, the interface to the operating system, support for the decimal type, reflection (so you can still do things like type.GetMethods () for example).</p> http://stackoverflow.com/questions/1719886/why-doesnt-ctrl-d-send-eof-in-mono/1719922#1719922 Comment by miguel.de.icaza on Why doesn't CTRL-D send EOF in mono? miguel.de.icaza 2009-12-02T07:10:31Z 2009-12-02T07:10:31Z I hope that this bug gets backported to mono-2-4 ;-) http://stackoverflow.com/questions/1810217/asp-net-mvc-2-preview-2-under-mono-in-linux/1810270#1810270 Comment by miguel.de.icaza on ASP.NET MVC 2 Preview 2 under Mono in Linux miguel.de.icaza 2009-12-02T07:07:06Z 2009-12-02T07:07:06Z Mono merely bundles Microsoft's original ASP.NET MVC, we did not develop our own. The author is obviously using MVC2 which is not yet open source, so we have not even bundled it, so it is not even Mono's issue. http://stackoverflow.com/questions/1757768/playing-a-sound-with-monotouch/1773674#1773674 Comment by miguel.de.icaza on Playing a Sound With Monotouch miguel.de.icaza 2009-12-02T03:21:22Z 2009-12-02T03:21:22Z A final note, you can use also: var sound = new SystemSound (url) Instead of SystemSound.FromFile if you want to get a more detailed exception instead of the &quot;null&quot; in case of errors. http://stackoverflow.com/questions/1757768/playing-a-sound-with-monotouch/1773674#1773674 Comment by miguel.de.icaza on Playing a Sound With Monotouch miguel.de.icaza 2009-12-02T03:18:59Z 2009-12-02T03:18:59Z You are getting a NullReferenceException, so chances are, you do not have a valid file there that you can use with SystemSound (it is limited to 30 second samples). Use the APIs that we actually recommended you use, not SystemSound. http://stackoverflow.com/questions/1703088/what-is-the-state-of-non-objective-c-programming-for-iphone/1703193#1703193 Comment by miguel.de.icaza on What is the state of non-Objective-C programming for iPhone? miguel.de.icaza 2009-11-10T00:55:33Z 2009-11-10T00:55:33Z We have reports of the IDE being very slow, but we have not been able to reproduce in our systems; If you do not mind, I would like to ask you to run a few commands that might help us pinpoing why MonoDevelop feels sluggish. Email me at miguel@gnome.org http://stackoverflow.com/questions/1668030/confusion-about-system-data-sqlite-dll Comment by miguel.de.icaza on Confusion about System.Data.SQLite.dll miguel.de.icaza 2009-11-06T15:50:58Z 2009-11-06T15:50:58Z Please provide the full error message, and run your program like this: MONO_LOG_LEVEL=&quot;debug&quot; MONO_LOG_MASK=&quot;dll&quot; mono app.exe http://stackoverflow.com/questions/1516352/modmono-parallel-requests-dontt-run-in-parallel Comment by miguel.de.icaza on mod_mono parallel requests dont't run in parallel miguel.de.icaza 2009-10-10T17:59:57Z 2009-10-10T17:59:57Z Would you mind posting a sample, it is not clear from your question how you configured mod_mono or what your software is doing. With a test case, we could provide you with an answer. http://stackoverflow.com/questions/1547432/general-c-asp-net-mono-questions Comment by miguel.de.icaza on General C# + ASP.net + Mono questions. miguel.de.icaza 2009-10-10T17:54:09Z 2009-10-10T17:54:09Z What platform are you using, and what version of Mono do you have installed? http://stackoverflow.com/questions/1424307/how-does-ms-pl-license-work/1424334#1424334 Comment by miguel.de.icaza on How does MS-PL license work? miguel.de.icaza 2009-09-15T14:07:48Z 2009-09-15T14:07:48Z The MS-PL only covers the bits that you received under the MS-PL, it does not cover the extra portions or derivative works. So if you combine A(MS-PL) and B(MIT), A remains MS-PL and B remains MIT. In general, when you edit a file, you get to set the copyright rules for the changes that you introduce. The original code is under the license that you received it in, and the derivative work and your changes are under any license that you want. So for example, if you combine in a source file BSD code with MIT code, you must keep both copyright licenses on the file. http://stackoverflow.com/questions/1150002/how-is-the-current-performance-of-the-mono-virtual-machine/1163308#1163308 Comment by miguel.de.icaza on How is the current performance of the Mono virtual machine? miguel.de.icaza 2009-08-03T06:02:35Z 2009-08-03T06:02:35Z You need to know what you are testing. If you have two similar applications, one in Mono with ASP.NET MVC and one with rails/cakephp, I can try those out and report the results. If the code is computationally intensive, then Mono will be faster, merely because it has a JIT for a strongly-typed system. If the code is IO-bound, it really will depend on how the code was written. http://stackoverflow.com/questions/1166252/net-xmpp-libraries-under-apache-mit-or-ms-pl-licenses/1179330#1179330 Comment by miguel.de.icaza on .NET XMPP libraries under Apache, MIT or MS-PL licenses? miguel.de.icaza 2009-07-27T14:04:42Z 2009-07-27T14:04:42Z It is LGPL, I am looking for something under the MIT, X11 or Apache licenses. Additionally, it is LGPLv3 which is a more complicated license than V2 making it unsuitable for my use case scenario. http://stackoverflow.com/questions/1160722/using-precompiled-net-assembly-dll-in-mono/1163237#1163237 Comment by miguel.de.icaza on Using Precompiled .NET Assembly DLL in Mono? miguel.de.icaza 2009-07-22T15:50:28Z 2009-07-22T15:50:28Z Sure, but you strongly named that assembly, so Mono is going to look up for it on the GAC. You can override this with &quot;export MONO_PATH=DIR&quot; for diagnostic purposes (it will command Mono to look up for the assembly in DIR, regardless of its strong name). http://stackoverflow.com/questions/139979/do-generic-interfaces-in-c-prevent-boxing-net-vs-mono-performance/140018#140018 Comment by miguel.de.icaza on Do generic interfaces in C# prevent boxing? (.NET vs Mono performance) miguel.de.icaza 2008-09-26T15:06:21Z 2008-09-26T15:06:21Z leppie, those are great news! I am looking forward to try out IronScheme!