Skip to content

Instantly share code, notes, and snippets.

@rmhsilva
rmhsilva / simple-nginx-webdav.sh
Created October 18, 2017 11:43 — forked from dysinger/simple-nginx-webdav.sh
A simple nginx/webdav setup for use with things like mobile-org
#!/bin/sh
# on ubuntu: need some utils & dev libs
sudo apt-get install apache2-utils openssl libssl-dev libpcre3-dev
# compile nginx
cd /tmp
curl http://nginx.org/download/nginx-0.7.64.tar.gz | tar xz
cd nginx*
./configure --with-http_ssl_module --with-http_dav_module \
@rmhsilva
rmhsilva / my.css
Created December 6, 2015 23:24 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(138deg, #2dc39d, #4082c9);
background-size: 400% 400%;
-webkit-animation: MoveBG 6s ease infinite;
-moz-animation: MoveBG 6s ease infinite;
-o-animation: MoveBG 6s ease infinite;
animation: MoveBG 6s ease infinite;
@-webkit-keyframes MoveBG {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}