HTML/CSS: Nice Boxes Around Your Elements
Thursday, January 12th, 2012
Nice examples for boxes around HTML elements here.
Nice examples for boxes around HTML elements here.
echo '
'; print_r($array); echo '
';
Able2Extract and Able2Extract Professional deliver PDF conversion to formatted Excel spreadsheets and more, including PDF to editable Word documents, PDF to PowerPoint (PPT), PDF to Publisher (PUB), PDF to Autocad, PDF to Open Office documents, PDF to HTML, PDF to Text, HTML to Excel, and Text to Excel.
Easy way to convert x/y (or latitude/longitude) tables into postgis geometries: update cities set the_geom = ST_MakePoint(city_latitude, city_longitude);
Every action, every event, every person, everything emits a certain amount of carbon. This interactive visualization examines some of those scenarios. Play around to learn some interesting and surprising information about how much carbon is released during various activities.
Use ProxyFi
What the population cares about is changing each election, and differences between conservatives and democrats are clearly visible.
This visualization gives an overview of the whole citation network. The colors represent the four main groups of journals, which are further subdivided into fields in the outer ring. The segments of the inner ring represent the individual journals, scaled by Eigenfactorâ„¢ Score. In the initial view, the top 1000 citation links are plotted. Line size and opacity represents connection strength.
Nice visualization of people moving from one place to another.
Nice Web GIS application from the swiss government.
Takes CSV or tab-delimited data from Excel and converts it into several web-friendly formats, include JSON and XML.
Great script (in CSS and Javascript) which makes it really easy to display boxplots on a website. Great!
Need to debug AJAX? Beside some tips I found on the Net, here is one I found particularly useful, at least in my current case. Just use a
tail -f /private/var/log/apache2/access_log
Or
tail -f /private/var/log/apache2/error_log
which displays the latest log entries… which can help to solve some major issues.
Gix, this extension helps GIS developers to migrate ESRI ArcView projects to the most popular Free and Open Source alternatives for Geographic Information Systems (GIS).
Like that one. Lightweight, easy, supply of additional information by mouseover. Really neat.
Nice mapserver, enabling vector display as well. Based on GeoExt.
Datamob highlights the connection between public data sources and the interfaces people are building for them.
… and another one ….
Works on negative numbers too. $sigdigs should be >= 0
= 1) {
$number /= 10;
$multiplier *= 10;
}
return round($number, $sigdigs) * $multiplier;
}
?>
Outputs a human readable number.
# Output easy-to-read numbers
# by james at bandit.co.nz
function bd_nice_number($n)
{
// first strip any formatting;
$n = (0+str_replace(",","",$n));
// is this a number?
if(!is_numeric($n)) return false;
// now filter it;
if($n>1000000000000) return round(($n/1000000000000),1).' trillion';
else if($n>1000000000) return round(($n/1000000000),1).' billion';
else if($n>1000000) return round(($n/1000000),1).' million';
else if($n>1000) return round(($n/1000),1).' thousand';
return number_format($n);
}
?>
Outputs:
247,704,360 -> 247.7 million
866,965,260,000 -> 867 billion