CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: goatslayer

Page 1 of 9 1 2 3 4

Search: Search took 0.08 seconds.

  1. Re: HTML5 / Javascript File API - Attempting to find MD5 of the file

    I'm afraid not yet. I'll have to revisit it but if anyone has suggestions I'd be glad to hear them.

    Thanks for the link to the MD5 library. I think the library is working as expected the problem...
  2. Re: HTML5 / Javascript File API - Attempting to find MD5 of the file

    Hi Peej,

    I might have been doing it a slightly odd way but reading the file using file_get_contents() I get identical results.



    $file = file_get_contents('test.gif');
    echo '<br/><br/><b>PHP...
  3. Replies
    1
    Views
    1,449

    Re: Going from C# to C++...

    In a previous job I saw candidates come in who had C# experience primarily and they did well. They were bright and I think they had had some knowledge of C++ so that helped.

    I didn't go that...
  4. Replies
    4
    Views
    2,228

    Re: CSS code affecting my whole web page

    I can't see the problem from your markup but one approach I tend to use it that of classes. So for example:


    <div class="generaltext">mytext</div>

    In my CSS is can simply refer to:

    ...
  5. HTML5 / Javascript File API - Attempting to find MD5 of the file

    Hi,

    I'm attempting to get a MD5 hash of a file by reading it in through the HTML 5.0 File API. I'm doing something wrong as I can read the file in and get a hash but it isn't the same as the hash...
  6. Replies
    8
    Views
    8,148

    Re: A replacement for InstallShield

    First +1 for NSIS.

    Second, not massively constructive to the thread but this is an interesting requirement, surely the installer is just a means to an end, it seems odd that you might need to...
  7. PHP Re: Ways to return XML from function in SoapServer function?

    In the end I created the web service from scratch. There is still some work to do to make it more conformant with standard web services but it's about there.

    The solution was essentially take full...
  8. PHP Re: Ways to return XML from function in SoapServer function?

    Yeah, I've done that. When I do a var_dump all the data is nicely encoded in the array but it doesn't seem to affect the output from the server.

    I think I'll see in the morning if loading the...
  9. PHP Re: Ways to return XML from function in SoapServer function?

    Peej, I think your thinking about this too deeply.

    The php soap client is just a test client. Like I mentioned, I have the same problem when I retrieve the XML via Soap UI and another Java client....
  10. PHP Re: Ways to return XML from function in SoapServer function?

    My PHP web service based on SoapServer returns XML to my PHP web service client based on SoapClient.

    Unfortunately the XML seems to be stripped of the contents of the element as described above. ...
  11. PHP Ways to return XML from function in SoapServer function?

    Hi,

    I'm struggling with a webservice at the moment. I can invoke the service from multiple clients and get a response. The problem is the server seems to be returning the XML that I want it to...
  12. PHP: Specific problem with WSDL and call to web service

    Hi, Anyone know if this will ever actually work?

    I'm trying to access the getSignatureFileVersionV1 service defined in the following WSDL:...
  13. Re: Clean URL / Semantic Web Question about Incoming requests (Web Dev Newbie)

    I suppose it doesn't help but I'm probably a little confused, I know what I want to achieve but don't quite know what it is called. Mod rewriting looks close but I'm not sure.

    I need a clean URL...
  14. Clean URL / Semantic Web Question about Incoming requests (Web Dev Newbie)

    Hi,

    To give some context, I'm more of a newbie to putting a single modern web system together than any one technology. I have a question about incoming requests and returning the correct...
  15. Replies
    3
    Views
    1,282

    Re: JPEG2000 and Image Compression

    Thanks olivthill2. Very useful.

    I know a group of indivudals who have listed their compression as lossless but to 70db PSNR. I will have to find a way to break it to them that they have been...
  16. Replies
    3
    Views
    1,282

    JPEG2000 and Image Compression

    Hi,

    Does anyone know if setting the compression of an image to a PSNR, i.e. compress the image to 70 PSNR whether it is lossy compression?

    I have seen contradictory write-ups on this. To my...
  17. Replies
    0
    Views
    2,764

    PNG / YUV and Lossless compression

    Does anyone have any knowledge of lossless image compression?

    Do you know if you can:

    - Convert an image to YUV
    - Separate it into three component images
    - Save each as PNG

    If you can, do...
  18. Replies
    1
    Views
    4,714

    Alternative to ideatorrent?

    Does anyone know any online alternatives to ideatorrent?

    http://www.ideatorrent.org/

    It is really close to what we need to capture requirements for a project but not quite right. Does anyone...
  19. Replies
    4
    Views
    2,340

    Re: Open GL vs. Open GL ES

    Cool, thanks JVene! - good post. Certainly gave me a few things to think about.
  20. Replies
    4
    Views
    2,340

    Re: Open GL vs. Open GL ES

    JVene, thanks for the reply. I understand that if there are differences expected you write some sort of abstraction so that you only need to change how you use the library code while your core code...
  21. Replies
    4
    Views
    2,340

    Open GL vs. Open GL ES

    Hi,

    I started a foray into graphics programming using the Allegro 2D games programming library. It is a good library, but I now I want to look into using Open GL.

    Question is however, I'm not a...
  22. Poll: Re: Today is the day most software turned to "garbage"...

    My vote was, No, but I plan to.

    I haven't the most prolific of software portfolios at the moment, most of the stuff I am doing is for work.

    My current home project won't be designed for...
  23. Replies
    3
    Views
    880

    Re: Struggling with multi-threading...

    Ok, thanks lindley and speedo.
  24. Replies
    3
    Views
    880

    Struggling with multi-threading...

    I am trying to write a game using the Allegro game programming library. I have a character class which I want to create six instances of. Each instance of the class is a separate character that needs...
  25. Replies
    1
    Views
    1,024

    Re: Java applets and exceptions

    This is a duplicate of this thread: http://www.codeguru.com/forum/showthread.php?t=462271

    I have put a reply in the first thread you created, I do not know if it is what you are looking for though.
Results 1 to 25 of 214
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured