I hereby claim:
- I am zanetaylor on github.
- I am zanetaylor (https://keybase.io/zanetaylor) on keybase.
- I have a public key ASCFQjlTjdRWwgE3y4DnPcQcJkqotfgwpKNtZnperJcRygo
To claim this, I am signing this object:
100 gecs █▋░░░░░░░░░░░░░░░ 1 plays | |
808 State █▋░░░░░░░░░░░░░░░ 1 plays | |
Badfinger █▋░░░░░░░░░░░░░░░ 1 plays | |
Big Star █▋░░░░░░░░░░░░░░░ 1 plays | |
Camera Obscura █▋░░░░░░░░░░░░░░░ 1 plays | |
Charles Lloyd █▋░░░░░░░░░░░░░░░ 1 plays | |
Cocteau Twins █▋░░░░░░░░░░░░░░░ 1 plays | |
Echo & the Bunnymen █▋░░░░░░░░░░░░░░░ 1 plays | |
Eels █▋░░░░░░░░░░░░░░░ 1 plays | |
Eternal Summers █▋░░░░░░░░░░░░░░░ 1 plays |
version: "3" | |
services: | |
web: | |
image: "php:7.4-apache" | |
restart: 'always' | |
depends_on: | |
- mariadb | |
restart: 'always' | |
ports: |
mbMap.on('click', 'prioritization-projects-update', function (e) { | |
var tmpl = $.templates("#project-popup"); | |
var projectDetails = tmpl.render({ | |
projID: e.features[0].properties.Join_ID, | |
name: e.features[0].properties.Street, | |
location: e.features[0].properties.Location, | |
pdesc1: e.features[0].properties.Primary_De, | |
sdesc1: e.features[0].properties.Secondary_, |
Populates the version on my personal site as well as https://registry.jsonresume.org/zanetaylor, courtesy of jsonresume.org. |
<?php | |
/* | |
Template Name: Kitchen Sink | |
*/ | |
get_header(); ?> | |
<div class="row"> | |
<div class="small-12 large-12 columns" role="main"> | |
<?php /* Start loop */ ?> | |
<?php while ( have_posts() ) : the_post(); ?> |
I hereby claim:
To claim this, I am signing this object:
function custom_excerpt_length( $length ) { | |
return 20; | |
} | |
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); |
add_filter('upload_mimes', 'custom_upload_mimes'); | |
function custom_upload_mimes ( $existing_mimes=array() ) { | |
// add the file extension to the array | |
$existing_mimes['svg'] = 'mime/type'; | |
// call the modified list of extensions |
.element { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} |
'use strict'; | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
// Compiles Sass to CSS and generates necessary files if requested | |
compass: { | |
options: { | |
sassDir: 'app/assets/scss', |