Tag: OOP
-
You will most certainly love this reading about coding
If you want to be a relevant developer 5, 10 or 15 years to come, don’t make no mistake and ditch JavaScript.Avoid the hype of emerging frameworks if you don’t trust your JavaScript vanilla knowledge and skills. Of course many smart developers in your network will put up a strong challenge which will most certainly make you feel irrelevant but man up and stick to what’s fundamentally right.Don’t take it for granted, if you have strong vanilla skills you would be able to learn and grasp almost any JavaScript framework or library or plugin in less than 72 hours or so.Have an understanding that competent developers, don’t work solo, they have an ecosystem consisting of teams. You’d rather code a process in vanilla that you understand than copying and pasting some library code in the app but you can’t answer why, what, when and how. Efficient software is developed by patient and efficient coders.On top of that learn C++ or Java which languages have been around for forever on top of having top notch OOP maturity level. Which any JS library is embracing but sometimes it’s harder to grasp in JavaScript if you don’t compare it to how it’s done in another language.Since most processes in JS are asynchronous it’s the not the same in JAVA and C++ perhaps giving you a big opportunity to understand both entirely.Last but not least, relevancy is subjective though the more efficient solutions you put out in production is relative to the large number of human problems you are helping to solve but you can’t achieve that if you don’t learn and practice breaking down complex tasks into simple modules on paper before getting your hands dirty. -
Learn to develop web applications the modern way – Part 3
In the programming industry like others, you will find many terms(vocabulary) which are not usual in common speech. In this article of the series about “learning how to develop web applications in the modern way”, allow me introduce to some of those terms. In case you missed reading some parts, click here to read part one or click an item in the table of contents below.
- Prerequisite
- Web design vs Web applications development
- Extending is smart!
- Components of a Web application.
- Powering web applications with WordPress
- The do list application
What is extending in programming?
In simple terms it’s the opposite of developing applications from scratch. In detail it means a coder will write his/her own application from the start to finish without using and relying on other programmers code. Therefore to extend is when a coder starts with someone’s code to develop an application or feature.
In Object Oriented Programming paradigm, to extend means to derive/instantiate objects which inherit features in terms of method and properties from existing class(es).
What are the advantages of extending?- It makes programming a lot easier because you don’t have to write every line of code by yourself.
- It is cheaper than starting from scratch which will require a bigger team and tools for the team besides investing in the team to learn how to work together.
- Availability of help from all corners though this depends on the choice of framework. Most programmers choose a framework which has a large number of contributors, the profile of the founder, the number of tools in place and how old it is.
- Easier learning curve due to availability and supply of learning material on top of a comprehensive documentation.
- Ask me how people become better than others at coding and I will tell you that the secrete is hidden in reading code written by others whether good or bad coders.
My personal recommendation is to spend more time creating solutions than learning how to create solutions. In the upcoming part, share about the basic and major components of a Web application.
Merry Christmas and a marvelous New year.