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

Search:

Type: Posts; User: gakushya

Search: Search took 0.04 seconds.

  1. Replies
    3
    Views
    1,585

    Re: Bachelor Thesis

    machine learning
    nlp
    speech generation
    speech recognition
  2. Re: Can anyone point me in the right direction?

    after reading this post i think i finally understand the importance of mime types :)
  3. PHP Re: If row contains certain value then = a number

    I think you should query the matrix entry, saving the resultant string, and then testing that using a switch. I'm new to PHP myself though, so I'm just thinking out loud here. But it i think...
  4. Re: What gives you that sinking feeling when looking at code you have inherited?

    It does indeed make me think...
  5. Replies
    13
    Views
    1,197

    Re: Warning to everybody at this forum

    was that spam?
  6. Replies
    2
    Views
    940

    Re: Learning Japanese

    I'd stop using that dictionary right away, sounds like bombastic bullshit. Or the dictionary is old and the usage has changed. Those definitions seem downright incorrect. Unfortunately, as I've...
  7. Replies
    1
    Views
    1,101

    Re: e-commerce website

    Are you sure JSP isn't just getting some of that runoff Java rumour that 'its too slow to do anything'
    I know nothing about JSP, I use PHP, but I doubt that it differs performance wise for just...
  8. Why video games crash&freeze&lag, while software in general doesn't.

    So, if you play video games, I'm sure you're well familiar with the issues that plague almost every single game (or at least a lot of the heavy hitters of the modern market). Some dev teams are even...
  9. Replies
    7
    Views
    766

    Re: Multi-Dimension Vectors

    tensors!
    http://en.wikipedia.org/wiki/Tensor#As_multidimensional_arrays
  10. Replies
    6
    Views
    779

    Re: Generating all possible numbers

    Generating all possible numbers?
    I thought this was some sort of philosophical thing when I clicked here
  11. Replies
    5
    Views
    1,985

    Re: Could you please review this website?

    Uhm, you took out the telephone number on the contact forum. I used it again now, and received this message:


    Sorry, but there were error(s) found with the form you submitted. These errors appear...
  12. Replies
    5
    Views
    1,985

    Re: Could you please review this website?

    updated the review after a night's remuneration. I see that google maps has now been used in the website, so I guess someone read this review, or that was just a coincidence.
  13. Replies
    5
    Views
    1,985

    Re: Could you please review this website?

    pm me when you remake the site, so I can post another review here.
  14. Replies
    5
    Views
    1,985

    Review served

    Okay, I'll tell you what I like first, from a user's perspective obviously.

    The component layout: The whole website is just three equal width rectangles. Simple, easy to navigate the content...
  15. Re: access array[i] outside of a method context; not possible?

    thanks for confirmation!
  16. Re: access array[i] outside of a method context; not possible?

    oh i just remembered that with a static initialization block it would work:


    public class hello {
    static {
    int[] vector = new int[10];
    vector[0]=3;
    }
    public static void...
  17. access array[i] outside of a method context; not possible?

    This code compiles without error:


    public class hello {
    public static void main(String[] args){
    int[] vector = new int[10];
    vector[0]=3;
    }
    }
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured