
from from techfresh
All things pfff



The model rocket's side or engine retainer ring can separate and cause the rocket to fall without the nose cone separating and the parachute deploying, posing a risk of an impact injury to nearby consumers.What if the people standing nearby weren't consumers, but people following the autarkia philosophy? Won't they get hurt? Or doesn't the model rocket firm care about them getting hurt. What about young kids and babies? Are they already consumers?

But a well deserved one it is: the Glazebrook meteorite is named after one of the developers of the excellent PDL perl data language, the perl way to do Matlab, which just helped me solving a set of linear equations without trouble.





123. Roast Cat as You Wish to Eat It. You will take a cat that is fat, and decapitate it. And after it is dead, cut off the head and throw it away because it is not for eating, for they say that eating the brains will cause him who eats them to lose his senses and judgment. Then flay it very cleanly, and open it and clean it well, and then wrap it in a cloth of clean linen. And bury it beneath the ground where it must be for a day and a night; and then take it out of there and set it to roast on a spit. And roast it over the fire. And when beginning to roast it, grease it with good garlic and oil. And when you finish greasing it, whip it well with a green twig , and this must be done before it is well-roasted, greasing it and whipping it. And when it is roasted, cut it as if it were a rabbit or a kid and put it on a big plate; and take garlic and oil blended with good broth in such a manner that it is well-thinned. And cast it over the cat. And you may eat of it because it is very good food.



#date place latitude longitude
06/04 Berlin 52.31.00 N 13.25.00 E
07/04 Strasbourg 48.35.04 N 07.44.55 E
08/05 Muenchen 48.08.00 N 11.34.00 E
07/05 Tokyo 35.41.00 N 139.46.00 E
10/05 Freiburg 48.00.00 N 07.51.00 E
11/06 Dublin 53.20.33 N 06.15.57 W
12/06 Sao_Paulo 23.30.00 S 46.37.00 W
02/06 Grenoble 45.11.24 N 05.43.12 E
03/06 Montreal 45.30.29 N 73.33.18 W
06/07 Vancouver 49.16.00 N 123.08.00 W
07/07 Vina_del_Mar 33.03.00 S 71.32.30 W
08/07 Sydney 33.52.06 S 151.12.31 E
#!/usr/bin/perl -w
use Math::Trig;
print "#date\tlat.\tlong.\tplace\ttime\tdist\n";
$first = 1;
$fact = 3.14159/180;
$R = 6371;
$latitude_ref = sprintf("%10.4f", 50);
$longitude_ref = sprintf("%10.4f", 8.2711);
$place_ref = "Mainz";
$month_prev = -1;
$day = 2;
while (<>) {
if (m/^#/) {
print;
next;
}
@tab = split, /\s+/;
$date=$tab[0];
$place=$tab[1];
$latitude=$tab[2]." ".$tab[3];
$longitude=$tab[4]." ".$tab[5];
$date =~ s#([0-9]{2})/([0-9]{2})#$2/01/$1#;
$month=$2;
$year=$1;
if ($month == $month_prev) {
$day += 7;
} else {
$day = 2;
}
$latitude =~ s#([0-9]+)\.([0-9]+).([0-9]+)\s+([A-Z])#$dec=sprintf("%5.4f", $2/60+$3/3600); $s=1; if ("$4" eq "S" || "$4" eq "s") {$s=-1;} $l = ($1 + $dec) * $s; $l="$l";#e;
$latitude = sprintf("%10.4f", $latitude);
$longitude =~ s#([0-9]+)\.([0-9]+).([0-9]+)\s+([A-Z])#$dec=sprintf("%5.4f", $2/60+$3/3600); $s=1; if ("$4" eq "W" || "$4" eq "w") {$s=-1;} $l = ($1 + $dec) * $s; $l="$l";#e;
$longitude = sprintf("%10.4f", $longitude);
$time = $year*365 + ($month-1)*30 + $day;
if ($first == 1) {
$day_ref = $day - 1;
$date_ref = sprintf("%02d/%02d/%02d", $month,$day_ref,$year);
$time_ref = $year*365 + ($month-1)*30 + $day_ref;
print "$date_ref\t$latitude_ref\t$longitude_ref\t$place_ref\t$time_ref\t0\n";
$first = 0;
}
$cos_alpha = cos($fact*(90. - $latitude))*cos($fact*(90. - $latitude_ref)) + sin($fact*(90. - $latitude))*sin($fact*(90. - $latitude_ref))*cos($fact*($longitude_ref - $longitude));
$dist = $R*acos($cos_alpha);
print "$date\t$latitude\t$longitude\t$place\t$time\t$dist\n";
$day_nxt = $day + 1;
$date_nxt = sprintf("%02d/%02d/%02d", $month,$day_nxt,$year);
$time_nxt = $year*365 + ($month-1)*30 + $day_nxt;
print "$date_nxt\t$latitude_ref\t$longitude_ref\t$place_ref\t$time_nxt\t0\n";
}
#date lat long place time dist
04/01/06 50.0000 8.2711 Mainz 2281 0
04/01/06 52.5167 13.4167 Berlin 2282 454.262703608682
04/03/06 50.0000 8.2711 Mainz 2283 0
04/01/07 48.5844 7.7486 Strasbourg 2647 161.902911382215
04/03/07 50.0000 8.2711 Mainz 2648 0
05/01/08 48.1333 11.5667 Muenchen 3042 317.323904751761
05/03/08 50.0000 8.2711 Mainz 3043 0
05/01/07 35.6833 139.7667 Tokyo 2677 9363.54420110419
05/03/07 50.0000 8.2711 Mainz 2678 0
05/01/10 48.0000 7.8500 Freiburg 3772 224.50025608341
05/03/10 50.0000 8.2711 Mainz 3773 0
06/01/11 53.3425 -6.2658 Dublin 4167 1066.81746017645
06/03/11 50.0000 8.2711 Mainz 4168 0
06/01/12 -23.5000 -46.6167 Sao_Paulo 4532 9793.4646868345
06/03/12 50.0000 8.2711 Mainz 4533 0
06/01/02 45.1900 5.7200 Grenoble 882 567.938242585956
06/03/02 50.0000 8.2711 Mainz 883 0
06/01/03 45.5081 -73.5550 Montreal 1247 5823.71530042123
06/03/03 50.0000 8.2711 Mainz 1248 0
07/01/06 49.2667 -123.1333 Vancouver 2372 8045.84376783844
07/03/06 50.0000 8.2711 Mainz 2373 0
07/01/07 -33.0500 -71.5417 Vina_del_Mar 2737 12099.4845691498
07/03/07 50.0000 8.2711 Mainz 2738 0
07/01/08 -33.8683 151.2086 Sydney 3102 16514.4120114015
07/03/08 50.0000 8.2711 Mainz 3103 0
#!/usr/bin/gnuplot -persist
set title "Travel map"
unset key
unset border
unset xtics
unset ytics
pl 'w2.dat' t '' w l lt 3
repl 'travel_list_fmt' u 3:2 t '' w lp lt 1 pt 5
set output 'travel_map.eps'
set terminal postscript eps enhanced color solid 20
repl
set terminal X11

