Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pepeio

    directshow plugin

    JMF is often bashed for not being able to play various avi for mats that can be played by windows, due to installed codecs. Won't a directshow plugin do the trick? It would let directshow uncompress the stream and output images that would be easily readable through any filtering chain. i'm not a...
  2. pepeio

    Ghosting a Level 1 RAID

    can't you simply remove one of the raid1 drive and ghost that drive on an other machine? this way, you'll not have to stop the server, and have no raid problem is the machine used to backup is not raid enabled.
  3. pepeio

    boot up drive detection (includes automatic construction question)

    Hello. I have a netfinity 5500 server with a serveraid 2 card. There are two HD mirrored using raid 1 mode. i have two spare drives that i don't use at the moment. Disks have two partitions, one for linux, one for the web data. linux partition is now getting a bit small, and i wished i could...
  4. pepeio

    (not a newbie problem) loadvariable madness

    unfortunatly, i do a commercial site (game) and whatever the user has, i need to be able to give him a chance to play. It's bad that such a problem happens to N6, but on an other hand i'm equally bothered by I.E because it closes its connections too early. I HATE those navigators.
  5. pepeio

    (not a newbie problem) loadvariable madness

    yes, that's what i meant in my post. LE jour où on aura des programmes qui réagissent comme prévu, je brule un cierge...
  6. pepeio

    (not a newbie problem) loadvariable madness

    Okay, i found it. When using Netscape6, all external accesses (geturl loadvariable) are sent twice. I've been sending a nitification to Macromedia. Thanks for your help.
  7. pepeio

    (not a newbie problem) loadvariable madness

    even more strange... I now request the variables and send the millisecond timer with the url. The two requests are created exactly at the same time (well at least at less than 1ms away one from an other)
  8. pepeio

    (not a newbie problem) loadvariable madness

    oops. yes, sorry i did merge two api's jargon. I've been testing further all day, and i now think the problem is by my side. When i create a seperate button whose instructions are the same, i get only one message. Nevertheless, i did a mistake when starting the thread, as i send this on...
  9. pepeio

    System.arraycopy()

    this is from sun. Use System.arraycopy() to improve performance. This is a native method, and much faster than manual array processing. Here it is. :)
  10. pepeio

    Facing memory problem (OutofMemoryException) in StringBuffer class

    This is directly from Sun. class StringBuffer the default string size is 16 characters, set to a much larger size if you can make any kind of intelligent guess on the maximum size up to the JVM maximum of 32k or 64k characters depending on your JVM/JRE. So you problem lies there. your text is...
  11. pepeio

    Facing memory problem (OutofMemoryException) in StringBuffer class

    oh, okay, i see why you need StringBuffer.. sorry i skipped some lines. :/what kind of awt component do you wish to use for displaying?
  12. pepeio

    Facing memory problem (OutofMemoryException) in StringBuffer class

    are you sure to need StringBuffer? If you just need to read the content, you can just use String. Stringbuffer is only useful for strings that you need to edit. Moreover they need more memory and are very slow.
  13. pepeio

    Optimizing in Java... is it even possible?

    there are some tricks for optimising by reading a bit of how bytecode is done. If you use less than 5 variables (standard types, or reference (not sure for this one)) in a loop, they will be use through some special bytecode functions that can make your routine faster.
  14. pepeio

    (not a newbie problem) loadvariable madness

    Hello. I am actually coding a complete and complex game site using Flash and server side tools (mySQL for databases, and java Servlets for filling Flash with Data) My problem is that when i start a LoadVariable, my servlets receive two requests instead of one. I only send the loadvariable upon...

Part and Inventory Search

Back
Top