Page 1 of 4 123 ... LastLast
Results 1 to 15 of 54
  1. #1
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty

    Post Learn Assembly Language

    Update: 09/30/09 11:00pm EST
    Learn Assembly Code
    I have noticed this forum has kind of been dying off, but it's a crucial part of hacking (decompiling programs in assembly language). So there are materials posted here for learning assembly. Since this thread is and should stay active simply contact whoever is currently running the thread to add something to it or point out errors. I took out the Reversing section because I felt it was really a seperate ordeal, and there could really be an entire thread/guide just for Reverse Engineering.

    Tools/Guides/Tutorials:

    Compilers:
    take your pick...

    FASM [Download]
    Flat Assembler. This is a Compiler which come with a semi-IDE I think it is better then MASM32 because you don't have to compiler at command line so it is better for people used to programming in an IDE.

    MASM [Download]
    Microsoft Macro Assembler
    . I believe this is the most popular one.

    WinAsm [Installation Insstructions]
    WinAsm Studio IDE. An IDE for the MASM and FASM compilers mentioned earlier.
    Mentioned by: B1ackAnge1

    HLA
    High Level Assembler. Not as popular as MASM, but feels more like a HLL and is the compiler used to teach ASM in "The Art of Assembly Language" by: Randy Hyde


    Online Tuts, Books, & Guides:
    This is where you stop loading and start learning...

    ASM: The Book
    This is a huge online book. It contains absolutely everything you need to know about Win32Asm.

    Table of ASM Instructions [PDF]
    This is an Extremely Valuable BIG list of all the x86 asm instructions.

    ASM GameDev Tut/Walkthough
    This is a six part guide showing how to create a game in ASM. It also introduces some of the basics of ASM. Recommended for people who like to learn through Trial & Error.

    Assembly Language Reference
    A huge reference for tons of ASM intructions compiled by Dr. ME (not recommended to learn by, but just to refer to)


    Source Code:
    It's nice to have something to look at...

    ASM Source Code
    This is a huge collection of source codes written in Win32 Asm language.



    Books:
    Because you shouldn't have to learn everything online


    Books on Assembly
    Learn to speak computer...


    The Art of ASM 1st ed. In the meantime there is an entire online edition of The Art of Assembly Programming. I have an ereader so I can download the whole pdf and read it as a book


    The Art of ASM 2nd ed. Get ready! the Art of Assembly Programming 2nd edition is coming out this December. I suggest everyone to get it. I know I am!


    Downloads:
    Get them right here on MPGH

    AoA.rar [1][2][3][4][5][6][7][8]
    This is the entire AoA.pdf that I took the liberty of uploading unto MPGH. The advantage to downloading it here is that I took the time to organize all the .pdf's where they will come out of order if you download them on the author's site.





    This list will be updated often. Since I learning ASM as I update this the information listed should be pretty relevant and up to date. Just ask and I will add any new links to this posts. However I also feel this Guide should go on even when I am no longer active on these forums or am dead xL ... So if anyone feels up to keeping the list updated long after I'm gone by all means do it. This a community project and five or so years from now these links may be incorrect.

    Current Thread Manager:
    why06 [Send me a PM]
    Post anything you would like to add in this thread and I will handle it. Or send me a pm.
    Last edited by why06; 01-28-2010 at 10:08 AM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  2. The Following 7 Users Say Thank You to why06 For This Useful Post:

    Cataclypse (10-28-2014),crushed (10-06-2009),glosol (09-19-2009),Hell_Demon (09-09-2009),proman98 (06-14-2011),skulhead (02-14-2011),WhiteHat PH (02-23-2019)

  3. #2
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Table of ASM Instructions [PDF]- This is an Extremely Valuable BIG list of all the x86 asm instructions.
    I'm still uploading a lot of files that I have collected overtime. I hope to up date the original post with links to all these uploads. And make a semi curriculum for learning asm.
    Last edited by why06; 09-10-2009 at 09:31 AM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  4. The Following 5 Users Say Thank You to why06 For This Useful Post:

    Cataclypse (10-28-2014),glosol (09-19-2009),Hell_Demon (09-11-2009),maximalista (04-28-2015),proman98 (06-14-2011)

  5. #3
    B1ackAnge1's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    455
    Reputation
    74
    Thanks
    344
    My Mood
    Cynical
    I still like WinAsm better (UI For Masm32)

    Comparing between masm & fasm

    Loading an address:

    ● Equivalent syntax in MASM: mov eax,offset memvar
    ● Equivalent syntax in FASM: mov eax,memvar

    Loading a value:

    ● Equivalent syntax in MASM: mov eax,memvar
    ● Equivalent syntax in FASM: mov eax,[memvar]

    The Masm syntax just makes a whole lot more sense to me

  6. #4
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by B1ackAnge1 View Post
    I still like WinAsm better (UI For Masm32)

    Comparing between masm & fasm

    Loading an address:

    ● Equivalent syntax in MASM: mov eax,offset memvar
    ● Equivalent syntax in FASM: mov eax,memvar

    Loading a value:

    ● Equivalent syntax in MASM: mov eax,memvar
    ● Equivalent syntax in FASM: mov eax,[memvar]

    The Masm syntax just makes a whole lot more sense to me
    Ok I'll add it. I'll also add a link to HLA which is the program used by the tutorial. thx BA.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  7. #5
    LegendaryAbbo's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    5,243
    Reputation
    23
    Thanks
    546
    My Mood
    Relaxed
    I dislike ASM

  8. #6
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Yeh. That's kind of the reason I'm making this... to change peoples perspectives and get them to learn asm.

    Update: 09/11/09 7:00pm EST
    Code:
    Learn Assembly Code
    I have noticed this forum has kind of been dying off, but it's a crucial part of hacking (decompiling programs in assembly language). So there are materials posted here for learning assembly as while as for reversing decompiled asm. Since this thread is and should stay active simply contact whoever is currently running the thread to add something to it or point out errors.
    
    Tools/Guides/Tutorials:
    
    Compilers:
    take your pick...
    
    FASM [Download] 
    Flat Assembler. This is a Compiler which come with a semi-IDE I think it is better then MASM32 because you don't have to compiler at command line so it is better for people used to programming in an IDE.
    
    MASM  [Download] 
    Microsoft Macro Assembler. I believe this is the most popular one.
    
    WinAsm [Installation Insstructions] 
    WinAsm Studio IDE. An IDE for the MASM and FASM compilers mentioned earlier.
    Mentioned by: B1ackAnge1
    
    HLA
    High Level Assembler. Not as popular as MASM, but feels more like a HLL and is the IDE used to teach ASM in "The Art of Assembly Language" by: Randy Hyde
    
    
    Other Tools:
    Debuggers and anything else I can find 
    
    OllyDebug 
    The only free debugger I know. I am willing to post others.
    
    
    Online Tuts, Books, & Guides:
    This is where you stop loading and start learning...
    
    ASM: The Book
    This is a huge online book. It contains absolutely everything you need to know about Win32Asm.
    
    Lenas Reversing for Newbies 
    Nice collection of video tutorials aimed particularly for newbie reverse engineers...
    
    Table of ASM Instructions [PDF]
    This is an Extremely Valuable BIG list of all the x86 asm instructions.
    
    
    Source Code:
    It's nice to have something to look at...
    
    ASM Source Code 
    This is a huge collection of source codes written in Win32 Asm language.
    
    
    
    Books: 
    Because you shouldn't have to learn everything online
    
    
    Books on Assembly
    Learn to speak computer...
    
    
    The Art of ASM 1st ed. In the meantime there is an entire online edition of The Art of Assembly Programming. I have an ereader so I can download the whole pdf and read it as a book :)
    
    
    The Art of ASM 2nd ed. Get ready! the Art of Assembly Programming 2nd edition is coming out this December. I suggest everyone to get it. I know I am! :D
    
    
    Books on Reversing
    Cause it's not just enough to hack it. You gotta crack it!
    
    
    Reversing: Secrets of Reverse Engineering
     I'm not completely sure about the content this book yet. I am sure you should buy it online! $50 in store $20 online. I have already found a few editing errors while reading it, but when I am done I will post a personal review of the book in this thread.
    
    
    
    
    
    
    
    This list will be updated often. Since I learning ASM as I update this the information listed should be pretty relevant and up to date. Just ask and I will add any new links to this posts. However I also feel this Guide should go on even when I am no longer active on these forums or am dead xL ... So if anyone feels up to keeping the list updated long after I'm gone by all means do it. This a community project and a 5 or so years from now these links may be incorrect.
    
    Current Thread Manager: why06 [Send me a PM]
    Post anything you would like to add in this thread and I will handle it. Or send me a pm.
    Last edited by why06; 09-11-2009 at 05:01 PM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  9. The Following User Says Thank You to why06 For This Useful Post:

    tomeye (09-24-2012)

  10. #7
    glosol's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    I can really only speak for myself on this, BUT...

    I consider myself above average on many topics, be it mechanical, chemical or software related. When it comes to learning code I cant seem to get a foot in the door. To someone that has a specialized ability it can be hard to stop and consider not everyone else does.
    I have asked in various forums where the best place is to start. Its amazing how many people actually take the time to basically tell me "if you dont already know im not gonna tell ya..."
    So still to this day I am looking for where the best place to start might be. Remember that to bring others up to speed, you may need to dumb the material down some, so to speak.
    Especially with something like learning code, because without a doubt it takes very little to discourage someone from giving it a shot.
    I am not joking about the next few questions. These are the blocks I've had and cant seem to get past. Mostly because I feel stupid for having to ask when it seems like I am the only one that doesn't know.

    I honestly have no idea what an assembler is. What does it do?

    Why should anyone learn C++...wont that be replaced with something better just as soon as I'm done figuring out that?

    Is there a specific language to learn and what is it?

    Is VB the same code language as C++ or are they all proprietary software that doesn't play well with others?

    What is a Compiler, or IDE? Isnt that a hard drive interface cable?

    WTF language is this and WTF does it mean?......."High level Assembler. Not as popular as MASM, but feels more like a HLL and is the IDE used to teach ASM"?

    Those types of basics. Maybe its not just me thinking like this, but nobody else has decided to speak up?

    I want to learn, and there are those of you that want to teach. Maybe we need to have a forum dedicated to Pre-programmers that would explain the basic questions about what and why? That is the only solution I can see for breathing new life into advanced forums like this one.
    Last edited by glosol; 09-13-2009 at 03:56 AM. Reason: more stuff i question

  11. The Following User Says Thank You to glosol For This Useful Post:

    Kushala Daora (10-26-2016)

  12. #8
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    I you don't understand an answer read through to another question. I most likely answered it there since these question were in no real order I didn't know how much detail I should go through at first, but I tried to make up for it in later answers.

    Quote Originally Posted by glosol View Post
    I can really only speak for myself on this, BUT...

    I consider myself above average on many topics, be it mechanical, chemical or software related. When it comes to learning code I cant seem to get a foot in the door. To someone that has a specialized ability it can be hard to stop and consider not everyone else does.
    I have asked in various forums where the best place is to start. Its amazing how many people actually take the time to basically tell me "if you dont already know im not gonna tell ya..."
    So still to this day I am looking for where the best place to start might be. Remember that to bring others up to speed, you may need to dumb the material down some, so to speak.
    Especially with something like learning code, because without a doubt it takes very little to discourage someone from giving it a shot.
    I am not joking about the next few questions. These are the blocks I've had and cant seem to get past. Mostly because I feel stupid for having to ask when it seems like I am the only one that doesn't know.
    First off there's no stupid questions. I really believe that... Someone else might flame you, but I won't.

    I honestly have no idea what an assembler is. What does it do?
    An assembler is sort of like a compiler. Where a compiler usually takes written code and processes it into an intermediate stage an assembler wouldn't have to do that. Of course it would check for errors, but there is no need to optimize code because it is already written in assembly. An assembler will there for take written assembly instructions and create a real program based on those instructions. A Compiler > checks for errors > translates instructions into a more manageable form, an intermediate language. Finally it optimizes its code using advanced algorithms to make the fastest executing code possible. As you might have guessed an assembler is a component of a compiler See here: File:Compiler.svg - Wikipedia, the free encyclopedia

    Why should anyone learn C++...wont that be replaced with something better just as soon as I'm done figuring out that?
    Code is always going to be changing and improving. The important thing is getting your foot in the door. Also be aware that most languages are for the most part the same. Once you learn a few major concepts its relatively easy to switch over to other languages.
    Is there a specific language to learn and what is it?
    There's 100's of different languages to learn. It's almost like learning to speak another langauge except I'd have to say it takes a considerable amount less time. You just have to choose the best language for the job. You wouldn't want to learn italian to speak Japanese. And you wouldn't want to code for a Mac using C.


    Is VB the same code language as C++ or are they all proprietary software that doesn't play well with others?
    They are not the same. I don't know what gave you that idea, even looking at the code with know past experiences you can tell something coded in VB looks much different then C++. VB is mainly used for making graphical front ends to existing C++ code, so I would say they work quite well together.

    What is a Compiler, or IDE? Isnt that a hard drive interface cable?
    Wow man. Lol. An IDE is an Integrated Development Enviroment. It is a program a programmer would use to build his program. You type your code in the IDE and it compiles it and everything. Basically its like a really fancy text editor for coders.

    WTF language is this and WTF does it mean?......."High level Assembler. Not as popular as MASM, but feels more like a HLL and is the IDE used to teach ASM"?
    Firstly asm is the human readable version of machine code. This is the code that the computer reads in its internals. It is essentialy the closes we can get to the computer. MASM (Microsoft Assembler) is an assembler, remember what I said about assemblers? HLL is short for High Level Language. It would be good for you to get some basic concepts of programming. You might want a formal introduction. I will not write that in this thread, but here try this: Introduction to Computer Programming - What Is It

    Those types of basics. Maybe its not just me thinking like this, but nobody else has decided to speak up?
    Trust me I have asked dumber questions then those. We all have to start somewhere. It might take you a little longer then most, but the simple fact that you have been searching for answers for so long tells me ur dedicated and self-motivated to learn about programming. Even a basic knowledge is a very useful skill in the modern day and so if you need any help just ask.

    I want to learn, and there are those of you that want to teach. Maybe we need to have a forum dedicated to Pre-programmers that would explain the basic questions about what and why? That is the only solution I can see for breathing new life into advanced forums like this one.
    trust me its not as hard as you think. you just need a little push in the right direction. Once you get through this mental barrier everything should come pretty easy to you.

    BTW I would have preferred you posted this question somewhere else where more people can see it, but no matter.
    Last edited by why06; 09-13-2009 at 08:23 AM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  13. The Following 2 Users Say Thank You to why06 For This Useful Post:

    Calard (11-18-2009),Hell_Demon (09-19-2009)

  14. #9
    glosol's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    First off I really appreciate your reply. I think that most of the questions that I have are based on terminologies. So your replies to the questions are understandable to me.

    you are very correct. wrong forum. maybe another post in the correct forum, with the above information copied to it would be in order? I think it would be better to have you do that so there will be some credibility. Most people look at the number of posts and then decide if its worth looking further... and the information should be shared with others that dont know.

  15. #10
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Oh. I'm not going to do it :P... nice try though.
    You'll have to post it yourself in the C++ section. Just ask how or where to get started. Try to give them a few details about what you already know, but since it seems like (from your questions) that you are starting at square one that might not be an issue.

    But like I said you'll have to post your questions urself if you put forth the effort I will help, but Im not gonna learn it for you. So post your questions and prepare to face scrutiny. Once we figure out how to help you out we can use you as an example to teach others.
    Last edited by why06; 09-13-2009 at 09:11 PM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  16. The Following User Says Thank You to why06 For This Useful Post:

    tomeye (09-24-2012)

  17. #11
    zeco's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    683
    Reputation
    12
    Thanks
    78
    My Mood
    Cynical
    Quote Originally Posted by why06 View Post
    Oh. I'm not going to do it :P... nice try though.
    You'll have to post it yourself in the C++ section. Just ask how or where to get started. Try to give them a few details about what you already know, but since it seems like (from your questions) that you are starting at square one that might not be an issue.

    But like I said you'll have to post your questions urself if you put forth the effort I will help, but Im not gonna learn it for you. So post your questions and prepare to face scrutiny. Once we figure out how to help you out we can use you as an example to teach others.
    Why06, I think he meant that he wanted you to post the question and answer session you 2 just had, so that it can help others(not ask other questions for him).
    Silly Why06 xD.

    And it can also be the starting point to a Question and Answer thread in the C++ section. I myself think that's a great idea. In addition to these you can give out some more FAQ's then tell everyone that they are free to ask/add more questions to the thread. If we had a mod to sticky it, i think that would be a great starter. If it eventually Becomes popular enough that it is overflowing with response(too fast that we can't process all the questions, and we forget some), we can ask a moderator to maybe put a subsection in the C++ section or something to that effect.

    By the way, which assembly are you learning? I just looked into High Level Assembly. It looks pretty epic.
    Last edited by zeco; 09-16-2009 at 12:38 AM.

  18. The Following User Says Thank You to zeco For This Useful Post:

    glosol (09-19-2009)

  19. #12
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by zeco View Post
    Why06, I think he meant that he wanted you to post the question and answer session you 2 just had, so that it can help others(not ask other questions for him).
    Silly Why06 xD.

    And it can also be the starting point to a Question and Answer thread in the C++ section. I myself think that's a great idea. In addition to these you can give out some more FAQ's then tell everyone that they are free to ask/add more questions to the thread. If we had a mod to sticky it, i think that would be a great starter. If it eventually Becomes popular enough that it is overflowing with response(too fast that we can't process all the questions, and we forget some), we can ask a moderator to maybe put a subsection in the C++ section or something to that effect.

    By the way, which assembly are you learning? I just looked into High Level Assembly. It looks pretty epic.
    Hmmm... o_O Guess ur right. My bad :P Guess I could do that. Let me just figure out how it should work....

    HLA is more for Developing programs in assembly. It helps you to code in assembly by using a format similar to other HLL's, but its really not necessary. All these IDE are for writing the same kind of assembly which is IA 32. Intels 32 bit ASM language. I however am not trying to learn to code in asm as much as learning how to reverse asm. So I'm kind of going a different approach.

    I've already found a lot more sites and more information out. Once I get a good feel of a lesson plan to not only learn to write asm, but learn how to read it and reverse it I will go from there. I think I should update it in a week or two.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  20. The Following User Says Thank You to why06 For This Useful Post:

    glosol (09-19-2009)

  21. #13
    glosol's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    4
    Yes, actually posting our Q+A session might help others asking the same questions, (and save you from answering them for the 2nd- 3rd- 1000th time)

    Thanks to ZECO for picking up whagt I was laying down...

    Here's another Q: What is the purpose of this whole thanks button stuff???

  22. #14
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by glosol View Post
    Yes, actually posting our Q+A session might help others asking the same questions, (and save you from answering them for the 2nd- 3rd- 1000th time)

    Thanks to ZECO for picking up whagt I was laying down...

    Here's another Q: What is the purpose of this whole thanks button stuff???
    its for growing your digital penis, nice to have a big one but in the end none of the other guys care :P

  23. #15
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    hey glosol ur back . I was getting a bad feeling u might not return. Er okay. I'll post some FAQ and see what happens. And maybe just a general how to get started.

    Oh and the purpose of the thanks button is absolutely nothing, its some stupid button that raises the number of times people have thanked you every time they click it. Some people go nuts over it, which I don't get at all.

    Quote Originally Posted by Hell_Demon View Post
    its for growing your digital penis, nice to have a big one but in the end none of the other guys care :P
    Oh wow. xD yeh that about sums it up. LOL

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  24. The Following User Says Thank You to why06 For This Useful Post:

    Hell_Demon (09-19-2009)

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [Books]Learn Assembly[List][Downloads]
    By NextGen1 in forum Assembly
    Replies: 8
    Last Post: 12-07-2011, 11:52 PM
  2. Look inside for great book to learn assembly
    By hobosrock696 in forum Assembly
    Replies: 3
    Last Post: 10-22-2010, 10:21 AM
  3. how 2 learn computer language
    By lalokera in forum Programming Tutorials
    Replies: 15
    Last Post: 01-04-2010, 12:18 PM
  4. How to learn Assembly?
    By why06 in forum Assembly
    Replies: 3
    Last Post: 08-10-2009, 07:34 PM
  5. I wanne start learning Assembly plz read.!
    By Niratsio in forum Visual Basic Programming
    Replies: 14
    Last Post: 10-31-2007, 08:05 AM

Tags for this Thread