Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,433 members, 7,815,980 topics. Date: Thursday, 02 May 2024 at 10:44 PM

What Are The Worst Ways Of Learning Programming? - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / What Are The Worst Ways Of Learning Programming? (10397 Views)

After 5 Months Of Learning OOP In Visual C#-here Is A Little Project I Made. / I'm Learning Programming Online And Blogging About My Experience / I'm Learning Programming But... How Can I Code (as In ... In Real Life)??? (2) (3) (4)

(1) (2) (Reply) (Go Down)

What Are The Worst Ways Of Learning Programming? by lordZOUGA(m): 2:47pm On Feb 04, 2015
There have been posts about how to learn programming which featured some pretty good tips on how to learn programming.

So, what are the worst ways of learning programming?. Your tip might help someone choose the right method by process of elimination. smiley

I can think of: Reading a lot of books and not actually practicing. This leads you into a false notion of believing you can actually do all the things you read correctly on first try. Destroy that notion. You have to practice.

6 Likes 1 Share

Re: What Are The Worst Ways Of Learning Programming? by codeaddict(m): 3:02pm On Feb 04, 2015
Re: What Are The Worst Ways Of Learning Programming? by CodeHouse: 3:13pm On Feb 04, 2015
1. When you learn languages simultaneously with different keywords, you could end up with errors.

2. When money comes before passion and interest.

3. Programming without a proper algorithm and flowchart (most don't do this), etc

3 Likes 1 Share

Re: What Are The Worst Ways Of Learning Programming? by helloBae: 8:32am On Feb 06, 2015
When you start with Cms frameworks instead of writing code at first.

www.hugageek.com

12 Likes

Re: What Are The Worst Ways Of Learning Programming? by lordZOUGA(m): 8:44am On Feb 06, 2015
helloBae:
When you start with Cms frameworks instead of writing code at first.
This is probably akin to using code with no knowledge on how it works.

7 Likes 3 Shares

Re: What Are The Worst Ways Of Learning Programming? by kanirip: 5:23pm On Feb 06, 2015
Another bad way is coming on Nairaland and asking ' What are the worst ways of learning Programming'

smiley

4 Likes

Re: What Are The Worst Ways Of Learning Programming? by jayriginal: 8:00pm On Feb 06, 2015
lordZOUGA:
Reading a lot of books and not actually practicing.

I agree with you.

Too much information can sometimes be a distraction. Its good to have lots of books but if you dont have a systematic way of studying then its of no use.

1 Like

Re: What Are The Worst Ways Of Learning Programming? by Borwe: 9:08am On Feb 07, 2015
By going to university to learn programming

12 Likes

Re: What Are The Worst Ways Of Learning Programming? by lillaowow(m): 8:33pm On Mar 02, 2015
lordZOUGA:
There have been posts about how to learn programming which featured some pretty good tips on how to learn programming.

So, what are the worst ways of learning programming?. Your tip might help someone choose the right method by process of elimination. smiley

I can think of: Reading a lot of books and not actually practicing. This leads you into a false notion of believing you can actually do all the things you read correctly on first try. Destroy that notion. You have to practice.

Hi, can you help with this python programs.

write a function called "howMany" using a for loop . This function returns a count of the number of occasions when a given day and month fell on a given weekday within a given period of time. "howMany" accepts five (5) integer arguments:
a. weekday is an integer in the range 0-6 and represents a day of the week
b. day represents a day of a month and can range between 1 and 31
c. month represents a month of a year and can range between 1 and 12
d. start represents the first year of the period being considered
e. end represents the year after the last of the period being considered
For example, if we wanted to know on how many occasions January 1st fell on a Sunday during the 20th century (Jan 1901 to Dec 2000), we would call howMany with the following arguments,
>>> howMany(0,1,1,1901,2000)
14
>>>

Write a function called "occurences". This function states the weekday that that day and month fell most and least frequently on. The function accepts four (4) integer arguments:
a. day represents a day of a month and can range between 1 and 31
b. month represents a month of a year and can range between 1 and 12
c. start represents the first year of the period being considered
d. end represents the year after the last of the period being considered
For example, if we wanted to know the weekdays that January 1st fell most and least frequently on during the 20th century (Jan 1901 to Dec 2000), we would call "occurences" with the following arguments,
>>> occurences(1,1,1901,2000)
That date falls most often on a Wednesday and least often on a Saturday within the given period
>>>

1 Like 1 Share

Re: What Are The Worst Ways Of Learning Programming? by chim14(m): 10:05am On Mar 03, 2015
no too much talk, the foundational worst way is not learning the basics.

This is how I started:
1) QBasic
2) Access Basic
3) Visual Basic 6.0
4) Java
5) VB.Net
6) C#.Net
7) HTML/CSS
cool PHP
9) Javascript

5 Likes 2 Shares

Re: What Are The Worst Ways Of Learning Programming? by lordZOUGA(m): 4:37pm On Mar 04, 2015
lillaowow:


Hi, can you help with this python programs.






Create another thread for it and then we will see.

1 Like

