Skip to content

Instantly share code, notes, and snippets.

View neerav's full-sized avatar

Neerav D. neerav

View GitHub Profile
document.querySelectorAll("a.logo").forEach(e => e.href = "/library");
@neerav
neerav / gist:2874454
Created June 5, 2012 11:22
Turn on PHP error reporting
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
?>