How to update Python?

UPDATE: 2018-07-06 This post is now nearly 5 years old! Python-2.7 will stop receiving official updates from python.org in 2020. Also, Python-3.7 has been released. Check out Python-Future on how to make your Python-2 code compatible with Python-3. For updating conda, the documentation now recommends using conda update –all in each of your conda environments … Read more

What are major incentives to upgrade to D2009 (Unicode excluded)?

To put things in to perspective, look at the things that were added between Delphi 7 and Delphi 2007. This was a significant high water mark. http://blogs.codegear.com/nickhodges/2007/03/28/33579 http://www.stevetrefethen.com/blog/VCLAndRTLEnhancementsSinceDelphi7D7.aspx Delphi 2009 sets the bar even higher. http://blogs.codegear.com/pawelglowacki/2008/11/03/38527 http://blogs.codegear.com/chrispattinson/2008/09/19/38897 Here are some of my favourites: Generics (naturally) and generic collections in the RTL. Improved build configurations where … Read more

upgrading from MVC4 to MVC5

Found out what need to be done in Views\Web.config. Just copy & paste these sections over what you have: <configSections> <sectionGroup name=”system.web.webPages.razor” type=”System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35″> <section name=”host” type=”System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35″ requirePermission=”false” /> <section name=”pages” type=”System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35″ requirePermission=”false” /> </sectionGroup> </configSections> <host factoryType=”System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35″ /> <pages … Read more

Forcing an upgrade of a file that is modified during its initial installation

Newer answers: 1) Companion files, 2) file version hack using Visual Studio, 3) moving the file to another installation path, 4) variations of REINSTALLMODE, 5) “version lying”, etc… All kind of options, most of which are not ideal: File of a new component isn’t installed because there was an old component with the same file … Read more