What Was Your First Programming Book?

  • (9 Pages)
  • +
  • « First
  • 5
  • 6
  • 7
  • 8
  • 9

125 Replies - 11521 Views - Last Post: 08 May 2012 - 11:22 AM

#91 ultimateweb  Icon User is offline

  • New D.I.C Head

Reputation: 2
  • View blog
  • Posts: 37
  • Joined: 24-May 09

Re: What Was Your First Programming Book?

Posted 26 May 2009 - 02:23 AM

Mine was , 6 years ago, called QBasic.It was ok.
Was This Post Helpful? 0
  • +
  • -

#92 10e12  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 1
  • Joined: 25-May 09

Re: What Was Your First Programming Book?

Posted 26 May 2009 - 05:30 AM

2 books actually...

A very general but good kick-start book in VB 5 and of course...

Dan Appleman's Visual Basic Programmer's Guide to the Win32 API

IMHO Best writer in the programmer market I have stumbled on so far.

This one you can still get if you need a quick introduction and loads of good tips on working with the Win32 API for any environment. It doesn't make you a pro, but it teaches you enough to be dangerous, and tells you also how to avoid the really dangerous which one perhaps should not do in VB or any app.
Was This Post Helpful? 0
  • +
  • -

#93 iniaes  Icon User is offline

  • D.I.C Head
  • member icon

Reputation: 34
  • View blog
  • Posts: 139
  • Joined: 23-October 10

Re: What Was Your First Programming Book?

Posted 25 October 2010 - 01:30 PM

I haven't even finished working through it yet, but my first book is :

Sams Teach Yourself Beginning Programming in 24 Hours, by Greg Perry.

Taking me through Liberty BASIC, and what a hoot it is, really simple stuff, but it is quick, easy and hugely rewarding :)

I intend to follow this with Beginning Programming for Dummies, by Wallace Wang. Coincidentally this uses Liberty BASIC too, Ihad no idea when I bought the books. ~shrugs~
Was This Post Helpful? 0
  • +
  • -

#94 SarumanTheWhite  Icon User is offline

  • D.I.C Regular

Reputation: 67
  • View blog
  • Posts: 339
  • Joined: 04-November 08

Re: What Was Your First Programming Book?

Posted 25 October 2010 - 01:42 PM

It's been awhile and I've had so many books it's hard to remember. I think it may have been a For Dummmies C++ book.
Was This Post Helpful? 0
  • +
  • -

#95 Nallo  Icon User is offline

  • D.I.C Head
  • member icon

Reputation: 159
  • View blog
  • Posts: 241
  • Joined: 19-July 09

Re: What Was Your First Programming Book?

Posted 25 October 2010 - 01:43 PM

Some 20 odd years ago as a teenager a book about programming the Comodore 64 "breadbox" using assembler. Painfull enough to read and understand. But I learned an awfull lot about how a computer works. It demystified that ´game box´ for me :bigsmile:
Was This Post Helpful? 0
  • +
  • -

#96 earlgrey  Icon User is offline

  • D.I.C Head

Reputation: 10
  • View blog
  • Posts: 91
  • Joined: 26-September 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 10:11 AM

My first book was Begginging Programming for Dummies by Wallace Wang, I think I bought it around 10 years ago.
Was This Post Helpful? 0
  • +
  • -

#97 Nikitin  Icon User is offline

  • D.I.C Regular

Reputation: 56
  • View blog
  • Posts: 264
  • Joined: 02-August 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 10:30 AM

View Postearlgrey, on 26 October 2010 - 10:11 AM, said:

My first book was Begginging Programming for Dummies by Wallace Wang, I think I bought it around 10 years ago.


That was my first book as well.
Was This Post Helpful? 0
  • +
  • -

#98 AlbuquerqueApache  Icon User is offline

  • D.I.C Addict

Reputation: 49
  • View blog
  • Posts: 523
  • Joined: 21-February 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 01:04 PM

My first programming book was trueBASIC and I did it on an imac.

It was definitely procedural programming.

second book was a VB.net book by bradley & millspaugh

third book is my trusty deitel's Java programming 8th edition late objects model.
Was This Post Helpful? 0
  • +
  • -

#99 lordofduct  Icon User is offline

  • I'm a cheeseburger
  • member icon


Reputation: 2067
  • View blog
  • Posts: 4,061
  • Joined: 24-September 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 03:59 PM

I read through a few books. But personally in my opinion, the first books I used in training my programming skills were math text books. I base my programming skills in much of mathematics... for instance I treat functional operations as algebraic functions in my head, and positioning and analyzing them in that manner. I then apply linear algebra concepts into my traversing between functional operations that aren't exactly similar. Just like linear algebra allows you to easily convert from a 2 dimensional radial space into a 3 dimensional cartesian space... the same concepts and principles allow me to devise a method that requires 2 parameters of one type into a a method that requires 3 parameters of another. You then string this all together and you can paint immense multidimensional data spaces that becomes your value/event driven world space.

