
https://www.creativeultra.com/home/glitch-effect-vhs-effect-photoshop-template
As heard on https://soundcloud.com/2timesx/veronica-vasicka-minimal-wave-for-2-times#t=18:09

A CI application was returning me the following error, after the PHP been updated to 7.3.
I had to change a few lines at config/config.php
function __autoload($class)
{
if(strpos($class, 'CI_') !== 0)
{
@include_once( APPPATH . 'core/'. $class . EXT );
}
}
to
spl_autoload_register(function($class) {
@include_once ( APPPATH . 'core/'. $class . EXT );
});
$some_variable_on_include_php = '12'; ob_start(); include 'include.php'; $buffer = ob_get_clean();