I think this is a bug for icloud on PC

My icloud's photo stream didn't work although I had finished the setting steps on guide.
And there is one thing that I think strange.
I logged in icloud, with my apple ID on my PC(windows 7). Enable the photo stream option, and then I logged out.
At the next time I login, using the same ID on the same PC, strange things happened. The photo stream option was in the status of disable.
I think icloud might failed on storing the user's setting on windows 7.

below is the two Constructors Of String
    public String(String original) {
     int size = original.count;
     char[] originalValue = original.value;
     char[] v;
       if (originalValue.length > size) {
         // The array representing the String is bigger than the new
         // String itself.  Perhaps this constructor is being called
         // in order to trim the baggage, so make a copy of the array.
         v = new char[size];
         System.arraycopy(originalValue, original.offset, v, 0, size);
     } else {
         // The array representing the String is the same
         // size as the String, so no point in making a copy.
         v = originalValue;
     this.offset = 0;
     this.count = size;
     this.value = v;
    }=====================
    public String(char value[]) {
     int size = value.length;
     char[] v = new char[size];
     System.arraycopy(value, 0, v, 0, size);
     this.offset = 0;
     this.count = size;
     this.value = v;
    }I don't know where has the problem.

Similar Messages

  • Do you think this is the bug in 1.5?

    I have this applet and the tooltip for second button does not appear after clicking on first button. It only happens in java 1.5. Do you think this is the bug or I am doing something wrong. this is the code
    /*<HTML>
    <HEAD>
    <TITLE> A Simple Program </TITLE>
    </HEAD>
    <BODY>
    Here is the output of my program:
    <APPLET CODE="HelloWorld1" WIDTH=350 HEIGHT=325>
    </APPLET>
    </BODY>
    </HTML>
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.Applet;
    public class HelloWorld1 extends JApplet implements ActionListener {
    CardLayout c = new CardLayout();
    JPanel lslayout = new JPanel();
         JButton n = new JButton("first");
         JButton n1 = new JButton("second");
    public void init() {
    getContentPane().setLayout(c);
         getContentPane().add("message", n);
         getContentPane().add("message1", n1);
         n.addActionListener(this);
         n.setToolTipText("firs tooltip");
         n1.setToolTipText("second tooltip");
    public void actionPerformed(ActionEvent e) {
    c.show(getContentPane(), "message1");
    }

    I have rewriten it with FlowLayout() and it still does not works. Code is below. One thing i noticed.If I minimize my browser window the tooltip appears. Does anyone knows which method the browser calles after minimizing.
    public class HelloWorld2 extends JApplet implements ActionListener {
    JPanel panel = new JPanel();
         JPanel panel2 = new JPanel();
         JPanel panel3 = new JPanel();
         JButton n = new JButton("first");
         JButton n1 = new JButton("second");
    public void init() {
    panel.setLayout(new FlowLayout());
         panel2.setLayout(new FlowLayout());
         panel.add( n);
         panel2.add(n1);
         getContentPane().setLayout(new FlowLayout());
         getContentPane().add( panel);
         n.addActionListener(this);
         n.setToolTipText("firs tooltip");
         n1.setToolTipText("second tooltip");
    public void actionPerformed(ActionEvent e) {
         getContentPane().removeAll();
         setEnabled(false);
         setEnabled(true);
         getContentPane().add( panel2);
         panel2.revalidate();
         panel2.validate();
         validate();
         repaint();
    }

  • I think this is a Bug of String class

    I think this is a Bug of String class, do you agree with me ?
    String s = "1234........"; // when "1234........". length() > 65535, there will be wrong, but
    char[] c = new char[88888];...
    String s = new String(c);even if c.length >65535�Cevery thing is ok.
    so I think is a bug. Somebody give me a answer, thanks

    below is the two Constructors Of String
        public String(String original) {
         int size = original.count;
         char[] originalValue = original.value;
         char[] v;
           if (originalValue.length > size) {
             // The array representing the String is bigger than the new
             // String itself.  Perhaps this constructor is being called
             // in order to trim the baggage, so make a copy of the array.
             v = new char[size];
             System.arraycopy(originalValue, original.offset, v, 0, size);
         } else {
             // The array representing the String is the same
             // size as the String, so no point in making a copy.
             v = originalValue;
         this.offset = 0;
         this.count = size;
         this.value = v;
        }=====================
        public String(char value[]) {
         int size = value.length;
         char[] v = new char[size];
         System.arraycopy(value, 0, v, 0, size);
         this.offset = 0;
         this.count = size;
         this.value = v;
        }I don't know where has the problem.

  • I think this is a bug with rendering a string to a graphics2d

    Hiya,
    The following lines of code create the rendering error I am experiencing, to which I have tested on several computers.
    BufferedImage bi=new BufferedImage(100,100,BufferedImage.TYPE_INT_ARGB);
    Graphics2D g2d=bi.createGraphics();
    g2d.setColor(new Color(1f,0f,0f,0.5f));
    g2d.fillRect(0,0,100,100);
    RenderingHints renderingHints=new RenderingHints(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    RenderingHints rh=new RenderingHints(RenderingHints.KEY_TEXT_ANTIALIASING,RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
    renderingHints.add(rh);
    rh=new RenderingHints(RenderingHints.KEY_ALPHA_INTERPOLATION,RenderingHints.VALUE_ALPHA_INTERPOLATION_QUALITY);
    renderingHints.add(rh);
    g2d.setRenderingHints(renderingHints);
    g2d.setFont(new Font("Lucida",Font.BOLD,14));
    g2d.setColor(Color.BLACK);
    g2d.drawString("SQOWTGBC",10,30);
    When the destination image has an alpha of 1 the text is rendered with the correct antialiasing. However, in this example where the alpha is 0.5 the text is rendered with unwanted artifacts.
    [http://sphotos-b.ak.fbcdn.net/hphotos-ak-ash4/269344_590137484330481_704825569_n.jpg]
    This image has JPG artifacts but the unwanted rendering artifacts are still visible (ie the brighter edges)
    I am wondering if this is not in fact an error but the intended result. If so, how to I configure the graphics object to render the antialiased text without the artifacts?
    I could not find where to submit a bug on the oracle website for the life of me so maybe if someone would like to explain how this is achieved I will be very grateful.
    Penny
    x
    I have spent several hours trying to find if this has been reported as a bug or if there is a solution posted online but to no avail.
    Edited by: 995038 on Mar 20, 2013 5:32 AM
    Edited by: 995038 on Mar 20, 2013 5:33 AM
    Edited by: 995038 on Mar 20, 2013 5:36 AM

    I have made a work around for the moment.
    This work around uses a BufferedImage to render the antialiased text first which does not create the artefacts and then draw the image of the text to where the text should appear. I dont think this is an acceptable solution because in the case where there could be 1000s of TextLayout objects the increased overhead would be unacceptable.
    private void drawTextLayout(Graphics2D g2d,float x,float _y) {
    Rectangle r=_g2d.getClipBounds();
    bufferG2D.translate(r.x,r.y);
    Composite c=bufferG2D.getComposite();
    bufferG2D.setComposite(clearComposite);
    bufferG2D.fill(r);
    bufferG2D.setComposite(c);
    textLayout.draw(bufferG2D,_x,_y);
    bufferG2D.translate(-r.x,-r.y);
    _g2d.drawImage(buffer,r.x,r.y,null);
    the BufferedImage of bufferG2D would need to be large enough to cater for any size of text to be rendered to which I believe the size should be set to the screen size. This solution requires that there always be a _g2d clip assigned.
    Regards
    Penny

  • I think this is a bug in oracle

    I have put some threads to show those problems i met before, no one has given the right solutions. Then I reinstall the whole system, and those problems occur again when I repeat what I did before.
    What I did is as follows:
    I created 400 event-based jobs, and one periodic job to trigger them by sending message into a queue. When I let the attribute of "parallel_instance" at default (it should be false). Everything goes fine. I can calculate the CPU utilization in the database, and calculate the average execution time of those event-based jobs. Since I wanna the CPU overloaded, which means when those 400 jobs have not finished until the next triggering comes( the running of that periodic job). So I changed the attribute of "parallel_instance" to be TRUE.
    OK, the problems come. After running my experiments for a while, I stopped it. I found the following problems:
    1. Those event-based jobs cannot record its own execution time and its job name. everything is 0 in a table I created to record those values.(I calculate the execution time at the end of the job by deducting the start time from the current time. The job name is passed by metadata.)
    2 I cannot purge those event-based job logs. I have done all what I have imaged to purge those logs of event-based jobs, no one works. Those job logs always stay in those views which record logs. But I can purge those logs of periodic jobs.
    3 If I delete those event-jobs and create them again. Then the scheduler crashes. That means, the periodic jobs I create in the database cannot run any more.
    As for the last two problems, I have put a lot of threads in the forum to ask for help last week. But I failed.
    Anyone can take deeper insight into the database and give me some help? Perhaps I can delete those disgusting job logs manually from a local file in the hard disk? Because I think those job views should be read from a local file somewhere.
    I really appreciate your kind help.

    I have put some threads to show those problems i met
    before, no one has given the right solutions. You mean: nobody gave me the solutions I like.
    Then I
    reinstall the whole system, and those problems occur
    again when I repeat what I did before.Reinstalling Oracle is usually a waste of time and resources.
    >
    What I did is as follows:
    I created 400 event-based jobs, and one periodic job
    to trigger them by sending message into a queue. When
    I let the attribute of "parallel_instance" at default
    (it should be false).Define 'job', define 'trigger', define 'message', define 'a queue'
    Way more details are required!!!
    Everything goes fine. I can
    calculate the CPU utilization in the database, and
    calculate the average execution time of those
    event-based jobs. Since I wanna the CPU overloaded,
    which means when those 400 jobs have not finished
    until the next triggering comes( the running of that
    periodic job). So I changed the attribute of
    "parallel_instance" to be TRUE.Which means you tinkered with Oracle. Parallel_instance should only be TRUE in a RAC installation.
    >
    OK, the problems come. After running my experiments
    for a while, I stopped it. I found the following
    problems:
    1. Those event-based jobs cannot record its own
    execution time and its job name. everything is 0 in a
    table I created to record those values.(I calculate
    the execution time at the end of the job by deducting
    the start time from the current time. The job name is
    passed by metadata.)Sorry, but this is nonsense. AUDIT CONNECT will already record the logoff_time.
    Also you can dump the session statistics to a table.
    2 I cannot purge those event-based job logs.Define 'purge', define 'log'. Where is your log? A text file?
    Sorry, but if you want help you should not required ouija boards, and/or hand or mind reading.
    I have
    done all what I have imaged to purge those logs of
    event-based jobs, no one works. Those job logs always
    stay in those views which record logs. But I can
    purge those logs of periodic jobs.
    3 If I delete those event-jobs and create them again.
    Then the scheduler crashes. That means, the periodic
    jobs I create in the database cannot run any more.
    Define 'scheduler'
    As for the last two problems, I have put a lot of
    threads in the forum to ask for help last week. But I
    failed.
    Anyone can take deeper insight into the database and
    give me some help? Perhaps I can delete those
    disgusting job logs manually from a local file in the
    hard disk? Because I think those job views should be
    read from a local file somewhere.
    I really appreciate your kind help.Really? You insulted this forum by not specifying any details, by asking for free consultancy, and by claiming you didn't get the 'right solutions'.
    If you know the 'right solutions', please: help yourself!!!!!!
    Sybrand Bakker
    Senior Oracle DBA

  • I just noticed you can't right click icons in the dock when in Mission Control. I think this would be useful for turning off other apps easilt from full screen mode.

    Would anyone else find this useful?

    For me no. I think it's just as much or more effort as cmd-tab (or swipe) to the open app and then cmd-q to close it.

  • Think this is a bug?

    ver 10.2
    SQL> select cast(22222  as number(3,0)) from dual
    select cast(22222  as number(3,0)) from dual
    Error at line 0
    ORA-01438: value larger than specified precision allowed for this column
    SQL> select cast('XXXXX' as varchar2(1)) from dual
    C
    X
    1 row selected.seems like the casting of a varchar2 should be an error if it is to long instead of acting kind of like a trim
    Thanks
    Ox

    me also same,
    SQL> select *
      2  from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    PL/SQL Release 10.2.0.3.0 - Production
    CORE     10.2.0.3.0     Production
    TNS for Solaris: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    SQL> select cast(22222  as number(3,0)) from dual;
    select cast(22222  as number(3,0)) from dual
    ORA-01438: value larger than specified precision allowed for this column
    SQL> select cast('XXXXX' as varchar2(1)) from dual;
    CAST('XXXXX'ASVARCHAR2(1))
    X
    from here it looks like for varchar2(1) it just tries to extract 1 letter of the string XXXXX
    if you select the following,
    SQL> select cast('XXXXX' as varchar2(2)) from dual;
    CAST('XXXXX'ASVARCHAR2(2))
    XX
    SQL> select cast('XXXXX' as varchar2(3)) from dual;
    CAST('XXXXX'ASVARCHAR2(3))
    XXX
    SQL> select cast('XXXXX' as varchar2(4)) from dual;
    CAST('XXXXX'ASVARCHAR2(4))
    XXXX
    SQL> select cast('XXXXX' as varchar2(6)) from dual;
    CAST('XXXXX'ASVARCHAR2(6))
    XXXXX
    SQL>
    *here cast works like substr and the string length is determined by varchar2(1), or varchar2(2) and so on,*
    *not sure from it looks like cast with numbers and varchar2 are treated differently,*

  • I *think* this is a bug...

    Hello,
    Ah, well, I don't really know what to do... if I should stick to what I've got, restart it all over again, but I have the slight hope that Adobe might be able to help me, at least a little. I don't want to recode this all over again...
    Anyways, I'm coding this game... my first MMOG in fact, I decided to code my own server, using C#. Yesterday, I had got an incredible streak of luck and I managed to finish movement, it was crappy, really laggy, but I was so happy, like any developer would get when they achieve something. I felt I was going to, at least once, do something decent, build a nice game, just for fun.
    However, I lost all of my hope today, when about 1 hour ago, I encounter myself with one of the friendliest flash messages I've seen:
    "Can not save file to "C://[..]" please try at another location or with a different filename"
    All right, I saw it, and I instantly realized that I was going to get in some deep, horrible, problem. But, I had confidence in my beloved Flash CS5 (uh-oh) and I tried saving it one folder up (at the parent folder). error again. I change the filename. Error again. I desperately try to save it as an .xfl, or a CS4 .fla, but this only worsened the situation: My .fla, disappeared.
    OK - I though - Flash is still open, I can try to save it.
    But seems I was with the worse of my luck: Visual Studio's Just-in-time debugger pops up, saying that an "unhandled win32 occurence occured in Flash.exe" and asked me with which debugger I wished to debug the broken program. I was now sure, I had lost a load of work.
    I've tried a recovering lost files programs, to try to see if I regained the lost .fla, but not much hope. I still have the decompiled version, but as you know, it is not as good as the fresh and normal fla...
    Anyone has a suggestion? I just can't believe this happened...
    Thanks in advance,
    Lucas

    Hello,
    Ah, well, I don't really know what to do... if I should stick to what I've got, restart it all over again, but I have the slight hope that Adobe might be able to help me, at least a little. I don't want to recode this all over again...
    Anyways, I'm coding this game... my first MMOG in fact, I decided to code my own server, using C#. Yesterday, I had got an incredible streak of luck and I managed to finish movement, it was crappy, really laggy, but I was so happy, like any developer would get when they achieve something. I felt I was going to, at least once, do something decent, build a nice game, just for fun.
    However, I lost all of my hope today, when about 1 hour ago, I encounter myself with one of the friendliest flash messages I've seen:
    "Can not save file to "C://[..]" please try at another location or with a different filename"
    All right, I saw it, and I instantly realized that I was going to get in some deep, horrible, problem. But, I had confidence in my beloved Flash CS5 (uh-oh) and I tried saving it one folder up (at the parent folder). error again. I change the filename. Error again. I desperately try to save it as an .xfl, or a CS4 .fla, but this only worsened the situation: My .fla, disappeared.
    OK - I though - Flash is still open, I can try to save it.
    But seems I was with the worse of my luck: Visual Studio's Just-in-time debugger pops up, saying that an "unhandled win32 occurence occured in Flash.exe" and asked me with which debugger I wished to debug the broken program. I was now sure, I had lost a load of work.
    I've tried a recovering lost files programs, to try to see if I regained the lost .fla, but not much hope. I still have the decompiled version, but as you know, it is not as good as the fresh and normal fla...
    Anyone has a suggestion? I just can't believe this happened...
    Thanks in advance,
    Lucas

  • U think this is a bug in Flash Professional 8????

    I have encountered this probem with Flash Professional 8
    (Windows Version). When i filled the stroke with Bitmap Color and
    tried to Rotate it with a constraint by holding a Shift Key it got
    distorted. This is not hapening everytime we do it, but does happen
    sometimes. Pros out there look into this and lets have a discussion
    of what this problem is???

    I have encountered this probem with Flash Professional 8
    (Windows Version). When i filled the stroke with Bitmap Color and
    tried to Rotate it with a constraint by holding a Shift Key it got
    distorted. This is not hapening everytime we do it, but does happen
    sometimes. Pros out there look into this and lets have a discussion
    of what this problem is???

  • Major bug with iCloud restore and the multitasking menu that compromises privacy.

    Hello there,
    I very rarely post on these forums but I’ve discovered what I think is a pretty serious bug. I’ve already sent this as feedback to apple but id be interested to know if anybody else is able to re-create it or has already stumbled across the problem.
    I have been able to recreate this problem twice by creating an icloud backup on an iPhone 6 (iOS 8.0) and restoring to an iphone 6 (iOS 8.0).
    The problem has to do with the multitasking snapshots that appear after double clicking the home button. On the iPhone it is my understanding that there can be up to 3 ‘different’ snapshots based on when the home button is double clicked and the orientation of an app:
    a) The first is when you have an app open in portrait mode and then close it or click the home button to exit. Double clicking the home button from the home screen will then display the multitasking menu including a portrait snapshot of what was last seen in that app.
    b) The next is when you're in an app that supports landscape mode and double click the home button whilst ‘in app.’ This displays a multitasking menu with landscape snapshots showing what was last seen when apps were open in landscape (note that if apps can only be shown in portrait than this is the image that will be shown and it will appear sideways).
    c) Finally, there is the case when you have an app open in landscape and then directly close it or press the home button, and then double press the home button. This displays a multitasking menu with portrait snapshots; however, to my knowledge these snapshots never change (they will not show the last snapshot from when the app was last open in portrait mode).
    The bug is that after restoring from iCloud, the snapshot as described in ‘C’ scenario gets set to whatever was in the icloud backup for scenario ‘A.’ Because this snapshot cannot be changed it is a major bug if for instance you have personal information in the snapshot. In my case, I have my bank statement permanently appear in the snapshot for scenario C.
    What’s more, if I have safari is in landscape and then close it; then at some point I open the multitasking bar before opening safari again in portrait mode; then the snapshot flashes up in the actual app for around 1-2 second before disappearing.
    At the moment the only solution I can see is to setup my iPhone as new but this will be a major hassle and lose all my settings etc.
    Finally, it’s worth mentioning that I think this is a bug across all ios devices with multitasking; however, with the ipads there is an easy solution because you are able to orientate the home screen in multiple ways. This means its possible to update the snapshots in a way that you can’t do on the iPhone because the home screen is locked to portrait.

    so to clarify, it appears that the multitasking snapshot for the following scenario will not update: open safari and turn to landscape, exit safari using home button or multitasking bar, then double press home button. That snapshot that appears for safari doesn't ever seem to refresh. Whatever is there is stuck there and whats more it will always pop up in the actual browser for 1-2 secs the next time safari is opened after completing those steps. Im not sure when the snapshot is initially created - it must be the first ever time you close safari but as I said in my post, it also appears to be stored in iCloud backups. So I've tried:
    a) hard resetting
    b) clearing safari cache and history
    c) resetting all settings
    d) restoring from iCloud (as mentioned)
    e) opening and closing closing safari using the multitasking menu (both the landscape multitasking menu that appears when you're actually in safari in landscape mode, and the multitasking menu that appear when you double press the home button on the home screen).
    f) same as above except closing all tbs open in safari before then exiting.

  • Why are some of the songs I created in garageband and then pushed to itunes "ineligible for icloud"?

    I create songs in garageband on my iMac, then "share" them to itunes. I purchased Itunes Match so that I could hear them on my iphone 5 (7.1.2), but some of the songs will not show up on my phone. When I checked them on the computer, it says, "This item is ineligible for icloud". Why not?

    Aec, I'm have the same issue as well with mine.  I deleted some music a few week back to give room for sum pics and movies and now that i want to restore them from off my itunes only 1 or 2 songs are actually able to play and the rest out of the albums are greyed out and non responsive.  Have never had an issue like this b-4.  Anyone have any insight or some problems?  Thanks in advance.

  • Updated iphone4 to ios5 - get Device not supported for icloud - worked fine for other iphone4

    Updated iphone4 to ios5 - get "Device Not Supported" message - worked fine for other iphone4 & ipad.  Why is this iphone "not qualified for icloud"?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Try a reset. Press & hold the Power and Home buttons simultaneously, ignoring the red power off slider, until the Apple logo appears. Then release both buttons. This should not affect any content on the iPad, it is similar to rebooting your computer.

  • Previous Purchase policy for iCloud.

    Why would Fast and Furious be available for re-download on my iPad, but Fast Five and Fast 6 are not?  They are all Universal pictures.  I don't get this previous purchase policy for iCloud. 

    UPDATE: The current release of the iTunes software (v 9.1.0.79) fixed this problem.

  • Inelgible for Icloud

    Okay so I have spent the last week searching thru fixes to this issue and have not found any. I have a handful of songs and videos that will not upload to Icloud, I get the message "this item is inelgible for icloud". These have all been purchased thru Itunes under a different Itunes ID but yet over 750 other songs I downloaded under that same ID uploaded just fine. I stopped using that ID last year and now use a different one.
    I have tried to create a AAC version but i get the message "protected files cannot be converted to other formats. I have tried to delete out of my library and in the folder on the hard drive create a mp3 version of the song but it will not upload.
    Any suggestions ??

    So I keep getting replies from people that state music isnt stored in the cloud ? Okay then why is it everywhere you read on Apple site that states music in the cloud ? Why when I right click on a song it states "add to cloud" The cloud is a server, we all get it. Its not an imaginary fluffy cloud floating around in the sky with all my data, duh...but stop repsonding to me like your helping me stating that music is not stored in the cloud. It clearly states to upload to iCloud.
    So if you can not help me with this do not respond unless you really know what your talking about.
    I get an email from someone last night responding to this string, but yet it does not show up here stating the same thing. Do you not read Apple's web site ? Have you not clicked on the Match tab in iTunes and see the statement your iTunes library is now availabe in iCloud then right underneath it states X amount of songs are now available in iCloud.
    like the guy Csound1 that clearly stated this:
    Csound1
    Re: Inelgible for Icloud 
    Jun 23, 2013 1:54 PM (in response to scottcunni)
    You mean iTunes, iCloud does not store your music.
    Ineligible item include protected items, songs that have a low sampling rate (96K or less) songs that are over 200MB, I'll find the complete list and post it here.

  • Cant Get Mail error message because password or user name for iCloud is incorrect.  Ive gone and tried to change it and been successful -I think- but am still getting this message continually.

    I keep receiving an error message: "Can't Get Mail" because the  "password or user name for iCloud is incorrect". Ive gone and tried to change the password and been successful -I think- but am still getting this message continually.

    To reset your Google password
    https://www.google.com/accounts/recovery/?ard=AHwGkRmuwaiAewp9JAmQTmcye_kbUor9v4 iKaP0sQVuYYOlYgTdGmUFl2Z_KkETd7Jjh1GqzGS4BBOQvbURZwzUTEViJmKtt4DfEyx6T2yfVxXT72X gwXT2dP7PfeGI08YvGtutrlCBol7hOXTQt7Wd9lZ6NVdxhjA
    If problem with link, just Google for reset gmail password

Maybe you are looking for

  • How to sync the iTunes songs library with other two computers thru iPhone?

    I have three Apple computers, the main being iMac 24", on which I usually purchase music from iTunes and import from my CDs. Thus, it has the biggest collection of songs, roughly about 1200. I also sync my iPhone 3GS 32 GB with this comp, and songs f

  • Problem with Epson Printer and Time Capsule

    I have a new Time Capsule, already gone through first backup etc... I tried to connect my 2 month old Epson RX 680 to the TC via USB. I have tried everything and still cannot print wirelessly. I have uninstalled, reinstalled, rebooted both TC and pri

  • How to convert a DVD disc for use in Final Cut Express 3.5

    I have a DVD disc of a conference which I would like to edit in FCE 3.5. I would like to be able to import it into my FCE project, ad use it without having to the render it in FCE. Is it possible to rip or import the disc (with Handbrake?) and then e

  • Using the UTL_HTTP package

    When UTL_HTTP.REQUEST() is called with a URL it tries to contact a remote server just like a web browser. A web browser has a timeout setting on it - if the remote server doesn't respond within, say 60 seconds, you'll get a 'timed out - server not av

  • Encrypted data stream ?

    We have a bunch of data we want to send to a flash app on Pocket PC, Windows, or Mac OS X over an encrypted channel. It's binary data and we need to keep it secure. Is the flash media server good for this ? How do we get the data into the flash media