Conf goes where?

I think this is the best place for this question... if not, sorry.
Should config files now be placed in ~/.config/app_name/, e.g. ~/.config/powerpill/powerpill.conf? Should each app have a separate directory under .config/ or is it acceptable to dump a single, clearly named config file directly in .config/ ?
I read something about that in the last few days but I don't remember where (maybe it was a pacman upgrade message). Is there a consensus on best practice?
Last edited by Xyne (2008-10-15 20:15:32)

phrakture wrote:
I can't remember when the ~/.config/ thing started, but historically, *nix apps have dumped the file directly to $HOME. Considering some very high-profile apps still do this (for instance, git), I tend to go with that way of doing things. It makes more sense and is less to type.
But, like I said, I have no idea where the ~/.config/ thing first came from. It is NOT part of the FHS or any similar standard. The first time I saw it was in OpenBox. So I'd start looking there if you want to find where this spec comes from (my guess might be here: http://standards.freedesktop.org/basedi … test.html)
freedesktop.org wrote:There is a single base directory relative to which user-specific configuration files should be written. This directory is defined by the environment variable $XDG_CONFIG_HOME.

Similar Messages

  • What goes where when using separate drives for data and applications?

    Hello people!
    In Mac Guru's "Guide to Macintosh Performance Acceleration" it states " Separating your "User" data from the Operating System and Applications is the simplest and most cost effective way to enjoy a significant performance boost at
    minimal cost"...
    Now how exactly do I do that?
    I have a 40 GB HD with Panther on it and a 55 GB drive I want to use for the "data" drive. What goes where?
    Thanks for reading!

    Hello Danny:
    Welcome to Apple discussions.
    I disagree with the premise in that article - "significant" is relative and depends on where you are. The only method I am aware of to "separate" would be to create partitions. OS X uses sophisticated algorithms to manage memory - both real and virtual. There are very few good reasons to partition an internal HD - and several that suggest you should not do that - absent a "good" reason.
    Barry

  • Another "What goes where" thread

    Hi guys
    I am a little unsure how to configure "what goes where" on my main rig.
    I have these discs:
    Corsair 256 GB Pro (holds atm system, program files and pagefile)
    Single 1.5 TB WD black (all kinds of stuff other than video)
    Raid 0 on LSI 4 chnl. ctr. - 2 x Caviar 600 GB (holds now project files and maedia for PPRO)
    Raid 0 on LSI 4 chnl. ctr. - 2 x Caviar 1 TB (holds render now)
    SSD 240 GB for mediacache and preview for both AE and PPRO CS6
    Should I add another single disc for project files alone and/or move the pagefile?
    Thanks
    Ulf

    Jim, I completely agree considering your own system, but not on Ulf's system, which is way faster than yours.
    Ulf,
    If you want to add another two disks, I suggest:
    C: 256 GB OS & programs & pagefile, SATA 6G
    D: 240 GB Windows temp & media cache & AE cache, SATA 6 G
    E:  2 x 600 WD in raid0 on the Marvell controller, previews. SATA 6G
    F: 4 x 1 TB in raid5 on the LSI for media and projects
    G: 1.5 TB exports and backup.
    FYI, yesterday Bill gave me some experimental figures on the new test we are working on. Exporting a two hour timeline on an i7-2600K with a single OCZ Vertex4 SSD was around 6 times slower compared to a system with a heavy raid array. 84 seconds versus 14 seconds. Jim's suggestion to break out the raids you currently have will only slow down your system. In Jim's case he will not notice it, because his system is so much slower than yours, but you definitely will notice it.
    The complicating factor in your case is the variety of disks you have and only a 4 port controller. The E: drive is way too big for previews only, but you don't have many choices for alternative uses and despite that they are older drives, in a raid0 they do give you nice performance. Going from 2 x 1 TB raid0 to 4 x 1 TB raid5 on that controller will give you added performance plus security against disk failure. Don't expect miracles in performance boost from 2x R0 to 4x R5, it will probably be only 25-35% or around that figure.

  • I can't sync my ipod to itunes. It looks like it is going through all the steps to sync but nothing happens. The music I moved around is not going where it should

    I can't sync my ipod to itunes. It goes through all the steps to sync but it does not sync. The music I moved around does not go where I put it. It shows up in itunes (when changing music around) but does not change it on my ipod. Can someone help me?

    Sync Session Failed to Start iTouch iOS5: Apple Support Communities
    iphone could not be synced sync session failed to start...: Apple Support Communities
    and
    Can't connect to the iTunes Store

  • What tier goes where

    Hi,
    with a web (jsp) application, the tier architecture is simple:
    Database tier -> middle tier (webserver) -> client tier (webbrowser)
    But what about JClient apps.
    Database tier -> middle tier (bc4j) -> client tier (jclient) ?
    Where does code execute. If I use a viewobject to populate a JTree, does it 'run' on the middle tier (application server), or does it run on the client machine in the jclient application? What and where's exactly the separation between gui and middle tier?
    In a web environment, the browser is the 'thin' client, which knows only html. All business logic is performed on the server. Is the JClient situation comparable? Or is a jclient a much less thin client?

    As you're familiar, BC4J allows you to build J2EE-compliant apps with a clean, logical three-tier design. You can then choose to deploy your application as a physical two tier application, or a physical three-tier application as your needs require. These rules hold, regardless of the client implementation technology.
    Two concrete examples of a physical two-tier physical deployment are:
    [list=1]
    [*]JClient application talking to BC4J appmodule in local mode
    [*]JSP pages using BC4J datatags talking to BC4J appmodule in local mode
    [list]
    Two concrete examples of a physical three-tier deployment are:
    [list=1]
    [*]JClient application talking to BC4J appmodule deployed as an EJB Session Bean in a J2EE Container on another machine
    [*]JSP pages using BC4J datatags talking to BC4J appmodule deployed as an EJB Session Bean in a J2EE Container on another machine
    [list]
    Of course, the degenerate case of the last example above occurs when the JSP pages and the EJB Session Bean actually reside on the same J2EE container, then you can use the EJB Session Bean option of BC4J with local interfaces.
    Regardless of the UI layer you're using, your client works with the set of BC4J interfaces in the oracle.jbo.* package.
    What changes in the two deployment scenarios is the classes in the JBO framework that implement these common interfaces.
    [list]
    [*]In a physical two-tier deployment (also known as "local mode"), the interfaces are implemented by classes in the oracle.jbo.server.* package.
    [*]In a physical three-tier deployment, the interfaces are implemented by classes in the oracle.jbo.client.* package (and its oracle.jbo.client.remote.* "sub"-package.
    [list]
    This is transparent to your application code since you are working with the interfaces.
    When you use the remote mode, the bulk of the implementation stays on the EJB tier inside your session bean. What travels to the client are collections of value objects which are managed by a client-side value-object cache that BC4J implements for you (but which you do not need to manage yourself). If you are, say, browsing the results of a query that has scrolled through 1000 records, BC4J will keep a "window" of rows of value objects on the client for you, where the size of the window is set via the setRangeSize() method on the view object you're working with.
    BC4J is also designed to keep its client-side value object cache kept in sync with any changes that occur in the business objects in the middle tier. For example, say you have some business logic coded into your Employee business object that increases an employee's salary by $1000.00 when their job category goes up a level. And let's say your client is working with a view of the data that shows:
    Empno    Ename    Salary     JobClass
    1234     Ivo      4321         4If the client updates the value of "JobClass" from 4 to 5, the attribute change on the client-side value object eventually makes it to the middle tier -- immediately if you are using the SYNC_IMMEDIATE mode, and on the next row navigation, row validation, or custom method invocation in the case of our SYNC_LAZY mode. In the middle tier, BC4J syncs the change in the client-side value object "row" of this view object query result and sets the "JobClass" view row attribute in the middle tier. Since view objects cooperate with entity objects, the setting of the "JobClass" on the view object row internally delegates to an attempt to set the "JobClass" attribute on the underlying entity object instance representing employee #1234 (which was created in the EO cache as this row was queried in from the database). Your business logic in the setJobClass() method at the Employee entity level contains the logic that decides that, based on the increase in job class, the salary should get incremented by $1000, so it calls setSalary() like this:
      private static final Number ONE_THOUSAND = new Number(1000);
      public void setJobClass(Number value) {
        setAttributeInternal(JOBCLASS, value);
        // If new job class is greater than old job class, increase salary by $1000
        Number prevJobClass = (Number)getPostedAttribute(JOBCLASS);
        if (value.compareTo(prevJobClass) > 0) {
          setSalary(getSalary().add(ONE_THOUSAND));
      }Part of the functionality of BC4J's unique "Value Messenger" design pattern implementation is that the framework keeps track of the "side-effects" of any middle-tier activity and automatically returns any relevant changes to the client-side value object cache to keep it in sync in the same round-trip that caused the activity to occur. In this example, the client is looking at a value object with the "Salary" attribute for employee #1234 and this employee's Salary has changed as a result of having set the JobClass attribute.
    The net effect is that the user types in a new job class of 5 and tabs to a new field, and the updated salary of 5321 appears automatically.
    Empno    Ename    Salary     JobClass
    1234     Ivo      5321         5  <---------This attribute changed by the user
                         \_______<_______ The updated salary (increased by $1000) appearsThis works both in local mode or 3-tier mode for JClient, JSP, or any of our supported "View-Layer" technologies that bind to the standard BC4J client interfaces in oracle.jbo.*
    So, in short, a BC4J JClient app that's deployed as a 3-tier application is a thin client with a small cache of value objects for view objects with active iterators open on the client.
    Let me know if you have more questions on this subject.

  • What goes where ???

    I've used cisco for some time now, and are realy happe with it, but there is one thing i need to get a hang of..
    Traffic from one vlan going out to internet, and traffic comming back...
    All i see is traffic comming from 1 ip out on internett going to my external ip on any given port.
    Is there a way i can wee what inside ip address it's going against and what inside ip it's comming from ??
    We have a asa5510 with aprox 8 vlan's on the inside and it would be nice to see what user is causing the internet traffic and why there are so many hit's on the firewall  :-)
    Thnks for any help
    Thomas
    pst not to good on command, mainly used gui :-)                  

    Hi,
    A basic packet capture configuration for ASA could look something like this
    access-list TRAFFIC-CAPTURE permit ip 10.10.10.0 255.255.255.0 any
    access-list TRAFFIC-CAPTURE permit ip any 10.10.10.0 255.255.255.0
    capture TRAFFIC-CAPTURE type raw-data access-list TRAFFIC-CAPTURE interface inside buffer 33500000 circular-buffer
    Where
    TRAFFIC-CAPTURE = Is the ACL that defines the traffic to be captured. The above ACL captures both directions of the traffic when the source is 10.10.10.0/24 and destination is "any" (and vice versa naturally)
    10.10.10.0/24 = Is an example LAN network located behind "inside" interface (or is the interface network)
    inside = Is the interface from which the capture is taken from
    33500000 = Is pretty close to the max buffer memory you can have on any ASA firewall for a single capture You can make separate capture for each direction and later attach the capture files using wireshark
    circular-buffer = Is the setting that will permit the ASA to overwrite the old captured data when the buffer is full. Capture will keep on working but old data will be overwritten as new data is being captured.
    Naturally the above ACL is VERY broad. You can change the capture to only capture one "host" traffic. Or only capture TCP or UDP traffic only. You can limit to some certain destination IP addresses. Just control as you like with the ACL.
    To show if traffic is hitting the capture
    show capture
    To show a specific capture and its contents
    show capture
    To copy a capture to external TFTP server
         To be later opened with Wireshark for example
    copy /pcap capture: tftp://x.x.x.x/.pcap
    To remove a capture from ASA
    Also removes the collected data
    no capture
    Hopefully the above information has been helpfull. Please do rate if it has been and naturally ask more if needed.
    - Jouni

  • Imported music files not going where they're supposed to go

    Until recently I was on an eMac. Last year I purchased an external hard drive and easily moved all of my music files over to the external. At the time I set iTunes to 'direct' music files and folders to the external drive, not my laptop hard drive. This summer I got a MacBook and imported my iTunes library easily again. Since getting the laptop, it seems that every so often when I import a new Cd, the folder with the music files goes to the iTunes folder on my laptop hardrive, rather than to the 'My Music' folder I created on the external drive.
    This happens maybe a third of the time and there doesn't seem to be any rhyme or reason when it does happen. When I notice it I simply move the folders over to the external drive.
    Am I doing something wrong? Is there any way to have ALL imported music directed to the external drive? (I thought I had already done so...)
    Thanks.

    If you do not launch iTunes with the external hard drive un-mounted, and iTunes was pointed to it, iTunes will not change music folder locations. Once again, if iTunes is launched with the external hard drive un-mounted, and that is where you told iTunes the music folder was, iTunes will return to the default location on your internal hard drive.
    Tracy

  • Text not going where it should

    Hi
    This is a very basic one but for some reason its not working,
    all I want to happen is the text to go 160px from the left margin and 110px from the top margin,
    It goes 160px from the left, but it stays on the top, and doesnt go down.
    I have attached an Image, the top image is the view i get in dreamweaver and it looks as it should but when i preview in my browswer then i gte the bottom view
    Please can someone help
    Thanks you
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    #wrapper {
    height: 500px;
    width: 834px;
    margin-right: auto;
    margin-left: auto;
    #wrapper #top {
    width: 834px;
    height: 161px;
    background-color: #0099FF;
    #wrapper #bottom {
    background-color: #00FFFF;
    width: 834px;
    float: right;
    height: 338px;
    #top p {
    margin-left: 160px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #FFFFFF;
    margin-top: 110px;
    -->
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div id="top">
      <p>The use of travelling is to regulate imagination by reality, and instead of thinking how things may be,
      to see them as they are.
      Samuel Johnson
      </div>
    <div id="bottom"></div>
    </div>
    </body>
    </html>

    Add overflow:hidden to #wrapper #top that's it...

  • FSB not going where it should

    I have the spec shown in my sig and I'm using the 1.D2 Mod BIOS. I was wondering if anyone had problems getting the FSB up to 300. I set my cpu multi to x6, the HTT multi to x2 and the memory to 100MHz but I couldn't get it to boot once I reach 235/240. I am hoping to get an Opty 170 and overclock it to 3GHz(300x10). Would I have more success with the official 1.C version or are there any other versions I could try.

    I got another modded 1.c Bios and I did some testing. I tried 220MHz and it worked. I was able to cold boot with it as well. I tried 230MHz and it worked, but when I tried a cold boot it wouldn't boot. For these tests I used the following settings:
    CPU voltage: 1.5V
    CPU multi: x7
    Vdimm: 2.7V
    FSB: 230MHz
    HTT multi: x1
    Memory: 100MHz
    Tcl: 2.5
    Trp: 3T
    Trcd: 3T
    Tras: 6T
    Trrd: Auto
    Rec: 12T - value BIOS detected
    Trfc: 18T - value BIOS detected
    Trwt: Auto
    Drive Strength: Normal
    I'm going to try 1.A and 1.B to see if I can get anywhere with them. At least it's the weekend so I'll have time to actually do some proper testing 
    Quote from: SillySider03 on 01-February-07, 20:50:18
    I am positive it would have been rock stable around 330Mhz...Best...AGP...Board...Ever!
    I would love to get that, hopefully victory will be mine!

  • Domain name, host name - what goes where?

    So to clear the pipeline and reduce the amount of configuration, I decided to get rid of my router and plug my server directly into the modem, thus using the server as the gateway/router for other computers in my home. Hopefully this will eliminate the need for an internal/private network DNS configuration as well as an external/public DNS configuration.
    I have a registered public domain name of N.com and an associated public MX record for this domain which is also named N.com (as opposed to mail.N.com or something similar).
    I reinstalled the Leopard Server software and when the setup asked for a "primary DNS name" I named it N.com (the same name as my registered public domain). I went into firewall settings in the Server Admin and "allowed"/opened port 25 as well as 80 for email and web services respectively.
    When I looked in the Mail settings the default domain name is "localdomain" and the default hostname is N.com (the same as my registered public domain). Default user addresses are [email protected] I have no problem seeing the server's webpages from the internet, but I still cannot get any mail from the internet to show up in my user accounts.
    What more do I need to do?

    an educated guess-
    does the client's email system have something like Spam
    Assassin filtering
    incoming mail?
    is this cgi script matt wright's formmail?
    If yes to both- Spam Assassin is rating the formmail
    generated email as spam
    based on the subject line and default first line of text in
    the message
    body.
    A fix-
    1) hand edit the formmail script, find and change:
    Below is the result of your feedback form
    to any other text
    2) use the optional field to change the subject line from the
    default.

  • I have 2 phones on a single apple ID, and am getting email and texts to both phones... can i configue what goes where from the cloud?

    My son shouldnt have his own Apple ID yet, and I dont want him getting my email and texts. Anyone know how to configure the cloud to stop this?

    Well yes, but if you want to update those apps, you'd need to sign in under your old Apple ID to update them. It's really best to just stick to one Apple ID, or you'll run into association complications down the road.

  • Screen Capture goes where?

    I've found a few threads discussing this topic, none of which help me.
    I installed Leopard through a clean install. Actually, first I upgraded then I archived and installed, lastly I formated and started fresh. That, however, outside of the scope of this discussion.
    I am unable to successfully screen capture using Shift-Command-4. The camera snaps. No image is saved.
    Some have suggested deleting .globalpreferences.plist file. I cannot figure out how to un-hide this file to delete it.
    Does anyone have any suggestions?

    In the continuing hope that someone might be able to help I'll post my crashlog
    Process: screencapture [3315]
    Path: /usr/sbin/screencapture
    Identifier: screencapture
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: launchd [1]
    Date/Time: 2007-11-19 06:40:59.183 +0200
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFString _getValue:forType:]: unrecognized selector sent to instance 0xa00e99e0'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x910cd114 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x902b909b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x910d446a -[NSObject doesNotRecognizeSelector:] + 186
    3 com.apple.CoreFoundation 0x910d2a6c __forwarding__ + 892
    4 com.apple.CoreFoundation 0x910d2b32 CF_forwarding_prep0 + 50
    5 com.apple.CoreFoundation 0x91037da8 CFNumberGetValue + 2728
    6 screencapture 0x00002f5b 0x1000 + 8027
    7 screencapture 0x00005ef5 0x1000 + 20213
    8 screencapture 0x00006213 0x1000 + 21011
    9 screencapture 0x00006861 0x1000 + 22625
    10 screencapture 0x0000193e 0x1000 + 2366
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa00d80f0 ebx: 0x902b907c ecx: 0xa00d71a0 edx: 0x0000f000
    edi: 0xa02b6f00 esi: 0xa00e99e0 ebp: 0xbffff648 esp: 0xbffff648
    ss: 0x0000001f efl: 0x00000286 eip: 0x910cd114 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0011f000
    Binary Images:
    0x1000 - 0x7fff +screencapture ??? (???) <e199f7fb839bf6624db61a6ac1e073e9> /usr/sbin/screencapture
    0x200000 - 0x2e6ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x900c1000 - 0x9013dfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9017c000 - 0x90247fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90248000 - 0x9026ffff libcups.2.dylib ??? (???) <6b61eb99e6f5dd2d66cd224e9f82427d> /usr/lib/libcups.2.dylib
    0x90270000 - 0x902affef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x902b0000 - 0x9038ffff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x903f5000 - 0x9044fff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90479000 - 0x904f0fe3 com.apple.CFNetwork 220 (220) <0ae8fbcbadcb9bd8d673aa4531c0fcfc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x909be000 - 0x909c9fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x909ca000 - 0x90a5cff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90a65000 - 0x90ab5ff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90c36000 - 0x90d7bff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90d7c000 - 0x90e23fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90e43000 - 0x90e9cfff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90fe1000 - 0x91113fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91161000 - 0x917f8fef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9208c000 - 0x92142fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9215f000 - 0x92166ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9237b000 - 0x9242bfff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9242c000 - 0x9244afff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x9244b000 - 0x92461fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x924b4000 - 0x924b4ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x924b5000 - 0x9260ffe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x9264e000 - 0x9264ffef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92650000 - 0x926cfff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x926d0000 - 0x926ddfe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9271b000 - 0x9271dff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92777000 - 0x92777ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92778000 - 0x929f1fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x929f2000 - 0x92e02fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92ee8000 - 0x92ee8ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92f37000 - 0x932f5fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x944f6000 - 0x9462eff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x9462f000 - 0x9463ffff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9468b000 - 0x94712ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x94725000 - 0x94749fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x94772000 - 0x9477afff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9477b000 - 0x947bcfe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947bd000 - 0x948e1fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94a39000 - 0x94aadfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95496000 - 0x95522ff7 com.apple.LaunchServices 284 (284) <0fb50a7a6fd38875f727fc2592a496e4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x956a2000 - 0x956d1fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x956d2000 - 0x956edffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x956ee000 - 0x956fcffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x95701000 - 0x95746fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95747000 - 0x95774feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95785000 - 0x9584cff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9584e000 - 0x95884fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95885000 - 0x9588cfe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x95912000 - 0x959f3ff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x95a57000 - 0x95ae1fff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95b51000 - 0x95b61ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95b8a000 - 0x95b8affc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95bea000 - 0x95c14fef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x95ca9000 - 0x95d06ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x95d07000 - 0x95d07ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95d08000 - 0x95fe1fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95fe2000 - 0x95fe6fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95fe7000 - 0x95fe7ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96098000 - 0x960a4ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x960e8000 - 0x962b1fef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x962b2000 - 0x962d1ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x962d2000 - 0x9634cff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9642d000 - 0x964dfffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • What Goes Where andhow to email!

    Hello
    Looking for a little help here, this is the first time i
    would have written AS im more a PHP man but have used flash alot to
    create more movie type interatcive sites anyway im using FLASH CS3
    I have 4 Text Inputs and a Button with instances
    name_box
    email_box
    tele_box
    Message_box
    send_btn
    There on a Graphics Symbol thats inside a Movie Symbol thats
    placed in the main screen on frame 169
    on frame 172 is animation that i would like to show while the
    data is being sent frame 173 is an error and 174 is the confirm
    The PHP file im trying to post these to is working fine (with
    other HTML websites)
    Now this is what i have got in the action script inside a
    layer on the graphic symbol that holds the fields:
    stop();
    System.useCodepage = true;
    send_btn.onRelease = function() {
    my_vars = new LoadVars();
    my_vars.name = name_box.text;
    my_vars.email = email_box.text;
    my_vars.tele = tele_box.text;
    my_vars.message = message_box.text;
    if (my_vars.name != &quot;&quot; and my_vars.email
    != &quot;&quot; and my_vars.message !=
    &quot;&quot;) {
    my_vars.sendAndLoad(&quot;mailer.php&quot;, my_vars,
    &quot;POST&quot;);
    gotoAndStop(172);
    } else {
    gotoAndPlay(173);
    my_vars.onLoad = function() {
    gotoAndStop(174);
    After this not working it tried placing
    gotoAndPlay.root(frame number) but this didn't work and tried
    placing the original action script on the main in a layer of its
    own
    Anyone have any ideas to how i could get the to work?
    Thank you in advanced

    AS should only go in the main timeline.
    >>my_vars.sendAndLoad("mailer.php", my_vars, "POST");
    You should probably be using a full URL here:
    my_vars.sendAndLoad("
    http://www.mydomain.com/scripts/mailer.php",
    my_vars,
    "POST");
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Podcasts not going where they should

    Using 2GB Nano
    Windows XP
    iTunes 7.1.1.5
    I am seeing a strange problem, searched the forums, and haven't found an answer.
    I have many podcasts that I have subscribed to, however, ONE of the podcasts has episodes that won't transfer over.
    To test this, I told iTunes to synch ALL episodes of ALL podcasts. With every podcast except this one, all episodes show up. With this one podcast, 2 or 3 episodes wouldn't transfer over. I even marked them as new, just to see if there was anything goof with that.
    Any ideas?

    Here is some other information I found on it. It seems pretty basic fixes but hey, It just might work for you.
    http://www.imore.com/having-trouble-imessage-or-facetime-ios-7-heres-how-fix-it

  • BootCamp_3.1_64-bit download goes where?

    About to install Windows 7 OEM on Mac Pro with OS X 10.6.8.
    OS X install DVD is 6.0.
    Downloaded BootCamp_3.1_64-bit.exe.
    Since Windows is not yet installed, what folder or location do I copy the BootCamp.exe file to?
    And, during Windows 7 installation, when do I execute the BootCamp exe file?
    Thanks,
    bob

    OK, so I start with 3.0 then when I have installed Windows 7, I search for BootCamp_3.1_64-bit.exe on my OS X partition, then drag it into the Windows Partition? Then execute the BootCamp_3.1_64-bit.exe file?
    Is that correct?
    P.S.  I did read the pdf:  http://manuals.info.apple.com/en_US/Boot_Camp_Install-Setup_10.6.pdf
    However, the pdf manual reads:  
    "Step 1: Check for updates In Mac OS X, go to http://www.apple.com/support/BOOTCAMP and check whether you need to update your software BEFORE you can install Windows."
    So, of course I found existing Boot Camp updates - which led me to my questions above. 
    Thanks for responding.

Maybe you are looking for