Slashdot Mirror


User: bdash

bdash's activity in the archive.

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

Comments · 70

  1. Re:Think different -- a better way to do it on Encrypting a User's Home Directory Under Mac OS X · · Score: 1

    From memory, the official ICQ client installs into ~/Applications.

  2. Re:Prototypes on More On Kapor's Attempt To Best Outlook · · Score: 3, Informative

    The heading of the linked page is 'Vista: a prototype for OSAF's Networked Personal Information Manager'. It is a prototype. Quoting from the linked page:
    Vista doesn't attempt to address all aspects of the eventual product, so please don't conclude that if something isn't mentioned in this description that it will be absent from the product (or the inverse as well - not everything in Vista will be in our first or subsequent releases). In particular, there wasn't much emphasis on a polished visual appearance, it didn't deal with the calendar at all, and we didn't do much involving outlines within views like we intend to.

    Further on, it goes on to say:
    Vista is written entirely in Python, using the Tkinter toolkit, augmented by Pmw, a widget framework written in Python. Since our real application will be based on wxWindows, most of Vista's code can't be used directly in the real thing. Since it's based on Tkinter, it runs on Linux, Macintosh and Windows.

    Tkinter provides what is is by no means a nice looking interface, but one that works, and does so relatively well across platforms. The controls look out of place simply because they are being drawn by Tk, not a 'more standard' widget set such as GTK or QT. Switching to wxWindows for the final product will provide a nice consistent look and feel on Mac OS X, Linux and Windows.

    Vista is a prototype, nothing more. It is designed to test their ideas on and is not intended to be a fully functional or 'professional' looking.

  3. Re:Subversion vs CVS on Multi-User Subversion · · Score: 5, Interesting

    A good discussion of this was in Linux Journal recently.

    Briefly, CVS lacks version control across file renames, has some issues with binary files, and the CVS code base has serious design issues.

  4. Re:i don't understand on Kiwi Geeks Seek Domain · · Score: 1

    Ah, as King of the World points out .maori.nz is the 11th second level domain name that I missed. This only went live on Tuesday 3 September 2002 which explains its absence from the New Zealand Domain Name Structure document.

  5. Re:i don't understand on Kiwi Geeks Seek Domain · · Score: 5, Informative

    Not sure why the "12th second level domain" phrase surprised you. The New Zealand Domain Name Structure describes the current structure and processes surrounding the creation of new second level .nz domains. It mentions that the general form of NZ domain names is name.domain.nz where name is the user chosen name, and domain is one of .ac, .co, .cri, .gen, .govt, .iwi, .mil, .net, .org and .school.

    The fact that that document only lists 10 second level domains surprises me as this would make .geek.nz the 11th...

  6. Re:uh, aren't there other players? on Controlling iTunes with Perl · · Score: 3, Interesting

    When using Mac OS X I try as hard as possible to avoid 'ports' of *nix software. This is simply because unless a decent job has been done on the porting, the look and feel just does not fit with the rest of the system. To make a *nix application fit in with the look and feel of the system would require a substantial amount of modification to the code, sometimes enough that it would be easier to just start from scratch.

  7. Re:uh, aren't there other players? on Controlling iTunes with Perl · · Score: 2, Informative

    One thing that I really like about iTunes is its very easy to see which tracks belonging to which album, and which album belongs to which artist, using the browse mode. The smart playlists feature also means that simply adding a song by your favourite artist to your music library can make it appear in playlists whose criteria it matches.

  8. Re:Quick Launch Bar on "Longhorn" Alpha Preview · · Score: 3, Informative
    This is getting a lot of topic but...

    Writing a bourne shell script that launches IE with a given URL:
    #!/bin/sh
    osascript -e 'tell app "Internet Explorer"' -e "OpenURL \"$1\"" -e 'end tell'
    And to write a double-clickable shell script of any variety, just give it a .command file extension, and make sure its exectuable bit is set. The script is then opened in a Terminal window and executed when double-clicked.
  9. Re:Rebooting on Apple Posts Security Update 2002-11-21 · · Score: 1

    Of these, only QuickTime requires an update.

    Err... should be only QuickTime requires a reboot.

  10. Re:Rebooting on Apple Posts Security Update 2002-11-21 · · Score: 5, Informative

    Your definition of 'all the time' would appear to be different from what I understand it to be. To me, 'all the time' would mean that after _every_ update I would have to reboot. This is not the case. Currently in Software Update I see two updates available for me to install - Internet Explorer 5.2 Security Update and QuickTime. Of these, only QuickTime requires an update. I dont really see how QuickTime should require an reboot, but it is a rather integral part of the OS. Rebooting after security updates that dont involve core OS changes also seems a little wierd.

  11. Re:Ever think of FTP? on Good POP3 Server for Huge Mailboxes? · · Score: 1

    Personally, I think its a much bigger problem than you make it out to be. First, IIS only comes with the 'Professional' versions of Windows. The fact that it is vulnerable to a large number of exploits unless frequently updated would scare the begeezers out of me enough to flag that idea completely. When IIS is installed, does it start runnning as a service by default or is its activation required somehow?

    As for public FTP servers, there is the issue of finding a public FTP server that allows uploads of files larger than would be considered appropriate for email (from 3MB to over 75MB). Also, once you've uploaded the file and emailed the recipient the URL, _anyone_ can get the file. Not good for anything even slightly private. Yes, email is not private. People can eavesdrop on the mail transfer and read your mail, but the number of people who have access to this situation is much lower. If you dont mind this, and can find a suitable server, a public FTP server is definately a good option to use. Your mailservers will thank you for it.

  12. Re:Ever think of FTP? on Good POP3 Server for Huge Mailboxes? · · Score: 1

    That relies on there being an FTP server for you to access though. If you have an FTP server available, then yes it is very easy. Otherwise, that solution doesnt really help at all.

  13. Re:Ever think of FTP? on Good POP3 Server for Huge Mailboxes? · · Score: 2, Insightful

    How is this relevant to the question asked? The poster asked for a POP3 server that copes well when serving a mailbox > 40MB. This mailbox could have 1 40MB message or it could have 41000 1k messages.

    Sending large emails via SMTP may not be the best useage of the protocol but in many cases (read - when one party is running Windows) it is very difficult to use FTP or scp to accomplish the same task as the tools are simply not available.

  14. Re:Assumptions assumptions! on Weak Elliptic Curve Cryptography Brute-Forced · · Score: 1

    Lots of information about the radix sort is available. Data Structures and Algorithms: Radix Sorting describes the algorithm and its performance characteristics, and Radix Sort Revisited describes how to work around the problem of sorting negative floating point values, as well as reducing the complexity and increasing temporal coherence.

  15. Re:Interface differences more important on Apple Details CSS Bugs in Internet Explorer for Mac · · Score: 1

    Okay, your first two points are good, and I agree that something should be done to address these. However, I have not yet seen any wierd data embedded by Chimera. I may have just missed it so I'm not too sure.

    The last point is completely untrue. Right clicking on the toolbar and choosing 'Customize Toolbar...' allows you to remove all the buttons. Setting the icon size to small will remove much of the vertical white space around the address bar. If this isnt what you mean, I apologize :)

  16. Re:Interface differences more important on Apple Details CSS Bugs in Internet Explorer for Mac · · Score: 2, Interesting

    Out of curiosity, what exactly do you class as properly supporting drag and drop? I've just played around with it in Chimera, and it seems to work as I would expect. Only noticeable difference between it and Internet Explorer is that Chimera displays a grey rectangle representing the dragged text where Internet Explorer displays a grey border around highly transparent text. Neither of these behaviours is consistent with drag and drop from other Mac OS X applications, but I fail to see how Internet Explorers is more correct.

  17. Re:Yeah, good, but ... on Write Pure Python Cocoa Apps · · Score: 2, Interesting

    In the context of the article, an Application is a program that runs, has a native GUI, and has an icon in the dock. This has previously not been possible to do with Python under Mac OS X, without 3rd party toolkits such as wxWindows/wxPython.

  18. iODBC on Using ODBC in Jaguar? · · Score: 1

    A good place to starting looking is at iODBC. They provide an SDK with the necessary headers and library to get started. OpenLink provides ODBC drivers for various database engines, as well as a 'Cross-Platform ODBC SDK'.

  19. Re:Scripting Language - try Lua on Designing Computer Animation Software? · · Score: 1

    If you read the methodology of that performance comparison, you will notice that the author says:

    "All artificial language performance benchmarks, mine included, do not measure real-world performance." (authors emphasis).

    The performance of various languages varies greatly in different situations, and factors other than speed play a part in the choice of a scripting language for an application.

  20. Helpful website on Learning x86 for Non-x86 Assembler Programmers? · · Score: 3, Informative

    A website that could come in handy for learning about x86 assembly language is DDJ Microprocessor Center. In specific, the On-line Intel Documentation links are almost invaluable when learning to code for the x86 architecture. Being Intel reference manuals, they tend to cut to the case relativly quickly.