master: 8ce061f9c7 Status quo.

This commit is contained in:
Klaus-Uwe Mitterer 2017-02-16 20:33:10 +01:00
commit aeaeb4724b
24 changed files with 4077 additions and 0 deletions

9
_root/index.md Normal file
View file

@ -0,0 +1,9 @@
# Kumis Hirnkotze
> Besser Anarchie als gar keine Regierung!
### Worum es hier geht
- meine Gedanken
- vom Blog eines anderen Menschen
- archivieren

93
archive/index.html Normal file
View file

@ -0,0 +1,93 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Archive</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Klaus-Uwe Mitterer">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href='/assets/stylesheets/bootstrap.min-88238289010db19359d2181e634e95cd.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/style-e81fa375b231bedf6cb2dbc6653570cc.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/google_prettify/sons-of-obsidian-afb0925bfa2d994f17dab93e13fbf999.css' type='text/css' rel='stylesheet' media='all'>
<!-- Le fav and touch icons -->
<!-- Update these with your own images
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container-narrow">
<a class="brand" href="/">Kumis Hirnkotze</a>
<ul class="nav">
<li class="active"><a href="/archive" class="active">Archive</a></li>
<li><a href="/tags">Tags</a></li>
<li><a href="/pages">Pages</a></li>
</ul>
</div>
</div>
</div>
<div class="container-narrow">
<div class="content">
<div class="page-header">
<h1>Archive </h1>
</div>
<div class="row-fluid">
<div class="span12">
<h2>2017</h2>
<h3>February</h3>
<ul>
<li><span>2017-02-15</span> &raquo; <a href="/posts/bargeld-und-geschwurbel">Bargeld und Geschwurbel</a></li>
<li><span>2017-02-06</span> &raquo; <a href="/posts/sicherheit-und-freiheit">Sicherheit und Freiheit</a></li>
</ul>
</div>
</div>
</div>
<hr>
<div class="footer">
<p>&copy; Klaus-Uwe Mitterer
with help from <a href="http://ruhoh.com" target="_blank" title="The Definitive Technical Blogging Framework">ruhoh</a>
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a>
</p>
</div>
</div> <!-- /container -->
<!-- Google Prettify -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js"></script>
<script>
var pres = document.getElementsByTagName("pre");
for (var i=0; i < pres.length; ++i) {
pres[i].className = "prettyprint linenums";
}
prettyPrint();
</script>
<!-- end Google Prettify -->
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,52 @@
/* Pretty printing styles. Used with prettify.js. */
/* SPAN elements with the classes below are added by prettyprint. */
.pln { color: #000 } /* plain text */
@media screen {
.str { color: #080 } /* string content */
.kwd { color: #008 } /* a keyword */
.com { color: #800 } /* a comment */
.typ { color: #606 } /* a type name */
.lit { color: #066 } /* a literal value */
/* punctuation, lisp open bracket, lisp close bracket */
.pun, .opn, .clo { color: #660 }
.tag { color: #008 } /* a markup tag name */
.atn { color: #606 } /* a markup attribute name */
.atv { color: #080 } /* a markup attribute value */
.dec, .var { color: #606 } /* a declaration; a variable name */
.fun { color: red } /* a function name */
}
/* Use higher contrast and text-weight for printable form. */
@media print, projection {
.str { color: #060 }
.kwd { color: #006; font-weight: bold }
.com { color: #600; font-style: italic }
.typ { color: #404; font-weight: bold }
.lit { color: #044 }
.pun, .opn, .clo { color: #440 }
.tag { color: #006; font-weight: bold }
.atn { color: #404 }
.atv { color: #060 }
}
/* Put a border around prettyprinted code snippets. */
pre.prettyprint { padding: 2px; border: 1px solid #888 }
/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 { list-style-type: none }
/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 { background: #eee }

View file

@ -0,0 +1,34 @@
/* desert scheme ported from vim to google prettify */
pre { display: block; background-color: #333 }
pre .nocode { background-color: none; color: #000 }
pre .str { color: #ffa0a0 } /* string - pink */
pre .kwd { color: #f0e68c; font-weight: bold }
pre .com { color: #87ceeb } /* comment - skyblue */
pre .typ { color: #98fb98 } /* type - lightgreen */
pre .lit { color: #cd5c5c } /* literal - darkred */
pre .pun { color: #fff } /* punctuation */
pre .pln { color: #fff } /* plaintext */
pre .tag { color: #f0e68c; font-weight: bold } /* html/xml tag - lightyellow */
pre .atn { color: #bdb76b; font-weight: bold } /* attribute name - khaki */
pre .atv { color: #ffa0a0 } /* attribute value - pink */
pre .dec { color: #98fb98 } /* decimal - lightgreen */
/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { }
@media print {
pre { background-color: none }
pre .str, code .str { color: #060 }
pre .kwd, code .kwd { color: #006; font-weight: bold }
pre .com, code .com { color: #600; font-style: italic }
pre .typ, code .typ { color: #404; font-weight: bold }
pre .lit, code .lit { color: #044 }
pre .pun, code .pun { color: #440 }
pre .pln, code .pln { color: #000 }
pre .tag, code .tag { color: #006; font-weight: bold }
pre .atn, code .atn { color: #404 }
pre .atv, code .atv { color: #060 }
}

View file

@ -0,0 +1,134 @@
/*
* Derived from einaros's Sons of Obsidian theme at
* http://studiostyl.es/schemes/son-of-obsidian by
* Alex Ford of CodeTunnel:
* http://CodeTunnel.com/blog/post/71/google-code-prettify-obsidian-theme
*/
.str
{
color: #EC7600;
}
.kwd
{
color: #93C763;
}
.com
{
color: #66747B;
}
.typ
{
color: #678CB1;
}
.lit
{
color: #FACD22;
}
.pun
{
color: #F1F2F3;
}
.pln
{
color: #F1F2F3;
}
.tag
{
color: #8AC763;
}
.atn
{
color: #E0E2E4;
}
.atv
{
color: #EC7600;
}
.dec
{
color: purple;
}
pre.prettyprint
{
border: 0px solid #888;
}
ol.linenums
{
margin-top: 0;
margin-bottom: 0;
}
.prettyprint {
background: #000;
}
li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9
{
color: #555;
}
li.L1, li.L3, li.L5, li.L7, li.L9 {
background: #111;
}
@media print
{
.str
{
color: #060;
}
.kwd
{
color: #006;
font-weight: bold;
}
.com
{
color: #600;
font-style: italic;
}
.typ
{
color: #404;
font-weight: bold;
}
.lit
{
color: #044;
}
.pun
{
color: #440;
}
.pln
{
color: #000;
}
.tag
{
color: #006;
font-weight: bold;
}
.atn
{
color: #404;
}
.atv
{
color: #060;
}
}
.prettyprint.linenums {
-webkit-box-shadow: inset 40px 0 0 #333, inset 41px 0 0 #222;
-moz-box-shadow: inset 40px 0 0 #333, inset 41px 0 0 #222;
box-shadow: inset 40px 0 0 #333, inset 41px 0 0 #222;
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin: 0 0 0 33px; /* IE indents via margin-left */
}
ol.linenums li {
padding-left: 12px;
color: #888;
line-height: 18px;
}

View file

@ -0,0 +1,51 @@
/* Pretty printing styles. Used with prettify.js. */
/* Vim sunburst theme by David Leibovic */
pre .str, code .str { color: #65B042; } /* string - green */
pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */
pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */
pre .typ, code .typ { color: #89bdff; } /* type - light blue */
pre .lit, code .lit { color: #3387CC; } /* literal - blue */
pre .pun, code .pun { color: #fff; } /* punctuation - white */
pre .pln, code .pln { color: #fff; } /* plaintext - white */
pre .tag, code .tag { color: #89bdff; } /* html/xml tag - light blue */
pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name - khaki */
pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */
pre .dec, code .dec { color: #3387CC; } /* decimal - blue */
pre.prettyprint, code.prettyprint {
 background-color: #000;
 -moz-border-radius: 8px;
 -webkit-border-radius: 8px;
 -o-border-radius: 8px;
 -ms-border-radius: 8px;
 -khtml-border-radius: 8px;
 border-radius: 8px;
}
pre.prettyprint {
 width: 95%;
 margin: 1em auto;
 padding: 1em;
 white-space: pre-wrap;
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE; } /* IE indents via margin-left */
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { }
@media print {
pre .str, code .str { color: #060; }
pre .kwd, code .kwd { color: #006; font-weight: bold; }
pre .com, code .com { color: #600; font-style: italic; }
pre .typ, code .typ { color: #404; font-weight: bold; }
pre .lit, code .lit { color: #044; }
pre .pun, code .pun { color: #440; }
pre .pln, code .pln { color: #000; }
pre .tag, code .tag { color: #006; font-weight: bold; }
pre .atn, code .atn { color: #404; }
pre .atv, code .atv { color: #060; }
}

View file

@ -0,0 +1,30 @@
.com { color: #93a1a1; }
.lit { color: #195f91; }
.pun, .opn, .clo { color: #93a1a1; }
.fun { color: #dc322f; }
.str, .atv { color: #D14; }
.kwd, .linenums .tag { color: #1e347b; }
.typ, .atn, .dec, .var { color: teal; }
.pln { color: #48484c; }
.prettyprint {
padding: 8px;
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
}
.prettyprint.linenums {
-webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
-moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin: 0 0 0 33px; /* IE indents via margin-left */
}
ol.linenums li {
padding-left: 12px;
color: #bebec5;
line-height: 18px;
text-shadow: 0 1px 0 #fff;
}

View file

@ -0,0 +1,70 @@
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
.navbar .nav {
float:right;
}
/* posts index */
.post > h3.title {
position:relative;
padding-top:10px;
}
.post > h3.title span.date {
position:absolute;
right:0;
font-size:0.9em;
}
.post > .more {
margin:10px 0;
text-align:left;
}
/* post-full*/
.post-full .date {
margin-bottom:20px;
font-weight:bold;
}
/* tag_box */
.tag_box {
list-style:none;
margin:0;
overflow:hidden;
}
.tag_box li {
line-height:28px;
}
.tag_box li i {
opacity:0.9;
}
.tag_box.inline li {
float:left;
}
.tag_box a {
padding: 3px 6px;
margin: 2px;
background: #eee;
color:#555;
border-radius: 3px;
text-decoration:none;
border:1px dashed #ccc;
}
.tag_box a span{
vertical-align:super;
font-size:0.8em;
}
.tag_box a:hover {
background-color:#e5e5e5;
}
.tag_box a.active {
background:#57A957;
border:1px solid #4C964D;
color:#FFF;
}

View file

@ -0,0 +1,30 @@
!function(){var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
(function(){function S(a){function d(e){var b=e.charCodeAt(0);if(b!==92)return b;var a=e.charAt(1);return(b=r[a])?b:"0"<=a&&a<="7"?parseInt(e.substring(1),8):a==="u"||a==="x"?parseInt(e.substring(2),16):e.charCodeAt(1)}function g(e){if(e<32)return(e<16?"\\x0":"\\x")+e.toString(16);e=String.fromCharCode(e);return e==="\\"||e==="-"||e==="]"||e==="^"?"\\"+e:e}function b(e){var b=e.substring(1,e.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),e=[],a=
b[0]==="^",c=["["];a&&c.push("^");for(var a=a?1:0,f=b.length;a<f;++a){var h=b[a];if(/\\[bdsw]/i.test(h))c.push(h);else{var h=d(h),l;a+2<f&&"-"===b[a+1]?(l=d(b[a+2]),a+=2):l=h;e.push([h,l]);l<65||h>122||(l<65||h>90||e.push([Math.max(65,h)|32,Math.min(l,90)|32]),l<97||h>122||e.push([Math.max(97,h)&-33,Math.min(l,122)&-33]))}}e.sort(function(e,a){return e[0]-a[0]||a[1]-e[1]});b=[];f=[];for(a=0;a<e.length;++a)h=e[a],h[0]<=f[1]+1?f[1]=Math.max(f[1],h[1]):b.push(f=h);for(a=0;a<b.length;++a)h=b[a],c.push(g(h[0])),
h[1]>h[0]&&(h[1]+1>h[0]&&c.push("-"),c.push(g(h[1])));c.push("]");return c.join("")}function s(e){for(var a=e.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),c=a.length,d=[],f=0,h=0;f<c;++f){var l=a[f];l==="("?++h:"\\"===l.charAt(0)&&(l=+l.substring(1))&&(l<=h?d[l]=-1:a[f]=g(l))}for(f=1;f<d.length;++f)-1===d[f]&&(d[f]=++x);for(h=f=0;f<c;++f)l=a[f],l==="("?(++h,d[h]||(a[f]="(?:")):"\\"===l.charAt(0)&&(l=+l.substring(1))&&l<=h&&
(a[f]="\\"+d[l]);for(f=0;f<c;++f)"^"===a[f]&&"^"!==a[f+1]&&(a[f]="");if(e.ignoreCase&&m)for(f=0;f<c;++f)l=a[f],e=l.charAt(0),l.length>=2&&e==="["?a[f]=b(l):e!=="\\"&&(a[f]=l.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return a.join("")}for(var x=0,m=!1,j=!1,k=0,c=a.length;k<c;++k){var i=a[k];if(i.ignoreCase)j=!0;else if(/[a-z]/i.test(i.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){m=!0;j=!1;break}}for(var r={b:8,t:9,n:10,v:11,
f:12,r:13},n=[],k=0,c=a.length;k<c;++k){i=a[k];if(i.global||i.multiline)throw Error(""+i);n.push("(?:"+s(i)+")")}return RegExp(n.join("|"),j?"gi":"g")}function T(a,d){function g(a){var c=a.nodeType;if(c==1){if(!b.test(a.className)){for(c=a.firstChild;c;c=c.nextSibling)g(c);c=a.nodeName.toLowerCase();if("br"===c||"li"===c)s[j]="\n",m[j<<1]=x++,m[j++<<1|1]=a}}else if(c==3||c==4)c=a.nodeValue,c.length&&(c=d?c.replace(/\r\n?/g,"\n"):c.replace(/[\t\n\r ]+/g," "),s[j]=c,m[j<<1]=x,x+=c.length,m[j++<<1|1]=
a)}var b=/(?:^|\s)nocode(?:\s|$)/,s=[],x=0,m=[],j=0;g(a);return{a:s.join("").replace(/\n$/,""),d:m}}function H(a,d,g,b){d&&(a={a:d,e:a},g(a),b.push.apply(b,a.g))}function U(a){for(var d=void 0,g=a.firstChild;g;g=g.nextSibling)var b=g.nodeType,d=b===1?d?a:g:b===3?V.test(g.nodeValue)?a:d:d;return d===a?void 0:d}function C(a,d){function g(a){for(var j=a.e,k=[j,"pln"],c=0,i=a.a.match(s)||[],r={},n=0,e=i.length;n<e;++n){var z=i[n],w=r[z],t=void 0,f;if(typeof w==="string")f=!1;else{var h=b[z.charAt(0)];
if(h)t=z.match(h[1]),w=h[0];else{for(f=0;f<x;++f)if(h=d[f],t=z.match(h[1])){w=h[0];break}t||(w="pln")}if((f=w.length>=5&&"lang-"===w.substring(0,5))&&!(t&&typeof t[1]==="string"))f=!1,w="src";f||(r[z]=w)}h=c;c+=z.length;if(f){f=t[1];var l=z.indexOf(f),B=l+f.length;t[2]&&(B=z.length-t[2].length,l=B-f.length);w=w.substring(5);H(j+h,z.substring(0,l),g,k);H(j+h+l,f,I(w,f),k);H(j+h+B,z.substring(B),g,k)}else k.push(j+h,w)}a.g=k}var b={},s;(function(){for(var g=a.concat(d),j=[],k={},c=0,i=g.length;c<i;++c){var r=
g[c],n=r[3];if(n)for(var e=n.length;--e>=0;)b[n.charAt(e)]=r;r=r[1];n=""+r;k.hasOwnProperty(n)||(j.push(r),k[n]=q)}j.push(/[\S\s]/);s=S(j)})();var x=d.length;return g}function v(a){var d=[],g=[];a.tripleQuotedStrings?d.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?d.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
q,"'\"`"]):d.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&g.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var b=a.hashComments;b&&(a.cStyleComments?(b>1?d.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):d.push(["com",/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),g.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,q])):d.push(["com",
/^#[^\n\r]*/,q,"#"]));a.cStyleComments&&(g.push(["com",/^\/\/[^\n\r]*/,q]),g.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));if(b=a.regexLiterals){var s=(b=b>1?"":"\n\r")?".":"[\\S\\s]";g.push(["lang-regex",RegExp("^(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*("+("/(?=[^/*"+b+"])(?:[^/\\x5B\\x5C"+b+"]|\\x5C"+s+"|\\x5B(?:[^\\x5C\\x5D"+b+"]|\\x5C"+
s+")*(?:\\x5D|$))+/")+")")])}(b=a.types)&&g.push(["typ",b]);b=(""+a.keywords).replace(/^ | $/g,"");b.length&&g.push(["kwd",RegExp("^(?:"+b.replace(/[\s,]+/g,"|")+")\\b"),q]);d.push(["pln",/^\s+/,q," \r\n\t\u00a0"]);b="^.[^\\s\\w.$@'\"`/\\\\]*";a.regexLiterals&&(b+="(?!s*/)");g.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,
q],["pun",RegExp(b),q]);return C(d,g)}function J(a,d,g){function b(a){var c=a.nodeType;if(c==1&&!x.test(a.className))if("br"===a.nodeName)s(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)b(a);else if((c==3||c==4)&&g){var d=a.nodeValue,i=d.match(m);if(i)c=d.substring(0,i.index),a.nodeValue=c,(d=d.substring(i.index+i[0].length))&&a.parentNode.insertBefore(j.createTextNode(d),a.nextSibling),s(a),c||a.parentNode.removeChild(a)}}function s(a){function b(a,c){var d=
c?a.cloneNode(!1):a,e=a.parentNode;if(e){var e=b(e,1),g=a.nextSibling;e.appendChild(d);for(var i=g;i;i=g)g=i.nextSibling,e.appendChild(i)}return d}for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),d;(d=a.parentNode)&&d.nodeType===1;)a=d;c.push(a)}for(var x=/(?:^|\s)nocode(?:\s|$)/,m=/\r\n?|\n/,j=a.ownerDocument,k=j.createElement("li");a.firstChild;)k.appendChild(a.firstChild);for(var c=[k],i=0;i<c.length;++i)b(c[i]);d===(d|0)&&c[0].setAttribute("value",d);var r=j.createElement("ol");
r.className="linenums";for(var d=Math.max(0,d-1|0)||0,i=0,n=c.length;i<n;++i)k=c[i],k.className="L"+(i+d)%10,k.firstChild||k.appendChild(j.createTextNode("\u00a0")),r.appendChild(k);a.appendChild(r)}function p(a,d){for(var g=d.length;--g>=0;){var b=d[g];F.hasOwnProperty(b)?D.console&&console.warn("cannot override language handler %s",b):F[b]=a}}function I(a,d){if(!a||!F.hasOwnProperty(a))a=/^\s*</.test(d)?"default-markup":"default-code";return F[a]}function K(a){var d=a.h;try{var g=T(a.c,a.i),b=g.a;
a.a=b;a.d=g.d;a.e=0;I(d,b)(a);var s=/\bMSIE\s(\d+)/.exec(navigator.userAgent),s=s&&+s[1]<=8,d=/\n/g,x=a.a,m=x.length,g=0,j=a.d,k=j.length,b=0,c=a.g,i=c.length,r=0;c[i]=m;var n,e;for(e=n=0;e<i;)c[e]!==c[e+2]?(c[n++]=c[e++],c[n++]=c[e++]):e+=2;i=n;for(e=n=0;e<i;){for(var p=c[e],w=c[e+1],t=e+2;t+2<=i&&c[t+1]===w;)t+=2;c[n++]=p;c[n++]=w;e=t}c.length=n;var f=a.c,h;if(f)h=f.style.display,f.style.display="none";try{for(;b<k;){var l=j[b+2]||m,B=c[r+2]||m,t=Math.min(l,B),A=j[b+1],G;if(A.nodeType!==1&&(G=x.substring(g,
t))){s&&(G=G.replace(d,"\r"));A.nodeValue=G;var L=A.ownerDocument,o=L.createElement("span");o.className=c[r+1];var v=A.parentNode;v.replaceChild(o,A);o.appendChild(A);g<l&&(j[b+1]=A=L.createTextNode(x.substring(t,l)),v.insertBefore(A,o.nextSibling))}g=t;g>=l&&(b+=2);g>=B&&(r+=2)}}finally{if(f)f.style.display=h}}catch(u){D.console&&console.log(u&&u.stack||u)}}var D=window,y=["break,continue,do,else,for,if,return,while"],E=[[y,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],M=[E,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],N=[E,"abstract,assert,boolean,byte,extends,final,finally,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"],
O=[N,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,internal,into,is,let,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],E=[E,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],P=[y,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
Q=[y,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],W=[y,"as,assert,const,copy,drop,enum,extern,fail,false,fn,impl,let,log,loop,match,mod,move,mut,priv,pub,pure,ref,self,static,struct,true,trait,type,unsafe,use"],y=[y,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],R=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/,
V=/\S/,X=v({keywords:[M,O,E,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",P,Q,y],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),F={};p(X,["default-code"]);p(C([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",
/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);p(C([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],
["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);p(C([],[["atv",/^[\S\s]+/]]),["uq.val"]);p(v({keywords:M,hashComments:!0,cStyleComments:!0,types:R}),["c","cc","cpp","cxx","cyc","m"]);p(v({keywords:"null,true,false"}),["json"]);p(v({keywords:O,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:R}),
["cs"]);p(v({keywords:N,cStyleComments:!0}),["java"]);p(v({keywords:y,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]);p(v({keywords:P,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]);p(v({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]);p(v({keywords:Q,
hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]);p(v({keywords:E,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]);p(v({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);p(v({keywords:W,cStyleComments:!0,multilineStrings:!0}),["rc","rs","rust"]);
p(C([],[["str",/^[\S\s]+/]]),["regex"]);var Y=D.PR={createSimpleLexer:C,registerLangHandler:p,sourceDecorator:v,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ",prettyPrintOne:D.prettyPrintOne=function(a,d,g){var b=document.createElement("div");b.innerHTML="<pre>"+a+"</pre>";b=b.firstChild;g&&J(b,g,!0);K({h:d,j:g,c:b,i:1});
return b.innerHTML},prettyPrint:D.prettyPrint=function(a,d){function g(){for(var b=D.PR_SHOULD_USE_CONTINUATION?c.now()+250:Infinity;i<p.length&&c.now()<b;i++){for(var d=p[i],j=h,k=d;k=k.previousSibling;){var m=k.nodeType,o=(m===7||m===8)&&k.nodeValue;if(o?!/^\??prettify\b/.test(o):m!==3||/\S/.test(k.nodeValue))break;if(o){j={};o.replace(/\b(\w+)=([\w%+\-.:]+)/g,function(a,b,c){j[b]=c});break}}k=d.className;if((j!==h||e.test(k))&&!v.test(k)){m=!1;for(o=d.parentNode;o;o=o.parentNode)if(f.test(o.tagName)&&
o.className&&e.test(o.className)){m=!0;break}if(!m){d.className+=" prettyprinted";m=j.lang;if(!m){var m=k.match(n),y;if(!m&&(y=U(d))&&t.test(y.tagName))m=y.className.match(n);m&&(m=m[1])}if(w.test(d.tagName))o=1;else var o=d.currentStyle,u=s.defaultView,o=(o=o?o.whiteSpace:u&&u.getComputedStyle?u.getComputedStyle(d,q).getPropertyValue("white-space"):0)&&"pre"===o.substring(0,3);u=j.linenums;if(!(u=u==="true"||+u))u=(u=k.match(/\blinenums\b(?::(\d+))?/))?u[1]&&u[1].length?+u[1]:!0:!1;u&&J(d,u,o);r=
{h:m,c:d,j:u,i:o};K(r)}}}i<p.length?setTimeout(g,250):"function"===typeof a&&a()}for(var b=d||document.body,s=b.ownerDocument||document,b=[b.getElementsByTagName("pre"),b.getElementsByTagName("code"),b.getElementsByTagName("xmp")],p=[],m=0;m<b.length;++m)for(var j=0,k=b[m].length;j<k;++j)p.push(b[m][j]);var b=q,c=Date;c.now||(c={now:function(){return+new Date}});var i=0,r,n=/\blang(?:uage)?-([\w.]+)(?!\S)/,e=/\bprettyprint\b/,v=/\bprettyprinted\b/,w=/pre|xmp/i,t=/^code$/i,f=/^(?:pre|code|xmp)$/i,
h={};g()}};typeof define==="function"&&define.amd&&define("google-code-prettify",[],function(){return Y})})();}()

99
index.html Normal file
View file

@ -0,0 +1,99 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Index</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Klaus-Uwe Mitterer">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href='/assets/stylesheets/bootstrap.min-88238289010db19359d2181e634e95cd.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/style-e81fa375b231bedf6cb2dbc6653570cc.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/google_prettify/sons-of-obsidian-afb0925bfa2d994f17dab93e13fbf999.css' type='text/css' rel='stylesheet' media='all'>
<!-- Le fav and touch icons -->
<!-- Update these with your own images
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container-narrow">
<a class="brand" href="/">Kumis Hirnkotze</a>
<ul class="nav">
<li><a href="/archive">Archive</a></li>
<li><a href="/tags">Tags</a></li>
<li><a href="/pages">Pages</a></li>
</ul>
</div>
</div>
</div>
<div class="container-narrow">
<div class="content">
<div class="page-header">
<h1>Index </h1>
</div>
<div class="row-fluid">
<div class="span12">
<h1 id="toc_0">Kumis Hirnkotze</h1>
<blockquote>
<p>Besser Anarchie als gar keine Regierung!</p>
</blockquote>
<h3 id="toc_1">Worum es hier geht</h3>
<ul>
<li>meine Gedanken</li>
<li>vom Blog eines anderen Menschen</li>
<li>archivieren</li>
</ul>
</div>
</div>
</div>
<hr>
<div class="footer">
<p>&copy; Klaus-Uwe Mitterer
with help from <a href="http://ruhoh.com" target="_blank" title="The Definitive Technical Blogging Framework">ruhoh</a>
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a>
</p>
</div>
</div> <!-- /container -->
<!-- Google Prettify -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js"></script>
<script>
var pres = document.getElementsByTagName("pre");
for (var i=0; i < pres.length; ++i) {
pres[i].className = "prettyprint linenums";
}
prettyPrint();
</script>
<!-- end Google Prettify -->
</body>
</html>

369
index/1/index.html Normal file
View file

@ -0,0 +1,369 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Klaus-Uwe Mitterer">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href='/assets/stylesheets/bootstrap.min-88238289010db19359d2181e634e95cd.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/style-e81fa375b231bedf6cb2dbc6653570cc.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/google_prettify/sons-of-obsidian-afb0925bfa2d994f17dab93e13fbf999.css' type='text/css' rel='stylesheet' media='all'>
<!-- Le fav and touch icons -->
<!-- Update these with your own images
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container-narrow">
<a class="brand" href="/">Kumis Hirnkotze</a>
<ul class="nav">
<li><a href="/archive">Archive</a></li>
<li><a href="/tags">Tags</a></li>
<li><a href="/pages">Pages</a></li>
</ul>
</div>
</div>
</div>
<div class="container-narrow">
<div class="content">
<div class="row-fluid">
<div class="span12">
<div class="_root">
<h3 class="title"><a href="/archive">Archive</a> <span class="date"></span></h3>
<div class="summary">
<h2>2017</h2>
<h3>February</h3>
<ul>
<li>
<span>2017-02-15</span> » <a href="/posts/bargeld-und-geschwurbel">Bargeld und Geschwurbel</a>
</li>
<li>
<span>2017-02-06</span> » <a href="/posts/sicherheit-und-freiheit">Sicherheit und Freiheit</a>
</li>
</ul>
</div>
<div class="more">
<a href="/archive" class="btn btn-small">read more..</a>
</div>
</div>
<div class="_root">
<h3 class="title"><a href="/">Home</a> <span class="date"></span></h3>
<div class="summary ellipsis">
<p><a href="http://blog.davidschlegl.at/bargeld-abschaffen/">"Bargeld abschaffen?"</a> - Diese
Frage wird in einem Artikel gestellt, der vor einigen Tagen an dieser Stelle
veröffentlicht wurde. Die viel wichtigere Frage, die leider unbeantwortet
bleibt, lautet allerdings: Wie kommt man überhaupt erst auf die Idee, dass
jemand das Bargeld abschaffen will? Immerhin ist es die einfachste und
unbürokratischste Möglichkeit, kleine Transaktionen abzuwickeln.</p>
<p>Tatsächlich geistert der Mythos, irgendjemand - die EU, die Grünen, die
Illuminaten - wolle Münzen und Scheine aus dem Verkehr ziehen, damit nur noch
mit Karte gezahlt werden könne, immer wieder einmal durch die sozialen Medien,
allerdings in ähnlichen Kreisen, in denen auch vor Gedankenmanipulation durch
Flugzeug-Kondensstreifen gewarnt und behauptet wird, die Bundesrepublik
Deutschland sei eine GmbH.</p>
<p>Meistens ist es einer von zwei Anlässen, nach denen solche Gerüchte gestreut
werden. Zunächst wäre da die Diskussion über die Abschaffung von Ein- und
Zwei-Cent-Münzen. 2013 stellte EU-Währungskommissar Olli Rehn fest, dass die
Produktionskosten dieser Münzen ihren Wert übersteigen. Dabei sind sie aber auch
die Münzen, von denen die meisten Exemplare angefertigt werden müssen - sie
machen, Stand Dezember 2016, gemeinsam etwa 48% der Umlaufmenge an Euromünzen
aus, aber nur drei Prozent des Gesamtwerts. Die Herstellung ist also ein enormes
Verlustgeschäft.</p>
</div>
<div class="more">
<a href="/" class="btn btn-small">read more..</a>
</div>
</div>
<div class="_root">
<h3 class="title"><a href="/">Index</a> <span class="date"></span></h3>
<div class="summary">
<h1 id="toc_0">Kumis Hirnkotze</h1>
<blockquote>
<p>Besser Anarchie als gar keine Regierung!</p>
</blockquote>
<h3 id="toc_1">Worum es hier geht</h3>
<ul>
<li>meine Gedanken</li>
<li>vom Blog eines anderen Menschen</li>
<li>archivieren</li>
</ul>
</div>
<div class="more">
<a href="/" class="btn btn-small">read more..</a>
</div>
</div>
<div class="_root">
<h3 class="title"><a href="/pages">Pages</a> <span class="date"></span></h3>
<div class="summary">
<ul>
<li><a href="/archive">Archive</a></li>
<li><a href="/">Home</a></li>
<li><a href="/">Index</a></li>
<li class="active"><a href="/pages" class="active">Pages</a></li>
<li><a href="/tags">Tags</a></li>
</ul>
</div>
<div class="more">
<a href="/pages" class="btn btn-small">read more..</a>
</div>
</div>
<div class="_root">
<h3 class="title"><a href="/tags">Tags</a> <span class="date"></span></h3>
<div class="summary ellipsis">
<ul class="tag_box inline">
<li>
<a href="/tags#Bankomat-ref">Bankomat <span>1</span></a>
</li>
<li>
<a href="/tags#Bargeld-ref">Bargeld <span>1</span></a>
</li>
<li>
<a href="/tags#Belgien-ref">Belgien <span>1</span></a>
</li>
<li>
<a href="/tags#Einkauf-ref">Einkauf <span>1</span></a>
</li>
<li>
<a href="/tags#EU-ref">EU <span>2</span></a>
</li>
<li>
<a href="/tags#EZB-ref">EZB <span>1</span></a>
</li>
<li>
<a href="/tags#Finnland-ref">Finnland <span>1</span></a>
</li>
<li>
<a href="/tags#Geb%C3%BChr-ref">Gebühr <span>1</span></a>
</li>
<li>
<a href="/tags#Geldw%C3%A4sche-ref">Geldwäsche <span>1</span></a>
</li>
<li>
<a href="/tags#Irland-ref">Irland <span>1</span></a>
</li>
<li>
<a href="/tags#Karte-ref">Karte <span>1</span></a>
</li>
<li>
<a href="/tags#Kartenzahlungen-ref">Kartenzahlungen <span>1</span></a>
</li>
<li>
<a href="/tags#Kreditkarte-ref">Kreditkarte <span>1</span></a>
</li>
<li>
<a href="/tags#Kriminelle-ref">Kriminelle <span>1</span></a>
</li>
<li>
<a href="/tags#M%C3%BCnzen-ref">Münzen <span>1</span></a>
</li>
<li>
<a href="/tags#Niederlande-ref">Niederlande <span>1</span></a>
</li>
<li>
<a href="/tags#Noten-ref">Noten <span>1</span></a>
</li>
<li>
<a href="/tags#Organisation-ref">Organisation <span>1</span></a>
</li>
<li>
<a href="/tags#Regierung-ref">Regierung <span>2</span></a>
</li>
<li>
<a href="/tags#Scheine-ref">Scheine <span>1</span></a>
</li>
<li>
<a href="/tags#Schweiz-ref">Schweiz <span>1</span></a>
</li>
<li>
<a href="/tags#Staat-ref">Staat <span>1</span></a>
</li>
<li>
<a href="/tags#Transaktion-ref">Transaktion <span>1</span></a>
</li>
<li>
<a href="/tags#W%C3%A4hrung-ref">Währung <span>1</span></a>
</li>
<li>
<a href="/tags#Wert-ref">Wert <span>1</span></a>
</li>
<li>
<a href="/tags#Zahlungsmittel-ref">Zahlungsmittel <span>1</span></a>
</li>
<li>
<a href="/tags#Anschlag-ref">Anschlag <span>1</span></a>
</li>
<li>
<a href="/tags#Bundesheer-ref">Bundesheer <span>1</span></a>
</li>
<li>
<a href="/tags#Daten-ref">Daten <span>1</span></a>
</li>
<li>
<a href="/tags#Datenschutz-ref">Datenschutz <span>1</span></a>
</li>
<li>
<a href="/tags#Demokratie-ref">Demokratie <span>1</span></a>
</li>
<li>
<a href="/tags#EUGH-ref">EUGH <span>1</span></a>
</li>
<li>
<a href="/tags#Europa-ref">Europa <span>1</span></a>
</li>
<li>
<a href="/tags#Europ%C3%A4ischen%20Gerichtshof-ref">Europäischen Gerichtshof <span>1</span></a>
</li>
<li>
<a href="/tags#Freiheit-ref">Freiheit <span>1</span></a>
</li>
<li>
<a href="/tags#Fu%C3%9Ffessel-ref">Fußfessel <span>1</span></a>
</li>
<li>
<a href="/tags#Generalverdacht-ref">Generalverdacht <span>1</span></a>
</li>
<li>
<a href="/tags#Gesetz-ref">Gesetz <span>1</span></a>
</li>
<li>
<a href="/tags#Grenze-ref">Grenze <span>1</span></a>
</li>
<li>
<a href="/tags#Grenzkontrolle-ref">Grenzkontrolle <span>1</span></a>
</li>
<li>
<a href="/tags#Handywertkarte-ref">Handywertkarte <span>1</span></a>
</li>
<li>
<a href="/tags#Information-ref">Information <span>1</span></a>
</li>
<li>
<a href="/tags#Meinungsfreiheit-ref">Meinungsfreiheit <span>1</span></a>
</li>
<li>
<a href="/tags#Nachrichten-ref">Nachrichten <span>1</span></a>
</li>
<li>
<a href="/tags#%C3%96sterreich-ref">Österreich <span>1</span></a>
</li>
<li>
<a href="/tags#Politik-ref">Politik <span>1</span></a>
</li>
<li>
<a href="/tags#Polizei-ref">Polizei <span>1</span></a>
</li>
<li>
<a href="/tags#Privatsph%C3%A4re-ref">Privatsphäre <span>1</span></a>
</li>
<li>
<a href="/tags#Scheinl%C3%B6sung-ref">Scheinlösung <span>1</span></a>
</li>
<li>
<a href="/tags#Sozialstaat-ref">Sozialstaat <span>1</span></a>
</li>
<li>
<a href="/tags#Trojaner-ref">Trojaner <span>1</span></a>
</li>
<li>
<a href="/tags#%C3%9Cberwachung-ref">Überwachung <span>1</span></a>
</li>
<li>
<a href="/tags#Urheberrechtsverletzung-ref">Urheberrechtsverletzung <span>1</span></a>
</li>
<li>
<a href="/tags#Verfassungsgerichtshof-ref">Verfassungsgerichtshof <span>1</span></a>
</li>
<li>
<a href="/tags#VfGH-ref">VfGH <span>1</span></a>
</li>
<li>
<a href="/tags#Vorratsdatenspeicherung-ref">Vorratsdatenspeicherung <span>1</span></a>
</li>
</ul>
</div>
<div class="more">
<a href="/tags" class="btn btn-small">read more..</a>
</div>
</div>
<div class="pagination">
<ul>
<li class="active"><a href="/index/1">1</a></li>
</ul>
</div>
</div>
</div>
</div>
<hr>
<div class="footer">
<p>&copy; Klaus-Uwe Mitterer
with help from <a href="http://ruhoh.com" target="_blank" title="The Definitive Technical Blogging Framework">ruhoh</a>
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a>
</p>
</div>
</div> <!-- /container -->
<!-- Google Prettify -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js"></script>
<script>
var pres = document.getElementsByTagName("pre");
for (var i=0; i < pres.length; ++i) {
pres[i].className = "prettyprint linenums";
}
prettyPrint();
</script>
<!-- end Google Prettify -->
</body>
</html>

104
pages/index.html Normal file
View file

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pages</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Klaus-Uwe Mitterer">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href='/assets/stylesheets/bootstrap.min-88238289010db19359d2181e634e95cd.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/style-e81fa375b231bedf6cb2dbc6653570cc.css' type='text/css' rel='stylesheet' media='all'>
<link href='/assets/stylesheets/google_prettify/sons-of-obsidian-afb0925bfa2d994f17dab93e13fbf999.css' type='text/css' rel='stylesheet' media='all'>
<!-- Le fav and touch icons -->
<!-- Update these with your own images
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
-->
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container-narrow">
<a class="brand" href="/">Kumis Hirnkotze</a>
<ul class="nav">
<li><a href="/archive">Archive</a></li>
<li><a href="/tags">Tags</a></li>
<li class="active"><a href="/pages" class="active">Pages</a></li>
</ul>
</div>
</div>
</div>
<div class="container-narrow">
<div class="content">
<div class="page-header">
<h1>Pages </h1>
</div>
<div class="row-fluid">
<div class="span12">
<ul>
<li><a href="/archive">Archive</a></li>
<li><a href="/">Home</a></li>
<li><a href="/">Index</a></li>
<li class="active"><a href="/pages" class="active">Pages</a></li>
<li><a href="/tags">Tags</a></li>
</ul>
</div>
</div>
</div>
<hr>
<div class="footer">
<p>&copy; Klaus-Uwe Mitterer
with help from <a href="http://ruhoh.com" target="_blank" title="The Definitive Technical Blogging Framework">ruhoh</a>
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a>
</p>
</div>
</div> <!-- /container -->
<!-- Google Prettify -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js"></script>
<script>
var pres = document.getElementsByTagName("pre");
for (var i=0; i < pres.length; ++i) {
pres[i].className = "prettyprint linenums";
}
prettyPrint();
</script>
<!-- end Google Prettify -->
</body>
</html>

167
plugins/github.rb Normal file
View file

@ -0,0 +1,167 @@
require 'tmpdir'
# Usage:
# add to ruhoh-site/plugins/publish/github.rb
# - Your GitHub remote must be setup properly but The command will try to walk you through it.
# - You must have a clean working directory to publish to GitHub pages since the hook is actually triggered by commits.
#
# $ cd ruhoh-site
# $ bundle exec ruhoh publish github
class Ruhoh
class Publish::Github
def run(opts={}, config={})
return false unless can_switch_branch?
_deploy_type = project_page? ? "Project" : "User/Org"
_source_branch = source_branch
_deploy_branch = deploy_branch
_origin_remote = origin_remote
Ruhoh::Friend.say {
plain "Deploying to GitHub Pages."
plain "(Settings based on origin remote name: #{ _origin_remote })"
plain " Type: #{ _deploy_type } page."
plain " Source: '#{ _source_branch }' branch."
plain " Compiled: '#{ _deploy_branch }' branch."
}
if deploy_branch?
puts "Currently in deploy branch: '#{ deploy_branch }'; switching to source branch: '#{ source_branch }'..."
`git checkout #{ source_branch }`
end
ruhoh = compile
# Add to deploy_branch
return false unless checkout_deploy_branch
system("git", "rm", "-rf", ".")
FileUtils.cp_r(File.join(ruhoh.config['compiled_path'], '.'), '.')
`git add .` # system() doesn't work for some reason =/
# Commit and push
system("git", "commit", "-m", "#{ source_branch }: #{ last_commit_message(source_branch) }")
system("git", "push", "origin", deploy_branch)
system('git', 'checkout', source_branch)
end
def compile
ruhoh = Ruhoh.new
#ruhoh.setup
ruhoh.env = 'production'
#ruhoh.setup_paths
ruhoh.setup_plugins
config_overrides = set_configuration(ruhoh.config)
ruhoh.config.merge!(config_overrides)
ruhoh.config['compiled_path'] = File.join(Dir.tmpdir, 'compiled')
ruhoh.compile
ruhoh
end
# Set GitHub-specific configuration settings.
def set_configuration(config)
opts = {}
opts['compile_as_root'] = true
#opts['base_path'] = "/"
if project_page?
if !config['production_url'] || config['production_url'] == "http://sample.com"
#opts['base_path'] = "/#{ repository_name }/"
#Ruhoh::Friend.say { plain "base_path set to: #{ opts['base_path'] } for GitHub project page support" }
else
Ruhoh::Friend.say {
plain "base_path set to: '#{ opts['base_path'] }' because config['production_url'] = '#{ config['production_url'] }'"
}
end
end
opts
end
def deploy_branch
@deploy_branch ||= project_page? ? 'gh-pages' : 'master'
end
def source_branch
(deploy_branch == 'gh-pages') ? 'master' : 'gh-pages'
end
def deploy_branch?
get_branch == deploy_branch
end
def stage_clean?
system('git', 'diff', '--staged', '--exit-code')
end
def working_directory_clean?
system('git', 'diff', '--exit-code')
end
def can_switch_branch?
return true if working_directory_clean? && stage_clean?
puts "Aborting: Deploying requires a clean working directory and staging area."
puts " - Commit changes to add them to the compile output."
puts " - `git stash` changes to omit them from compile output."
false
end
def checkout_deploy_branch
return false unless can_switch_branch?
return true if system('git', 'checkout', deploy_branch)
return true if system("git", "checkout", "--orphan", deploy_branch)
puts "Aborting: Switching to #{ deploy_branch } branch failed."
false