Skip to content

Instantly share code, notes, and snippets.

View Elikar-KM's full-sized avatar

Elikar Kanane Mugangane Elikar-KM

  • Goma/North Kivu/Republic Democratic of the Congo
View GitHub Profile
@soerenkornetzki
soerenkornetzki / dotnet-framework-and-dotnet-standard-compatibility-list-with-operating-systems.md
Last active May 21, 2024 09:40
.NET Framework (and .NET Standard) Compatibility List with Operating Systems

.NET Framework (and .NET Standard) Compatibility List with Operating Systems

This summary/conclusion will not be updated anymore. I have switched to .NET 5 completely, which runs on Windows 7 SP1 and newer.

For class libraries, I will use the targets .NET Standard 1.1, 2.0 and 2.1 at the same time, together with .NET Framework 2.0 and 4.0. Applications on the other hand will always targeted to .NET 5.0 only.

Recommended minimum system requirements

@timonweb
timonweb / gist:3165322
Created July 23, 2012 18:38
Code to catch all PHP errors which result in 500 Error Code. Include this snippet at the beginning of index.php file
<?php
define('E_FATAL', E_ERROR | E_USER_ERROR | E_PARSE | E_CORE_ERROR |
E_COMPILE_ERROR | E_RECOVERABLE_ERROR);
define('ENV', 'dev');
//Custom error handling vars
define('DISPLAY_ERRORS', TRUE);
define('ERROR_REPORTING', E_ALL | E_STRICT);