Problem with really large numbers

I'm quite new to java and I'm having a little trouble. I need to enter a REALLY large number into a long variable (long x = 0xAA55AA0000000000). However Java is giving me the error �integer number too large�. Does anyone know why this is happening or how I can get round it.

Indeed, to quote a friend: 0 is a small integer,
infinity is a large integer, and all other integers
are medium-sized.
I tried arguing that infinity is not an integer but
she only gave me a strange look... "OF COURSE infinity
is an integer!"I have had this argument with people as well, the fact is that Infinity is not even a number it is a concept of endlessness.
If infinity was a number then it must have a value. By giving it a value you are fixing its "size" as it were and then Infinity + 1 would be greater than Infinity which is impossible

Similar Messages

  • Haven't been able to use pages for a while.  Keep getting following message.  Have tried reinstalling iWork, but no luck.  Same problems with Keynote and Numbers/Users/scottmcdonald/Desktop/Screen Shot 2012-03-14 at 9.39.52 PM.png

    Haven't been able to use pages for a while.  Keep getting following message.  Have tried reinstalling iWork, but no luck.  Same problems with Keynote and Numbers/

    Have you moved Pages from its installed location? Or just dragged a copy to your current system?
    It can't find some of its resources apparently.
    Peter

  • Problem with parsing large XML files chunked over HTTP

    I'm trying to isolate a bug that was introduced when upgrading the JRE in use from Java 7u51 to 7u71 without changing any code. The problem appears to be very similar to: Bug ID: JDK-8027359 XML parser returns incorrect parsing results.
    Further investigation showed that it was also introduced in the same versions (7u71) where that fix was applied. Unlike that bug though, my XML is marked as version 1.0. It also appears to be with only large XML files, on the order of 10MB or so.
    The closest I've been able to narrow it down to is the code is using JAXB to unmarshall a stream that the debugger tells me is a org.apache.http.com.EofSensorInputStream / org.apache.http.impl.io.ChunkedInputStream. The exception I get is not consistent, but typically appears to be from chunks being overwritten or shuffled, resulting in letters appearing in attributes that are actually numbers, or like the following where an attribute "testAttribute" gets partially overwritten by the end of a timestamp that was in a different section of the XML.
    javax.xml.bind.UnmarshalException
    - with linked exception:
    [javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,98748]
    Message: Attribute name "testAttribu00Z" associated with an element type "testElement" must be followed by the ' = ' character.]
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.handleStreamException(UnmarshallerImpl.java:421)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:357)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:334)
    Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,98748]
    Message: Attribute name "testAttribu00Z" associated with an element type "testElement" must be followed by the ' = ' character.
      at com.sun.org.apache.xerces.internal.impl.XMLStreamReaderImpl.next(XMLStreamReaderImpl.java:598)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:181)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:355)
      ... 6 more
    Here's some code that seems to reproduce it if you can connect to an XML server that returns a large chunked XML file:
      SchemeRegistry registry = new SchemeRegistry();
      registry.register(
                    new Scheme("http", 80, PlainSocketFactory.getSocketFactory()));
      HttpClient client = new DefaultHttpClient(new BasicClientConnectionManager(registry));
      String url = "http://someUrlReturningAlargeChunkedXML";
      HttpGet method = new HttpGet(url);
      HttpResponse response = client.execute(method);
      InputStream inputStream = response.getEntity().getContent();
      XMLStreamReader responseReader = factory.createXMLStreamReader(inputStream);
      JAXBElement<JaxBObjectOfResponse> wot = unmarshaller.unmarshal(responseReader, JaxBObjectOfResponse.class);
    If you connect using URL.openStream() to the same service there is no error. If I read bytes directly and write to a file, there is no error. The error only happens when I try to unmarshal it, and it's large, and I'm using Java 7u71 (or later). It can be consistently repeated with the jsp webapp that I'm using, but didn't show the error when I used the same code with a Wikipedia dump XML file.
    How can I unmarshal in a different way to avoid this problem? Or, how can I better isolate the bug so it can be posted to the appropriate bug system?

    Apparently, adding the Woodstox XML libraries avoids the bug. Is there anyone who can reproduce this on another system? Was there any changes to the Stax implementation between u67 and u71 that may have introduced a bug like this?
    Edit: When setting the logging level to DEBUG, I once saw the overwritten buffer being logged as if that was what was received (as in the testAttribu00Z example above). I can't repeat that anymore though, and very rarely it does parses with no exception (though it may have still been corrupted). Now the error seems to be consistently on one of the buffer boundaries, as in:
    17:08:09,705 DEBUG wire:63 - << "2000[\r][\n]"
    17:08:09,705 DEBUG wire:77 - << "trend>....OTHER XML...<trend hours=""
    17:08:09,705 DEBUG wire:77 - << "634.0972777777778" datetime="2013-05-21T00:43:48.350Z" t"
    17:08:09,705 DEBUG wire:63 - << "[\r][\n]"
    17:08:09,705 DEBUG wire:63 - << "2000[\r][\n]"
    17:08:09,705 DEBUG wire:77 - << "rend-mode="0">
    Exception in thread "main" java.lang.NumberFormatException: t34.0972777777778
      at com.sun.xml.internal.bind.DatatypeConverterImpl._parseDouble(DatatypeConverterImpl.java:213)
      at mypackage.Trend_JaxbXducedAccessor_hours.parse(TransducedAccessor_field_Double.java:48)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StructureLoader.startElement(StructureLoader.java:194)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext._startElement(UnmarshallingContext.java:486)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.startElement(UnmarshallingContext.java:465)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.InterningXmlVisitor.startElement(InterningXmlVisitor.java:60)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.handleStartElement(StAXStreamConnector.java:231)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.StAXStreamConnector.bridge(StAXStreamConnector.java:165)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:355)
      at com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:334)
    Or:
    17:19:12,563 DEBUG wire:63 - << "2000[\r][\n]"
    17:19:12,563 DEBUG wire:77 - << ...OTHER XML...<trend index="5"
    17:19:12,563 DEBUG wire:77 - << "" label="N"
    17:19:12,563 DEBUG wire:63 - << "[\r][\n]"
    Exception in thread "main" java.lang.NumberFormatException: Not a number: N
      at com.sun.xml.internal.bind.DatatypeConverterImpl._parseInt(DatatypeConverterImpl.java:106)
      at com.sun.xml.internal.bind.DatatypeConverterImpl._parseShort(DatatypeConverterImpl.java:118)

  • Problem with index of numbers in BSP Front end

    Hello All,
    I am facing the below problem. Request your help.
    Scenario: When I am trying to add the projects in the Front end , I am facing the problem with the index of numbering of the projects.
    Example: If I am adding 6 projects ( at the max only 4 on each page i-e there are 2 pages ), then the index is wrongly numbered and the arrow (for direction of the pages) are wrongly displayed. The direction of the arrow is pointed to the next page rather pointing to the previous page and the index of numbering of the pages is wrong.
    Request you to please suggest if this is any code fault in the table maintainance activity in the backend (BSP).

    Hi Irina,
    If you mean the number range is skipping 10 numbers in between runs then its because of the buffering in the number range.
    To avoid the buffer influencing the number range, pass
    'X' to the function module parameter: IGNORE_BUFFER.
    This should resolve the problem.
    Cheers,
    Aditya

  • Synching problems with pages and numbers

    After an initial problem with synching which was resolved with Yosemite Pages and Numbers have been synching across all my devices for a couple of weeks and now all of a sudden they have stopped again!! They synch across my phones and iPad but not to my macbook pro!! Very very annoying! How do I resolve it?

    Found a solution, but it is odd:
    On the 2008 Mac Pro, I UNCHECK the boxes beside Pages and Numbers in System Preferences > iCloud > iCloud Drive > Options. Now Pages and Numbers will properly save edited documents to the appropriate folders on iCloud Drive.
    Go figure ...
    Hope that this helps someone else.
    Jon

  • Problem with opening a Numbers document

    I have a problem with a Numbers document, which I created 3 weeks ago and step by step extended with additional functionality. I'm not anymore able to open the document. I can rename the document and maybe - I didn't try - delete the document. But when I'm clicking on the file's icon, the error message appears "Tabelle kann nicht geöffnet werden". It seems that the file is defect but how I it be revived. What steps I have to do to re-open the document?

    Check out that thread if you find it helpful. There are some cool ideas there.
    Adding a font to pages for Ipad

  • RMDATIND uploading problem with external material numbers

    Hi,
    I'm using LSMW direct input program RMDATIND (Object:0020 Method:0000) for creating materials.
    I have a problem with uploading materials which have two types of external material numbers.
    For example one material number is 1111-333 and then we have 10000000. The problem is that direct input won't create materials with number 1111-333 though it's possible to create them manually. It works fine with material 10000000.
    Does anyone know how fix this issue?

    Sweth123 wrote:
    Hi Guys:
    >
    > Clicked check box External number assignment without Check., When I am creating a material (mm01) with only numeric characters it is giving me an eror message saying for this material type Numeric characters are not allowed.
    >
    > i should be able to create a material with external number range and it can be numeric or alpha numeric?
    >
    >
    > Thanks
    > Sweth
    Hi,
    go to the path Define Number Ranges for Each Material Type click on maintain groups & select the materila type & select the mouse on material type & click on maintain after that maintain the number ranges.
    for ex: from 300000000 to 399999999 internal no.range
                from A                to ZZZZZZ     external no.range
    from this u can able to create a material with external number range and it can be numeric or alpha numeric
    Regards
    Raj.

  • Problems with a large monitor?

    In an earlier [post|http://discussions.apple.com/message.jspa?messageID=8888529#8888529] I mentioned my problems with jerky playback in iMovie 09. After lots of testing, it seems that the problem is related to my 30" monitor. When I start up iMovie on my MacBook Pro without the monitor attached, the playback appears pretty smooth. But with iMovie running on the 30" it is jerky. (Playing the clip in QuickTime is smooth, so it's not an inherent inability of the graphics chip to drive a large monitor quickly).
    Anyone else using a 30" monitor successfully with iMovie? (Mine is an HP3065).

    Two thoughts on this. First, are you connecting using DVI to VGA adapter? If your tv has a dvi input, use that - it's much better. Second, are you editing HD? If so, watching the video from within iMovie is for previewing. A finished Project Exported using Quicktime or Shared to one of the pre-defined output formats will produce a movie that will play back correctly even though it perhaps stutters at times from iMovie.

  • CS5 Memory Problems, with Tiff large format

    Dear Friends
    This problem hit many people before me and there was a lot of feedbacks and helps given, but my case is add on to all other responses.
    I have PC with 12gb triple channel memory with I7 processor and 2gb Nvidia 460GTX graphic card, plus win 7 ultimate 64bit, and I though nothing should stop me. but I was wrong, at time it irritating and time consuming but so far no help.
    I rendered an image in Accurender and saved 2 times ones JPEG and ones TIFF just so I have both to see which one will print better quality sharp etc. I have both 64bit photo shop and 32bit, when I open the JPEG 330mb, Photoshop opens and I can crop etc, but when I open the TIFF file which is 420mb I get message saying no enough memory, which you may seen or come across.
    Steps I took so far:
    ·         Gave Photoshop more memory through preferences, not that it needs 64bit! no change
    ·         Tried the openGL on and off, the card is Palit Geforce 460GTX and supports opengl 4, no help.
    ·         scratch disc if 200gb so no space shortage, I have 2x300GB disc space
    ·         Played with increasing the cache to higher or lower, no help.
    ·         Just incase you say is my image is corrupted, no the win preview loads the image no problems.
    Similar problems with Adobe Indesign the large Tiff file can be placed on to A3 sheet all OK, but if I send to the printer I get message no enough memory, not sure if it is a printer memory or Indesign can handle the file, it handles 330mb JPEG no problem,
    400~450mb file is not that big and should be working fine, is it the TIFF and why!!.
    Have you come across this problems do you resolved please let me know.
    Biyoroob

    Near as I can tell, you didn't actually say what the pixel count is in the large image that's causing you problems.  You mention "330 MB JPEG" and "420 MB TIFF"...  Is that 420 MB in the traditional photographic sense, or a file that's 420 MB on disk?  If the latter, it's not clear whether it is saved with compression...
    Please clear this up - what's the pixel count, horizontally and vertically, in the TIFF file you cannot open?  Also, what's the color depth (bits/channel)?
    At first blush, and if I'm interpreting what you wrote correctly, you might expect the file sizes on disk to show a greater difference between 330 MB and 420 MB (JPEG vs. TIFF), but that would depend on the content and whether you have compression in the TIFF.
    And it seems at least part of your problem is with printing, yet you don't mention the printer brand/model at all...  What printer is it?  From the sound of things the limitations may be in the printer driver, not the app, but that's not clear.  How big is the print that's failing?  A3?
    -Noel

  • Problem with applescript for Numbers

    I am new to Applescript and am haveng problems with what seems to be a pretty simple task.  I want to check the value of each cell to test for a certain condition and then based on the results increment another cell.  I keep getting the following error:
    error "Numbers got an error: Can’t make {4, 5} into type integer." number -1700 from {4, 5} to integer
    Here is my script:
    tell application "Numbers" to tell document 1 to tell sheet "Sheet 1" to tell table "Table 1"
              set fNineStart to 4
              set fNineEnd to 12
              set bNineStart to 14
              set bNineEnd to 22
              repeat with irow from 8 to 40
                        set skinscount to 0
                        repeat with jcol from fNineStart to fNineEnd
                                  set minscore to value of cell (jcol & 5)
                                  if value of cell (jcol & irow) is equal to minscore and the value of cell (jcol & 6) is equal to 1 then
                                            set skinscount to skinscount + 1
                                  end if
                        end repeat
                        set the value of cell (27 & irow) to skinscount
              end repeat
    end tell
    Here is the spreadsheet:
    Name
    1
    2
    3
    4
    5
    6
    7
    8
    9
    Front
    Nine
    10
    11
    12
    13
    14
    15
    16
    17
    18
    Back
    Nine
    Total
    Net
    ESC
    score
    Skins
    Par
    4
    4
    4
    5
    3
    4
    5
    3
    4
    36
    4
    5
    3
    4
    5
    3
    4
    4
    4
    36
    birdie
    3
    3
    3
    4
    2
    3
    4
    2
    3
    27
    3
    4
    2
    3
    4
    2
    3
    3
    3
    27
    eagle
    2
    2
    2
    3
    1
    2
    3
    1
    2
    18
    2
    3
    1
    2
    3
    1
    2
    2
    2
    18
    low score
    3
    4
    4
    3
    3
    4
    5
    3
    4
    4
    4
    3
    4
    5
    3
    4
    4
    4
    # of people with min.
    1
    3
    1
    1
    1
    2
    4
    1
    2
    16
    2
    1
    2
    3
    3
    2
    1
    4
    2
    Skins
    HCP
    Joe
    y
    3
    3
    4
    5
    5
    3
    4
    5
    4
    5
    38
    5
    5
    4
    4
    5
    3
    4
    4
    5
    39
    77
    74
    Bill
    y
    7
    5
    4
    5
    5
    4
    4
    5
    4
    4

    Hi fairchild.bill,
    Real experts will I hope chime in, but I think one problem is the way you are referring cells:
    Instead of:
    value of cell (jcol & irow)
    I think you need to use something like:
    value of cell irow of column jcol
    And
    value of cell jcol of row irow
    Studying examples of scripts for Numbers 3 at macosxautomation.com may give you some ideas on this.
    SG

  • Problem with total page numbers in Scripts

    Hi,
    I have a problem with total number of pages in the Script.
    I have a script of 15 pages.
    On every page, I am using &PAGE& of &SAPSCRIPT-FORMPAGES(C)&.
    Problem is : I am getting only single digit for SAPSCRIPT-FORMPAGES as long as the page number remains in single digit - like -
    1 of 1
    2 of 1
    3 of 1... till 9 of 1.
    But from 10th page, it is printing :
    10 of 15
    11 of 15
    12 of 15... till 15 of 15.
    So, i think the symbol SAPSCRIPT-FORMPAGES(C) is filled with value 15 , but it is prinitng only the first digit '1' for pages 1 to 9 and then printing both the digits '15' for pages from 10 onwards.
    So, please help me out in this problem.
    Thank you.

    Hi Ven,
    The CONDENSE option cannot be used on the program icon SAPSCRIPT-FORMPAGES
    (C) without an explicit length specification: This symbol is
    only replaced with a value after the form has been completely edited, as the
    total number of pages of a form is first known in the program function
    END_FORM or CLOSE_FORM. However, the size of the symbol (number of
    characters) is reserved correctly when the symbol first occurs, with the
    current page number. Therefore, only one character is reserved for option C
    (CONDENSE) on pages 1-9, two characters on pages 10-99, and so on.
    If you are sure that the total number of pages doesn't cross 99(i.e 2-digit number), then use the FORM pages as SAPSCRIPT-FORMPAGES(2CZ).
    Here Z will suppress the leading zeros, for the total number of pages.
    Hope this information would be useful for you.
    Reward points if this is useful.
    Pavan.

  • Problem with multiple client numbers from a view

    Hi Gurus,
    I have a problem with a view
    Creates a view with a UNION ALL stmt
    =====================================
    Create view vw_benifits
    as
    SELECT
         Client_num, -- can have multiple values like 200,201,250
         PERNR,     
         OBJPS,     
         ENDDA,     
         BEGDA,
         AEDTM,     
         UNAME,
         COB_MNTH_AMT
    FROM
         STG_SAP_PA9211_TB
    UNION ALL
    SELECT
         null, -- no client number for legacy data
         PERNR,     
         OBJPS,     
         ENDDA,     
         BEGDA,
         AEDTM,     
         UNAME,
    COB_MNTH_AMT
    from
         LEG_STG_SAP_PA9211_TB;
    ==============================
    The second table contains legacy data (LEG_STG_SAP_PA9211_TB). The first table now contains multiple client data (ie the client_num can be 201,202,250 like that.
    Now if the users qery the view they will only get that clients data.
    eg selet * from vw_benifits where client_num=250 results only client 250 data. But I want to add the legacy data also with that.
    I don't want to propose
    selet * from vw_benifits where client_num in (250,NULL) since the users will be confused.
    Is there any other way to do this . my requirement is like
    If they query
    select * from vw_benifits where client_num=250, the data should include all the records satisfying client=250 + the records from the legacy data. The view need to be created like that.
    Appreciate your help
    Deepak

    Hi Thanks for the suggestion.
    But I am not sure this may work for me. Here my users may not be able to use that since they don't know Oracle.
    I want to hide that details from them
    They may just issue a statement like this
    select * from vw_benifits where client_num =250
    Or
    select * from vw_benifits where client_num =400 . But both times I need to show them the data from the legacy table.
    Deepak

  • ID CS5 - problem with 2 page numbers in the same page

    Until InDesign CS3 I could put 2 page numbers in one page, either in document pages or in master pages, using 2 linked text frames, one in each of the pages I wanted to see the numbers. And this worked fine!
    In CS4, this stopped working in master pages. I had to override the text frames from master pages (ctrl/cmd + shift click on the text frames) to get this working, and I had to this in ALL document pages.
    I was hoping this problem was solved in CS5 but... the problem got worst!!! Now, not only I have to override the text frames, but I have to erase the markers and put them there again. Which means I have to put page markers individually in ALL pages.
    I wonder if there is a new way to do this? Does any one have the answer?...
    If not... I really really hope someone from Adobe reads this forum and try to solve the problem, because this is a great inconvenience...
    Thanks for any help

    Hi, Jongware,
    It is a bug since CS4, agravated in CS5, because until CS3 it worked very well.
    In fact, it worked through out a lot of pages. I think this was not created only to pages side-by-side but in fact to those articles that continued several pages ahead. So, in a magazine, when one has to break an article and continue this article in other page, one could (and still can) put a text frame in the of the first part of the article and type "Continue on [next page marker]". Then link this text frame with a new text frame on the page where the article continues, (on top of 2nd part of the article) and type "Continued from [previous page marker]".
    This situation – where text frames are in the document pages – still works fine.
    The problem is when this is a constant and you want to put it in master pages, and now it simply does't work. I mean, when every odd or even pages have both numbers. For me, it's a major problem, because several of my clients just love this!
    Is anyone of Adobe reading this? Are you going to help us and fix this problem, please?...

  • Problem with entering integer numbers from keyboard

    I have written this simple code:
    import java.io.*;
    public class Simple{
         public static void main(String[] args)throws Exception{
              System.out.println("Enter two integer numbers: ");
              BufferedReader enter=new BufferedReader(new InputStreamReader(System.in));
                   int first=Integer.parseInt(enter.readLine());
                   int second=Integer.parseInt(enter.readLine());
              System.out.println("Result is: "+(first+second));
    and it works fine if I type first number, press Enter, then type
    second number and press Enter.
    But if I type in one line: 2 3 (with space between) I get run-time error:
    Exception in thread "main"...bla...bla at java.lang.Integer.parseInt(Integer.java)...
    I know that error is coming from Integer.parseInt(string) in my code, but I
    don't know how can I avoid it.
    In C that is rather simple scanf("%d %d",&first,&second), but in Java it's much more
    complicated.
    Do you have any suggestions how to solve this problem?

    store the user input in a string
    use a StringTokenizer st
    then
    while(st.hasNext())
    int first=Integer.parseInt(st.nextToken());
    but you should really catch a NumberFormatException
    walker

  • Problems with a large video library - any ideas on speeding up opening?

    One of the things I really like about iMovie is that it is the best tool I've found so far for managing my large and rapidly growing collection of home video. The raw clips are all nicely organised by event and date, and where I have taken the time to produce an edited movie, this is also easily accessible by name and date.
    My problem is that with getting on for 500GB of media in my Events Folder, opening iMovie can now be a 10 minute task, as it seems to need to Optimize and Process the Events even if nothing new has been added since the last time it was opened. There must be some sort of cache though, since if you wait for it to finish processing the events, closing and immediately reopening iMovie happens very quickly.
    I assume the cache is getting flushed regularly to free up space. Does anyone know if there is a way to stop this happening, or offer another explanation/work around?

    Assuming there is nothing wrong with your computer, maybe iMovie just has too much to open as you say.
    If you are done using the majority if your events in your projects, you could move them to an external HD disk. Then if that disk is not on/connected at the time you open up iMovie it will not have to go through them to open up. To do this, do an iMovie Help Search using "move events to external" and find the topic "Copying or moving video from your event library to and external hard disk". The events will be there anytime you need them and will show up in iMovie when that HD disk is hooked up and on and iMovie open. You dont have to move them all, just the large ones you are not using. You have the option of moving or copying them to the HD, you want to move them. Moving them deletes then from your main HD so you may want to be backed up first... This way iMove (With external HD not connected) only now has to open up a lot less video.
    The other possibility is to just back up all events pre-thinning, then thin the events on your HD, by either choosing " Move rejected clips to trash" or by "Space saver". if you go to this old post i wrote a description of the difference between the two options, they both work but are different.
    http://discussions.apple.com/thread.jspa?messageID=11164511&#11164511
    roger

Maybe you are looking for

  • Folder in alv grid display report

    Hi Experts, I have a requirement  to generate the folder in alv grid display, to display the multiple line items where ever we have. Actually I am displaying the material details and production order details. If the material is having the multiple pr

  • Error While trying to Float a Portlet

    I am trying to float a JSR 168 Portlet by creating a Standalone Portlet Url tag < a href="<render:standalonePortletUrl/>" id="floaturl">Float</a > the url formed is something like this... http://emagwsd02.corpny.csfb.com:1156/bPortal/portlets/customi

  • SLOW PAINFULL YOSEMITE START UP

    Im Very dissapointed, after do a clean yosemite install, my late 2011 mbp, slowed down in many ways,  begining from boot up time (takes about 7 more seconds than mavericks). I have a 128 SSD of 6gb/s and 10 GB of ram and appears to be not enough for

  • Premiere CC 2014.1 - Bezier Keyframe Problem

    In the last update of Premiere appeared a bug with the Keyframes - the right keyframe doesn't convert from Linear to Bezier if the left is Linear. The image should be explanatory.

  • Solved The "Places" menu in Gnome brings up konqueror.

    I want to change it back so that it opens nautilus. How would I go about doing that? Last edited by patrickaupperle (2009-03-25 01:23:34)