I was trying to come up with some simple css based triangle doodles that could be used for UI control arrows. Simple easy-peasy stuff, if anyone else needs it, feel free....
A Pen by Chris van Hasselt on CodePen.
# ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
# dhis api access | |
# ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
# https://www.dhis2.org/doc/snapshot/en/developer/html/apas07.html | |
# https://github.com/jason-p-pickering/datim-validation | |
# http://www.r-fiddle.org/#/fiddle?id=wHglXleC&version=1 | |
# ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
# setup ======================================================================= | |
require(RCurl) |
I was trying to come up with some simple css based triangle doodles that could be used for UI control arrows. Simple easy-peasy stuff, if anyone else needs it, feel free....
A Pen by Chris van Hasselt on CodePen.
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
<script type="text/javascript"> | |
var badUrlHash = {}; // memoizes badUrls. cuts down on Net Traffic | |
var urlCheck = (function (anAddress) { | |
var badUrlFunc = function (x) { | |
// return a message | |
if (!(x in badUrlHash)) { | |
// add to the badUrlHash, so we don't ping it again. | |
badUrlHash[x] = true; |