Skip to main content

THE COST OF BECOMING A SOFTWARE PROGRAMMER


Looking at the huge number of free software in the internet today, one would think that programming a software is one of the easiest thing to do, OK, even if it is the easiest thing to do, is learning to write program an easy thing to do? If you ask me, I would say NO. The fact is that the cost of becoming a software developer is high. If you decide to take a programming course, you pay and if you decide to teach yourself, you buy a computer, books, pay for internet service in the cafe or get a data plan from an ISP. Which ever way you choose to pursue a career in programming, the cost of becoming a programmer is still high. And be rest assured that having these materials (I mean the books and computers) is still not a guarantee that you will become a coder. You need to love it, you need enough time and the brain too to become a programmer.



If the cost of becoming a programmer is as expensive as this, why are there so many free software out there? A question I ask myself every day. Why do people work so hard every day just to create something that will not fetch them money. The answer to this question is, no matter what happens, there will always be heroes among us. I read a book which told me that people work for two main reasons: Money and Fame. Some people work for money, why some work because they want to be famous/popular ( Please help me in differentiating Famous and Popular, English is not my Mother's language).
Someone told me that programmers use some of these software to tell the world that they can do the job, but what about these software that has no trace of the owners? Maybe some of these developers are being supported by companies or the users of their programs, because irrespective of the programs not being sponsored, these developers still keep on maintaining these software and some of these software have no Ads on them.
I really don't know why this happens, but the fact still remains that the paid or supported software are still more reliable, because you always have somebody at the other end who is ready to tell you what to do when something goes wrong with the product, and the products are being maintained, issues are being fixed. Because no software is perfect, they become perfect with time. That's why you see programs like Microsoft Visual Studio, Adobe Photoshop, CorelDraw, etc. excelling with new versions being released every year. Yes, big companies are behind the programs I listed above, should these big companies not be the one giving out programs for free?, of course they are rich and they should give out the programs free of charge for charity. But have you wondered why it might never happen? You have guessed it! They are in business, if they start giving everything for free, they will run out of fund and there will be little or no money to pay their employees.
If these companies can't give out their programs for free, why should a single person build a whole software that looks similar to the company's product only to give it out for free? Believe it or not, releasing a software to the public is not just where it ends, you have to provide the users of your program a good technical support and you also have to work hard to perfect your product. So why not add a price tag at the initial release of the product or look for someone to sponsor the project. Yes, we have heard people saying "I'm not interested in making profit". That is not true when it comes to software development, you might not be interested in making money profit, but there is just something you look forward to achieving and that thing will always lead to money if you decide to follow its trail. Some people say "software development is my hobby". Tuaaa!, STORY FOR THE gods! How can you be working five hours daily for 6 months just to develop a full program in the name of "It is my hobby"? If software development is your hobby, what is now your profession? Well, if that's the case, you might be having a very terrible career, because your hobby takes more of your time than your profession. Another fact is that most of these programs are not being developed by school kids, they being developed by men.
Here are some advice to some developers:
If you are going to release a free software, make it an open source project so that other developers can download the source and work on it, in that way you can be rest assured that the project will always be supported and  updated. Don't just compile and release only the binaries without the source, it will make you work hard for nothing especially when there are many users of the program.
Seek for sponsors or support if you are to develop a very complex and useful software you plan to release for free.

Having witnessed the full life cycle of a software and the headache involved,  I know what it takes to make a complete software, So I wrote this post based on my experience. Please tell me what you think in the comment section. Thanks for reading.

Comments

Popular posts from this blog

HOW TO WRITE, COMPILE AND RUN C++ CODE ON LINUX KALI

Developing a C++ Program on Kali Linux Without Installing Additional Software This article is for hackers who want to develop a C++ program on Kali Linux without installing any additional software. Some might say you need to install a separate compiler or extra tools to write and run a simple C++ program on Kali Linux. However, I’ll show you how to do it right out of the box. Pre-installed C++ Compiler in Kali Linux Kali Linux comes with a pre-installed C++ compiler called g++ . We will use this to write and compile a basic "Hello, World!" program. Step 1: Check if g++ is Installed Open your terminal and run the following command: g++ -v If the compiler is installed, you should see version details. If not, you will get an error message. Step 2: Create a C++ File In your terminal, type: nano MyCpp.cpp This will create a C++ file and open it in the Nano editor. Step 3: Write the C++ Code Once Nano opens, enter the following C++ code: #include <...

HOW TO INSTALL BLOGENGINE.NET WITH VISUAL STUDIO.

Yes there are lots of article on the internet that already describes how to do this, but that wont stop me from sharing my own idea on how I got mine rocking with visual studio 2012. Now here is the story, I woke up one morning and discovered I was departing from being a beginner programmer to a programmer who is at least worthy to be called a programmer. So I felt I needed to share my programming experience and the only known way I could do that, was to start blogging, hmmm... Just like you, I didn't like blogger, I needed  to be my own boss. So, I started my own blog project, but wait....  Why was I doing that when there are open source blog projects being developed and maintained by developers who are more "programmatically" experienced than I?. BlogEngine was the one I chose and the installation was a breeze. All I did was go to the site, downloaded the first zip file which is tagged "web", extracted it to my visual studio project directory, opened vi...

How to Check Logs or Journal of a Specific Service on Linux

Monitoring logs is an essential part of system administration. On Linux, logs help diagnose issues and track service behavior. This guide covers various ways to check logs for a specific service. Using journalctl for Systemd Services Most modern Linux distributions use systemd , and logs are stored in the journal. To view logs for a specific service, use: journalctl -u service-name.service Example for Nginx: journalctl -u nginx.service Viewing Real-Time Logs To follow logs in real time, use: journalctl -u service-name.service -f This is similar to tail -f for traditional log files. Checking Logs with a Time Filter To see logs from the last 1 hour: journalctl -u service-name.service --since "1 hour ago" For logs between two timestamps: journalctl -u service-name.service --since "2024-02-01 10:00" --until "2024-02-01 12:00" Using Traditional Log Files Some services log to files in /var/log/ . Check: ls /var/log/ For example, Nginx lo...