No modified codes have been submitted for this Microcode.
Our eternal sins
16. March 2009
16. March 2009
#!/usr/bin/perl use LWP::Simple; use constant PI => 3.14159265358979; ($times) = get("http://www.ndbc.noaa.gov/station_page.php?station=44140") =~ /WTMP\):<\/td>(\d+\.\d+) \°/; while($times){ $sin = sin(($times / 180)*PI); print "$sin\n"; sleep(1); $times *= 1.01; }