Sun To Give StarOffice Java Flavor
ilovestuff writes "Sun Microsystems is building a Java-based development kit for its StarOffice software to help corporate programmers customise desktop applications, a move that better pits it against Microsoft's dominant Office. The software development kit will be available in the middle of next year as part of a minor upgrade to the business version of Sun's StarOffice 6.0, said Joerg Heilig, director of engineering for StarOffice at Sun."
...unless this will help me stay up longer so I can finish this paper that was due yesterday.
Great, so now virus-writers will be able to create cross-platform office viruses.
Sun's StarOffice division intends to make Java a scripting language for StarOffice
Great, let's call it Javascript.
Oh yeah? Well beat this!
./fib.sh 40
# cat fib.sh
fib() {
n=$1
if [ "$n" -lt "2" ]; then
echo -n "1"
else
first=$(fib $((n-1)))
second=$(fib $((n-2)))
echo -n $((first+second))
fi
}
fib $1
# time
(it's been 10 minutes and I'm still waiting...)