#HTML presentation tools
There are many HTML presentation tools and they are all created for slightly different reasons. Here's an overview. Please let me know if I forgot any.
##CSSS
CSS-based SlideShow System
Latency Comparison Numbers (~2012) | |
---------------------------------- | |
L1 cache reference 0.5 ns | |
Branch mispredict 5 ns | |
L2 cache reference 7 ns 14x L1 cache | |
Mutex lock/unlock 25 ns | |
Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
Compress 1K bytes with Zippy 3,000 ns 3 us | |
Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
<?php | |
/** | |
* View class. | |
* | |
* | |
*/ | |
class View | |
{ | |
protected $data = array(); | |
<?php | |
/** | |
** @file autoloader.inc.php | |
** @author immeëmosol (programmer dot willfris at nl) | |
** @date 2010-12-06 | |
** Created: lun 2010-12-06, 14:05.13 CET | |
** Last modified: lun 2010-12-06, 15:19.01 CET | |
**/ | |
$classes_directory = dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'classes'; |