Re: What Are The Worst Ways Of Learning Programming? by mrdino(m): 4:50pm On Mar 04, 2015
lordZOUGA:
There have been posts about how to learn programming which featured some pretty good tips on how to learn programming.

So, what are the worst ways of learning programming?. Your tip might help someone choose the right method by process of elimination. smiley

I can think of: Reading a lot of books and not actually practicing. This leads you into a false notion of believing you can actually do all the things you read correctly on first try. Destroy that notion. You have to practice.
2. copying and pasting of codes
3. using too sophisticated IDEs e.g. netbean
Re: What Are The Worst Ways Of Learning Programming? by mrdino(m): 4:54pm On Mar 04, 2015
4. failure to work out ur algorith or pseudocode eithr in ur mind, on paper or on a notepad in ur pc bfor startin to code.
Re: What Are The Worst Ways Of Learning Programming? by lillaowow(m): 5:39pm On Mar 04, 2015
lordZOUGA:


Create another thread for it and then we will see.

i was able to solve it.. thanks

it uses zeller's congruence

took a while but i got it.

i used to love programming from afar off, now i dread it grin

1 Like

Re: What Are The Worst Ways Of Learning Programming? by omoelu1(m): 6:33am On Mar 05, 2015
Learning two languages concurrently; especially when one is still a beginner.
It really slowed me down
Re: What Are The Worst Ways Of Learning Programming? by GoodBoi1(m): 8:23am On Mar 05, 2015
chim14:
no too much talk, the foundational worst way is not learning the basics.

This is how I started:
1) QBasic
2) Access Basic
3) Visual Basic 6.0
4) Java
5) VB.Net
6) C#.Net
7) HTML/CSS
cool PHP
9) Javascript
so what are the basics
Re: What Are The Worst Ways Of Learning Programming? by GoodBoi1(m): 8:29am On Mar 05, 2015
Jumping to web, desktop, mobile technologies e.g android, winform without understanding programming fundamentals leading knowing the whats but not the whys.
Re: What Are The Worst Ways Of Learning Programming? by Borwe: 10:42am On Mar 05, 2015
Learning from nairaland.. grin grin grin grin grin
Re: What Are The Worst Ways Of Learning Programming? by castsports: 3:30pm On Mar 05, 2015
not asking for help when you know you need one. grin

1 Like

Re: What Are The Worst Ways Of Learning Programming? by lordZOUGA(m): 3:45pm On Mar 05, 2015
castsports:
not asking for help when you know you need one. grin
Haha. you joined. Welcome to NL. smiley

1 Like

Re: What Are The Worst Ways Of Learning Programming? by castsports: 4:01pm On Mar 05, 2015
lordZOUGA:

Haha. you joined. Welcome to NL. smiley
yea, figured its high time I mixln'ed
Re: What Are The Worst Ways Of Learning Programming? by Abdulhakeem1(m): 10:47am On Mar 24, 2015
Reading Programming from webpages, instead of getting the video tutorial and Textbook for easy and fast comprehension.
Re: What Are The Worst Ways Of Learning Programming? by antontech(m): 6:27pm On Mar 24, 2015
So what exactly is the right way to start learning for someone with idea of html, css, php and javascrip?
Re: What Are The Worst Ways Of Learning Programming? by antontech(m): 6:36pm On Mar 24, 2015
So what exactly is the right way to learn programming for someone with idea of html, css, javascript and PHP.
Re: What Are The Worst Ways Of Learning Programming? by Borwe: 6:55am On Mar 26, 2015
antontech:
So what exactly is the right way to learn programming for someone with idea of html, css, javascript and PHP.

Check out all head first *title of issue* books. Most interative and none boring books I have ever read.

3 Likes

Re: What Are The Worst Ways Of Learning Programming? by KazukiIto(m): 8:05am On Mar 27, 2015
Not learning C.

1 Like

Re: What Are The Worst Ways Of Learning Programming? by Borwe: 9:54am On Mar 27, 2015
KazukiIto:
Not learning C.

Learning Ruby grin grin grin
Re: What Are The Worst Ways Of Learning Programming? by Nobody: 10:43am On May 01, 2015
g
Borwe:
By going to university to learn programming

Godbless u, any person wey need sense should visit u..infact that's exactly what am facing now bro, am a graduate of CSc, but dnt even know where to start cos back then dey mk it complex for u in d uni....imagine after NYSC i want to go register at NIIT for better sense
Re: What Are The Worst Ways Of Learning Programming? by DahtzFestjayz: 10:45am On May 01, 2015
.
Re: What Are The Worst Ways Of Learning Programming? by sukkot: 10:46am On May 01, 2015
chim14:
no too much talk, the foundational worst way is not learning the basics.

This is how I started:
1) QBasic
2) Access Basic
3) Visual Basic 6.0
4) Java
5) VB.Net
6) C#.Net
7) HTML/CSS
cool PHP
9) Javascript
and with all these languages what are you able to do with it ? can you create your own facebook ? it is an objective question.

1 Like

(1) (2) (Reply)

Let's Build An App That Can Predict Bet9ja Virtual League (FUN PROJECT) / Difference Between Game Developer & Computer Programmer / Free PHP Video Tutorial Wanted

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 33
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.