Verbose GC format

Hello,
I'm searching a official documentation that describe the format of the log produced by the option -verbose:gc for differents versions of jre (since 1.5 to 1.7 if possible).
It seems weird to me that I haven't been able to find an official paper.
Does someone know where I can find this kind of information ?
Thanks you !
Regards,
Thibaut

I found an article with the format of differents garbage collector log but it's for the jdk 1.4...
Anyone has something more up to date ?
By the way, here is the link : http://developers.sun.com/mobility/midp/articles/garbagecollection2/#a.4

Similar Messages

  • WLC "DHCP Option 82 Remote Id field format"

    On WLC, does "DHCP Option 82 Remote Id field format" show client hostname on wlc monitor

    Hi Jonathan with sub option 2, from your example D is the node identifier.
    When seeing the variable per connection type, I would give a safe assumption it is verbose padding the sub type 1.
    The verbose pad formatting for the packet should contain
    sub option
    length
    node identifier
    port type
    interface number
    vlan id
    For normal pad format it should contain
    sub option
    length
    circuit
    length
    vlan id
    interface number
    -Tom
    Please mark answered for helpful posts

  • Emacs and pylookup

    Hi,
    I've been trying to install pylookup from here: https://github.com/tsgates/pylookup , using README and this http://pygments.org/demo/4772/ sample.
    pylookup commands are available, but always 'No matches for "os"' or anything else.
    I tried building a base from either python-docs package material
    $ ./pylookup.py -u /usr/share/doc/python/html/
    or online documentation
    $ ./pylookup.py -u http://docs.python.org
    but no use. pylookup.db remains empty as it probably should not.
    I tried to change the Python version in the makefile (2 to 3 and back)
    VER := $(shell python --version 2>&1 | grep -o "[0-9].[0-9].[0-9]")
    ZIP := python-${VER}-docs-html.zip
    URL := http://docs.python.org/archives/${ZIP}
    download:
        @if [ ! -e $(ZIP) ] ; then     \
            echo "Downloading ${URL}"; \
            wget ${URL};               \
            unzip ${ZIP};              \
        fi
        ./pylookup.py -u $(ZIP:.zip=)
    .PHONY: download
    but it did not make any difference. I can't understand, BTW, where the makefile file comes into play. Neither do I see how the thing should know about my browser.
    This is the relevant part of my .emacs:
    ;; Pylookup
    (setq pylookup-dir "~/src/emacs-repos/pylookup")
    (add-to-list 'load-path pylookup-dir)
    (eval-when-compile (require 'pylookup))
    (setq pylookup-program
    (concat pylookup-dir "/pylookup.py"))
    (setq pylookup-db-file
    (concat pylookup-dir "/pylookup.db"))
    (autoload 'pylookup-lookup "pylookup"
    "Lookup SEARCH-TERM in the Python HTML indexes." t)
    (autoload 'pylookup-update "pylookup"
    "Run pylookup-update and create the database at 'pylookup-db-file'." t)
    ;; bind a key for quick lookups
    (global-set-key "\C-ch" 'pylookup-lookup)
    UPD:
    It occured to me to run make, but it ends up with errors:
    $ make
    Downloading http://docs.python.org/archives/python-3.2.2-docs-html.zip
    --2012-01-08 13:31:06-- http://docs.python.org/archives/python-3.2.2-docs-html.zip
    Resolving docs.python.org... 82.94.164.162, 2001:888:2000:d::a2
    Connecting to docs.python.org|82.94.164.162|:80... connected.
    HTTP request sent, awaiting response... 404 Not Found
    2012-01-08 13:31:07 ERROR 404: Not Found.
    unzip: cannot find or open python-3.2.2-docs-html.zip, python-3.2.2-docs-html.zip.zip or python-3.2.2-docs-html.zip.ZIP.
    make: *** [download] Error 9
    The whole make thing seems optional, though. Or does it?
    Last edited by Llama (2012-01-08 09:40:59)

    I tried to run pylookup.py in pdb, on  the local doc source:
    ./pylookup.py -u /usr/share/doc/python/html/
    It ran fine until this statement:  parser.feed(index), line 227. No exceptions raised (at least I didn't catch any); looks like it silently refused to dump the index into pylookup.db.
    I suspect Python 3 incompatibility (at least Python 2.7 examples from my crash course in debugging took some toll, and it wasn't always syntax). Unfortunately, my expertise stops at line 227 .
    pylookup.py, exactly as debugged:
    #!/usr/bin/env python
    Pylookup is to lookup entries from python documentation, especially within
    emacs. Pylookup adopts most of ideas from haddoc, lovely toolkit by Martin
    Blais.
    (usage)
    ./pylookup.py -l ljust
    ./pylookup.py -u http://docs.python.org
    from __future__ import with_statement
    import os
    import sys
    import re
    import pdb
    try:
    import cPickle as pickle
    except:
    import pickle
    import formatter
    from os.path import join, dirname, exists, abspath, expanduser
    from contextlib import closing
    if sys.version_info[0] == 3:
    import html.parser as htmllib
    import urllib.parse as urlparse
    import urllib.request as urllib
    else:
    import htmllib, urllib, urlparse
    VERBOSE = False
    FORMATS = {
    "Emacs" : "{entry}\t({desc})\t[{book}];{url}",
    "Terminal" : "{entry}\t({desc})\t[{book}]\n{url}"
    def build_book(s, num):
    Build book identifier from `s`, with `num` links.
    for matcher, replacement in (("library", "lib"),
    ("c-api", "api"),
    ("reference", "ref"),
    ("", "etc")):
    if matcher in s:
    return replacement if num == 1 else "%s/%d" % (replacement, num)
    def trim(s):
    Add any globle filtering rules here
    s = s.replace( "Python Enhancement Proposals!", "")
    s = s.replace( "PEP ", "PEP-")
    return s
    class Element(object):
    def __init__(self, entry, desc, book, url):
    self.book = book
    self.url = url
    self.desc = desc
    self.entry = entry
    def __format__(self, format_spec):
    return format_spec.format(entry=self.entry, desc=self.desc,
    book=self.book, url=self.url)
    def match_insensitive(self, key):
    Match key case insensitive against entry and desc.
    `key` : Lowercase string.
    return key in self.entry.lower() or key in self.desc.lower()
    def match_sensitive(self, key):
    Match key case sensitive against entry and desc.
    `key` : Lowercase string.
    return key in self.entry or key in self.desc
    def match_in_entry_insensitive(self, key):
    Match key case insensitive against entry.
    `key` : Lowercase string.
    return key in self.entry.lower()
    def match_in_entry_sensitive(self, key):
    Match key case sensitive against entry.
    `key` : Lowercase string.
    return key in self.entry
    def get_matcher(insensitive=True, desc=True):
    Get `Element.match_*` function.
    >>> get_matcher(0, 0)
    <unbound method Element.match_in_entry_sensitive>
    >>> get_matcher(1, 0)
    <unbound method Element.match_in_entry_insensitive>
    >>> get_matcher(0, 1)
    <unbound method Element.match_sensitive>
    >>> get_matcher(1, 1)
    <unbound method Element.match_insensitive>
    _sensitive = "_insensitive" if insensitive else "_sensitive"
    _in_entry = "" if desc else "_in_entry"
    return getattr(Element, "match{0}{1}".format(_in_entry, _sensitive))
    class IndexProcessor( htmllib.HTMLParser ):
    Extract the index links from a Python HTML documentation index.
    def __init__( self, writer, dirn):
    htmllib.HTMLParser.__init__( self, formatter.NullFormatter() )
    self.writer = writer
    self.dirn = dirn
    self.entry = ""
    self.desc = ""
    self.list_entry = False
    self.do_entry = False
    self.one_entry = False
    self.num_of_a = 0
    self.desc_cnt = 0
    def start_dd( self, att ):
    self.list_entry = True
    def end_dd( self ):
    self.list_entry = False
    def start_dt( self, att ):
    self.one_entry = True
    self.num_of_a = 0
    def end_dt( self ):
    self.do_entry = False
    def start_a( self, att ):
    if self.one_entry:
    self.url = join( self.dirn, dict( att )[ 'href' ] )
    self.save_bgn()
    def end_a( self ):
    global VERBOSE
    if self.one_entry:
    if self.num_of_a == 0 :
    self.desc = self.save_end()
    if VERBOSE:
    self.desc_cnt += 1
    if self.desc_cnt % 100 == 0:
    sys.stdout.write("%04d %s\r" \
    % (self.desc_cnt, self.desc.ljust(80)))
    # extract fist element
    # ex) __and__() (in module operator)
    if not self.list_entry :
    self.entry = re.sub( "\([^)]+\)", "", self.desc )
    # clean up PEP
    self.entry = trim(self.entry)
    match = re.search( "\([^)]+\)", self.desc )
    if match :
    self.desc = match.group(0)
    self.desc = trim(re.sub( "[()]", "", self.desc ))
    self.num_of_a += 1
    book = build_book(self.url, self.num_of_a)
    e = Element(self.entry, self.desc, book, self.url)
    self.writer(e)
    def update(db, urls, append=False):
    """Update database with entries from urls.
    `db` : filename to database
    `urls` : list of URL
    `append` : append to db
    mode = "ab" if append else "wb"
    with open(db, mode) as f:
    writer = lambda e: pickle.dump(e, f)
    for url in urls:
    # detech 'file' or 'url' schemes
    parsed = urlparse.urlparse(url)
    if not parsed.scheme or parsed.scheme == "file":
    dst = abspath(expanduser(parsed.path))
    if not os.path.exists(dst):
    print("Error: %s doesn't exist" % dst)
    exit(1)
    url = "file://%s" % dst
    else:
    url = parsed.geturl()
    # direct to genindex-all.html
    if not url.endswith('.html'):
    url = url.rstrip("/") + "/genindex-all.html"
    print("Wait for a few seconds ..\nFetching htmls from '%s'" % url)
    try:
    index = urllib.urlopen(url).read()
    if not issubclass(type(index), str):
    index = index.decode()
    parser = IndexProcessor(writer, dirname(url))
    with closing(parser):
    parser.feed(index)
    except IOError:
    print("Error: fetching file from the web: '%s'" % sys.exc_info())
    def lookup(db, key, format_spec, out=sys.stdout, insensitive=True, desc=True):
    """Lookup key from database and print to out.
    `db` : filename to database
    `key` : key to lookup
    `out` : file-like to write to
    `insensitive` : lookup key case insensitive
    matcher = get_matcher(insensitive, desc)
    if insensitive:
    key = key.lower()
    with open(db, "rb") as f:
    try:
    while True:
    e = pickle.load(f)
    if matcher(e, key):
    out.write('%s\n' % format(e, format_spec))
    except EOFError:
    pass
    def cache(db, out=sys.stdout):
    """Print unique entries from db to out.
    `db` : filename to database
    `out` : file-like to write to
    with open(db, "rb") as f:
    keys = set()
    try:
    while True:
    e = pickle.load(f)
    k = e.entry
    k = re.sub( "\([^)]*\)", "", k )
    k = re.sub( "\[[^]]*\]", "", k )
    keys.add(k)
    except EOFError:
    pass
    for k in keys:
    out.write('%s\n' % k)
    if __name__ == "__main__":
    pdb.set_trace()
    import optparse
    parser = optparse.OptionParser( __doc__.strip() )
    parser.add_option( "-d", "--db",
    help="database name",
    dest="db", default="pylookup.db" )
    parser.add_option( "-l", "--lookup",
    help="keyword to search",
    dest="key" )
    parser.add_option( "-u", "--update",
    help="update url or path",
    action="append", type="str", dest="url" )
    parser.add_option( "-c", "--cache" ,
    help="extract keywords, internally used",
    action="store_true", default=False, dest="cache")
    parser.add_option( "-a", "--append",
    help="append to the db from multiple sources",
    action="store_true", default=False, dest="append")
    parser.add_option( "-f", "--format",
    help="type of output formatting, valid: Emacs, Terminal",
    choices=["Emacs", "Terminal"],
    default="Terminal", dest="format")
    parser.add_option( "-i", "--insensitive", default=1, choices=['0', '1'],
    help="SEARCH OPTION: insensitive search "
    "(valid: 0, 1; default: %default)")
    parser.add_option( "-s", "--desc", default=1, choices=['0', '1'],
    help="SEARCH OPTION: include description field "
    "(valid: 0, 1; default: %default)")
    parser.add_option("-v", "--verbose",
    help="verbose", action="store_true",
    dest="verbose", default=False)
    ( opts, args ) = parser.parse_args()
    VERBOSE = opts.verbose
    if opts.url:
    update(opts.db, opts.url, opts.append)
    if opts.cache:
    cache(opts.db)
    if opts.key:
    lookup(opts.db, opts.key, FORMATS[opts.format],
    insensitive=int(opts.insensitive), desc=int(opts.desc))

  • Javac classpath ignored

    I'm trying to run javac 1.5.0 in Cygwin but it seems to ignore the classpath I pass in,
    so I get "package does not exist" error. Any ideas?
    Here's my command:
    /cygdrive/c/Program\ Files/java/jdk1.5.0_04/bin/javac \
    -verbose \
    -d classes \
    -classpath .://filer/home/doog/src/adsenseapi/google3/java \
    -sourcepath . \
    ErrorCode.javaHere's part of the verbose output (formatted pretty):
    search path for class files:
    [c:\Program Files\java\jdk1.5.0_04\jre\lib\rt.jar
    c:\Program Files\java\jdk1.5.0_04\jre\lib\jsse.jar
    c:\Program Files\java\jdk1.5.0_04\jre\lib\jce.jar
    c:\Program Files\java\jdk1.5.0_04\jre\lib\charsets.jar,
    c:\Program Files\java\jdk1.5.0_04\jre\lib\ext\dnsns.jar
    c:\Program Files\java\jdk1.5.0_04\jre\lib\ext\localedata.jar
    c:\Program Files\java\jdk1.5.0_04\jre\lib\ext\sunjce_provider.jar
    c:\Program Files\java\jdk1.5.0_04\jre\lib\ext\sunpkcs11.jar]
    //filer7/home/build/google3/java/com/google/common/base/ThrowableFormat.java:8: package javax.servlet does not exist
    import javax.servlet.ServletException;
                        ^The ServletException class is at ./javax/servlet/ServletException.class
    Before that I tried putting servlet.jar in the current directory,
    and I've also tried pointing to j2ee.jar which holds javax.servlet

    Are you certain? I tried semicolon prior to posting the message. That gives a "no source files" error right at the semicolon:
    javac: no source files
    Usage: javac <options> <source files>
    ./compile-errormessages: line 5: //filer/home/doog/src/adsenseapi/google3/java: is a directoryI'm fairly certain that Cywin uses Unix separators, since it also uses forward
    slash instead of backslash.

  • Verbose GC Log Format

    Hi,
    I am interested in using an open source tool called GCViewer (http://www.tagtraum.com/gcviewer.html) to visualize the data from the verbose GC logs. However, it does not currently support the latest jRockit VMs. In order for me to write a data reader that is capable of reading the verbose GC logs from the latest jRockit VMs, I would need to be able to determine the actual format used for the verbose GC logs. I have tried searching on the BEA website, but have been unable to locate any information relating to this. Any help or advice will be much appreciated.
    p.s. The reason I am not using jRockit Mission Control is that I want to be able to compare the performance across different JVMs

    The documentation is at: http://e-docs/jrockit/jrdocs/refman/optionX.html#wp999543
    Note that we do not guarantee that this format will not change in the future.
    Regards,
    /Staffan

  • Help me format my external drive

    Ok here is my problem, the drive got corrupted (my fault, the drive was getting scanned and it lost power) now i hade hopes of restoring it, but that fell through (nothing important was on it) so now i try to format the drive and i get an input and out put error, then i try to partion it, but that also fails.....so then i connected it to my windows and to access the drive i have to go through disk manager and the partion and the format fails...this also happens to another drive of mine that was corrupted form another issue......
    i have giiven u every piece of inforamtion i have, please help me, also i want all information on the enclousre, and azny update drivers for it, i hope i have given enough information
    Here is the EXACT drive in question.
    http://www.geeks.com/details.asp?invtid=AP35-C&cat=CAS
    Here is the EXACT hard drive i use.
    http://wdc.custhelp.com/cgi-bin/wdc.cfg/php/enduser/stdadp.php?p_faqid=932&p_created=1049408910&p_sid=N_BmnJ5i&p_lva=&p_sp=cF9zcmNoPTEm cF9zb3J0X2J5PSZwX2dyaWRzb3J0PSZwX3Jvd19jbnQ9MiZwX3Byb2RzPSZwX2NhdHM9JnBfcHY9JnBf Y3Y9JnBfc2VhcmNoX3R5cGU9c2VhcmNoX2ZubCZwX3BhZ2U9MSZwX3NlYXJjaF90ZXh0PXdkMjUwMGxi &p_li=&ptopview=1
    here is all the information on my compouter
    Cingullar
    4/26/05 11:33 PM
    Hardware:
    Hardware Overview:
    Machine Name: PowerBook G4 15"
    Machine Model: PowerBook5,6
    CPU Type: PowerPC G4 (1.2)
    Number Of CPUs: 1
    CPU Speed: 1.67 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 1 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.1f1
    Serial Number: YD5220XLRG4
    Network:
    Built-in Ethernet:
    Type: Ethernet
    Hardware: Ethernet
    BSD Device Name: en0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:88:bf:e8
    Media Options:
    Media Subtype: none
    AirPort:
    Type: AirPort
    Hardware: AirPort
    BSD Device Name: en1
    IPv4 Addresses: 192.168.2.6
    IPv4:
    Addresses: 192.168.2.6
    Configuration Method: DHCP
    Interface Name: en1
    Router: 192.168.2.1
    Subnet Masks: 255.255.255.0
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Default Zone: *
    Interface Name: en1
    Network ID: 65307
    Node ID: 151
    DNS:
    Domain Name: Belkin
    Server Addresses: 192.168.2.1
    DHCP Server Responses:
    Domain Name: Belkin
    Domain Name Servers: 192.168.2.1
    Lease Duration (seconds): 0
    DHCP Message Type: 0x05
    Routers: 192.168.2.1
    Server Identifier: 192.168.2.1
    Subnet Mask: 255.255.255.0
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: No
    HTTP Proxy Enabled: No
    HTTP Proxy Port: 8999
    HTTP Proxy Server: 127.0.0.1
    HTTPS Proxy Enabled: No
    HTTPS Proxy Port: 8999
    HTTPS Proxy Server: 127.0.0.1
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:9c:3d:aa
    Media Options:
    Media Subtype: autoselect
    Internal Modem:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Bluetooth:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: Bluetooth-Modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:ff:fe:88:bf:e8
    Media Options: Full Duplex
    Media Subtype: autoselect
    VPN (L2TP):
    Type: PPP (L2TP)
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Software:
    System Software Overview:
    System Version: Mac OS X 10.4.6 (8I127)
    Kernel Version: Darwin 8.6.0
    Boot Volume: Steven
    Computer Name: Cingullar
    User Name: Steven Feldman (steven)
    ATA:
    ATA Bus:
    MATSHITADVD-R UJ-845E:
    Model: MATSHITADVD-R UJ-845E
    Revision: DMP2
    Serial Number:
    Detachable Drive: No
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    ATA Bus:
    FUJITSU MHT2080AH:
    Capacity: 74.53 GB
    Model: FUJITSU MHT2080AH
    Revision: 81EC
    Serial Number: NP0PT552APF0
    Removable Media: No
    Detachable Drive: No
    BSD Name: disk0
    Protocol: ATA
    Unit Number: 0
    Socket Type: Internal
    OS9 Drivers: No
    S.M.A.R.T. status: Verified
    Volumes:
    Steven:
    Capacity: 74.41 GB
    Available: 3.25 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk0s3
    Mount Point: /
    Audio (Built In):
    Built In Sound Card:
    Devices:
    Texas Instruments TAS3004:
    Inputs and Outputs:
    Internal Microphone:
    Controls: Left, Right
    Playthrough: Yes
    PluginID: TAS
    Line Level Input:
    Controls: Left, Right
    Playthrough: Yes
    PluginID: TAS
    Headphones:
    Controls: Mute, Left, Right
    PluginID: TAS
    Internal Speakers:
    Controls: Mute, Left, Right
    PluginID: TAS
    Formats:
    PCM 16:
    Bit Depth: 16
    Bit Width: 16
    Channels: 2
    Mixable: Yes
    Sample Rates: 32 KHz, 44.1 KHz, 48 KHz
    PCM 24:
    Bit Depth: 24
    Bit Width: 32
    Channels: 2
    Mixable: Yes
    Sample Rates: 32 KHz, 44.1 KHz, 48 KHz
    Bluetooth:
    Apple Bluetooth Software Version: 1.7.3f4
    Services:
    Bluetooth File Transfer:
    Folder other devices can browse: ~/Pictures
    Requires Authentication: Yes
    State: Enabled
    Bluetooth File Exchange:
    Folder for accepted items: ~/Documents/Shared
    Requires Authentication: Yes
    When other items are accepted: Ask
    When PIM items are accepted: Ask
    When receiving items: Prompt for each file
    State: Enabled
    Devices (Paired, Favorites, etc):
    CingularUpdator:
    Name: CingularUpdator
    Address: 00-02-ee-e2-f3-ae
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: Yes
    Connected: No
    MotorolaPhone:
    Name: MotorolaPhone
    Address: 00-14-9a-79-ad-51
    Type: Cellular Phone
    Services: Voice Gateway, Hands-Free voice gateway, OBEX Object Push, OBEX File Transfer, Dial-up networking Gateway
    Paired: Yes
    Favorite: Yes
    Connected: No
    CingularUpdator:
    Name: CingularUpdator
    Address: 00-02-ee-e2-eb-ee
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: No
    Connected: No
    Nokia6820Greg:
    Name: Nokia6820Greg
    Address: 00-02-ee-e2-58-0b
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: No
    Connected: No
    Incoming Serial Ports:
    Serial Port 1:
    Name: Bluetooth-PDA-Sync
    RFCOMM Channel: 3
    Requires Authentication: Yes
    Outgoing Serial Ports:
    Serial Port 1:
    Address: 00-02-EE-E2-EB-EE
    Name: CingularUpdator-1
    RFCOMM Channel: 15
    Requires Authentication: No
    Serial Port 2:
    Address: 00-02-EE-E2-EB-EE
    Name: CingularUpdator-2
    RFCOMM Channel: 1
    Requires Authentication: No
    Serial Port 3:
    Address:
    Name: Bluetooth-Modem
    RFCOMM Channel: 0
    Requires Authentication: No
    Diagnostics:
    Power On Self-Test:
    Last Run: 4/26/05 11:06 PM
    Result: Passed
    Apple Hardware Test:
    Last Run: 4/10/06 3:26 PM
    Version: 2.5 PB
    Test Suite: Extended Test
    Result: Passed
    Disc Burning:
    MATSHITA DVD-R UJ-845E:
    Firmware Revision: DMP2
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: No
    FireWire:
    FireWire Bus:
    Maximum Speed: Up to 800 Mb/sec
    Graphics/Displays:
    ATI Mobility Radeon 9700:
    Chipset Model: ATY,RV360M11
    Type: Display
    Bus: AGP
    VRAM (Total): 64 MB
    Vendor: ATI (0x1002)
    Device ID: 0x4e50
    Revision ID: 0x0000
    ROM Revision: 113-xxxxx-145
    Displays:
    Color LCD:
    Display Type: LCD
    Resolution: 1280 x 854
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Display:
    Status: No display connected
    Memory:
    SODIMM0/J25LOWER:
    Size: 512 MB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    SODIMM1/J25UPPER:
    Size: 512 MB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    PCI Cards:
    TXN,PCIXXXX-00:
    Name: cardbus
    Type: cardbus
    Bus: PCI
    Slot: PC Card
    Vendor ID: 0x104c
    Device ID: 0xac56
    Revision ID: 0x0000
    Power:
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 20
    Dynamic Power Step: No
    Reduce Processor Speed: No
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: Yes
    Wake On Modem Ring: Yes
    Display Sleep Uses Dim: Yes
    Battery Power:
    System Sleep Timer (Minutes): 5
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 1
    Dynamic Power Step: No
    Reduce Processor Speed: Yes
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On Modem Ring: No
    Display Sleep Uses Dim: Yes
    Reduce Brightness: Yes
    Battery Information:
    Battery Installed: Yes
    First low level warning: No
    Full Charge Capacity (mAh): 3854
    Remaining Capacity (mAh): 1464
    Amperage (mA): 2433
    Voltage (mV): 12116
    Cycle Count: 158
    AC Charger Information:
    AC Charger (Watts): 65
    Connected: Yes
    Charging: Yes
    Hardware Configuration:
    Clamshell Closed: No
    UPS Installed: No
    Printers:
    DESKJET 3820:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://HEWLETT-PACKARD/DESKJET 3820?serial=CN28J1B11118
    PPD: hp deskjet 3820
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    DESKJET 3820:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://HEWLETT-PACKARD/DESKJET 3820?serial=CN28J1B11118
    PPD: hp deskjet 3820
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5550:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5550?serial=MY37I1S1SB2L
    PPD: hp deskjet 5550
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5550:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5550?serial=MY37I1S1SB2L
    PPD: hp deskjet 5550
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5600:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: Yes
    URI: usb://hp/deskjet 5600?serial=MY48A4N3SS79
    PPD: hp deskjet 5600
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5600:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5600?serial=MY48A4N3SS79
    PPD: hp deskjet 5600
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    hppsc131:
    Status: Idle
    Print Server: Local
    Driver Version: 10.4
    Default: No
    URI: smb://Home/Stevenpc/hppsc131
    PPD: Generic PostScript Printer
    PPD File Version: 1.0
    PostScript Version: (2000.0) 1
    USB:
    USB High-Speed Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBEHCI
    PCI Device ID: 0x00e0
    PCI Revision ID: 0x0004
    PCI Vendor ID: 0x1033
    Bus Number: 0x5b
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x003f
    PCI Revision ID: 0x0000
    PCI Vendor ID: 0x106b
    Bus Number: 0x1a
    Bluetooth HCI:
    Version: 19.65
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Product ID: 0x8205
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    Apple Internal Keyboard/Trackpad:
    Version: 0.28
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple Computer
    Product ID: 0x020e
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x0035
    PCI Revision ID: 0x0043
    PCI Vendor ID: 0x1033
    Bus Number: 0x1b
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x0035
    PCI Revision ID: 0x0043
    PCI Vendor ID: 0x1033
    Bus Number: 0x3b
    AirPort Card:
    AirPort Card Information:
    Wireless Card Type: AirPort Extreme
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 404.2 (3.90.34.0.p16)
    Current Wireless Network: belkin54g
    Wireless Channel: 11
    Firewall:
    Apple Remote Desktop:
    Policy: Denied
    TCP Ports: 3283, 5900
    iPhoto Bonjour Sharing:
    Policy: Denied
    TCP Ports: 8770
    Remote Login - SSH:
    Policy: Denied
    TCP Ports: 22
    diablo II:
    Policy: Allowed
    TCP Ports: 6112
    UDP Ports: 6112
    Personal File Sharing:
    Policy: Denied
    TCP Ports: 548, 427
    Network Time:
    Policy: Allowed
    UDP Ports: 123
    Adobe Version Cue CS2:
    Policy: Allowed
    TCP Ports: 3703, 427, 50800
    iTunes Music Sharing:
    Policy: Allowed
    TCP Ports: 3689
    FTP Access:
    Policy: Denied
    TCP Ports: 21
    iChat Bonjour:
    Policy: Denied
    TCP Ports: 5297, 5298
    Personal Web Sharing:
    Policy: Denied
    TCP Ports: 80, 427, 443
    Remote Apple Events:
    Policy: Denied
    TCP Ports: 3031
    d2:
    Policy: Allowed
    TCP Ports: 6112
    UDP Ports: 6112
    Windows Sharing:
    Policy: Denied
    TCP Ports: 139
    Printer Sharing:
    Policy: Denied
    TCP Ports: 631, 515
    Locations:
    School EtherNet:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: sfh-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: sfh-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: sfh-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: sfh-px1
    Auto Discovery Enabled: 0
    SOCKS Proxy Enabled: 1
    SOCKS Proxy Port: 8002
    SOCKS Proxy Server: sfh-px1
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exceptions List: Localhost, 127.0.0.1, .*.
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: Sfh-fs1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: Sfh-fs1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: Sfh-fs1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: Sfh-fs1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: Sfh-fs1
    SOCKS Proxy Enabled: 0
    SOCKS Proxy Port: 8002
    SOCKS Proxy Server: Sfh-fs1
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exceptions List: Localhost, 127.0.0.1, .*.
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: Sfh-fs1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: Sfh-fs1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: Sfh-fs1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: Sfh-fs1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: Sfh-fs1
    Dads House:
    Active Location: No
    Services:
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 0
    Auto Discovery Enabled: 0
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Ethernet:
    Media Subtype: autoselect
    MTU: 1500
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Location (1/4/06 4:15 PM):
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Moms Wireless:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (L2TP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Automactic:
    Active Location: Yes
    Services:
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Ethernet:
    Media Subtype: autoselect
    MTU: 1500
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 0
    HTTP Proxy Enabled: 0
    HTTP Proxy Port: 8999
    HTTP Proxy Server: 127.0.0.1
    HTTPS Proxy Enabled: 0
    HTTPS Proxy Port: 8999
    HTTPS Proxy Server: 127.0.0.1
    Auto Discovery Enabled: 0
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Authorization Name: Nighteaater537
    Authorization Password: <002d003d 002d003d 002d003d >
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Remote Address: 772-546-3768
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 1
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 180
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 1
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (L2TP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    MacTOPc:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (PPTP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    CCP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    School:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Proxy Enabled: 1
    FTP Passive Mode: 0
    FTP Proxy Port: 8002
    FTP Proxy Server: sfh-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: sfh-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: sfh-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: sfh-px1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 0
    FTP Proxy Port: 8002
    FTP Proxy Server: ic-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: ic-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: ic-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: ic-px1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: ic-px1
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Modems:
    Modem Information:
    Modem Model: Jump
    Interface Type: I2S
    Modulation: V.92
    Hardware Version: Version 1.0
    Driver: MotorolaSM56K.kext (v1.3.3)
    Country: B5 (United States, Latin America)
    Applications:
    Acrobat Reader 5:
    Version: 5.0.5
    Last Modified: 10/19/05 10:31 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Acrobat Reader 5.0
    Acrobat Distiller 7.0:
    Version: 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Acrobat Distiller™ 7.0.7, 1984-2006 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Acrobat Distiller 7.0.app
    Acrobat Uninstaller:
    Version: Acrobat Uninstaller version 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Acrobat Uninstaller version 7.0.7, Copyright © 2005 by Adobe Systems, Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Acrobat Uninstaller.app
    Adobe Acrobat 7.0 Professional:
    Version: 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Adobe® Acrobat® 7.0.7, ©1984-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app
    Bridge:
    Version: 1.0.0.545
    Last Modified: 11/11/05 11:58 AM
    Kind: PowerPC
    Get Info String: 1.0.0.545 (93460), Copyright 2003-2005, Adobe
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Bridge/Bridge.app
    Adobe GoLive CS2:
    Version: 8.0
    Last Modified: 11/11/05 12:31 PM
    Kind: PowerPC
    Get Info String: 8.0, Copyright © 1997-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe GoLive CS2/Adobe GoLive CS2.app
    Adobe Help Center:
    Version: Adobe Help Center 1.0.0.793
    Last Modified: 11/11/05 11:58 AM
    Kind: PowerPC
    Get Info String: Adobe Help Center 1.0.0.793 (C) 2005 Adobe Systems, Inc. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Help Center.app
    Illustrator:
    Version: 12.0.0
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Get Info String: 12.0.0, Copyright © 1987-2005 Adobe Systems Inc. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Adobe Illustrator.app
    Demonstrator:
    Version: 2.0
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Get Info String: 1.0
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Demonstrator/Demonstrator.app
    Analyze Documents:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Analyze Documents.localized/Analyze Documents.app
    Make Calendar:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Calendar.localized/Make Calendar.app
    Collect for Output:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Collect for Output.localized/Collect for Output.app
    Contact Sheets:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Contact Sheet Demo.localized/Contact Sheets.app
    Dataset Batch PDF from Text:
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Datasets.localized/Dataset Batch PDF from Text.app
    Export Flash Animation:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Export Flash Animation.localized/Export Flash Animation.app
    Web Gallery:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Web Gallery.localized/Web Gallery.app
    Adobe InDesign CS2:
    Version: 4.0.0.421
    Last Modified: 11/11/05 12:07 PM
    Kind: PowerPC
    Get Info String: 4.0, Copyright 2000-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe InDesign CS2/Adobe InDesign CS2.app
    Adobe ImageReady CS2:
    Version: 9.0x196
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 9.0x196, Copyright © 1998-2005 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Adobe ImageReady CS2.app
    Adobe Photoshop CS2:
    Version: 9.0 (9.0x196)
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 9.0 (9.0x196), Copyright ©1990-2005 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Adobe Photoshop CS2.app
    Constrain 350, Make JPG 30:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain 350, Make JPG 30.exe
    Constrain to 200x200 pixels:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain to 200x200 pixels.exe
    Constrain to 64X64 pixels:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain to 64X64 pixels.exe
    Make Button:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make Button.exe
    Make GIF (128 colors):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (128 colors).exe
    Make GIF (32, no dither):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (32, no dither).exe
    Make GIF (64 colors):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (64 colors).exe
    Make JPEG (quality 10):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 10).exe
    Make JPEG (quality 30):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 30).exe
    Make JPEG (quality 60):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 60).exe
    Metal Slide Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Metal Slide Thumbnail.exe
    Multi-Size Save:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Multi-Size Save.exe
    Rounded Rect Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Rounded Rect Thumbnail.exe
    Slide Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Slide Thumbnail.exe
    Unsharp Mask:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Unsharp Mask.exe
    Aged Photo:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Aged Photo.exe
    Conditional Mode Change:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Conditional Mode Change.exe
    Constrain to 300 pixels:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Constrain to 300 pixels.exe
    Constrain to 64 pixels:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Constrain to 64 pixels.exe
    Drop Shadow Frame:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Drop Shadow Frame.exe
    Make Button:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Make Button.exe
    Make Sepia Tone:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Make Sepia Tone.exe
    Save As JPEG Medium:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Save As JPEG Medium.exe
    Save As Photoshop PDF:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Save As Photoshop PDF.exe
    VersionCueCS2:
    Version: 2.0
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 2.0, Copyright ©2001-2004 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/bin/VersionCueCS2.app
    VersionCueCS2Status:
    Version: 1.0.0
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/bin/VersionCueCS2Status.app
    VC2Native:
    Version: 2.0
    Last Modified: 11/11/05 12:02 PM
    Get Info String: 2.0.0, © 2003-2004 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/plugins/com.adobe.versioncue.nativecomm_2.0.0/res/macosx/VC2Native.app
    Uninstall Version Cue CS2:
    Version: 0.1
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/Uninstall Version Cue CS2.app
    DJ-1800 2.2.1:
    Version: 2.2.1
    Last Modified: 10/31/05 5:57 PM
    Kind: PowerPC
    Get Info String:

    Alot of information...
    First observation, is that your internal hard disk has too much on it - on an
    80gb internal hard disk, you want to keep 10% available for system usage,
    which would be 8gb vs the 3 and change gb available shown in your
    posted information above.
    See if I got this right...you have an external powered enclosure with a WD
    250gb ultra ata hard drive that has worked before on your PB. Snap,
    crackle, pop, power goes, and the HD is corrupted. Your PowerBook,
    however, still recognizes the external HD as a device, right? You tried
    hooking into a Windows-based system, and couldn't access anything.
    Assuming your PB recognizes it as a hard drive, have you brought up the
    Apple disk utility and tried to repair the drive (select external hard drive
    on left side of disk utility, then first aid tab, repair disk)? Results?

  • Need help  formating

    Ok here is my problem, the drive got corrupted (my fault, the drive was getting scanned and it lost power) now i hade hopes of restoring it, but that fell through (nothing important was on it) so now i try to format the drive and i get an input and out put error, then i try to partion it, but that also fails.....so then i connected it to my windows and to access the drive i have to go through disk manager and the partion and the format fails...this also happens to another drive of mine that was corrupted form another issue......
    i have giiven u every piece of inforamtion i have, please help me, also i want all information on the enclousre, and azny update drivers for it, i hope i have given enough information
    Here is the EXACT drive in question.
    http://www.geeks.com/details.asp?invtid=AP35-C&cat=CAS
    Here is the EXACT hard drive i use.
    Link
    here is all the information on my compouter
    Cingullar
    4/26/05 11:33 PM
    Hardware:
    Hardware Overview:
    Machine Name: PowerBook G4 15"
    Machine Model: PowerBook5,6
    CPU Type: PowerPC G4 (1.2)
    Number Of CPUs: 1
    CPU Speed: 1.67 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 1 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.1f1
    Serial Number: xxxxXLRG4
    Network:
    Built-in Ethernet:
    Type: Ethernet
    Hardware: Ethernet
    BSD Device Name: en0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:88:bf:e8
    Media Options:
    Media Subtype: none
    AirPort:
    Type: AirPort
    Hardware: AirPort
    BSD Device Name: en1
    IPv4 Addresses: 192.168.2.6
    IPv4:
    Addresses: 192.168.2.6
    Configuration Method: DHCP
    Interface Name: en1
    Router: 192.168.2.1
    Subnet Masks: 255.255.255.0
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Default Zone: *
    Interface Name: en1
    Network ID: 65307
    Node ID: 151
    DNS:
    Domain Name: Belkin
    Server Addresses: 192.168.2.1
    DHCP Server Responses:
    Domain Name: Belkin
    Domain Name Servers: 192.168.2.1
    Lease Duration (seconds): 0
    DHCP Message Type: 0x05
    Routers: 192.168.2.1
    Server Identifier: 192.168.2.1
    Subnet Mask: 255.255.255.0
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: No
    HTTP Proxy Enabled: No
    HTTP Proxy Port: 8999
    HTTP Proxy Server: 127.0.0.1
    HTTPS Proxy Enabled: No
    HTTPS Proxy Port: 8999
    HTTPS Proxy Server: 127.0.0.1
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:9c:3d:aa
    Media Options:
    Media Subtype: autoselect
    Internal Modem:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Bluetooth:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: Bluetooth-Modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:ff:fe:88:bf:e8
    Media Options: Full Duplex
    Media Subtype: autoselect
    VPN (L2TP):
    Type: PPP (L2TP)
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Software:
    System Software Overview:
    System Version: Mac OS X 10.4.6 (8I127)
    Kernel Version: Darwin 8.6.0
    Boot Volume: Steven
    Computer Name: Cingullar
    User Name: Steven Feldman (steven)
    ATA:
    ATA Bus:
    MATSHITADVD-R UJ-845E:
    Model: MATSHITADVD-R UJ-845E
    Revision: DMP2
    Serial Number:
    Detachable Drive: No
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    ATA Bus:
    FUJITSU MHT2080AH:
    Capacity: 74.53 GB
    Model: FUJITSU MHT2080AH
    Revision: 81EC
    Serial Number: NP0PT552APF0
    Removable Media: No
    Detachable Drive: No
    BSD Name: disk0
    Protocol: ATA
    Unit Number: 0
    Socket Type: Internal
    OS9 Drivers: No
    S.M.A.R.T. status: Verified
    Volumes:
    Steven:
    Capacity: 74.41 GB
    Available: 3.25 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk0s3
    Mount Point: /
    Audio (Built In):
    Built In Sound Card:
    Devices:
    Texas Instruments TAS3004:
    Inputs and Outputs:
    Internal Microphone:
    Controls: Left, Right
    Playthrough: Yes
    PluginID: TAS
    Line Level Input:
    Controls: Left, Right
    Playthrough: Yes
    PluginID: TAS
    Headphones:
    Controls: Mute, Left, Right
    PluginID: TAS
    Internal Speakers:
    Controls: Mute, Left, Right
    PluginID: TAS
    Formats:
    PCM 16:
    Bit Depth: 16
    Bit Width: 16
    Channels: 2
    Mixable: Yes
    Sample Rates: 32 KHz, 44.1 KHz, 48 KHz
    PCM 24:
    Bit Depth: 24
    Bit Width: 32
    Channels: 2
    Mixable: Yes
    Sample Rates: 32 KHz, 44.1 KHz, 48 KHz
    Bluetooth:
    Apple Bluetooth Software Version: 1.7.3f4
    Services:
    Bluetooth File Transfer:
    Folder other devices can browse: ~/Pictures
    Requires Authentication: Yes
    State: Enabled
    Bluetooth File Exchange:
    Folder for accepted items: ~/Documents/Shared
    Requires Authentication: Yes
    When other items are accepted: Ask
    When PIM items are accepted: Ask
    When receiving items: Prompt for each file
    State: Enabled
    Devices (Paired, Favorites, etc):
    CingularUpdator:
    Name: CingularUpdator
    Address: 00-02-ee-e2-f3-ae
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: Yes
    Connected: No
    MotorolaPhone:
    Name: MotorolaPhone
    Address: 00-14-9a-79-ad-51
    Type: Cellular Phone
    Services: Voice Gateway, Hands-Free voice gateway, OBEX Object Push, OBEX File Transfer, Dial-up networking Gateway
    Paired: Yes
    Favorite: Yes
    Connected: No
    CingularUpdator:
    Name: CingularUpdator
    Address: 00-02-ee-e2-eb-ee
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: No
    Connected: No
    Nokia6820Greg:
    Name: Nokia6820Greg
    Address: 00-02-ee-e2-58-0b
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: No
    Connected: No
    Incoming Serial Ports:
    Serial Port 1:
    Name: Bluetooth-PDA-Sync
    RFCOMM Channel: 3
    Requires Authentication: Yes
    Outgoing Serial Ports:
    Serial Port 1:
    Address: 00-02-EE-E2-EB-EE
    Name: CingularUpdator-1
    RFCOMM Channel: 15
    Requires Authentication: No
    Serial Port 2:
    Address: 00-02-EE-E2-EB-EE
    Name: CingularUpdator-2
    RFCOMM Channel: 1
    Requires Authentication: No
    Serial Port 3:
    Address:
    Name: Bluetooth-Modem
    RFCOMM Channel: 0
    Requires Authentication: No
    Diagnostics:
    Power On Self-Test:
    Last Run: 4/26/05 11:06 PM
    Result: Passed
    Apple Hardware Test:
    Last Run: 4/10/06 3:26 PM
    Version: 2.5 PB
    Test Suite: Extended Test
    Result: Passed
    Disc Burning:
    MATSHITA DVD-R UJ-845E:
    Firmware Revision: DMP2
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: No
    FireWire:
    FireWire Bus:
    Maximum Speed: Up to 800 Mb/sec
    Graphics/Displays:
    ATI Mobility Radeon 9700:
    Chipset Model: ATY,RV360M11
    Type: Display
    Bus: AGP
    VRAM (Total): 64 MB
    Vendor: ATI (0x1002)
    Device ID: 0x4e50
    Revision ID: 0x0000
    ROM Revision: 113-xxxxx-145
    Displays:
    Color LCD:
    Display Type: LCD
    Resolution: 1280 x 854
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Display:
    Status: No display connected
    Memory:
    SODIMM0/J25LOWER:
    Size: 512 MB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    SODIMM1/J25UPPER:
    Size: 512 MB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    PCI Cards:
    TXN,PCIXXXX-00:
    Name: cardbus
    Type: cardbus
    Bus: PCI
    Slot: PC Card
    Vendor ID: 0x104c
    Device ID: 0xac56
    Revision ID: 0x0000
    Power:
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 20
    Dynamic Power Step: No
    Reduce Processor Speed: No
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: Yes
    Wake On Modem Ring: Yes
    Display Sleep Uses Dim: Yes
    Battery Power:
    System Sleep Timer (Minutes): 5
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 1
    Dynamic Power Step: No
    Reduce Processor Speed: Yes
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On Modem Ring: No
    Display Sleep Uses Dim: Yes
    Reduce Brightness: Yes
    Battery Information:
    Battery Installed: Yes
    First low level warning: No
    Full Charge Capacity (mAh): 3854
    Remaining Capacity (mAh): 1464
    Amperage (mA): 2433
    Voltage (mV): 12116
    Cycle Count: 158
    AC Charger Information:
    AC Charger (Watts): 65
    Connected: Yes
    Charging: Yes
    Hardware Configuration:
    Clamshell Closed: No
    UPS Installed: No
    Printers:
    DESKJET 3820:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://HEWLETT-PACKARD/DESKJET 3820?serial=CN28J1B11118
    PPD: hp deskjet 3820
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    DESKJET 3820:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://HEWLETT-PACKARD/DESKJET 3820?serial=CN28J1B11118
    PPD: hp deskjet 3820
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5550:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5550?serial=MY37I1S1SB2L
    PPD: hp deskjet 5550
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5550:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5550?serial=MY37I1S1SB2L
    PPD: hp deskjet 5550
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5600:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: Yes
    URI: usb://hp/deskjet 5600?serial=MY48A4N3SS79
    PPD: hp deskjet 5600
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5600:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5600?serial=MY48A4N3SS79
    PPD: hp deskjet 5600
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    hppsc131:
    Status: Idle
    Print Server: Local
    Driver Version: 10.4
    Default: No
    URI: smb://Home/Stevenpc/hppsc131
    PPD: Generic PostScript Printer
    PPD File Version: 1.0
    PostScript Version: (2000.0) 1
    USB:
    USB High-Speed Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBEHCI
    PCI Device ID: 0x00e0
    PCI Revision ID: 0x0004
    PCI Vendor ID: 0x1033
    Bus Number: 0x5b
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x003f
    PCI Revision ID: 0x0000
    PCI Vendor ID: 0x106b
    Bus Number: 0x1a
    Bluetooth HCI:
    Version: 19.65
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Product ID: 0x8205
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    Apple Internal Keyboard/Trackpad:
    Version: 0.28
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple Computer
    Product ID: 0x020e
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x0035
    PCI Revision ID: 0x0043
    PCI Vendor ID: 0x1033
    Bus Number: 0x1b
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x0035
    PCI Revision ID: 0x0043
    PCI Vendor ID: 0x1033
    Bus Number: 0x3b
    AirPort Card:
    AirPort Card Information:
    Wireless Card Type: AirPort Extreme
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 404.2 (3.90.34.0.p16)
    Current Wireless Network: belkin54g
    Wireless Channel: 11
    Firewall:
    Apple Remote Desktop:
    Policy: Denied
    TCP Ports: 3283, 5900
    iPhoto Bonjour Sharing:
    Policy: Denied
    TCP Ports: 8770
    Remote Login - SSH:
    Policy: Denied
    TCP Ports: 22
    diablo II:
    Policy: Allowed
    TCP Ports: 6112
    UDP Ports: 6112
    Personal File Sharing:
    Policy: Denied
    TCP Ports: 548, 427
    Network Time:
    Policy: Allowed
    UDP Ports: 123
    Adobe Version Cue CS2:
    Policy: Allowed
    TCP Ports: 3703, 427, 50800
    iTunes Music Sharing:
    Policy: Allowed
    TCP Ports: 3689
    FTP Access:
    Policy: Denied
    TCP Ports: 21
    iChat Bonjour:
    Policy: Denied
    TCP Ports: 5297, 5298
    Personal Web Sharing:
    Policy: Denied
    TCP Ports: 80, 427, 443
    Remote Apple Events:
    Policy: Denied
    TCP Ports: 3031
    d2:
    Policy: Allowed
    TCP Ports: 6112
    UDP Ports: 6112
    Windows Sharing:
    Policy: Denied
    TCP Ports: 139
    Printer Sharing:
    Policy: Denied
    TCP Ports: 631, 515
    Locations:
    School EtherNet:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: sfh-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: sfh-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: sfh-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: sfh-px1
    Auto Discovery Enabled: 0
    SOCKS Proxy Enabled: 1
    SOCKS Proxy Port: 8002
    SOCKS Proxy Server: sfh-px1
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exceptions List: Localhost, 127.0.0.1, .*.
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: Sfh-fs1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: Sfh-fs1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: Sfh-fs1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: Sfh-fs1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: Sfh-fs1
    SOCKS Proxy Enabled: 0
    SOCKS Proxy Port: 8002
    SOCKS Proxy Server: Sfh-fs1
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exceptions List: Localhost, 127.0.0.1, .*.
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: Sfh-fs1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: Sfh-fs1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: Sfh-fs1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: Sfh-fs1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: Sfh-fs1
    Dads House:
    Active Location: No
    Services:
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 0
    Auto Discovery Enabled: 0
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Ethernet:
    Media Subtype: autoselect
    MTU: 1500
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Location (1/4/06 4:15 PM):
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Moms Wireless:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (L2TP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Automactic:
    Active Location: Yes
    Services:
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Ethernet:
    Media Subtype: autoselect
    MTU: 1500
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 0
    HTTP Proxy Enabled: 0
    HTTP Proxy Port: 8999
    HTTP Proxy Server: 127.0.0.1
    HTTPS Proxy Enabled: 0
    HTTPS Proxy Port: 8999
    HTTPS Proxy Server: 127.0.0.1
    Auto Discovery Enabled: 0
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Authorization Name: Nighteaater537
    Authorization Password: <002d003d 002d003d 002d003d >
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Remote Address: 772-546-3768
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 1
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 180
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 1
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (L2TP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    MacTOPc:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (PPTP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    CCP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    School:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Proxy Enabled: 1
    FTP Passive Mode: 0
    FTP Proxy Port: 8002
    FTP Proxy Server: sfh-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: sfh-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: sfh-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: sfh-px1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 0
    FTP Proxy Port: 8002
    FTP Proxy Server: ic-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: ic-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: ic-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: ic-px1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: ic-px1
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Modems:
    Modem Information:
    Modem Model: Jump
    Interface Type: I2S
    Modulation: V.92
    Hardware Version: Version 1.0
    Driver: MotorolaSM56K.kext (v1.3.3)
    Country: B5 (United States, Latin America)
    Applications:
    Acrobat Reader 5:
    Version: 5.0.5
    Last Modified: 10/19/05 10:31 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Acrobat Reader 5.0
    Acrobat Distiller 7.0:
    Version: 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Acrobat Distiller™ 7.0.7, 1984-2006 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Acrobat Distiller 7.0.app
    Acrobat Uninstaller:
    Version: Acrobat Uninstaller version 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Acrobat Uninstaller version 7.0.7, Copyright © 2005 by Adobe Systems, Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Acrobat Uninstaller.app
    Adobe Acrobat 7.0 Professional:
    Version: 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Adobe® Acrobat® 7.0.7, ©1984-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app
    Bridge:
    Version: 1.0.0.545
    Last Modified: 11/11/05 11:58 AM
    Kind: PowerPC
    Get Info String: 1.0.0.545 (93460), Copyright 2003-2005, Adobe
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Bridge/Bridge.app
    Adobe GoLive CS2:
    Version: 8.0
    Last Modified: 11/11/05 12:31 PM
    Kind: PowerPC
    Get Info String: 8.0, Copyright © 1997-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe GoLive CS2/Adobe GoLive CS2.app
    Adobe Help Center:
    Version: Adobe Help Center 1.0.0.793
    Last Modified: 11/11/05 11:58 AM
    Kind: PowerPC
    Get Info String: Adobe Help Center 1.0.0.793 (C) 2005 Adobe Systems, Inc. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Help Center.app
    Illustrator:
    Version: 12.0.0
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Get Info String: 12.0.0, Copyright © 1987-2005 Adobe Systems Inc. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Adobe Illustrator.app
    Demonstrator:
    Version: 2.0
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Get Info String: 1.0
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Demonstrator/Demonstrator.app
    Analyze Documents:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Analyze Documents.localized/Analyze Documents.app
    Make Calendar:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Calendar.localized/Make Calendar.app
    Collect for Output:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Collect for Output.localized/Collect for Output.app
    Contact Sheets:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Contact Sheet Demo.localized/Contact Sheets.app
    Dataset Batch PDF from Text:
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Datasets.localized/Dataset Batch PDF from Text.app
    Export Flash Animation:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Export Flash Animation.localized/Export Flash Animation.app
    Web Gallery:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Web Gallery.localized/Web Gallery.app
    Adobe InDesign CS2:
    Version: 4.0.0.421
    Last Modified: 11/11/05 12:07 PM
    Kind: PowerPC
    Get Info String: 4.0, Copyright 2000-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe InDesign CS2/Adobe InDesign CS2.app
    Adobe ImageReady CS2:
    Version: 9.0x196
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 9.0x196, Copyright © 1998-2005 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Adobe ImageReady CS2.app
    Adobe Photoshop CS2:
    Version: 9.0 (9.0x196)
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 9.0 (9.0x196), Copyright ©1990-2005 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Adobe Photoshop CS2.app
    Constrain 350, Make JPG 30:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain 350, Make JPG 30.exe
    Constrain to 200x200 pixels:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain to 200x200 pixels.exe
    Constrain to 64X64 pixels:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain to 64X64 pixels.exe
    Make Button:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make Button.exe
    Make GIF (128 colors):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (128 colors).exe
    Make GIF (32, no dither):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (32, no dither).exe
    Make GIF (64 colors):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (64 colors).exe
    Make JPEG (quality 10):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 10).exe
    Make JPEG (quality 30):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 30).exe
    Make JPEG (quality 60):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 60).exe
    Metal Slide Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Metal Slide Thumbnail.exe
    Multi-Size Save:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Multi-Size Save.exe
    Rounded Rect Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Rounded Rect Thumbnail.exe
    Slide Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Slide Thumbnail.exe
    Unsharp Mask:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Unsharp Mask.exe
    Aged Photo:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Aged Photo.exe
    Conditional Mode Change:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Conditional Mode Change.exe
    Constrain to 300 pixels:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Constrain to 300 pixels.exe
    Constrain to 64 pixels:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Constrain to 64 pixels.exe
    Drop Shadow Frame:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Drop Shadow Frame.exe
    Make Button:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Make Button.exe
    Make Sepia Tone:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Make Sepia Tone.exe
    Save As JPEG Medium:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Save As JPEG Medium.exe
    Save As Photoshop PDF:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Save As Photoshop PDF.exe
    VersionCueCS2:
    Version: 2.0
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 2.0, Copyright ©2001-2004 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/bin/VersionCueCS2.app
    VersionCueCS2Status:
    Version: 1.0.0
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/bin/VersionCueCS2Status.app
    VC2Native:
    Version: 2.0
    Last Modified: 11/11/05 12:02 PM
    Get Info String: 2.0.0, © 2003-2004 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/plugins/com.adobe.versioncue.nativecomm_2.0.0/res/macosx/VC2Native.app
    Uninstall Version Cue CS2:
    Version: 0.1
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/Uninstall Version Cue CS2.app
    DJ-1800 2.2.1:
    Version: 2.2.1
    Last Modified: 10/31/05 5:57 PM
    Kind: PowerPC

    The problem of losing power when running the drive, is that the needle may scratch part of the drive as it lands on the platter. Sufficient power may pick it up, but it may have permanently damaged the drive. I would get the drive itself replaced.
    A format which fails is a sign of a hard drive failure.

  • New to MAC: Clip vs. Sequence format issues causing slow Quad w/FCP?

    Hi all,
    I'm brand spanking new here and a recent Mac convert from Vegas. I figured that if I was going to upgrade, I would do it right. Don't get me wrong, I love Vegas, it's just that I'm tired of PC hardware conflicts and wanted to hop on the just-plug-it-in mac bandwagon and the ever increasing market share for FCP. Although the learning curve has been steep with FCP, I consider myself pretty savvy with Vegas and now a novice with FCP, I like the interface and there are certainly pros and cons. So far so good, but I have many questions.
    This Quad has so much horse power and I'm having to render all the time. I am doing compositing and green screen stuff, but I'm thinking that with SD footage, the computer should be running sleek at satin.
    I recently read another post in here that had a lot of off-topic discussion. I'm ignorant on the clip versus sequence settings and how they relate. In Vegas, most of these settings were automatic. In other words, whatever footage I threw at it, it dealt with. My footage was captured using default settings in Vegas and everything is in .avi format. When I was first bringing clips into FCP, the software suggested I use media manager to convert the files but I didn't want to suffer quality loss so I ignored it. Now that I have a rough cut of the entire 16 minute project, I'm starting to apply filters and effects and am noticing a bog down.
    Now mind you, things are still faster than my old Pentium 1.4Ghz, but with 10Ghz under the hood (who would have imagined it possible?) I know it should run smoother.
    Sorry I'm being so verbose, but my knowledge of formats is weak so I want to cover the bases. We shot on a DVX100A and mostly wide screen setting. In retrospect, this was a mistake as the DVX100A in wide screen simply puts black stripes on my clip versus being able to utilize the whole thing. Anyway, hind site is 20/20.
    Here is my clip information.
    .avi
    29.97 fps
    720 x 480
    DV/DVCPRO - NTSC
    Data rate: 3.6MB/sec
    Pixel aspect: NTSC - CCIR 601
    Field: Lower(Even)
    Alpha: None
    Composite: Normal
    Audio is 48 and 16
    It is possible that I captured the video in the wrong format. I have to use the "anamorphic" setting in FCP to make the footage look as though it's in the right aspect ratio. Correct me if I'm wrong, but anamorphic requires the use of a special lens when shooting yes?
    I'm wondering if I should recapture the footage using FCP or will using Media Manager sort things out? If so what is the best way to do this as I don't want to lose anything that I've done. And is it even possible to recapture the clips without screwing up everything that I've already done, about sixty hours of work so far.
    Worse comes to worse I'll just work with things moving slowly and stick it out until this project is done and then use FCP's cool logging/capture interface next time around. By the way, I captured this stuff long before I bought the MAC.
    Any help on this would be appreciated.
    Tyler
    G5 Quad   Mac OS X (10.4.6)   2.5GB RAM

    Hi,
    I spoke with the DP and it was definitely not shot anamorphic. Most of the footage was shot in 16:9 format which, on the DVX100 means that there is a black strip on the top and bottom of the clips as you probably know.
    I recaptured a clip from scratch into a new project using the easy setup dealio in FCP. It is standard 3:2 and the clip looks fine. In my existing project is where I have a bit of a jumbled mess I'm afraid. I have a clip that looks fine in it's sequence, but when placed into the Main sequence, which has the same settings, it appears in a different aspect ration.
    Yikes, I'm going to keep playing around. I'm starting to get a feel for what the format should be. I'll post again tomorrow when I have a better idea of how to answer your question.
    Thanks for taking the time to pipe in here Denis.
    Tyler
    thealmost
    Tell us more about your footage. In your original
    post you say you shot in "letterbox" mode, i.e. fake
    widescreen with the bars top and bottom. Yet you say
    your sequence has to be put in anamorphic mode for
    this footage to look right.
    If that's the case, something is wrong. Footage
    that's letterboxed in the camera is 4:3, not
    anamorphic, and if you checked the anamorphic box for
    this kind of footage it would look squished.
    I'm thinking that you could have genuine anamorphic
    footage, that you are working with in 4:3, which
    would be taxing your system somewhat. It's not clear
    (to me anyway) from your original post.
    Can you clear this part of your problem up?

  • Why is the CSS formatting different?

    When using live mode and browser preview mode using chrome, the formatting of my page is as it should be.  However, when I use the chrome browser and enter my url and go to the specific page the formatting is not correct.  By the way it is as it should be in safari, firefox and ie.

    You have a mal-formed doc type declaration and other errors in your code.  Chrome doesn't like code errors.
    Change your doc type to this:
    <!doctype html>
    And then fix your other code errors as reported below.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.baysvilleriverfront.ca%2Fburs aries.html
    Nancy O.

  • Not Able to Print in PDF Format Apex

    we are not able to print in pdf format with using a template, if we use default layout we are getting a pdf output,
    Can any one please help me on this issue....
    Thanks
    Malleswar

    Hello Malleswar,
    we are not able to print in pdf format with using a template, if we use default layout we are getting a pdf output,If your scenario with APEX Listener is generally capable of producing a PDF when using a working template, than the error is very likely to be in your template, not in APEX Listener.
    If that's the case, you'll probably find more people with experiences on how to build custom xsl-templates into your APEX application in the APEX forum: {forum:id=137}.
    If you decide to post there (or even if you think it's better to continue here), please provide information on your APEX and APEX Listener version and whether you see some error information in APEX Listeners log when trying your own template or not. If you don't see anything there right now, enabling debug mode will make the log more verbose and probably provide a hint on which part of your template can't be processed properly by the FOP built into APEX Listener.
    -Udo

  • Create a GPT partition table and format with a large volume (solved)

    Hello,
    I'm having trouble creating a GPT partition table for a large volume (~6T). It is a RAID 5 (hardware) with 3 hard disk drives having a size of 3T each (thus the resulting 6T volume).
    I tried creating a GPT partition table with gdisk but it just fails at creating it, stopping here (I've let it run for like 3 hours...):
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/md126.
    I also tried with parted but I get the same result. Out of luck, I created a GPT partition table from Windows 7 and  2 NTFS partitions (15G and the rest of space for the other) and it worked just fine. I then tried to format the 15G partition as ext4 but, as for gdisk, mkfs.ext4 will just never stop.
    Some information:
    fdisk -l
    Disk /dev/sda: 256.1 GB, 256060514304 bytes, 500118192 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk label type: dos
    Disk identifier: 0xd9a6c0f5
    Device Boot Start End Blocks Id System
    /dev/sda1 * 2048 104861695 52429824 83 Linux
    /dev/sda2 104861696 466567167 180852736 83 Linux
    /dev/sda3 466567168 500117503 16775168 82 Linux swap / Solaris
    Disk /dev/sdb: 3000.6 GB, 3000592982016 bytes, 5860533168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disk label type: dos
    Disk identifier: 0x00000000
    Device Boot Start End Blocks Id System
    /dev/sdb1 1 4294967295 2147483647+ ee GPT
    Partition 1 does not start on physical sector boundary.
    Disk /dev/sdc: 3000.6 GB, 3000592982016 bytes, 5860533168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disk /dev/sdd: 3000.6 GB, 3000592982016 bytes, 5860533168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disk label type: dos
    Disk identifier: 0x00000000
    Device Boot Start End Blocks Id System
    /dev/sdd1 1 4294967295 2147483647+ ee GPT
    Partition 1 does not start on physical sector boundary.
    Disk /dev/sde: 320.1 GB, 320072933376 bytes, 625142448 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk label type: dos
    Disk identifier: 0x5ffb31fc
    Device Boot Start End Blocks Id System
    /dev/sde1 * 2048 625139711 312568832 7 HPFS/NTFS/exFAT
    Disk /dev/md126: 6001.1 GB, 6001143054336 bytes, 11720982528 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 65536 bytes / 131072 bytes
    Disk label type: dos
    Disk identifier: 0x00000000
    Device Boot Start End Blocks Id System
    /dev/md126p1 1 4294967295 2147483647+ ee GPT
    Partition 1 does not start on physical sector boundary.
    WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
    gdisk -l on my RAID volume (/dev/md126):
    GPT fdisk (gdisk) version 0.8.7
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/md126: 11720982528 sectors, 5.5 TiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 8E7D03F1-8C3A-4FE6-B7BA-502D168E87D1
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 11720982494
    Partitions will be aligned on 8-sector boundaries
    Total free space is 6077 sectors (3.0 MiB)
    Number Start (sector) End (sector) Size Code Name
    1 34 262177 128.0 MiB 0C01 Microsoft reserved part
    2 264192 33032191 15.6 GiB 0700 Basic data partition
    3 33032192 11720978431 5.4 TiB 0700 Basic data partition
    To make things clear: sda is an SSD on which Archlinux has been freshly installed (sda1 for root, sda2 for home, sda3 for swap), sde is a hard disk drive having Windows 7 installed on it. My goal with the 15G partition is to format it so I can mount /var on the HDD rather than on the SSD. The large volume will be for storage.
    So if anyone has any suggestion that would help me out with this, I'd be glad to read.
    Cheers
    Last edited by Rolinh (2013-08-16 11:16:21)

    Well, I finally decided to use a software RAID as I will not share this partition with Windows anyway and it seems a better choice than the fake RAID.
    Therefore, I used the mdadm utility to create my RAID 5:
    # mdadm --create --verbose /dev/md0 --level=5 --raid-devices=3 /dev/sdb1 /dev/sdc1 /dev/sdd1
    # mkfs.ext4 -v -m .1 -b 4096 -E stride=32,stripe-width=64 /dev/md0
    It works like a charm.

  • Output verbose to file and console?

    Hello all,
    I'm running my PowerShell script from a batch file, and I'm trying to output the verbose statements to a log file as well as to the console. In the batch file I have:
    powershell.exe -command ".\Script.ps1 -verbose 4> ScriptLOG.txt"
    What I can't figure out is how to incorporate another redirector to have the output also output to the console as well as the LOG file.
    Any ideas?

    I think we need to realize that each of the redirectalble outputs is a single handle opened to a specific target.  When we redirect "standard I/O channel 4" to a file we are reallu  closin handle 4 and opening it to a file. We can only
    output to a single open handle at a time.  THe console is the default handle most of the time.  4 is noramally opend to the console.  All of the other handles are opened to teh console until redirected.  The default output of the pipeline
    is also sent to the console.  THe objects are enumerated and formatted to the console for the operator but they really only exist in memory.
    I normally write custom loggers.
    You can also use "Get-Content file.txt -Wait -Tail 1"
    This will display they output to the file one line at a time.  This allows monitoring the verbose channel.
    ¯\_(ツ)_/¯

  • Setting a global "if (!verbose) then (ignore all printlns)"

    In my program I use many System.out.printlns to mark where I am in the excecution of the program, what the current states are, etc. This makes it easy to understand problems if an error occurs even when I'm not in a debug mode. In my current program I probably have about 100 of these flags.
    Is there any way that I can set up some kind of global system such that only if my 'verbose' flag is true will any System.out.printlns get excecuted? If verbose is not true, then these should all be ignored. Is that possible?
    That is, I'd prefer not to have to type out every time
    if (verbose)
       System.out.println("Initializing main testing engine");Any recommendations appreciated.

    First, let me say: this isnt a competition.
    I was in no way trying to contradict your advice.
    (1) I said "for small home projects where I wouldnt use a Log API"
    (2) I said i use a proper logging API at work.
    I was merely pointing out a VERY simple alternative given different
    circumstances (a small informal project).
    As for:
    "ahm... it's already in the JDK. you don't need to add or configure anything."
    Just reading the intro paragraph to that package gives me a headache.
    It is:
    "The JavaTM Logging APIs, introduced in package java.util.logging, facilitate software servicing and maintenance at customer sites by producing log reports suitable for analysis by end users, system administrators, field service engineers, and software development teams. The Logging APIs capture information such as security failures, configuration errors, performance bottlenecks, and/or bugs in the application or platform. The core package includes support for delivering plain text or XML-formatted log records to memory, output streams, consoles, files, and sockets. In addition, the logging APIs are capable of interacting with logging services that already exist on the host operating system."
    I dont want any of that noise following me home! : )

  • Verbose start up mode

    After visiting the genius youngsters at apple, my 27" iMac running 10.8.5  will still not start up after they told me to erase my drive and reinstall the OS.
    ( long story as to why they told me to do that, which made no since )
    Now I'm left to figuring out on my own.
    Can not get past the the grey start up screen.
    Have tried all the tricks and key options, to no avail.  I can boot up in (option key) in recovery mode, however it gives me a choice of disk, or recovery disk.
    If I go to disk, it stays frozen on the grey screen and will not go to finder.
    If I go to recovery, I'm able to access disk utilities  and use, (says all is good with disk) but when I leave that and go to start up disk, it again freezes.
    Anything that goes to the finder( never makes it there), and it freezes.
    I've reinstalled the OS 4 times with the same issue each time.
    However, there are a couple of things I have noticed during the processes.
    When I verify permissions, it tells me that,
    "Group differs on library/preferences/com.apple.alf.plist, should be 80, group is 0"
    Permissions differ on "system/library/framework/core graphics.framework/resources"
    Permissions differ on "system/library/framework/core graphics.framework/core graphics"
    Permissions differ on "system/library/framework/core graphics.framework/versions/current"
    Not sure if that points to a hardware failure or not.
    Also I noticed when I start up in verbose mode ( cmd-shift-V) that I get  1 line in the start up process that concerns me. ( all the text displays, just 1 line that raises a ?)
    It says " boot cache control: unable to open /var/db/bootcaches/preheateduser/merged.playlist: 2 no such file or directory
    Any thoughts anyone?
    Thanks in advance

    Install or Reinstall Lion/Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
            the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • Better today's date formatted in supported API?

    Since "Use of NSCalendarDate strongly discouraged." prior to deprecation what is your preferred alternative to:
    // NSCalendarDate *now;
    // now = [NSCalendarDate calendarDate];
    // [textField setObjectValue:now];
    The following is obviously better from the point of view of end-user localization etc.
    Is it what you do or do you do something as "good" for the end-user but less verbose?
    From the API Reference:
    "The format for these date and time styles is not exact because they depend on the locale, user preference settings,
    and the operating system version. Do not use these constants if you want an exact format.
    Available in Mac OS X v10.4 and later."
    [NSDateFormatter setDefaultFormatterBehavior:NSDateFormatterBehavior10_4];
    NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init ] autorelease];
    [dateFormatter setDateStyle:NSDateFormatterMediumStyle];
    [dateFormatter setTimeStyle:NSDateFormatterMediumStyle];
    NSString *formattedDateString = [dateFormatter stringFromDate:[NSDate date]];
    [textField setObjectValue:formattedDateString];
    NSLog(@"Current date / time = %@", formattedDateString);
    // Output like: "Current date / time = 6 Aug 2008 11:37:38"

    I 'll assume this is the way to do it then!

Maybe you are looking for