Skip to content

Instantly share code, notes, and snippets.

View PendragonDevelopment's full-sized avatar
🏠
Working from home

Jordan Burke PendragonDevelopment

🏠
Working from home
View GitHub Profile
@PendragonDevelopment
PendragonDevelopment / write
Created July 1, 2019 13:18 — forked from 5outh/write
Journal setup
#! /bin/bash
DATE=`date +%Y-%m-%d`
FILE="./entries/$DATE.md"
if [ ! -f $FILE ]; then
printf "# $DATE\n" >> $FILE
fi
nvim $FILE
git add entries -A

Keybase proof

I hereby claim:

  • I am pendragondevelopment on github.
  • I am pendragondev (https://keybase.io/pendragondev) on keybase.
  • I have a public key ASBlZlbUoL-9C8DKmUAQHm2jNxVuTT5M7jwIGoOmEcsatQo

To claim this, I am signing this object:

@PendragonDevelopment
PendragonDevelopment / statamic-iis
Created October 10, 2012 17:12
Statamic IIS rewrite rules for web.config
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(_config)" ignoreCase="false" />
<action type="CustomResponse" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^(_app)" ignoreCase="false" />
<action type="CustomResponse" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
@PendragonDevelopment
PendragonDevelopment / _grid-base.sass
Created January 20, 2012 20:51
Fluid Desktop & Mobile Grid
// This file requires Sass & Compass.
//
// - http://sass-lang.com
// - http://compass-style.org
// For box-sizing.
@import compass/css3
// `Clear floated elements.
//----------------------------------------------------------------------------------------------------
Verifying that +pendragondev is my openname (Bitcoin username). https://onename.io/pendragondev
@PendragonDevelopment
PendragonDevelopment / 0_reuse_code.js
Created July 11, 2014 18:05
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console