Search:

Type: Posts; User: sorrofix

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    1,441

    No .

    No .
  2. Thread: Server Side

    by sorrofix
    Replies
    33
    Views
    22,761

    >Running a forum with about 10000 people online...

    >Running a forum with about 10000 people online at all times is no problem for a modern server.
    Really? One forum I visit, which usually has a couple thousand people online, of which only about 20...
  3. Replies
    8
    Views
    20,240

    Yes, I suppose I should have noted that while you...

    Yes, I suppose I should have noted that while you can #define anything anywhere in your code, the definitions will only take effect in code placed after the definition.
  4. Replies
    8
    Views
    20,240

    I never said that the location of preprocessor...

    I never said that the location of preprocessor commands within the code has no effect on the preprocessor output, all I said was that it doesn't care about scope or namespaces or whatnot. So no, you...
  5. Replies
    8
    Views
    20,240

    >Since it is a pre-processor directive, will...

    >Since it is a pre-processor directive, will scope and persistance come into picture for such constants?
    No. The preprocessor doesn't care about scope; it's basically just a find and replace before...
  6. Replies
    5
    Views
    1,880

    It's been a while since I wrote anything on a...

    It's been a while since I wrote anything on a Windows machine, but if I recall correctly you should just be able to replace your main() function with the WinMain function and Windows will believe...
  7. Replies
    5
    Views
    1,880

    To my knowledge, the only way of accomplishing...

    To my knowledge, the only way of accomplishing that is to use the Windows API to create a GUI-type application, but then you never create a window onscreen. There isn't a way to do it with standard...
  8. Thread: Your C++ IDE

    by sorrofix
    Replies
    25
    Views
    14,708

    On a UNIX system I use vi. On other systems...

    On a UNIX system I use vi. On other systems (read: Windows) I usually end up using the VS 2005 IDE or SciTE/Notepad++.
  9. Replies
    9
    Views
    7,793

    >ok guys am i thinking rihgtfully? No you are...

    >ok guys am i thinking rihgtfully?
    No you are not. C++ can't do everything (nor should you try to do everything with it), especially when there's other languages which may be able to accomplish what...
  10. Replies
    3
    Views
    1,020

    Try grabbing the data from the server with telnet...

    Try grabbing the data from the server with telnet first. The data you get back makes it pretty obvious how you would go about parsing it. I.e. connect with telnet to a random webserver over port 80,...
  11. Replies
    4
    Views
    12,657

    >How can I make an array truly dynamic? Either...

    >How can I make an array truly dynamic?
    Either use a data structure that's more forgiving for growing and shrinking (e.g. a linked list), or if performance is really an issue, you'll just have to...
  12. Thread: Virtual Box

    by sorrofix
    Replies
    3
    Views
    3,062

    What you want is a USB passthrough which...

    What you want is a USB passthrough which dedicates certain USB ports to your virtual machine exclusively. I know VMWare has this ability, can't remember if VirtualBox is capable of it though. So if...
  13. >Just was over there today, and they have 3...

    >Just was over there today, and they have 3 reposts on the first page, that
    >are nearly, or entirely, copies of posts made here, by the same posters.
    You find it shocking that people cross-post...
  14. Replies
    8
    Views
    2,096

    That just means opening a file with fopen() and...

    That just means opening a file with fopen() and setting a file pointer to the resulting address. Don't forget to close it when you're done.
    ...
  15. Replies
    9
    Views
    57,409

    Wait, are we talking about the same thing here?...

    Wait, are we talking about the same thing here? From my understanding, by 'hostname' cpjust was referring to the name of the machine, not the DNS name that other machines use to refer to the machine....
  16. Replies
    9
    Views
    57,409

    This seems to run fine on my Mac. class...

    This seems to run fine on my Mac.

    class PrintHostname
    {
    public static void main(String args[]) throws java.net.UnknownHostException
    {
    java.net.InetAddress addr =...
Results 1 to 16 of 16