Slashdot Mirror


User: mfx

mfx's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:/. and WAP on WAP Bashing · · Score: 1

    another data point: my phone (nokia 6210) could connect and display the first page, but shows
    an error message "Seite nicht verfügbar" (page not available) when i try to follow any of
    the links. the only link that worked was the "click here" banner.

    could this be a simple page-too-large error?

  2. so what have they invended? on Java On 8-bit Platforms · · Score: 1

    After reading all the white papers on their site, I still don't know what 180 has re-invented: FORTH, the subroutine, or the Lisp machine?

  3. Re:Perl is the luggable of computer languages on CGI Programming with Perl · · Score: 5
    In my experience, perl is just about the most portable language around. Problems come up when you call external programs (e.g., unix tools) or assume the existence of specific system calls (e.g, fork), but most perl CGI scripts can be ported by changing a few config parameters (location of log files; document url).

    Compared with this, java is nearly un-portable: many environments are still in the migration toward java 2; and parts of the language can be a major headache, even if they work as announced (ever tried to store BLOBs via JDBC in Oracle? ;-)

    last not least: Perl Modules are, on the average, very easy to install, and with CPAN there exists a simple method to find relevant modules.