This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Generated by http://css.spritegen.com CSS Sprite Generator */ | |
| .flag { | |
| width: 16px; | |
| height: 16px; | |
| display: inline-block; | |
| background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEQCAYAAABfpKr9AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAgAElEQVR4nOydd3hU1fb3P3ufmWTSSCH0FlqkKqGoaIwaBVTEdsWGWDASUSOo13qv5Xq9V0Qvyo2Iwdg79gIao1EBQSmChY4SCKEnmbRJMjPn7PePM5nMZCrE93nL81vPE5g5c9Yu6+y1zy7r+92CdrLZOnS01FU+ilwgY+HrvRFClAsoE7osenp6yU/tdXxlCRmjjic2H0x9z+VyoGxPF6No4uEdG8Pp77AOGqXr2qy+r3c947LfpmZ8tnUAKFGOUGUYooiPJofV387gUQYyaP4SoyiT8PmfN2fYKGXIfBC5QMbb/1yJUqocKLNYLEWJiYlh9a2XfzJad8t8BbkgPPmrciFEmabpRa53LghrvzXfXDVqXK9D+QhyUZ7yC8pRlLk2OopiLlv1v7X+DQ0No9xudz6QK4TISL5+hamvVBlKRrQ/cDwwK1j+wCLgl3DKJ8+zj3YLLV9ArvLoCyhXUGZRetEPd6eEtd92Bo8CmW+0y19CGVHU/+R59tFuyBfIXCWEmb9S5QqjzAIR8++o/Tpa/lHzGkZpqHyUykVIU18Z5QhRpiOKNt7t335F64cKxtsaNXshupHne8PCN/p4PytAClGsWVIKnrrs3eZ2eduABfmkzbydLkELt/RkjdITtcW1Ws3s1U/t9de/7htb9R1PLrBfsnumc6eL3q904crtU/l0y8C2exQgWIzmmM27l/npV9Db1kB8oUD4lb+9KFRxIo6CPvjnP/723rYUd2qhgjwh2q6/9ciK9kkU19fXF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Generated by http://css.spritegen.com CSS Sprite Generator */ | |
| .flag { | |
| display: inline-block; | |
| background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAWAAAAGACAYAAACTJbjOAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAgAElEQVR4nOy9d3hVVfr2/1lr75OcnJNGSEiIlIAxdImhaMSGiFhAxS7WUcexoIM6FgbnO874ZXDGOurojF3HigUpoggMjIpBI0WpUjR0SCA9J+fk7L3W+8dJAiGnJTmB9/e73vu6vCS73as8+z7PXms9zxJECf3LRal2Q/14QzAGQT5a54BORQiFphohSpRmtRTmYkzHPNHnk8ponx0NysvLk4HxUsrRWusCIUSOECI55VdfAboaRAmIlaCWUF0/j0WXV8eSX2udbNv2eCHEaKVUgRAiB0huPF2ttS6RUq7UWi8xDGOeECKm/Kk3LEn1erzj/UqN0eh8EDloUgEQVIIuEYjVDikXO13OeZWvj45p+28mN1khzwPGaEQ+kAON/FAJlAj0amCxRM0/ji0xr7/H4x2vlRpjN9dfN9ZfVIIuMRCrhZSLXZ1Q/9QbZqXW1TFeaWOMgHyFaNH+El2iYbUU9mK3m3mVr0+MKf/Rtr9D3z+gAMgRQiQ3lq0aKAFWKqWWAPPS0tJiyt/vrzrRJWvHS8UYLUS+QOcAqSAAVamRJUKr1UrrxXFea/63D3ftlPrX/+XFMbVPv1mgVRO/BkQlUIIQqw2HXGw60+f1qVwaVf+LSBfonyb0R/imgr4ctDO64govGDMx46aLvnM2RXdPcFRVVeVqradqrScJIVrxp974dbBSe9HiHaSewUcTtnSEX2uda9v2VGASEGX98QLvGIYxQwjRIf6kq+b29/jFVKXF5VpH1/5CCK8UeqbLoWfUvDthY0f4t3BsroUxFcSVgCvK2zyg3zOx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias -- -ex=extract_archive | |
| ## extract files | |
| extract_archive () { | |
| if [ -f $1 ] ; then | |
| case $1 in | |
| *.tar.bz2) tar xjfv $1 ;; | |
| *.tar.gz) tar xzfv $1 ;; | |
| *.bz2) bunzip2 $1 ;; | |
| *.rar) rar x $1 ;; | |
| *.gz) gunzip $1 ;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias -- -ex=extract_archive | |
| ## extract files | |
| extract_archive () { | |
| if [ -f $1 ] ; then | |
| case $1 in | |
| *.tar.bz2) tar xjfv $1 ;; | |
| *.tar.gz) tar xzfv $1 ;; | |
| *.bz2) bunzip2 $1 ;; | |
| *.rar) rar x $1 ;; | |
| *.gz) gunzip $1 ;; |
Orientiert sich an: http://taigaio.github.io/taiga-doc/dist/setup-production.html mit Anpassungen für Uberspace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asdfs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Usage: Make a symbolic link to this script and call then. | |
| # get current script path | |
| SCRIPTPATH="$(test -L "$0" && readlink "$0" || echo "$0")" | |
| SCRIPTREALPATH="`readlink -f ${SCRIPTPATH}`" | |
| # if readlink dosnt work | |
| if [ ! -d $SCRIPTREALPATH ] ; then | |
| SCRIPTREALPATH="$(dirname $SCRIPTPATH)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if($argv[1] == '-d') { | |
| echo "start daemon\n"; | |
| while(true) { | |
| if(file_exists('message.txt')) { | |
| $oMessage = json_decode(file_get_contents('message.txt')); | |
| if($oMessage->action == 'sayHello') { | |
| echo "Hello...\n"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'xmlsimple' | |
| require 'date' | |
| require 'fileutils' | |
| require "pp" | |
| time = Time.new | |
| CURRENTDIR=Dir.getwd | |
| ownpid=$$ |