Search:

Type: Posts; User: JakeFrederix; Keyword(s):

Page 1 of 5 1 2 3 4

Search: Search took 0.05 seconds.

  1. NetBeans Unsupported major/minor version

    Hey everyone,

    I ran into some issues while trying to compile a really straightforward Java program.



    JFrame frame = new JFrame("a frame");
    frame.add(new JButton("a...
  2. Re: Wallpaper Thread - Post your ORIGINAL Wallpapers here

    I happen to love mazes a lot. And minimalism.
  3. Replies
    4
    Views
    1,154

    [ubuntu] Re: unity program menu

    Not exactly what I had in mind. From what I understand Gnome is doomed to die soon. I would prefer to change Unity to my taste than to use something that I only enjoy for a limited time.

    Also, on...
  4. Replies
    4
    Views
    1,154

    [ubuntu] unity program menu

    Is it possible to put the menu and main interface of a program back together again?
    I don't like this splitup that Unity does.

    first experience with Unity:
    I open pidgin instant messenger
    I...
  5. Replies
    2
    Views
    1,355

    [SOLVED] Re: keyboard model

    Solved! Went into bios.
    There was a setting there actually disabling the f-keys.
    So annoying.
  6. Replies
    2
    Views
    1,355

    [SOLVED] Re: keyboard model

    *bump*
  7. Replies
    2
    Views
    1,355

    [SOLVED] keyboard model

    Hi,

    recently bought a HP G62-B45EB laptop.
    The keyboard isn't quite what I want.

    The normal keys are all functioning, but the f1 - f12 are instead used as multimedia keys.

    Is there a layout...
  8. Replies
    10
    Views
    1,230

    Re: Artist wanted

    It's just that I've been looking at this background and tile-set for a few weeks now.
    And I wonder what an artist could make with the concept.
  9. Replies
    10
    Views
    1,230

    Re: Artist wanted

    Example of how the game looks with my tiles and background.
  10. Replies
    10
    Views
    1,230

    Re: Artist wanted

    I agree, they look decent.
    But decent isn't good enough. I'm a perfectionist.
    I want people to be able to taste the wood.

    Or, someone else's idea on what the tiles should look like.
    Doesn't...
  11. Replies
    10
    Views
    1,230

    Re: Artist wanted

    I don't know exactly what you have in mind.
    But I have managed a basic wooden tile. I'm actually looking for people who can do a better job than me.
    So if it's a scanned in tile (and the quality...
  12. Replies
    10
    Views
    1,230

    Re: Artist wanted

    And most software-engineers don't write software for free. And yet ...
    The artist would be properly credited, that's something already.
    And like I said, it's not a 'job'. It's a chance to design...
  13. [SOLVED] Re: How to do math division with very exact result ?

    The way doubles are stored makes it tricky to compare doubles with infinite digits.
    In fact, the highest precision can only be reached when using numbers that are a power (or inverse power) of two,...
  14. Replies
    2
    Views
    543

    Re: Extendible Hashing

    http://www.cs.scranton.edu/~mccloske/courses/cmps340/hash_ext_examp.html
  15. Re: c++ linking error of multiple definition

    Declarations go in the .h file.
    The code to make the declarations work goes in a .cpp file with the same name.
    Unless it's a template class.
  16. Replies
    10
    Views
    1,230

    Artist wanted

    Hey everyone,

    I'm in the process of designing a game. A scrabble clone.
    Still looking for someone to do a decent job on the tiles.
    I tried it myself, and I managed an ordinary tile. It's not as...
  17. [SOLVED] Re: operator >> assignment in read only structure

    That's a bit disappointing.
    I had expected a more complex solution.

    Problem with the studies of software-engineering;
    - loads of theory (including pseudo-code) of how algorithms work
    - little...
  18. [SOLVED] operator >> assignment in read only structure

    When overloading the operator >> for a class I made, I got an error basically saying that I can not modify the object, because it's a read-only structure.

    I've put the classes in a .zip file.

    I...
  19. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    You don't understand what I meant.

    The program will know at runtime (before reading the file) what T is supposed to be.
    But I want to store the model in binary form. So the read method needs to...
  20. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    The problem is that when I read the stream in, I have to know the type of template parameter T.
    I have separate methods for writing types like int,double, bool,std::string, ...

    And when reading...
  21. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    Back on track then;

    Using the modified code (second post), how do I go from there to serializing the model for ints for instance?
    Because, from my point of view it just introduced another...
  22. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    First google-result for "implementation outside header c++";
    http://www.learncpp.com/cpp-tutorial/89-class-code-and-header-files/



    Article was written in 2007, after the standardization of c++...
  23. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    In attachment are foo.h, foo.cpp and main.cpp
    with foo a template class.

    In case of a template class, include both foo.h and foo.cpp in main.cpp
    And it will compile.

    And I can only assume...
  24. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    foo.h



    #ifndef FOO_H
    #define FOO_H

    #include <string>

    class foo {
  25. Replies
    22
    Views
    1,482

    [SOLVED] Re: template specialization

    I've already graduated you know. So it's not a homework question.
    Also, calling g++ *.cpp works perfectly even if you split implementation and declaration.

    I'm not exactly new to c++. It's just...
Results 1 to 25 of 112
Page 1 of 5 1 2 3 4