Slashdot Mirror


User: uid8472

uid8472's activity in the archive.

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

Comments · 169

  1. Re:One step closer... on Writely.com Beta - Google's Answer to Word · · Score: 1

    Xemacs can mix text and X11 frames, IIRC. (Of course, that means using xemacs....)

  2. Re:strcpy ok sometimes on Microsoft Port 25 interviews Miguel de Icaza · · Score: 1

    As long as people keep this function q is dangerous attitude, they're going to make the big mistakes- the design mistakes that aren't really fixable: Like postfix using a world-writable queue directory [...]

    The only thing in a Postfix spool writable by other than the Postfix user is the maildrop queue, which is group-writable and owned by the group that postdrop is setgid to. So, whatever problems it may have had in the past that way, they've clearly been fixed.
  3. Re:Rails and legacy databases on What is Ruby on Rails? · · Score: 1
  4. Re:How much? If everyone GZipped, a lot less! on How Much Bandwidth is Required to Aggregate Blogs? · · Score: 1

    If anything supported LZO, that might help with the CPU usage.

  5. Re:The Next Programming Model I Want on What are the Next Programming Models? · · Score: 2, Informative

    You might be interested in Cyclone, a safe variant of C that's influenced by ML and attempts to retain as much of the low-level control of C as it can; it uses what's called region-based memory mangement, which in theory provides useful alternatives to regular GC. (I haven't actually tried to write anything in it, though, so I can't say how practical / easy to use that kind of thing is.) MLKit does something similar, I think.

  6. Re:Now the question is... on VoIP Providers Given 120 Days to Provide 911 Service · · Score: 1

    Absolutely, and they do that all the time. For example, my current phone pair was nabbed from another tenant in my building who'd cancelled their land line, apparently in favor of a cell phone. As for what happens when/if someone else moves in there and actually wants plain old telephone service... well, the repairman didn't care, because it'll probably be someone else's problem.

  7. Re:Summary was right for once on Which is Better, Firefox or Opera? · · Score: 1

    It doesn't replicate Opera's best porn surfing feature though, the Fast Forward button. If you go to a numbered file - say, www.somepornsite.com/images/31.jpg - and hit Fast Forward, it will automatically go to the next number in the series. Hours of fun.

    I wrote that as a bookmarklet (JavaScript bookmark) for Mozilla once, and it'd probably work just as well on anything else halfway modern; it wasn't terribly hard. (Um, so to speak.)

    Which, I guess goes back to the talk of Firefox having extensions and extensibility where Opera has built-in features.

  8. Re:Allow users to uninstall and reinstall as neede on IE7 Will Have Tabbed Browsing · · Score: 1

    I think you mean "welcome to the 1960's and Multics".

  9. Re:Expected on A Review of GCC 4.0 · · Score: 2, Informative

    POVray used to be written in plain C, but recent versions -- 3.5 and later, I think -- use C++.

  10. Re:What's really fun... on One-Third Of Companies Monitoring Email · · Score: 1

    Why are you not treating email as public now? Don't you realise it's not private nor confidential in any way? Why are you sending sensitive information over email presumably unencrypted?

    Becuase it's one thing to be in the right place in the network with a sniffer at the right time to catch a few pieces of mail, and quite another to be able to go and get access to all of someone's stored email by filing the right form.

    IOW, there's more to it than just "secure" vs. "insecure".

  11. Re:hardly unfortunate on How Not to Write FORTRAN in Any Language · · Score: 1

    In C, multidimensional arrays are a fiction, because a[i][j] is given exactly the semantics of *(*(a + i) + j), instead of *(a + i * second_dim + j). That extra dereference takes away a huge number of optimization opportunities.

    C does have true multidimensional arrays; you declare them like int a[32][32][32][32], rather than int ****a. They don't have a special syntax because they don't need one.

  12. Re:ION on Xfce 4.2.0 Released · · Score: 1

    Enh. I tried it for a week or two, then went back to twm.

  13. Re:In related news... on OpenBSD Project Will Release OpenCVS · · Score: 1

    Laugh all you want, but there was a halfway serious effort at one point to see what it would take to get the Plan9 C toolchain (which is vastly simpler than GCC, although ISTR it doesn't support all of ANSI C) released under a BSD-compatible license. I think the motivation was a combination of GCC's GPL-ness and its size/complexity.

  14. Re:Doesn't work for me (OmniWeb 5.something beta) on New Vulnerability Affects All Browsers · · Score: 1

    It's OmniWeb. The same thing -- the CitiBank pop-up replacing the first Secunia window (and being told I have no pop-up blocking when I do) -- happens to me with OW 5.1b4 and no proxy.

  15. Re:I *want* to be enthused, but... on Python 2.4 Final Released · · Score: 1

    3) Prefixes for "struct" fields in standard library are redundant

    They are now, but they weren't when Unix was written. For that matter, "." and "->" weren't redundant back then; there's at least one place in the Lions Book where there's an int on the left-hand side of a ".", and a few others with ints on the LHS of "->", and the meanings are different.

  16. Re:Heritage on Source Code for CTSS released · · Score: 1

    Also, there's an important difference between a 36-bit word-addressed system in the 60's or 70's (when disks and files were much smaller than they are now) and a 32-bit octet-addressed system today, namely that having a single file that's too big to be memory-mapped just wouldn't have happened then (I assume), but is definitely a big issue now.

    With a 64-bit octet-addressed system, though, things are a little different....

  17. Re:But DON'T get into the habit of using reboot. on Windows Upgrade, FAA Error Cause LAX Shutdown · · Score: 1

    *BSD also has reboot/halt/poweroff that aren't confused as to their function the way Linux's are. But...

    [On] SunOS ... [j]ust pass the appropriate option to shutdown... (-r for reboot, -p for poweroff, halt is the default)

    ...on BSD (well, NetBSD at least), however, it's shutdown -h for halt, and the default is to drop back to single-user. Fun, no?

  18. Re:Alternate ways to achieve their goals. on Satellite Pics Going Dark? · · Score: 2, Funny

    We have always been at war with Oceania.

  19. Re:SPF is an anti-forgery tool, not an anti-spam t on Spammers Are Early Adopters of SPF Standard · · Score: 1

    Or you can have your SMTP envelope sender be whatever@my-ip-provider.net, but set the From: header to me@somewhere.edu; or, failing that, there's still the Reply-To: header.

  20. The 60's called; they want their technology back. on Why is Java Considered Un-Cool? · · Score: 1

    Java is a strongly typed language therefore you have to tell the compiler exactly what you intend to use. And if you make a mistake in the way you use it, the compiler has the guts to tell you that you were wrong.

    Leaving aside the fact that static typing and strong typing are not the same thing, there is more to life than FORTRAN vs. Lisp. Take, for instance, type inference --- which, at 20-odd years old, seems to be a little too cutting-edge for industry.

  21. Re:Helps wardrivers find the good stuff... on Anti-Wi-Fi Wallpaper · · Score: 1

    Maybe someone will write a program that lets them dial up all the company's phone extensions looking for illicit modems.

  22. Re:Gentoo on CERT Warns Of Multiple Vulnerabilities In Libpng · · Score: 1

    Answering myself: judging by the more recent advisory, it's not, or there were more bugs than -r7 fixed, or something.

  23. Re:Gentoo on CERT Warns Of Multiple Vulnerabilities In Libpng · · Score: 1

    I seem to recall reading, a few days ago, a Gentoo security advisory about libpng, wherein was recommended upgrading to at least 1.2.5-r7, which had a fix. Was that the same bug as this?

  24. Autorun... on Beastie Boys' New Album Silently Installs DRM Code · · Score: 1

    ...used to be enabled in the Mac world, until a virus went around a few years ago (pre-X) that used that feature to propagate. Now it's not. Interestingly, I don't recall ever hearing about anything similar for Windows; corporate-sponsored malware like this, yes, but not viruses.

  25. Re:Are they trying to... on Star Trek: New Voyages, Downloadable Video · · Score: 1

    Star Trek Voyager: "To boldly promote the worst captain ever! Yeah, Janeway - you go, girl. Magically know stuff that no one else does. Cool, baby!!!"

    Oh, like Picard didn't do that all the time?