Search:

Type: Posts; User: Jaguar

Page 1 of 8 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    2,327

    Thx for your response, i've already tried then...

    Thx for your response, i've already tried
    then run fetchmailan error is in the red line :(
    authentication will always fail because my e-mail address is [email protected] not [email protected]
    while...
  2. Replies
    3
    Views
    2,327

    fetchmail with pop3

    hi
    previously i used kmail as my e-mail client, i had no problem with that.
    but now i only want to deal with console, and want to retrieve pop3 mails using fetchmail.
    but i don't know how to...
  3. Replies
    9
    Views
    1,468

    stack limitation should depends on "system" not...

    stack limitation should depends on "system" not "compiler" :rolleyes:

    [edit] and it should also depends on ram you have on your machine
  4. Replies
    7
    Views
    1,504

    I would recommend cygwin. ;) Normally I use...

    I would recommend cygwin. ;)
    Normally I use slackware CD, if I want to do so.
    It can boots, rescues, manipulates files in FAT32 partitions.

    But problem is that it can't manipulate files in NTFS...
  5. Replies
    28
    Views
    19,042

    Re: Subtracting Two Pointers

    >> When I compile and run it, I get the answer as '500'. Is it because, when you subtract two pointers, you get the number of units of [data type] that lies in between them? (I tried using char. Then...
  6. Thread: semi-advanced

    by Jaguar
    Replies
    4
    Views
    1,755

    Re: semi-advanced

    >> and I was wanting to get into handling sockets and the sort.

    I would recommend "Unix Network Programming" by W. Richard Stevens.
    (note that it is also for any Unix-like systems, not only Linux)
  7. Replies
    1
    Views
    1,428

    links here...

    links here.
  8. Replies
    5
    Views
    8,599

    Re: Re: How to prevent exiting from running program

    >> SIGABRT(Ctrl-\)
    ?*?*? SIGQUIT

    >> SIGSTP (Ctrl-Z)
    SIGTSTP
  9. Thread: Compile error

    by Jaguar
    Replies
    5
    Views
    1,430

    >> or, if you do, use This is a Linux...

    >> or, if you do, use <cstdio>
    This is a Linux forum ;)
  10. Thread: Linux distro

    by Jaguar
    Replies
    18
    Views
    4,849

    Redhat Slackware * **//It's only linux using BSD...

    Redhat
    Slackware * **//It's only linux using BSD runlevel and it claims to be the most unix-like distro. (but actually all are *NIX) :)

    GNOME
    KDE * **//it's popular and more stable than GNOME...
  11. Thread: Compile error

    by Jaguar
    Replies
    5
    Views
    1,430

    Re: Compile error

    >> #include <iostream.h>
    >> #include <stdio.h>
    first, don't mix these 2 headers, it's not nice.

    >> #include <iostream.h>
    second, don't put dot-h (.h), only <iostream> is required for this...
  12. Replies
    5
    Views
    8,599

    >> and I need to make it unclosable unless the...

    >> and I need to make it unclosable unless the quit button is clicked
    for GUI, don't know

    following for console ;)


    #include <signal.h>

    signal(SIGINT,SIG_IGN); /* disable ctrl-C */...
  13. Replies
    1
    Views
    4,586

    >> int main(int argc, char *argv[]); >> int...

    >> int main(int argc, char *argv[]);
    >> int main(int argc, char *argv[])

    I think, you don't need prototype for main().
    And your syntax for prototype is wrong.
    int func(int, char **);

    >>...
  14. Replies
    2
    Views
    9,770

    >>C++ has ISO and ANSI Standard. Object Pascal...

    >>C++ has ISO and ANSI Standard. Object Pascal (OP) Hasn't.

    >>Pascal had a standard long before C++.

    Note that Pascal Standard does not support OOP. It's only a draft for Standard.
  15. Replies
    2
    Views
    1,284

    also $ man gcc $ man make

    also
    $ man gcc
    $ man make
  16. Replies
    7
    Views
    1,540

    Note that you also need "excute bit on" for the...

    Note that you also need "excute bit on" for the directory, files reside. Kinda "drwxrwxrwx".
    [edit] If you are not a root :)
  17. Thread: Complier output

    by Jaguar
    Replies
    4
    Views
    1,247

    Although I didn't insert new line at the end of...

    Although I didn't insert new line at the end of source code, I have never got this warning. I don't know that.
    Is that an issue copying from DOS with ``^M'' as a line terminator?
  18. Replies
    7
    Views
    4,298

    try using namespace std; int main() { ...

    try
    using namespace std;
    int main()
    {
    cout<<"hello world!"<<endl;
    return 0;
    }
  19. Replies
    7
    Views
    4,298

    Re: C++ newbie / linux not so newbie question

    or
    std::cout << "Hello, World!\n";
    without namepace declaration
  20. Thread: VIM Question

    by Jaguar
    Replies
    6
    Views
    2,948

    I tested individual command. seems that only...

    I tested individual command.
    seems that only :set expandtab is required.
    Thx Hammer :)
  21. Thread: VIM Question

    by Jaguar
    Replies
    6
    Views
    2,948

    Re: VIM Question

    >> I want to change it from a tab to two spaces.
    I'm not sure I understand your question.
    normally I use tab indenting.
    if I want to change tab to spaces, I type ``:1,$s/\t/ /g'' before exporting...
  22. Thread: time(0)

    by Jaguar
    Replies
    3
    Views
    1,138

    I've never seen `time(0)', I only see...

    I've never seen `time(0)', I only see `time(NULL)'. :)
    see more or `$ man 2 time'.
  23. Thread: login "scripts"

    by Jaguar
    Replies
    4
    Views
    4,023

    another choice ;) `.bashrc' script is for...

    another choice ;)

    `.bashrc' script is for specific users.
    '/etc/rc.d/rc.local' script is for all users.
  24. Replies
    5
    Views
    2,496

    >> i have found lot of theories on what is a...

    >> i have found lot of theories on what is a pipeline on the net but couldn't find any examples

    does this help?
  25. Replies
    4
    Views
    989

    Re: Compiler: a difficult choice..

    >>Simple and direct...

    You should have mentioned ``and free''. :D That's gcc.
Results 1 to 25 of 188
Page 1 of 8 1 2 3 4