GET http://urlspoiler.herokuapp.com/gists?id=required&file=optional&format=optional
id=<the ID of the gist>
- Extract the ID from a gist url:
https://gist.github.com/<id>
file=
/* Code is by A.J. Cates (http://ajcates.com). Find his post here: http://forr.st/~XGU */ | |
#gradient-triangle { | |
width: 60px; | |
height: 60px; | |
position: absolute; | |
top: 3em; | |
left: -30px; | |
clip: rect(auto 30px 60px auto); | |
} |
GET http://urlspoiler.herokuapp.com/gists?id=required&file=optional&format=optional
id=<the ID of the gist>
https://gist.github.com/<id>
file=
// HTML inserted before elem in the DOM | |
elem.insertAdjacentHTML( "beforebegin", ... ) | |
// inside elem, before its first child | |
elem.insertAdjacentHTML( "afterbegin", ... ) | |
// inside elem, after its last child | |
elem.insertAdjacentHTML( "beforeend", ... ) | |
// HTML inserted after elem in the DOM | |
elem.insertAdjacentHTML( "afterend", ... ) |
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |
Options -Indexes |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:hh="http://www.hannonhill.com/XSL/Functions" xmlns:media="http://search.yahoo.com/mrss/" xmlns:xalan="http://xml.apache.org/xalan"> | |
<xsl:output cdata-section-elements="atom:content"/> | |
<xsl:include href="/formats/Format Date"/> | |
<xsl:variable name="indexPageName" select="'index'"/> | |
<xsl:variable name="callingPage" select="/system-index-block/calling-page/system-page"/> | |
<xsl:variable name="current-date" select="/system-index-block/@current-time"/> | |
<xsl:variable name="news-categories" select="//calling-page/system-page/dynamic-metadata[starts-with(name,'category-')]/value"/> | |
<xsl:variable name="file_extension">.html?utm_medium=feed</xsl:variable> |
<div id="rd1"> | |
ONE | |
</div> | |
<div id="rd2"> | |
TWO | |
</div> | |
<div id="rd3"> | |
THREE |
/* Basisvorlage CSS | |
www.projektname.ch | |
Letzte Aenderung: 00.00.20xx | |
*/ | |
/* Farbschema | |
----------------------------------------------------------------------------------------------------------- */ | |
/* | |
Farbton (Element): #xxxxxx;; |
-- PostgreSQL 9.2 beta (for the new JSON datatype) | |
-- You can actually use an earlier version and a TEXT type too | |
-- PL/V8 http://code.google.com/p/plv8js/wiki/PLV8 | |
-- Inspired by | |
-- http://people.planetpostgresql.org/andrew/index.php?/archives/249-Using-PLV8-to-index-JSON.html | |
-- http://ssql-pgaustin.herokuapp.com/#1 | |
-- JSON Types need to be mapped into corresponding PG types | |
-- |