Skip to main content

LeadingEconIndicator how to use

App link:

LeadingEconIndicator v 1.0

This application can be used to get basic statistical economic indicator information.  Currently it only has the macro economic section. This comprises of CPI, Inflation, Forex, Interest rates, and NSE.

On selecting a particular category one will be able to get a summarized version for the last one year. For a detailed summary of the month details one has to select a specific month then more information will be presented. Every item has a tabular representation and a graphical representation too.

How to use this app:
1. current we only have one selection that deals with macro economic indicators:
selecting CPI brings the next page

 2. after selecting CPI. This will bring you a tabular representation of a summarized view of the CPI within nairobi, other provinces except nairobi and finally the Kenya CPI.
 3. The trend tab represented the details in a graphical way but for the last six months only. This was provided to give e a visual impression on how the CPI is doing on a monthly level    














4. This is the description page that you get to after selecting a particular month so that you can be able to see all the details available that month. e.g. for CPI some details about Nairobi lower level, middle level, and upper lever are not displayed in the summary window.

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 comp...

Why I like programming for windows phone.

Haven't been programming for windows for a long time now, but am looking at a bright future with microsoft. This is one programing language that I feel listens to my needs as a developer. with laid down rules on how to do things, fluid displays, streamline scrolling, bright colours. There is nothing to like about this platform. Applications that would take me months in other language take me less time when doing them for windows.  I would like to hear your story too... why do you like developing window phone applications?

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) { _...