Skip to main content

Why I think we should invest in agriculture as a nation first.

Agriculture has always been dear to me. From a tender age when I planted Tomatoes in a seedbed in our back yard, watching them sprout from the nursery that I had careful prepared. Life of a plant is an interesting thing. From a small tiny seed comes this beautiful plant. Transplanting them later, and watching them grow to maturity.

I had forgotten how good that feeling was, I had always had it in me, and I enjoyed bringing new life to this world, plants. We as a nation need to secure food first in order to be able to move forward as a country, until a man’s basic need is fully satisfied, he is bound to poverty, having to work for food. Hence the call to invest in Agriculture, until a man doesn’t have to worry about feeding his family a man’s true potential cannot be seen.

We need to break free of this chains poverty, the chains of thinking we can’t produce enough, the chains of seeking aid from the west. Yes our country can produce more than enough, with the right technology, the right information and correct practice we should be able to feed the nation with so much ease and export the rest. Israel alone produces so much that it exports 70% of its produce, and this is a country in a semi-arid area. Why not us, why not learn from what they are doing, why not improve the practices that we use and increase the output tenfold, hundred fold.

I believe farming is the only business that you should be able to make at least 100% profit with ease and if you making not close to 100% profit, then you need to step back and learn better practices. When a man passes his basic need of food, then he can start thinking about innovations, but until that time comes we will still be bound to the chains of poverty, because most of the population are still struggling to feed themselves. It’s time we made a choice and stopped this, lets improve our agricultural practices, lets learn how to use the resources at hand, the rain, the rivers, the springs, the wells…

We have abundant natural resources, our nation shouldn’t be dealing with hunger. It’s time we broke free of the chains of hunger and moved forward. It is time we produced enough to feed the nation and others countries too…

The time has come for us to realize, this is not a farfetched dream, but a milestone that is closer than we imagine, yes we can.

We need to free out minds and realize we can do this. We need to break the chains of dependency.


“Emancipate yourself from mental slavery, none but ourselves can free our minds” - Bob Marley

Comments

Popular posts from this blog

Installing libssl1.0 on Ubuntu 22.04

Following the upgrade of distro from 20.04 to 22.04 the libssl packages got affected, this ended up causing my vpn client to fail. The client kept opening and closing immediately.  on futher investigation I found the issue as the libssl client. Attached is a screenshot of the message I was getting when I tries starting it from the terminal. Tring to install libsll1.0-dev from apt was generating the following error: Due to this installing the package was not viable via the regular way, I really didn't want to downgrade back to 20.04 as this could have meant a clean installation, and I had just come from doing that, as the upgrade wasn't successful, but I still needed to try out the new 22.04 features. Google been my best friend finally come through after a long search on how to install libssl1.0-dev. I ended up landing on this link  , here they gave some instruction on how to install libss1.0-dev. Below are the steps of installing libssl1.0-dev on ubuntu 22.04 for backward compa

Creating PDF in MVC 5 using ITextSharp

Creating PDF in MVC 5 using ITextSharp For a long time I have been looking for free and cheaper ways of creating pdf documents within MVC. I have tried all the other options and none was able to give me the standard of document I wanted. After long and tiresome nights of trying to figure out the solution I stumbled upon ItextSharp... This was my life changer. Maybe it might be for you too..  Process Download ItextSharp using the Nuget Package manager and if you prefer using command line arguments you an use: Install-Package iTextSharp full documentation to this can be retrieved here Create a class that will be used to write the data you created as a byte array. How this works can be found here  or here   public class BinaryResult : ActionResult { private byte[] _fileBinary; private string _contentType; private string _fileName; public BinaryResult(byte[] fileBinary, string contentType, string fileName) { _fileBinary = f

Converting DateTime C# to DateTime.UTC javascript

Here is a simple way to change a C# datetime to a javascript Datetime.UTC value that can be used in the highcharts pointstart field. In C# private double DateUTCDate(DateTime date) { return date.Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds } This will return a value that can be used directly in javascript series: { pointStart: dataFromCsharp, pointInterval: 3600 * 1000 // one day } highcharts pointstart only used Date.UTC values if you are timestamp for the x-axis