Episode 1: Edge and the Twitter API | Learn Edge Preview 6 | Adobe TV

Adobe Edge is not limited to sexy web animations; you can also build apps and integrate third-party APIs easily. In this lesson, connect to Twitter, pull tweets, and visualize them using an item renderer built using Edge, thereby learning how to consume APIs and create elements programmatically within Edge.
http://adobe.ly/Lubp0u

Hi,
So I have attempted to integrate the API as you have suggested. I am not a coder so I have no idea what I am really doing but check out what I have pulled together so far:
http://dl.dropbox.com/u/9159616/Circle%20Pulse%20w%20Twitter%202.zip
What I would like to do is be able to change the query to something custom so that anytime I hove over the button, a new tweet with the query of my choosing slides up  and the old one Fades out.
Can you help with this? I really appreciate it. Thanks for posting this amazing tutorial.
Adam

Similar Messages

  • Episode 1: Edge and the Twitter API | Create Like Crazy with Adobe Edge | Adobe TV

    Adobe Edge is not limited to sexy web animations; you can also build apps and integrate third-party APIs easily. In this lesson, connect to Twitter, pull tweets, and visualize them using an item renderer built using Edge, thereby learning how to consume APIs and create elements programmatically within Edge.
    http://adobe.ly/LWYBWm

    Hi,
    So I have attempted to integrate the API as you have suggested. I am not a coder so I have no idea what I am really doing but check out what I have pulled together so far:
    http://dl.dropbox.com/u/9159616/Circle%20Pulse%20w%20Twitter%202.zip
    What I would like to do is be able to change the query to something custom so that anytime I hove over the button, a new tweet with the query of my choosing slides up  and the old one Fades out.
    Can you help with this? I really appreciate it. Thanks for posting this amazing tutorial.
    Adam

  • Help with Essbase 9 and the Java API

    Hi, I am trying to connect to Essbase from a Java desktop application and I am unable to do so. I need to know if I am in principle doing the right things and if I have the correct environment set up.
    We have a server with Essbase version 9.3.1. We normally use essbase via the Excel Addin, and I have already written Excel applications that utilise both the addin and the Essbase VB API. Now I need to connect to Essbase but from outside Excel and using the Java API. I have no idea what APS is nor does my Essbase Administrator.
    My application has the following code (adapted from a post in this forum) -
    public static void main(String[] args) {
    String s_userName = "user";
    String s_password = "password";
    String s_olapSvrName = "ustca111";
    String s_provider = "http://localhost:13080/aps/JAPI";
    try{
    IEssbase ess = IEssbase.Home.create(IEssbase.JAPI_VERSION);
    IEssDomain dom = ess.signOn(s_userName, s_password, false, null, s_provider);
    IEssOlapServer olapSvr = dom.getOlapServer(s_olapSvrName);
    olapSvr.connect();
    System.out.println("Connection to Analyic server '" + olapSvr.getName() + "' was successful.");
    olapSvr.disconnect();
    }catch(EssException exp){
    System.out.println(exp.getMessage());
    I am running my application on my computer, not on the Essbase server, and the username I am using is the same one I use (as a user of Essbase) via the Essbase Addin in Excel, not an admin login.
    When I run the app I get:
    "Cannot connect to Provider Server.Make sure the signon parameters are correct and the Provider Server is running."
    Please can you confirm:
    1) Do I need an admin login for my client application to connect to the Essbase server or can I use a normal read-access login, like the one I use in Excel?
    2) Is the provider always the same regardless of the computer, i.e. "http://localhost:13080/aps/JAPI"; How do I know what this has to be? Where do I get this information from?
    3) How can I make sure that the Server is running the necessary "Provider Server", is this just a service that will show on services.msc of the server? What should I ask the Essbase Administrator for him to tell me what I need?
    Thank you very much.
    Leo

    Tim, when I look in my computer's Essbase installation path I can only find the following jar files (from the ones you have listed).
    C:\Hyperion\AnalyticServices\JavaAPI\external\css\log4j-1.2.8.jar
    C:\Hyperion\AnalyticServices\JavaAPI\lib\ess_es_server.jar
    C:\Hyperion\AnalyticServices\JavaAPI\lib\ess_japi.jar
    I do not have css-9_3_1.jar or interop-sdk.jar.
    In order to try the embedded mode, I added the three jars I have to the classpath, and have re-built and ran with "embedded" as the provider. This is what I got in my output screen:
    run:
    Error accessing the properties file. essbase.properties: essbase.properties (The system cannot find the file specified). Using default values.
    Hyperion Provider Services - Release 9.3.1.0.0 Build 168
    Copyright (c) 1991, 2007 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    essbase.properties: essbase.properties
    domain.db location: domain.db
    console log enable : false
    file log enable : false
    logRequest : false
    logLevel : ERROR
    java System properties -DESS_ES_HOME: null
    Scenario Markets Total Legal Entities Products
    Jan Feb Mar
    Standard Units 1.053264054859E7 1.60849856762E7 2.6234553348270003E7
    BUILD SUCCESSFUL (total time: 2 seconds)
    As you can see, this has worked (as I get the data I was looking for at the end), but when I had the url in the provider string, I just get the below, without the initial errors:
    run:
    Scenario Markets Total Legal Entities Products
    Jan Feb Mar
    Standard Units 1.053264054859E7 1.60849856762E7 2.6234553348270003E7
    BUILD SUCCESSFUL (total time: 2 seconds)
    Now that I can get both modes to work I intend to write a Windows application, place it in a shared drive, and allow multiple users to use it. Which mode should I use?
    By the way, I found the essbase.properties file in C:\Hyperion\AnalyticServices\JavaAPI\bin, but when I add it to my app and test it in embedded mode, I get even more errors, but it still gives me the result...output below:
    run:
    java.io.FileNotFoundException: ..\bin\apsserver.log (The system cannot find the path specified)
    at java.io.FileOutputStream.openAppend(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:177)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:102)
    at org.apache.log4j.FileAppender.setFile(FileAppender.java:272)
    at org.apache.log4j.RollingFileAppender.setFile(RollingFileAppender.java:156)
    at org.apache.log4j.FileAppender.<init>(FileAppender.java:96)
    at org.apache.log4j.RollingFileAppender.<init>(RollingFileAppender.java:60)
    at com.hyperion.dsf.server.framework.BaseLogger.addAppender(Unknown Source)
    at com.hyperion.dsf.server.framework.BaseLogger.setFileLogEnable(Unknown Source)
    at com.hyperion.dsf.server.framework.DsfLoggingService.sm_initialize(Unknown Source)
    at com.essbase.server.framework.EssOrbPluginDirect.setupLoggingService(Unknown Source)
    at com.essbase.server.framework.EssServerFramework.<init>(Unknown Source)
    at com.essbase.api.session.EssOrbPluginEmbedded.<init>(Unknown Source)
    at com.essbase.api.session.EssOrbPlugin.createPlugin(Unknown Source)
    at com.essbase.api.session.Essbase.signOn(Unknown Source)
    Hyperion Provider Services - Release 9.3.1.0.0 Build 168
    at com.essbase.api.session.Essbase.signOn_internal(Unknown Source)
    at com.essbase.api.session.Essbase.signOn(Unknown Source)
    at esstest.Main.main(Main.java:22)
    Copyright (c) 1991, 2007 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    log4j:WARN No appenders could be found for logger (com.hyperion.dsf.server.framework.BaseLogger).
    essbase.properties: essbase.properties
    log4j:WARN Please initialize the log4j system properly.
    domain.db location: ./data/domain.db
    console log enable : false
    file log enable : true
    logFileName : ../bin/apsserver.log
    logRequest : false
    logLevel : WARN
    java System properties -DESS_ES_HOME: null
    Scenario Markets Total Legal Entities Products
    Jan Feb Mar
    Standard Units 1.053264054859E7 1.60849856762E7 2.6234553348270003E7
    BUILD SUCCESSFUL (total time: 3 seconds)
    Thank you
    Leo

  • Forms 6i and the JAVA API

    Hello,
    I have scanned this forum for the above subject and don't think there is a similar message that anyone else has submitted.
    We have a Client/Server application that has been built upon Forms 6i. We're running against an Oracle 8i, rel 8.1.5 database.
    I want to write some Java modules that will scan through all our source fmb's building up an inventory of useful info. This will enable us to judge the impact of such things as dictionary (table/view/package) changes.
    Is there a Java API available out there that I could use for my forms 6i forms? I know that there is a C API available - but I don't know C and neither do I have a C compiler!
    thank you,
    Mohan

    The Java API to Oracle Forms is a new feature of Oracle9i Forms. So you'll need to upgrade to Oracle9i Forms and then you will be able to use the Java API instead of the C API.

  • My First app using beta 2 and the Bing API (and REST in V2)

    Second version has REST feed for NASA Image of the day in addition to the Bing API stuff. I submitted to store.
    -- Barb Bowman

    http://digitalmediaphile.com/index.php/2014/03/27/my-space-images-from-nasa-app-now-available-world-wide/
    I've finished Space Images from NASA! Release 4 is in the Store worldwide .. see my write up above. I really love working with Project Siena.
    I used REST to pull image of the day into a custom gallery and Bing search for the rest.
    -- Barb Bowman

  • How to build a TestStand 2012 workspace ( insert a project / insert a folder) programmat​ically using LabVIEW 2012 and the TestStand API.

    Hi everybody!
    I am just trying to find out how to create a TestStand workspace … in LabVIEW using the TestStand API.
    To create a new workspace was quite easy. Unfortunately I am not successful to insert a new or existing project to the workspace.
    Furthermore I have to insert a folder from disk to the new or existing project in the way that I can use an absolute path for the directory …  
    Maybe someone had already solved this problem, in any case  I am thankful for any hint.
    Greetings from Germany,
    Norbert

    Have you find out how to add a folder to a project? I'm looking for this to... I tried WorkspaceObject.NewFolder[Name]whitout success...
    For creating Workspace and project see the newer resolved thread I created.
    Martin

  • Thread caching generally and the print API specifically

    hi - new slant on the old "printing" chestnut
    code goes something like this.
    a)
    PrintService[] x = javax.print.PrintServiceLookup.lookupPrintServices(null, null);
    System.out.println (x.length)
    code end, then repeat
    b)
    PrintService[] y = javax.print.PrintServiceLookup.lookupPrintServices(null, null);
    [break point]
    PrintService[] z = javax.print.PrintServiceLookup.lookupPrintServices(null, null);
    code end
    example a)
    if i run the same piece of code twice over, deleting a printer after the first time thru, i get the right answer on the second run.
    example b)
    if i stop the code at the break point, and then delete a printer; i get the same answer for z as for y. Still using the same JVM and thread, remember.
    i think the JVM or thread is caching the answers to this static call "lookupPrintServices". so i get the same answer until the code ends and the JVM exits.
    since this is going to run in an EJ bean, a workaround might be creating a child thread, doing the printer discovery in it, then returning the answer somehow to the waiting main program. This is nasty - does anyone have an other ideas ?
    thanks

    In fact, these server process have multiple devices attached because there are different hardware requirements depending on metadata recorded in the XML file (paper size/type, duplex printing). When a new hardware requirement arises, we may need to install a different device. It may also be the case that an XML contains a new printer name but that an existing device matches the requirements. We then install a new (logical) printer and map it to the port of the existing matching device.
    Any way, the device selection is data-driven and is somewhat dynamic (we will not add printer every day/hour but it will happen and the service should preferably not be interrupted)
    The problem of a new report type with hardware requirements already supported by existing devices could be solved by a override method but the problem of new hardware specifications, requiring the installation of a new printer can currently be solved only by bouncing the VM, which must be done carefully (being sure that a report has been processed completely and that the next one has not yet been started).

  • Creating an Animation with Edge | Learn Edge Preview 6 | Adobe TV

    When Preview Release 1 arrived in mid-2011, Edge was able to move pixels from “here” to “there.” This video not only shows you how to move pixels, but also demonstrates how Edge vastly expands the creative possibilities for web-delivered motion graphics through the use of the timeline, keyframes, easing, and property manipulation.
    http://tv.adobe.com/watch/learn-edge-preview-6/creating-an-animation-in-edge-aka-visually- author-animated-content/

    Thanks for the video.
    I am just starting with Edge, have reviewed a few examples, done a few lessons, and looked at some code.
    Something about Edge, demonstrated in this video, puzzles me.
    The PIN mechanism seems counter-intuitive.
    In this video, the "E" is at the bottom, you then click the PIN, slide the PIN HEAD to 1 sec, then move the "E" to the top of the screen/stage.
    When you play it, you see the exact opposite. Instead of seeing the "E" move up to the top position over the time frame specified, you see it move from the top to the bottom during that time. That seems exactly backward to me.
    Your comment "The motion moves towards the Play Head" seems backward to me.
    Can you kindly explain your thinking behind making it work that way?
    For me, having it at the bottom, setting some construct, and time frame, and then moving the "E" to the top, should result in the "E" going from the bottom to the top during the time frame specified. Is that not more intuitive?
    Thanks,
    Derrick

  • When I open a document in Adobe XI Pro Windows 8.1 I get a white screen and the document does not appear to open, Adobe is 'not responding'

    I purchased a computer with Windows 8 and installed the 8.1 upgrade. I installed Adobe Acrobat XI Pro and have had error messages about specific fonts not being present but the document opens just fine. Other times (about half the time) the document will not open or opens as a blank screen, and eventually Adobe Not Responding appears, with the usual choices to close or look for a solution. If I look for a solution it tells me that no solution was found. I have not found any information online about this problem. I have used Adobe Pro in previous versions in a Windows 7 and Windows XP environment and not had any problems.  Is there a simple solution to this? I have uninstalled and reinstalled Adobe, and still no luck.

    Hi nausm,
    Is this issue specific to the pdf files or do you face the issue with any pdf you try to open?
    Which application was used to create these pdfs?
    Have you updated Acrobat to v11.0.7 and checked?
    Are you able to launch Acrobat standalone app without clicking on any pdfs?
    You are getting error related to specific fonts because the document might have the fonts that are not available on your computer.
    Regards,
    Rave

  • Introducing Adobe Edge Preview 5 | Adobe Edge Preview | Adobe TV

    Adobe Fellow Mark Anders shows new features in Edge preview 5 , such as the easing tool, animating with the Pin, improved playback commands, new on-stage tools, and the ability to create down-level compositions for non-HTML5 browsers as well as publishing lighter, optimized content.
    http://adobe.ly/xZqizM

    Very cool stuff!

  • Adding Interactivity, Looping, and Code | Learn Edge Preview 6 | Adobe TV

    There's no avoiding the fact that interactivity, regardless of application, is code-driven. In this lesson you will learn just how easy it is to use the Edge Code panel to create navigation, launch events on the screen, and even go to other websites. You'll also see how the Script panel and its snippets make coding a breeze for people who are new to JavaScript and provide a familiar place for web developers.
    http://adobe.ly/Jo2aC4

    Hi,
    I have created an interactive animation following this tutorial and have publish it to HTML5. With all the files generated in a folder, I placed the entire folder into the same folder where my Adobe Indesign files are.
    When I used the web content overlay in my indesign to link to the html page. It just showed me a white block. When I set the background to transparent, nothing shows when I previewed in my content viewer in both desktop and devices. It works fine when I previewed it on Firefox and Safari.
    Any idea what caused the problem?
    Thanks.

  • Using the Organizer interface | Learn Photoshop Elements 9 | Adobe TV

    With some images imported into the Organizer, you're ready to manage, optimize, and share your images. Learn about the Organizer interface so you can find your way around easily.
    http://adobe.ly/zIsjlc

    How do I put photos on a DVD?

  • Nvidia Geforce 670 and the Mercury Playback Engine GPU Acceleration for Adobe Premiere Pro

    Will Adobe test and certify the Nvidia Geforce GTX 670 for use with the mercury playback engine GPU acceleration feature of Adobe Premiere Pro CS5 in the near future? Any advice would be much appreciated, thanks in advance for any help.

    Adobe only certifies after extensive testing... For many others, with at least 1Gig of video ram, use the nVidia Hack http://forums.adobe.com/thread/629557 - which is a simple entry in a "supported cards" file - and Mac http://www.vidmuze.com/how-to-enable-gpu-cuda-in-adobe-cs6-for-mac/

  • After reinstalling Photoshop 12 I get an Error 213:11 when I launch the program and the associated msg tells me to contact Adobe Support but they say I eed to go through the forum

    How can I get past an error 213:11. Adobe support says I need to use the forum to get this issue resolved.

    Nobody can tell you anything without proper system info or other technical details. This is a licensing error that could have al lsorts of potential causes.
    Mylenium

  • How do I change the reader from Quicktime to Preview or Adobe Reader?

       My Safari wants to open .pdf files in Quicktime rather than the preferred Adobe Reader.  What and where can I change this back to making Adobe Reader the default reader?

    This was the output:
    -rw-r--r--  1 ewilliamwilson  ewilliamwilson  24684 Nov  7 09:42 Library/Preferences/com.apple.quicktime.plugin.preferences.plist
    Library/Caches:
    total 13288
    drwx------    7 ewilliamwilson  ewilliamwilson      238 Nov  7 13:48 Acrobat
    drwxr-xr-x   10 ewilliamwilson  ewilliamwilson      340 Apr 14  2010 Adobe
    drwxr-xr-x  124 ewilliamwilson  ewilliamwilson     4216 Nov  7 21:04 Adobe Camera Raw
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 26  2010 Adobe InDesign
    drwx------@   2 ewilliamwilson  ewilliamwilson       68 Jan  5 13:43 Cleanup At Startup
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 30  2009 Firefox
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jul 30  2010 Flickr Uploadr
    drwx------@   3 ewilliamwilson  ewilliamwilson      102 May  5  2010 Google
    drwxr-xr-x   10 ewilliamwilson  ewilliamwilson      340 May 31  2011 Google Earth
    drwxr-xr-x@   7 ewilliamwilson  ewilliamwilson      238 Dec  9  2009 Java
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Oct 29  2009 Logic
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 29  2010 Mail
    drwxr-xr-x@   5 ewilliamwilson  ewilliamwilson      170 Nov 12  2009 Metadata
    drwxr-xr-x    5 ewilliamwilson  ewilliamwilson      170 Sep 19 08:06 Microsoft Office
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson  1106535 Oct 15  2009 QCCompositionRepository-com.apple.iTunes.cache
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson  1158371 Mar 13  2011 QCCompositionRepository-com.lemkesoft.graphicconverter.cache
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Oct 15  2009 QuickTime
    drwxr-xr-x@   3 ewilliamwilson  ewilliamwilson      102 Jan  5 15:46 Safari Webpage Preview Fetcher
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 15  2009 Second Nature
    drwx------    4 ewilliamwilson  ewilliamwilson      136 Jan  4 22:17 TemporaryItems
    drwxr-xr-x    2 ewilliamwilson  ewilliamwilson       68 Nov 12  2009 Transmit
    drwx------    2 ewilliamwilson  ewilliamwilson       68 Dec 14 08:31 UpdateEngine-Temp
    drwxr-xr-x   14 ewilliamwilson  ewilliamwilson      476 Oct 31  2010 Yahoo! Messenger
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Aug 15  2010 ZeeVee
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 17  2010 com.3Dconnexion.3DxMacWare Updater (PE)
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  9  2011 com.Adobe.Uninstall
    drwxr-xr-x@   3 ewilliamwilson  ewilliamwilson      102 Dec  8 11:27 com.Google.GoogleEarthPlugin
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  3 18:29 com.Google.GoogleEarthPlus
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  5  2011 com.Growl.GrowlHelperApp
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  1 21:33 com.RealNetworks.RealPlayer
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov  7 13:49 com.adobe.ARM
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 15  2010 com.adobe.Acrobat.Pro
    drwxr-xr-x    3 root            ewilliamwilson      102 Apr 23  2011 com.adobe.Installers.Setup
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct  3 19:27 com.adobe.Lightroom3
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 14  2010 com.adobe.Photoshop
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  4 10:23 com.adobe.Reader
    drwx------    2 ewilliamwilson  ewilliamwilson       68 Oct  1 16:33 com.adobe.Reader.ARM
    drwxr-xr-x    3 root            ewilliamwilson      102 Mar  9  2011 com.adobe.air.ApplicationInstaller
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 27 21:50 com.adobe.air.Installer
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 27 21:54 com.adobe.amp.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1
    drwxr-xr-x@   3 ewilliamwilson  ewilliamwilson      102 Nov 16 10:11 com.adobe.flashplayer.installmanager
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Apr 25  2010 com.adobe.mauby.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Feb 17  2011 com.apago.PDFShrink
    drwx------    3 ewilliamwilson  ewilliamwilson      102 Sep 21 22:56 com.apple.AddressBook
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson   423563 Nov 30 13:31 com.apple.Automator.ActionCache-2.plist
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson     4620 Nov 18  2009 com.apple.CharPaletteCache.plist
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Dec 31 19:32 com.apple.Dictionary
    drwxr-xr-x    2 ewilliamwilson  ewilliamwilson       68 Dec 31 19:33 com.apple.DictionaryApp
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Aug 13 14:14 com.apple.DictionaryServices
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  5 17:16 com.apple.PubSubAgent
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  5 17:19 com.apple.QuickLookDaemon
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 May  4  2011 com.apple.QuickLookDaemon32
    drwxr-xr-x@   5 ewilliamwilson  ewilliamwilson      170 Jan  5 17:21 com.apple.Safari
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  2 18:39 com.apple.SoftwareUpdate
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jun 23  2010 com.apple.TextEdit
    drwxr-xr-x@   3 ewilliamwilson  ewilliamwilson      102 Jan  5 10:31 com.apple.WebProcess
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov  9 15:24 com.apple.airport.airportutility
    drwxr-xr-x    9 ewilliamwilson  ewilliamwilson      306 Dec 15 23:32 com.apple.appstore
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson    18120 Jun 16  2010 com.apple.audiounits.cache
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  2 08:11 com.apple.dashboard.client
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct  7 16:12 com.apple.finder
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct  8 15:29 com.apple.frontrow
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Mar 21  2011 com.apple.garageband
    drwxr-xr-x    5 ewilliamwilson  ewilliamwilson      170 Jan  5 15:30 com.apple.helpd
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Jan  5 15:30 com.apple.helpviewer
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Oct 15  2009 com.apple.iCal
    drwx------    3 ewilliamwilson  ewilliamwilson      102 Oct 18  2009 com.apple.iChat
    drwxr-xr-x    7 ewilliamwilson  ewilliamwilson      238 Jul 13  2010 com.apple.iLifeMediaBrowser
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Nov 27 17:07 com.apple.iLifeSlideshow
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jul 25 16:46 com.apple.iMovie
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jul 13  2010 com.apple.iMovie8
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Dec 26 20:08 com.apple.iPhoto
    drwxr-xr-x    5 ewilliamwilson  ewilliamwilson      170 Jan  5 13:46 com.apple.iTunes
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Dec 24 16:57 com.apple.iWork.Keynote
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 29 07:45 com.apple.iWork.Numbers
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Dec 24 23:04 com.apple.iWork.Pages
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson  2438820 Dec 24 23:04 com.apple.iWork.fonts
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov  7 12:27 com.apple.installer
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  5 17:18 com.apple.mail
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jul  4  2011 com.apple.mail.TimeMachineHelper
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson    13445 Jan  5 08:08 com.apple.nsservicescache.plist
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson   230217 Jan  5 13:42 com.apple.preferencepanes.cache
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson    94208 Jan  5 13:42 com.apple.preferencepanes.searchindexcache
    -rw-r--r--    1 ewilliamwilson  ewilliamwilson  1216401 Aug 28 14:16 com.apple.spotlightpref.iconcache
    drwxr-xr-x    5 ewilliamwilson  ewilliamwilson      170 Jan 29  2011 com.apple.storeagent
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  4 17:06 com.boneheadprojects.mahjong2
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Aug 21 17:09 com.code-line.artdirectorstoolkit4
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Dec 31  2010 com.fotonation.UpdateAgent
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  5 08:08 com.google.Keystone.Agent
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 17  2010 com.google.Reporter
    drwx------    3 ewilliamwilson  ewilliamwilson      102 Dec 11  2009 com.google.UpdateEngine.Framework.501
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Mar  1  2011 com.google.macphotouploader
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 29  2010 com.google.picasa
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 25 23:11 com.google.sketchupfree8
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct  1  2010 com.koingosw.MacPilot
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan 18  2010 com.ks.cocktail
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 14  2009 com.macromedia.Dreamweaver
    -rw-r--r--@   1 ewilliamwilson  ewilliamwilson    75440 Sep 29 23:09 com.microsoft.browserfont.cache
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jun  4  2010 com.motive.WebNode
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 20  2009 com.omnigroup.OmniGraffle
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 20  2009 com.omnigroup.OmniPlan
    drwxr-xr-x@   3 ewilliamwilson  ewilliamwilson      102 Oct 20  2009 com.omnigroup.OmniWeb5
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Mar 26  2010 com.panic.Coda
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct  8 15:30 com.presenta.iGetter
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 20  2009 com.realmacsoftware.rapidweaverpro
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  5 10:32 com.realnetworks.realplayerdownloader
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Nov 14  2009 com.tacosoftware.HTMLEdit
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct  4 10:46 com.topo.Topo
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Aug 20 19:03 com.vlabdrs.virtuallabdatarecovery
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 31  2010 com.yahoo.messenger3
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Aug 21 17:21 iWeb
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Dec 24 16:57 iWorkApps
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Dec 14 08:30 ksurl
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Oct 28 22:17 net.telestream.wmv.player
    drwxr-xr-x@   3 ewilliamwilson  ewilliamwilson      102 Feb 24  2011 org.mozilla.crashreporter
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  4 16:40 org.perian.Perian
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Apr 11  2011 org.python.python.app
    drwxr-xr-x    4 ewilliamwilson  ewilliamwilson      136 Aug  3 17:03 qlmanage
    drwxr-xr-x    3 ewilliamwilson  ewilliamwilson      102 Jan  2 18:36 storeagent
    cherokee2:~ ewilliamwilson$ /com.apple.Safari/Cache.db

