User CHitchcock - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T10:33:21Zhttp://stackoverflow.com/feeds/user/2179http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/18632/how-to-monitor-a-text-file-in-realtime/18638#186385Answer by CHitchcock for How to monitor a text file in realtimeCHitchcock2008-08-20T19:27:36Z2008-08-20T19:27:36Z<p>I use "tail -f" under cygwin.</p>
http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time/18627#186273Answer by CHitchcock for Is Mono ready for prime time?CHitchcock2008-08-20T19:23:30Z2008-08-20T19:23:30Z<p>We've been using it for a project here at work that needed to run on Linux but reuse some .NET libraries that we built in Managed C++. I've been very surprised at how well it has worked out. Our main executable is being written in C# and we can just reference our Managed C++ binaries with no issue. The only difference in the C# code between Windows and Linux is RS232 serial port code.</p>
<p>The only big issue I can think of happened about a month ago. The Linux build had a memory leak that wasn't seen on the Windows build. After doing some manual debugging (the basic profilers for Mono on Linux didn't help much), we were able to narrow the issue down to a specific chunk of code. We ended up patching a workaround, but I still need to find some time to go back and figure out what the root cause of the leak was.</p>