Skip to main content

How to use KenyaCountyFactApp: the CRA (Commission of Revenue Allocation) county fact sheets in the palm of your hand.

KenyaCountyFactApp


This application brings the Kenya County Fact Sheet to the palms of your hands. The application consists of two main pages. The first one been the list of counties 




and the second one been a tabbed page divided into five sections
1.     Constituencies –this gives the constituency information about the county and the voters registered for the last general election. The data is displayed both in table form and graphical for


2.     County information: this tab shows all the facts about the county, they are divided into five, general information that deals with population mainly, health and education that focuses on medical and educational facts, funding per capita this shows how funds have been allocated, access to infrastructure this show facts how amenities are distributed and finally service coverage show how various services are been offered

3.     Fund allocation: this shows how CDF and rural electrification allocation funds have been issued since 2005
4.     Map: show shows the county map and the population density


This application it good for decision makers, people interested in know how their various counties are faring on, and also for general knowledge on progress in various counties

The applications will be updated on a batch series, in that when a group on information in one of the four above categories changes it will be updated.




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