Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| #!/bin/awk -f | |
| # md2html.awk | |
| # by: Jesus Galan (yiyus) <yiyu.jgl@gmail>, May 2009 | |
| # Usage: | |
| # md2html file.md > file.html | |
| # Options: -v esc=false to not escape html | |
| function newblock(nblock){ | |
| if(text) |
| // This work is licensed under the Creative Commons Attribution 3.0 United States License. To view | |
| // a copy of this license, visit http://creativecommons.org/licenses/by/3.0/us/ or send a letter | |
| // to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. | |
| // Copyright 2009 John Tantalo <john.tantalo@gmail.com> | |
| (function () { | |
| // get selection | |
| var selection = window.getSelection ? window.getSelection() : | |
| document.getSelection ? document.getSelection() : |
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |
| LinearizeNestedList <- function(NList, LinearizeDataFrames=FALSE, | |
| NameSep="/", ForceNames=FALSE) { | |
| # LinearizeNestedList: | |
| # | |
| # https://sites.google.com/site/akhilsbehl/geekspace/ | |
| # articles/r/linearize_nested_lists_in_r | |
| # | |
| # Akhil S Bhel | |
| # | |
| # Implements a recursive algorithm to linearize nested lists upto any |
| #' Convert a list of vectors to a data frame. | |
| #' | |
| #' This function will convert a list of vectors to a data frame. This function | |
| #' will handle three different types of lists of vectors. First, if all the elements | |
| #' in the list are named vectors, the resulting data frame will have have a number | |
| #' of columns equal to the number of unique names across all vectors. In cases | |
| #' where some vectors do not have names in other vectors, those values will be | |
| #' filled with \code{NA}. | |
| #' | |
| #' The second case is when all the vectors are of the same length. In this case, |
| javascript:(function(){var p=document.createElement("p");p.innerHTML="<strong>Loading…</strong>";p.id="loadingp";p.style.padding="20px";p.style.background="#fff";p.style.left="20px";p.style.top=0;p.style.position="fixed";p.style.zIndex="9999999";p.style.opacity=".85";document.body.appendChild(p);document.body.appendChild(document.createElement("script")).src="https://gist.github.com/ttscoff/5834741/raw/grablinks.js?x="+(Math.random());})(); |
| A comparison of Collection+JSON, HAL, JSON-LD and SIREN media types. | |
| Discussion at | |
| http://sookocheff.com/posts/2014-03-11-on-choosing-a-hypermedia-format/ |