#!/usr/bin/gnuplot -persist
set angles degrees
set title "Travel map"
set ticslevel 0
set view 50,95,1.2,1.2
set mapping spherical
set parametric
set samples 32
set isosamples 9
set urange [-90:90]
set vrange [0:360]
set noxtics
set noytics
set noztics
set border 0
unset key
spl cos(u)*cos(v),cos(u)*sin(v),sin(u) with lines lt 0
repl 'w2.dat' w l lt 3
repl 'travel_list_fmt' u 3:2 w p lt 1 pt 7
pause -1
set output 'travel_map_globe.eps'
set terminal postscript eps
enhanced color solid 20
repl
set terminal X11
ln -fs /usr/lib/j2sdk1.5-sun/bin/java /etc/alternatives/java
# apt-get install sun-java5-jdk sun-java5-plugin sun-java5-fonts
or
# apt-get install sun-java5-jre sun-java5-plugin sun-java5-fonts
# Unstable Sid
deb http://http.us.debian.org/debian/ unstable main contrib non-free
# Unstable Sources
deb-src http://http.us.debian.org/debian/ unstable main contrib non-free
APT::Cache-Limit "212582912";
apt-get install sun-java5-jre
root# apt-get -f -m install sun-java5-jre
Reading Package Lists... Done
Building Dependency Tree... Done
sun-java5-jre is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 420 not upgraded.
2 not fully installed or removed.
Need to get 0B of archives.
After unpacking 0B of additional disk space will be used.
Setting up sun-java5-bin (1.5.0-13-1) ...
Could not create the Java virtual machine.
dpkg: error processing sun-java5-bin (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of sun-java5-jre:
sun-java5-jre depends on sun-java5-bin (= 1.5.0-13-1) | ia32-sun-java5-bin (= 1.5.0-13-1); however:
Package sun-java5-bin is not configured yet.
Package ia32-sun-java5-bin is not installed.
dpkg: error processing sun-java5-jre (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
sun-java5-bin
sun-java5-jre
E: Sub-process /usr/bin/dpkg returned an error code (1)
root# apt-get -f -m install ia32-sun-java5-bin
Reading Package Lists... Done
Building Dependency Tree... Done
Package ia32-sun-java5-bin is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
sun-java5-jre
E: Package ia32-sun-java5-bin has no installation candidate
root# apt-get -f -m install sun-java5-bin
Reading Package Lists... Done
Building Dependency Tree... Done
sun-java5-bin is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 420 not upgraded.
2 not fully installed or removed.
Need to get 0B of archives.
After unpacking 0B of additional disk space will be used.
Setting up sun-java5-bin (1.5.0-13-1) ...
Could not create the Java virtual machine.
dpkg: error processing sun-java5-bin (--configure):
subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of sun-java5-jre:
sun-java5-jre depends on sun-java5-bin (= 1.5.0-13-1) | ia32-sun-java5-bin (= 1.5.0-13-1); however:
Package sun-java5-bin is not configured yet.
Package ia32-sun-java5-bin is not installed.
dpkg: error processing sun-java5-jre (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
sun-java5-bin
sun-java5-jre
E: Sub-process /usr/bin/dpkg returned an error code (1)
Interesting quotes i've found in The shadow of the wind, by Carlos Ruiz Zafón (badly translated to english from my french copy, itself translated from spanish even though the writer appears to be catalan...):
Wow, Max, as impressed as i was with all that black-body stuff of yours, i'd never thought you'd make it: But still you've just been declared the 7th manliest man ever! Congrats! Well, errr, we'll have to admit that this is due mostly, ok exclusively to your name... That's still quite impressive, now isn't it?


Flog may refer to: