Skip to content

Instantly share code, notes, and snippets.

View quinns's full-sized avatar

Quinn Supplee quinns

View GitHub Profile
@quinns
quinns / fonts.css
Created November 4, 2016 16:13
Default system fonts for web sites, inspired by GitHub
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@crittermike
crittermike / d8_time_ago.php
Last active August 28, 2024 06:47
Convert a timestamp into a time duration ("time ago") in Drupal 8
<?php
print t('@time ago', array('@time' => \Drupal::service('date.formatter')->formatTimeDiffSince($timestamp)));
@hedleysmith
hedleysmith / gist:6864687
Created October 7, 2013 08:52
Changing your cron key in Drupal 7, or regenerating a lost cron key
drush vset cron_key $(date | md5sum | head -c 32)