Vocal health for singers – Infinivox a rising app to test by yourself

Vocal health is very important for singers, public speakers, standup comedians, lecturers, teacher or trainers. You all are highly depend on your voice. Healthy voice is the key to your success. That’s why you need to check your voice health regularly. But with your busy schedules you may not get enough time to meet your doctor regularly to check your vocal health.

Infinivox is a great innovative solution to check your voice health on your own. Vocal health is the most valuable thing for singers. If you are a singer this is the must-have app for you and you should use it daily.

So as a singer why should I use this app? What are the benefits that I’m getting through this app?

Key Vocal health measurements for singers

Infinivox provides you two major tests to measure the fitness of your voice.

1. Vocal Stamina

Maximum Phonation Time (MPT) is a simple test to find your ability to close and vibrate your vocal folds efficiently, all in tune with the breath. Generally, the longer your MPT means the grater your Vocal Stamina, which often equates to breath vocal quality and stamina.

Infinivox app allows you to do MPT daily basis and also it tracks the daily progress through graphs.

2. Pitch Glide

Everyone’s vocal range is different and day to day variations are to be expected. A Pitch Glide is one of the simplest ways to determine vocal range and the smoothness across that range. Trends in your range and smoothness overtime are good trackers of your vocal fitness.

Other than the available tests, infinivox app has a set of questionnaires to measure the vocal health. Based lon the questionnaires app calculate a score for your voice. So you can view the progress of your vocal helth by these scores.

App presents your test results and questionnaire results in the form of graphs that you can easily view the progress.

Infinivox app availabe in public beta for both iOS and Android users. You can enroll for the beta program for free through infinivox web site (https://infinivox.com) and experience the great features.

Please share with your friends and family as well and show them you care about their health.

If you are interested in photograpy these you may like these articles.

Low Key Portraits of Yash

Little Guy Living Under Leafs

Redirect default URL to custom URL in Firebase Hosting

Redirect default url to custom url in firebase hosting
Redirect default url to custom url in firebase hosting

Did you ever need to redirect the default URL of firebase hosting to a custom URL? You may ask me why do you need to do so. There are a couple of cases that we need to do so. I’m going to explain a scenario that I’ve needed to redirect the default URL to a custom URL in Firebase Hosting.

My client asked me to host his web site on Firebase Hosting and at that time he was not configured with the proper domain name. So I deployed his website and I gave him the deployed URL something like https://myapp.firebaseapp.com. So he was happy and shared that with few people that need that to test. A few days later he configured his proper domain name in firebase hosting and it is working perfectly. But the problem is the default URL that I have shared with him previously also working. He wanted to redirect that URL to the custom domain that he configured.


The problem here is firebase does not allow to cancel or redirect the default URL. So adding redirects in firebase.json won’t work. So we have to do it on our own. The simplest way that I realize is to do the redirection with JavaScript. So what you have to do is adding the below script to the bottom of your index.html page.

<script type="text/javascript">
        if (location.hostname.indexOf('custom.domain') === -1) {
            location.replace("https://custom.domain");
        }
</script>

What this script does is if the URL hostname is not equal to our custom domain the rewrite the URL to the custom domain. This method works for all the browsers that enabled the JavaScript.

Hope this will help you if you had to face the same situation as me. You can see more details here.

If you facing any performance issues with Android Studio this guide will help you to Fine-tune Android Studio with JVM options.

Happy Coding!