I’ve just found this good looking jQuery plugins that allow easy form elements duplication.
Check for yourself here: http://nilambar.com.np/demo/addremove20/
I’ve just found this good looking jQuery plugins that allow easy form elements duplication.
Check for yourself here: http://nilambar.com.np/demo/addremove20/
Webalizer is a great tool to analyse your sites traffic.
Here’s is how I’ve configured mine:
I keep my sites under /var/www/html change this according with with server configuration.
1) Install webalizer
For Debian
apt-get update && apt-get install webalizer
For CentOS
yum install webalizer
Or you could always download and compile
2) create your vhost and folder for webalizer
Here’s an example:
DocumentRoot /var/www/html/webalizer/public_html ErrorLog /var/www/html/webalizer/public_html/logs/error_log CustomLog "|/usr/sbin/cronolog /var/www/html/webalizer/public_html/logs/access_log.%Y%m%d" combined ServerName webalizer.example.com ServerAlias www.webalizer.example.com
3) create this script
#!/bin/bash DATE=`date --date='1 day ago' +%Y%m%d` LOGFILE="access_log.$DATE" for i in $(ls /var/www/html/); do cd /var/www/html/$i/logs STATPATH=/var/www/html/webalizer/public_html/$i if [ ! -d $STATPATH ]; then mkdir $STATPATH fi webalizer -c /etc/webalizer.conf -n $i -o $STATPATH -t $i $LOGFILE done
4) create a cronjob
0 4 * * * /storage/scripts/webstats.sh >> /dev/null 2>&1
And you’re done.
Hey there,
First nightly build of my url shortener as just been realeased to the public.
Can be found here: http://mjs.me/ use it at will.
Note to self: improve the design :P
Less Framework is a cross-device CSS grid system based on using inline media queries.
The idea is to first create a default layout normally, and then additional layouts using inline media queries. Any browsers incompatible with media queries will simply ignore all the additional layouts, and will only use the default one. The additional layouts will inherit any styles given to the default layout, so coding them is a breeze.
All four of the layouts included in Less Framework share a common column-width and gutter-width, which makes it easy to design them consistently. Also included are two sets of typography presets, composed around a baseline grid of 24 px.
Website: http://lessframework.com/