I hereby claim:
- I am calweb on github.
- I am calweb (https://keybase.io/calweb) on keybase.
- I have a public key whose fingerprint is 735D B7F6 771F 9CE3 FBCA 8180 7DBF 084B 7426 226A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #! /bin/bash | |
| DAY_DIR=$(date +%d) | |
| MONTH_DIR=$(date +%m) | |
| YEAR_DIR=$(date +%Y) | |
| SLUGIFIED="$(echo "$@" | sed -e 's/[^[:alnum:]]/-/g' \ | |
| | tr -s '-' | tr A-Z a-z)" | |
| mkdir -p "_site/${YEAR_DIR}/${MONTH_DIR}/${DAY_DIR}" | |
| touch "_site/${YEAR_DIR}/${MONTH_DIR}/${DAY_DIR}/${SLUGIFIED}.md" |
| (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| function Alite(XMLHttpRequest) { | |
| XMLHttpRequest = XMLHttpRequest || this.XMLHttpRequest; | |
| function response(req) { | |
| var isJson = req && req.responseText && | |
| req.responseText[0] == '{' || | |
| req.responseText[0] == '['; |
| <% | |
| If Request.ServerVariables("SERVER_PORT")=80 Then | |
| Dim strForceSSL | |
| strForceSSL = "https://" | |
| strForceSSL = strForceSSL & Request.ServerVariables("SERVER_NAME") | |
| strForceSSL = strForceSSL & Request.ServerVariables("URL") | |
| Response.Redirect strForceSSL | |
| End If | |
| %> |