Maybe you are looking for

  • HUGE PROBLEM with sound in DVD Studio Pro 4

    As I imported the soundtrack of the footage that I have (which is about 1h16), the combinaison of my video & the sound is over 4,7 Gig. Therefor, I can't burn it on a DVD. I exported the audio in a lower quality to finally obtain a size of around 210

  • How to edit existing pdf's from RoboHelp 8

    Hi, Our company had been using an old version of RH5 for many years, and we've recently upgraded to RH8 to manage our company Infocenter (knowledge repository). We have many pdf files within this repository. Before upgrading to RH8, we would edit pdf

  • 10.4 to 10.4.11 Combo Update (PPC) Issues - Will Not Sleep, Etc.

    I've been running Panther 10.3.9 successfully for a long time. There are a few programs I'd like to use that require Tiger and I realized that Tiger retail disks were getting hard to come by and expensive, so I decided to buy one when I found it for

  • Twin unpowered USB hub for connecting external HDD and iphone

    I have a MBA and a powered Kensington 7 port USB hub which works great when I am either at home/in the office. Is there an unpowered twin port USB hub that would allow me to connect both my WD myv passport 320gb external HDD and 3g iphone to my MBA w

  • CUP 5.3 - Stale Requests

    Good day Chaps. I have a live GRC Access Control environment. In CUP > Config > Request > Stale Requests, the Action* is Enabled and Number of Days* is 30 My questions is when is a CUP request considered Stale? When does the 30 day period start? I ha