adf gadfg
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/perl | |
# Perl Script to convert SVG images including PNG24 encoded images to SVG with PNG8 while retaining transparency | |
# Requirements: | |
# sudo cpan Image::Magick | |
use strict; | |
use warnings; | |
use Image::Magick; |
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
<!DOCTYPE html> | |
<html lang="de"> | |
<head> | |
<meta charset="utf-8" /> | |
<style> | |
body { | |
font-family: Georgia; | |
font-size: 20px; | |
line-height: 1.35em; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>San Juan Island Geology - Interactivity</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="https://mapzen.com/js/mapzen.css"> | |
<script src="https://mapzen.com/js/mapzen.min.js"></script> | |
<style> | |
#map { | |
height: 100%; |
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
/* backend CSS-overrides */ | |
/* most recent Version here —> https://gitlab.com/animaux/kickstart/-/blob/master/workspace/backend-assets/custom.css */ | |
/* colors */ | |
:root { | |
--farbeA: 240,200,120; /* rather bright */ | |
--farbeB: 0,30,60; /* rather dark */ | |
} |
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 | |
require_once(TOOLKIT . '/class.datasource.php'); | |
class datasourcenext_month extends Datasource{ | |
function about(){ | |
return array( | |
'name' => 'Next Month', | |
'author' => array( |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:a="http://getsymphony.com/functions" | |
xmlns:func="http://exslt.org/functions" | |
xmlns:exslt="http://exslt.org/common" | |
xmlns:dyn="http://exslt.org/dynamic" | |
extension-element-prefixes="func dyn exslt a"> | |
<!-- |
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
@font-face { | |
font-family: 'Ndash'; | |
src: local('Arial'); | |
unicode-range: U+2013-2014, U+002D; | |
} | |
body, | |
input, | |
textarea { | |
font-family: 'Ndash', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 'Lucida Grande', Leelawadee, Tahoma, Verdana, sans-serif; |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
extension-element-prefixes="dyn exslt str" | |
xmlns:exslt="http://exslt.org/common" | |
xmlns:dyn="http://exslt.org/dynamic" | |
xmlns:str="http://exslt.org/strings"> | |
<xsl:output method="xml" | |
encoding="UTF-8" |