Extract and list Swiss municipality coordinates from TopoJSON.
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
/* | |
IE | |
Engine: Trident | |
CSS-prefix: -msie | |
Firefox | |
Engine: Gecko | |
CSS-prefix: -moz | |
Opera | |
Engine: Presto | |
CSS-prefix: -o |
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
λ blink master grep -nr "::-webkit-" . | sed -En 's/.*(::-webkit-[a-z]+(-[a-z]+)?).*/\1/p' | sort -u | |
::-webkit-calendar-picker | |
::-webkit-clear-button | |
::-webkit-color-swatch | |
::-webkit-date-and | |
::-webkit-datetime-edit | |
::-webkit-details-marker | |
::-webkit-distributed | |
::-webkit-file-upload |
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
::-webkit-scrollbar { | |
width: 12px; | |
} | |
::-webkit-scrollbar-track { | |
background: none; | |
} | |
::-webkit-scrollbar-thumb { | |
background: -webkit-linear-gradient(left, #547c90, #002640); |
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 | |
echo installing fonts at $PWD to ~/.fonts/ | |
find . -name '*.ttf' -exec cp \{\} ~/.fonts/ \; | |
find . -name '*.otf' -exec cp \{\} ~/.fonts/ \; | |
echo finished installing |
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
@mixin reset-text-rendering | |
{ | |
/* | |
* See: http://www.usabilitypost.com/2012/11/06/optimize-legibility/ | |
*/ | |
text-rendering: optimizeLegibility; | |
/* | |
* Prevents the browser from using synthesized font-weights. |
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
@function black($opacity){ | |
@return rgba(0,0,0,$opacity) | |
} | |
@function white($opacity){ | |
@return rgba(255,255,255,$opacity) | |
} | |
@mixin box-emboss($opacity, $opacity2){ | |
box-shadow:white($opacity) 0 1px 0, inset black($opacity2) 0 1px 0; | |
} |