A business card concept I created for a little challenge over at http://reddit.com/r/web_design!
A Pen by Eduard Kosicky on CodePen.
A business card concept I created for a little challenge over at http://reddit.com/r/web_design!
A Pen by Eduard Kosicky on CodePen.
<div class="preloader"> | |
<div class="container-fluid"> | |
<div class="spinner"> | |
<span class="ball-1"></span> | |
<span class="ball-2"></span> | |
<span class="ball-3"></span> | |
<span class="ball-4"></span> | |
</div> | |
</div> | |
</div> |
A Pen by Alex Bergin on CodePen.
https://github.com/piwik/piwik/blob/master/libs/upgradephp/upgrade.php#L398-L577 |
#!/bin/bash -e | |
# Export environment variables | |
export SERVICE_SKIP=false; | |
export SHIPPABLE_MEMCACHED_PORT=11211; | |
export SHIPPABLE_MEMCACHED_BINARY="/usr/bin/memcached"; | |
export SHIPPABLE_MEMCACHED_CMD="$SHIPPABLE_MEMCACHED_BINARY -d -u nobody -l 127.0.0.1 -p 11211"; | |
export SHIPPABLE_REDIS_PORT=6379; |
#!/bin/sh | |
FILES=$@ | |
for F in $FILES; do | |
BASENAME="${F%.*}" | |
ffmpeg -i $F -acodec libfaac -ab 128k -vcodec mpeg4 -b:v 1200k -mbd 2 -ac 2 -cmp 2 -subcmp 2 -metadata title="$BASENAME" $BASENAME.mp4 | |
done; |
#!/bin/sh | |
# parsing args | |
SIZE_ARG="" | |
SPEED_ARG="" | |
INPUT_FILE="" | |
VERSION_SHORT="1.0" | |
VERSION_LONG="$0 version ${VERSION_SHORT} |
#!/usr/bin/perl -T | |
use strict; | |
use warnings; | |
# | |
## Calomel.org ,:, Download Youtube videos and music using wget | |
## Script Name : youtube_wget_video.pl | |
## Version : 0.34 | |
## Valid from : May 2013 |
Example /etc/nginx/nginx.conf
using FastCGI (e.g. to PHP-FPM) with FastCGI cache enabled. This will capture returned data and persist it to a disk based cache store for a configurable amount of time, great for robust full page caching.
Will need to create a directory to hold cache files, for the example given here that would be:
$ sudo mkdir -p /var/cache/nginxfastcgi
$ chown www-data: /var/cache/nginxfastcgi