Delay the DOM ready event / Generate a dummy file
dd if=/dev/zero of=dummy.file bs=1000000 count=1 This will generate a 1Mb (approx) file. Useful for tests. In my particular case, I’m trying to delay the DOM ready event in JavaScript – so I’m going load a large file in a script tag – which will load before the DOM ready is fired. To delay the DOM [...]

