Not sure whether this is the right place to put this... While loading KSP, I monitor it's memory usage with process explorer... and it's really a memory hungry program, when the mods get rolling. In some cases there are memory jumps of some 500MBs which is and enormous memory request by any software standards, and think this is what causing crashes in most games nowdays. This might be with the mod dll's themselves or KSP itself. Having done some code development myself, and knowing that memory allocation is always an issue, maybe I thought that the Devs (or mod developers) can control their code 'memory requests' more precisely or have (if not already) a game API that can control the memory allocation per mod. A lazy way of coding has usually been to request maximum memory, then cut down and clean up. With many mods doing this you'd soon run out of memory. It might be an idea to only request slightly more memory than you require, which would require a bit more work, but certainly worth it in the end. OR with each mod, have a memory allocation GUI that a user can set, allowing user testing and customisation.