Slashdot Mirror


User: ivoras

ivoras's activity in the archive.

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

Comments · 352

  1. Great news! on OpenBSD 3.6 Song Released · · Score: 3, Informative
    From the "What's new" list:

    • SMP support on OpenBSD/i386 and OpenBSD/amd64 platforms.
    • tcpdrop(8), a command to drop TCP connections.
    • A generic IEEE 802.11 framework has been added.
    • Improved support for USB 2.0 (ehci(4)) controllers.
    • ... and more.
    See http://www.openbsd.org/36.html
  2. Changes and upgrade docs on FreeBSD 5.3-BETA3 Available · · Score: 4, Informative
    This article is a preliminary overview (work in progress) of major changes from the 4.x branch, and notes on upgrading.

    http://people.freebsd.org/~bmah/pub/article.html

  3. Re:Text adventures... on Both Tea And No Tea - Updated Hitchhiker's Game · · Score: 1
    There's no need for 4-6 years of R&D. Success is driven by creativity, etc. rather than eye-candy.
    I don't really know how long it took to write even one of the HH books, but from what I've read, most of the good books (of any genre) take at least a year to write. Combine that with the fact that there's acrually a lot more to write for a game than for a book (multiple options/endings/commands/dialogues), and I gather a good *and elaborate* text game would take at least 2 years to make, maybe more.
  4. Re:An idea on Did Your Code Ever Make Anyone Deaf? · · Score: 1
    Infect 1 million computers with this, and you can expect at least 100 seizures. You know someone is working on it.
    Two words for you: *brown noise* ! :)
  5. Re:Good idea on Gosling: If I Designed a Window System Today... · · Score: 1
    Unfortunately, some programs of today (e.g. Mozilla Firefox/Thunderbird) rely heavily on executing "scripted" code.

    What I mean is: In the olden days, resources such as dialogs and code that manages it were included ("embeded?") in the executable file (remember win32 resources?). So true, the OS loader could easily map single resource page and code between multiple applications. Now, applications such as Mozilla keep the dialogs (and even some code behind it) in XML files, and interpret it on as-needed basis.

    Unfurtunately, that means no code sharing between executables - everything is malloc()-ed and managed on the fly. Java has exactly the same problem - multiple Java applications all load, again and again, the same class tree. (IIRC, Java 1.5 will try to address this).

  6. Re:After Galileo, battles still to fight on Mars Rovers Find More Evidence of Water · · Score: 2, Insightful
    I have a feeling that we are still fighting Galileo's battle. A particular strand of Christian thought - medieval Aristotelianism - is still making the running. Aristotle, on no particular evidence, thought that the planets were perfect, lifeless and unchanging - the Schoolmen adopted this as dogma - and scientists and engineers at Nasa are still trying to demonstrate that we occupy what is probably a very ordinary little planet, with a very ordinary set of dominant life forms, against people who think we are unique and very important in this huge universe. You know who you are.
    How about plain old *scientific* reasoning? A true scientist cannot say "we live on a planet, it has water, it has life, why would we not expect to find it on the next planet out?" - that's where experiments come into view: you can't (for example) assume there's water on Mars just because it "feels right"!

    For all we knew before landing on Moon, it just *could* have been made of cheese![*]

    [*] Well, actually, odds were certainly against it, as primeval cheese seems to be pretty scarce in a huge lump of a planet next to it we call Earth :))) But that's not the point! The point is: we had to check. There are (or should be) pretty good SciFi/Alternative History stories about *what if* the moon landings had shown it beeing made of chese or something like that - what would *that* do to the entire science/religion climate at the end of millenium? :)

  7. Re:Bull on The Cost of Computer Naivete · · Score: 2, Insightful
    I can think of a few reasons *your* story might be classified as "bull" :)

    Firstly, installing "everything" on a machine, including Office and other big application suites, on a 400MHz machine, with (very likely) a slow HDD, will take ages. Secondly, what if, for some reason, you can't just reinstall everything? In your case(s), you say you frequently just reformat and start from scratch, but do your customers provide you with the licensed software, or the CD keys of the software you need to install? And what if those are lost, and repairing is the only option?

  8. And for their next trick... on Does A Pentium 4 Need A Weapons License? · · Score: 1

    ... why not ban bricks? Surely history has shown many people were injured by them. Some of them *gasp* even died!

  9. The stupidity and dangers of not learning Latin... on City Officials Almost Ban Foam Cups · · Score: 1
    ... and Old Greek. Such confusion could and should be avoided just by learning what the formula really means in ordinary words!

    di-hydrogen-mono-(o)xide is two-hydrogen-one-oxygen in plain english! (Ok, so you also have to know that -oxide comes from oxygen, but that should be straightforward at least from chemistry classes).

    But noooooo, Latin is toooo hard for young children today...

    And I'm not buying that Latin is old, deprecated and unusable. It *is* in foundations of western civilisation!

  10. Re:FreeBSD on Subversion 1.0 Released · · Score: 2, Informative
    DragonflyBSD (a new-technology fork of FreeBSD 4) had a discussion about using subversion here.

    They were not impressed :) but that was primarily because the lack of cvsup-like tool and 3dparty support.

  11. Re:End of contact (...-.-) on Morse Code Enters The 21st Century · · Score: 1
    From the wiki link in parent:
    Morse code was used as an international standard for maritime communication until 1999. When the French navy ceased using Morse code in 1997, the final message transmitted was "Calling all. This is our last cry before our eternal silence."

    Kind of poetic...
  12. How about GNU? on Rewrites Considered Harmful? · · Score: 2, Informative
    One of the biggest rewrites ever is certainly Linux and the FSF userland tools that accompany Linux distributions.

    While, for example, BSD's 'ls' program can be tracked all the way to the seventies, GNU people of course rewrote it just for the license sake.

    A nice example is the 'ping' tool. The story of ping tells how the program was concieved and made, and the FreeBSD's current ping.c is based on it:

    /*
    * Copyright (c) 1989, 1993
    * The Regents of the University of California. All rights reserved.
    *
    * This code is derived from software contributed to Berkeley by
    * Mike Muuss.
    ... */
    /*
    * P I N G . C
    *
    * Using the Internet Control Message Protocol (ICMP) "ECHO" facility,
    * measure round-trip-delays and packet loss across network paths.
    *
    * Author -
    * Mike Muuss
    * U. S. Army Ballistic Research Laboratory
    * December, 1983
    *
    * Status -
    * Public Domain. Distribution Unlimited.
    * Bugs -
    * More statistics could always be gathered.
    * This program has to run SUID to ROOT to access the ICMP socket.
    */
    That's a codebase 21 years old and still viable!
  13. Re:Question on FreeBSD 5.2 Released · · Score: 2, Informative
    It's about the same thing nowdays, only FreeBSD 5.x has got a lot of support for fancy-ish new-ish hardware, and FreeBSD (which was way younger than 4.8 at the time you specified) has gotten much X11/KDE/GNOME support, so it is on par with linux and every other similar system.

    (There's no such thing as 'Unix GUI', if you rule MacOS X and other commercial systems out - if you install KDE, it will look and behave exactly the same on every single platform that's supported).

    As for the server side, I noticed major improvement (in ATA code, mostly) when I went from FreeBSD 5.1 to 5.2BETA on a really old machine (P133), so I guess the system actually *is* getting more mature. (That same P133 machine has not had a single crash since it started running FreeBSD (5.0 at the time was the hot thing.) - it is a heavily used file server with a new ATA133 controller). There are a few maybes and insecurities around the new threading and scheduler systems, but it seems they are getting more polished by the day (notice that, despite the witnessed stability, it is still not "STABLE" by the high standards :)) ).

  14. Simulating persons' way of speech? on Romancing The Rosetta Stone · · Score: 2, Interesting
    Given the statistical data, this could probably be used to simulate a text written by a specific person, for example Shakespeare.

    "You look nice..." --> "Shall I compare thee to a Summer's day..."

  15. Arthur Clarke, anyone? on China Accelerates Mars Program · · Score: 1
    Although at the time of writing of the '2061: Third odyssey' it didn't seem so, the Chinese may yet be successful in space. :)

    http://virgo.kodu.net/scifi/clarke/odyssey/Clarke, %20Arthur%20C.%20-%202061%20A%20Space%20Odyssey.ht m

  16. Why? on libevent Integration Into NetBSD · · Score: 3, Informative

    This is probably just a provision for Linux compatibility. All 'BSDs have kqueue/kevent mechanisms.

  17. Windows programming language: WSH! on The Little Coder's Predicament · · Score: 1
    Now we have Windows, which typically comes with no built-in programming language.

    Practically all Windows version with IE 4 or 5 come with a built-in programming language, provided by "Windows Scripting Host" (WSH).

    For example, save the following line in a file hello.vbs and you can "run" it:

    MsgBox("Hello world!")

    Use Google to find a tutorial (e.g. this one).

  18. Discreet physics? on The Computational Requirements for the Matrix · · Score: 1

    I'm always wondering... development in physics in this century has actually showed that the reality is 'discreet' - the Planck's constant, Planck's time and similar notions tend to show that energy & matter are 'pixelised'. Voxels, anybody? :)

  19. Re:Internet over powerlines... and IPSec? on Power-over-Ethernet: IEEE 802.3af Draft · · Score: 1

    And, to get really secure power, that is verified to come from your chosen site, can you encapsulate it into a IPSec tunnel? :)))

  20. Re:What? No legal threats? on Interview With The FreeBSD Core Team · · Score: 1
    Well, a huge part of the reason why the BSD's are not more popular are the legal problems that were happening just at the start of Linux boom. See this page.

    Now, all legal issues are solved and there is nothing the BSD's can be sued about :)

  21. A parallel language? on Quantum Computing Programming Language · · Score: 1
    Wouldn't a language that is purely procedural, like ML (or derivatives...) be useful here?
    I remember that a very high level of parallelism can be achieved with great ease, with pattern matching and similar features.
    (a classical example: Fibonnaci numbers:
    fun fib 0 = 1
    | fib 1 = 1
    | fib n = fib (n-2) + fib (n-1);
    )
  22. Hackers! on A 3D Animation of Kernel Source Development · · Score: 1

    This is just dying for a comment:
    Wow man! It's, like... he hacked the Gibson, dude! :)))

  23. Re:What about other OSen? (*BSD, Windows) on Anticipatory Scheduler in Kernel 2.5+ Benchmarked · · Score: 1

    I didn't mean that the scheduler should be ported to other systems and then benchmarked, but to take whatever is already present in those system and stress it with the same benchmarks.

    That WOULD be interesting, if only for the fun of it.

  24. What about other OSen? (*BSD, Windows) on Anticipatory Scheduler in Kernel 2.5+ Benchmarked · · Score: 1

    Is there a comparison, on the same hardware, under same conditions, of the same benchmarks applied on other systems, such as FreeBSD (4-STABLE as well as 5-CURRENT, they are different in many ways) and Windows (both 2k and XP)?

  25. Parallel methods? on A New Protocol For Faster Web Services? · · Score: 1
    The protocol is based on an algorithm that lets it use parallel instead of serial methods to process requests.

    Isn't this already present and is called FTP? (FTP is notoriously ugly when dealing with firewalls).