#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
| <?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'; |
| <?php | |
| /** | |
| * View class. | |
| * | |
| * | |
| */ | |
| class View | |
| { | |
| protected $data = array(); | |
| 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 |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
| +----------------------------------------------+ | |
| | Series | Episode | Description | | |
| +--------+---------+---------------------------+ | |
| | 5 | 5 | Jaguar at the Nurburgring | | |
| | 5 | 8 | Race to Verbier | | |
| | 8 | 0 | Winter Olympics Special | | |
| | 8 | 3 | Amphibious Cars | | |
| | 8 | 6 | Caravan Vacation | | |
| | 9 | 3 | America Special | | |
| | 10 | 0 | Polar Special | |
| /** | |
| * A simple menu with a :hover action | |
| */ | |
| html { | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; | |
| font: 100%/2.5 helvetica, arial; | |
| } |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| // Easter calculation in swift after Anonymous Gregorian algorithm | |
| // Also known as Meeus/Jones/Butcher algorithm | |
| import Foundation | |
| func easter(Y : Int) -> NSDate { | |
| let a = Y % 19 | |
| let b = Int(floor(Double(Y) / 100)) | |
| let c = Y % 100 | |
| let d = Int(floor(Double(b) / 4)) |
| Fast, incremental Lua uploads for NodeMCU | |
| INSTALLATION | |
| 1. This script requires nodemcu-uploader and gulp to be installed globally: | |
| $ npm install -g gulp | |
| $ npm install -g nodemcu-tool | |
| $ pip install nodemcu-uploader |