The the live stream should be active about 7:00 PM EST, today, Thursday November 30th. We should begin recording the live show at about 7:15 PM EST. Please keep in mind that these times are all estimates, but we will try to do the best that we can.
Please note that today we may also be attempting to record an Listener Feedback episode in addition to the regular episode
When active, the live stream can be found at:
http://hydrogen.oshean.org:8000
Please join us, and thanks for listening!
- Larry

So, guys, why aren't the comments activated at the last episode? I'll post the answer here (and will cross-post it to the episode if comments get activated):
--max-rtt-timeout 1250 --initial-rtt-timeout 500 --max-retries 6
I think there is a typo in the documentation, where it says "sets the maximum TCP scan delay to 10 milliseconds", it should be "sets the minimum TCP scan delay to 10 milliseconds"
In case that's true, add --scan_delay 10 to the above.
from: http://insecure.org/nmap/man/man-performance.html
i cannot comment in the PSW52 post so I'll do it here.
The equivalent command for "nmap -t4" is "nmap --max-rtt-timeout 1250 --initial-rtt-timeout 500 --max-retries 6".
Internally, the following variables are set:
o.timing_level = 4;
o.setMinRttTimeout(100);
o.setMaxRttTimeout(1250);
o.setInitialRttTimeout(500);
o.setMaxTCPScanDelay(10);
o.setMaxRetransmissions(6);
For more information have a look at source code at nmap.cc