Search Results - Sharky Forums

Sharky Forums


Search:

Type: Posts; User: biosx

Page 1 of 30 1 2 3 4

Search: Search took 0.87 seconds.

  1. Replies
    8
    Views
    403

    I would never trust a language that lets my...

    I would never trust a language that lets my program divide by zero and keep going ;)

    I know the same types of people. I have a professor that doesn't believe in COBOL because he doesn't like how...
  2. Replies
    4
    Views
    351

    Do an encryption program that lets you choose the...

    Do an encryption program that lets you choose the algorithm you want to encrypt or decrypt in.

    You could do:

    Rot13 / Caesar-Shift
    Mono-alphabetic Substitution
    Poly-alphabetic Substitution...
  3. Replies
    8
    Views
    403

    I agree that C should be your first language. ...

    I agree that C should be your first language.

    C is low-level enough to get you to understand what is really happening. However, it is high-level enough that it is easy to read and code.

    Alot...
  4. Replies
    3
    Views
    282

    Go to www.tldp.org and go through the guides....

    Go to www.tldp.org and go through the guides. There is a guide (or maybe two?) on bash shell scripting.

    I prefer the c-shell(csh/tcsh) myself because the syntax is almost identical to C.

    Good...
  5. Replies
    2
    Views
    469

    Sounds like you are trying to access an array...

    Sounds like you are trying to access an array element that is outside the bounds of the array (i.e. accessing array[12] when the array was defined as array[5]).

    Some more code would help, but I'm...
  6. Replies
    6
    Views
    614

    ::cough:: SQL ::cough::

    ::cough:: SQL ::cough::
  7. Replies
    1
    Views
    388

    A perl script can do that seamlessly. perl is...

    A perl script can do that seamlessly. perl is really good at dealing with text and parsing since it has regexps built in. Look into it. If you know C or have scripted before, it shouldn't take that...
  8. Replies
    6
    Views
    332

    If the audigy optical-out isn't glowing then the...

    If the audigy optical-out isn't glowing then the drive isn't getting power; for whatever reason. Try swapping its power connector with the floppy one (assuming that the Audigy drive uses the floppy...
  9. Thread: string arrays

    by biosx
    Replies
    3
    Views
    434

    Well, essentially you ARE using pointers, but oh...

    Well, essentially you ARE using pointers, but oh well (that's just technical stuff).

    You need to declare errorMessage as a two dimensional array like so:


    char errorMessage[5][25];


    - or...
  10. Thread: C++

    by biosx
    Replies
    8
    Views
    605

    IDE - Integrated Development Environment. An...

    IDE - Integrated Development Environment.

    An IDE is usually just a program that packs an editor, compiler, and debugger together. Some popular IDE's are MSVC++, BCPPB, and X/Emacs.

    For Editing:...
  11. Thread: ms visual 6.0

    by biosx
    Replies
    7
    Views
    803

    The only time I had a problem with a compiler...

    The only time I had a problem with a compiler being lame was with Borland's free command line tools (C++ builder 5.5).

    It seriously wasn't generating the right object code and the values that I...
  12. Replies
    1
    Views
    288

    It is a little tricky in Win32. Here is a link...

    It is a little tricky in Win32. Here is a link to a guy that wrote up a quick function to create a shortcut. It basically revolves around filling a IShellLink structure. If you get stuck or have a...
  13. Replies
    5
    Views
    410

    Re: Why I posted here .

    Did you mean to say "lawyers" when you said "scripters" b/c most of the Perl mongers I know don't even know their own civil liberties.
  14. Replies
    5
    Views
    410

    A similiar situation happened when I was in high...

    A similiar situation happened when I was in high school.. If you don't want to read the story, just skip to the last paragraph...

    // ------------- Beginning of Story ------------------
    It was...
  15. Thread: Hacking basics

    by biosx
    Replies
    26
    Views
    1,332

    Hackers write programs. Crackers use programs.

    Hackers write programs. Crackers use programs.
Results 1 to 15 of 438
Page 1 of 30 1 2 3 4