Of course it doesn't always work out how I hope, but neither did the math. That's the learning experience I guess.

Once I actually picked up some books on programming in genera, they included:

1) A handful of language specific texts to assist me in learning the syntax of a given language. These included text on Java, C#, C++, AS3 (yes, flash), and PHP. I quickly learned they were mostly useless and that online documentation was MUCH better because I was mostly concerned about the datatypes, their relationships, and basic syntax. I mostly just ended up lending them to friends who were starting out.

2) Design Patterns : Elements of Reusable Object-Oriented Software - http://www.amazon.co...d/dp/0201633612 - because OOP intrigued me the most. I like the encapsulation and polymorphic traits of OOP. It's similar to how I solve problems in the real world (breaking mathematical equations into sub functions or value types and treating them as objects themselves)

3) The first 3 volumes of "The Art of Programming" By Knuth - http://www.amazon.co...88133981&sr=1-4 (my copy didn't come with 4A in the box set) - the title intrigued me, the reputation of the text got my ego roaring, and I felt I should learn the deep underbelly of computer technology and the history that got it to where it is today.

This post has been edited by lordofduct: 26 October 2010 - 04:04 PM

Was This Post Helpful? 0
  • +
  • -

#100 Nikitin  Icon User is offline

  • D.I.C Regular

Reputation: 56
  • View blog
  • Posts: 264
  • Joined: 02-August 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 04:59 PM

View Postlordofduct, on 26 October 2010 - 03:59 PM, said:

I then apply linear algebra concepts into my traversing between functional operations that aren't exactly similar. Just like linear algebra allows you to easily convert from a 2 dimensional radial space into a 3 dimensional cartesian space... the same concepts and principles allow me to devise a method that requires 2 parameters of one type into a a method that requires 3 parameters of another. You then string this all together and you can paint immense multidimensional data spaces that becomes your value/event driven world space.


Posted Image
Was This Post Helpful? 2
  • +
  • -

#101 Kilorn  Icon User is offline

  • XNArchitect
  • member icon




Reputation: 1325
  • View blog
  • Posts: 3,504
  • Joined: 03-May 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 07:41 PM

Believe it or not, my very first programming book was "The Complete Idiot's Guide to C++". Wasn't exactly a great book, and it was something like 8 years ago, and I wasn't really as interested in reading through the book as I thought I would be at that time, so I don't think I actually learned anything from it.
Was This Post Helpful? 0
  • +
  • -

#102 creativecoding  Icon User is online

  • Hash != Encryption
  • member icon


Reputation: 786
  • View blog
  • Posts: 2,971
  • Joined: 19-January 10

Re: What Was Your First Programming Book?

Posted 26 October 2010 - 07:59 PM

http://www.amazon.co...g/dp/0672302691

I feel like I grew up in the 1980's.
Was This Post Helpful? 0
  • +
  • -

#103 alias120  Icon User is offline

  • The Sum over All Paths
  • member icon

Reputation: 121
  • View blog
  • Posts: 700
  • Joined: 02-March 09

Re: What Was Your First Programming Book?

Posted 27 October 2010 - 03:12 AM

I bought a text book for school that I cannot remember the name of. It's was an intro to programming using C++.
The first book I personally bought was "The C++ Programming Language". I didn't get very far initially, the content was a little over my head. It was a good purchase though, great reference material to have.
Was This Post Helpful? 0
  • +
  • -

#104 Nikhil_07n  Icon User is offline

  • The cheese stands alone..
  • member icon

Reputation: 48
  • View blog
  • Posts: 2,489
  • Joined: 09-January 09

Re: What Was Your First Programming Book?

Posted 27 October 2010 - 04:10 AM

Syllabus book for VB6 & databases for School.

But the first book I purchased for learning on my own was Head First Java about 2 months ago.
Was This Post Helpful? 0
  • +
  • -

#105 Crimson Wings  Icon User is offline

  • D.I.C Head
  • member icon

Reputation: 13
  • View blog
  • Posts: 211
  • Joined: 11-July 09

Re: What Was Your First Programming Book?

Posted 31 October 2010 - 11:15 PM

Mine was "C++ Without Fear". Got it 3 years ago. To the day, it's still on my shelf. I remember how every page dumbfounded me and I was stuck in every simple thing for hours and days, haha. I still remember how I didn't understand what variables were really for.

Posted Image
Was This Post Helpful? 0
  • +
  • -

  • (9 Pages)
  • +
  • « First
  • 5
  • 6
  • 7
  • 8
  • 9