Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Want to start computer programming- need setup files for PC programming programs  (Read 12233 times)

0 Members and 1 Guest are viewing this topic.

Coco423

    Topic Starter


    Intermediate

    Thanked: 7
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 7
Yes, I know how to google search and just did so a couple hours ago for this. I am fi ding the pages I need, and am fine now. I was a little to eager at first but now I realize that I need to take it a little at a time and pace myself. This was in reply to Geek-9pm's post, in case anybody is wondering why I posted.

Geek-9pm


    Mastermind
  • Geek After Dark
  • Thanked: 1026
    • Gekk9pm bnlog
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 10
Take your time and persist and you will have good results.
Here is one of many sties that helps new students  look in the right direction.
https://lifehacker.com/top-10-ways-to-teach-yourself-to-code-1684250889
Quote
Programming is one of the most valuable skills you can pick up in these modern times, whether for career prospects or to stretch your brain and create something awesome. If you're just getting started on your coding journey, here are ten tips and resources to set you off on the right foot.

Worth reading  :)

DaveLembke



    Sage
  • Thanked: 662
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 10
Youtube has lots of videos as well on programming if your looking for learning by example. I have used youtube myself not for how to program but for figuring out my way around an IDE. Watching someone else show the steps on how to start a project and compile a project etc might be helpful when there are so many functions and its an overload of where to go and what to do.

Many youtube videos dont go into ( WHY ) something does what it does, and this is where a real course attended in Introduction to Programming would be beneficial because questions that youtube cant answer a teacher/instructor generally can.

If you are the type of person who can use a book and follow it precisely there are all sorts of programming books out there with labs in them to follow like a cook book to making a program that works and if you get an older edition of a book you can get them very cheap. Back when i was in college I saved myself about $75 by buying the 2nd edition of a book used when the 3rd edition was suggested. The only differences was a few more examples added to make a section more descriptive.

From my own mistakes with learning programming since the mid-1980s and not being a master of any language but familiar with a bunch of different languages, its best to figure out what you want to program. Do you want to program for android devices, do you want to program for a websites web server, do you want to program games, do you want to program complex calculations that perform encryption and decryption or scientific research, or something else. Each language has its pros ( strengths ) and cons ( weaknesses ) for implementation towards specific programming goals.

Given that you mention Linux and Windows... My language suggestion is to learn Python and go from there. C and C++ I wouldn't suggest for anyone that never programmed before. Python is very platform flexible and used a lot. Once you master structure and internal functionality of object oriented programming with reuse vs putting in redundant instructions you will then have a good foundation to build from to explore other languages and when learning another language it will be far easier because you know how a FOR loop works for example vs a WHILE loop and then you can just learn the syntax of it all but the structure is all very similar, then dive into C or C++ with dependency needs etc if you want something more complex or any other language of choice because you know the internal workings of a program structure and just need to conform to the specific syntax of that language.