Jump to content

ViperX

Members
  • Joined

Everything posted by ViperX

  1. ViperX posted a post in a topic in Computer Discussion
    By the way, there's no real idea of using 'unsigned' chars.
  2. ViperX posted a post in a topic in Computer Discussion
    It did not have to. Microsoft chose so.
  3. ViperX posted a post in a topic in Computer Discussion
    It really depends. OpenGL owns DirectX by far, but if you ever plan using it with Vista, you have to go DirectX since OpenGL performance will be reduced by up to 50%.
  4. That sucked.
  5. ViperX posted a post in a topic in Computer Discussion
    Correct definition of a computer virus: A computer virus is a program that reproduces its own code by attaching itself to other programs in such a way that the virus code is executed when the infected program is executed. A trojan: A program that appears desirable but actually contains something harmful.
  6. ViperX posted a post in a topic in Computer Discussion
    http://vx.netlux.org/lib/vml01.html Please read that (Learn assembly first). If you understand the whole book, you can then call yourself a haxor. The most important part for you to read right now, might be http://vx.netlux.org/lib/vml01.html#c18
  7. ViperX posted a post in a topic in Computer Discussion
    I know NOTHING Java, but are you sure theres a type called Scanner (with that case, I am pretty sure Java is case sensitive).
  8. ViperX posted a post in a topic in Computer Discussion
    Well, the hInstance should work. Oh, and GetModuleFileName gets the full path.
  9. ViperX posted a post in a topic in Computer Discussion
    It's the perfect computer if you want to use it as a testbed. I use an old computer to test IceBox (an OS I program on) on.
  10. ViperX posted a post in a topic in Computer Discussion
    Assembly is easy.
  11. ViperX posted a post in a topic in Computer Discussion
    http://www.zitech.dk/product/Details.aspx?ID=158055 It's danish, but it's pretty good. The total price is around $1840 tho :(
  12. ViperX posted a post in a topic in General Discussion
    I FUCKING WROTE YOU A PROGRAM! Now, be grateful. http://home.ripway.com/2004-12/217869/freezeClock.exe And no, it is not malicious. If you don't want to run it, simply don't. It gets the time when run, and sets the time to that every 20 seconds.
  13. Compilers first convert the languages into assembly, then assembles it into an object, that gets linked together to an executeable/binary (PE, COFF etc.).
  14. ViperX posted a post in a topic in Computer Discussion
    Since I don't want to get into another discussion about how "leet" VB is, I'll just say C(++) without any real arguments. Even tho there's lots.
  15. int i; int s;int d;s=2;i=8;d=i+s;//math could be done as simple as int i = 8, s = 2, d = i + s;
  16. C# has nothing to do with Java. Nothing but, both the languages suck.
  17. ViperX posted a post in a topic in General Discussion
    Ok I tried it. Some of the parts are a bit laggy and such, but it's OK. It's also VB >.<
  18. ViperX posted a post in a topic in General Discussion
    Malicious or not?
  19. ViperX posted a post in a topic in General Discussion
    7zip for teh win. But, you're on your own on figuring this "hard problem" out.
  20. ViperX posted a post in a topic in Computer Discussion
    And.. So what?
  21. ViperX posted a post in a topic in Computer Discussion
    Quote from a C++ reference:
  22. ViperX posted a post in a topic in Computer Discussion
    Dev-Cpp [http://www.bloodshed.net/], uses MingW (Windows GCC port).
  23. ViperX posted a post in a topic in Computer Discussion
    It does for me. <-- Standard programmers reply :P
  24. ViperX posted a post in a topic in Computer Discussion
    First off, make your main return int (Noone argue about this, it's STANDARD). Then, at the bottom (just before '}'), add the following: cin.sync(); cin.get(); return 0; That will make it look like this, with some more small modifications: #include <iostream> using namespace std; int main(int argc, char* argv[], char* envp[]) { int Age = 0; /* We are setting the value of the variable 'Age' to '0' */ cout << "How old are you?: "; cin >> Age; cout << "You are " << Age << " years old" << endl; cin.sync(); cin.get(); return 0; }
  25. ViperX posted a post in a topic in Flames
    One smiley: :shrug: