Recent content by TrentFGuidry

  1. Programming Game/Puzzle

    I haven't tried this, since I switched back to Windows for my home computer about 5 years ago due to video games, but there is Moonlight which supposedly runs Silverlight applications in Firefox on Linux http://mono-project.com/MoonlightSupportedPlatforms.
  2. Quant Interview Question

    That is too simple of a question to be a good interview question. The volume is the cross sectional area times the height. In this case, you don't even need to do an integral. It is Pi z squared times a. Basic middle school math.
  3. How to combine C++ and C# in Visual Studio?

    There are a few ways to do this. 1) Wrap the C++ code in C style dll's and then use PInvoke to import the dll's. Documentation for doing this on MSDN can be found at http://msdn.microsoft.com/en-us/library/aa288468%28VS.71%29.aspx. 2) You can wrap the C++ code in COM and then create a...
Back
Top