Skip to content

Instantly share code, notes, and snippets.

@jgmac1106
jgmac1106 / BloggerTemplate.html
Last active September 26, 2023 18:42
Blogger template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="<$BlogLanguageDirection$>">
<head>
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
<link rel="token_endpoint" href="https://tokens.indieauth.com/token">
<title><$BlogPageTitle$></title>
@troutcolor
troutcolor / pinboardToLinks.scpt
Created October 20, 2017 14:17
An appleScript that pulls recent links from pinboard, make a html list from the and opens in BBEdit ready to edit and post to blog. lins in the description beginning with > are made into blockquotes.
@ex-hota911
ex-hota911 / add-events.gs
Last active October 18, 2017 22:39
Add events to Google Calendar listed in Google Spreadsheet.
/**
* | Start | End | | Calendar | Title | Done |
* |------------|------------|---|-----------|-------|------|
* | 3/26 13:00 | 3/26 14:00 | | | Lunch | |
* |------------|------------|---|-----------|-------|------|
* | 3/26 | | v | Birthdays | Alice | |
*/
var INDEX = {
START: 0,
END: 1,
@luetkemj
luetkemj / wp-query-ref.php
Last active May 25, 2024 10:56
WP: Query $args
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.github.io
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php
*/