Skip to content

Instantly share code, notes, and snippets.

View captenmasin's full-sized avatar

Mason Day captenmasin

View GitHub Profile
<?php
//////////////////////////////////
// Reddit "hot" story algorithm //
//////////////////////////////////
function hot($ups, $downs, $date)
{
if (is_string($date)) $date = strtotime($date);
$s = $ups - $downs;
@captenmasin
captenmasin / Coding Standard.md
Created May 5, 2018 11:40
PHP, JS, CSS Coding Standard

Coding Standard

Filenames

  • Filenames are case sensitive
  • Allowed charset: a-zA-Z0-9-.
  • Spaces are not allowed

PHP