Skip to main content

Why I quit Figurine fitness

I had it on my mind from long though never penned it. This post is dedicated to all those work out freaks that are befooled by their trainer in to buying costly food supplement specifically at higher price then what is available in market. In this post I am not being critical of gym but I question all those trainers who forget their profession and mint money by fooling their clients.

Same happened with me and I have no qualms accepting it, I am rather glad that I realized it and moved out from gym.

It started in month of Jan 2009 when I joined Figurine fitness located in Jaynagar (as I said earlier I have nothing against gym in fact they have some of the most proficient and hard working trainers I have seen, but it’s because of my trainer I developed antipathy against gym!).

Inception of gymming was great. I was allocated a trainer who would teach me when to do what. After a couple of weeks my trainer asked me to start taking supplements as I needed extra protein to build up muscles (given that my body type is lean). My trainer asked another trainer to arrange for supplement for me.

This continued for a couple of months. I feel something went wrong between my trainer and other trainer who was arranging supplements for me. So my trainer asked me to not take supplements from other trainer and tell him that I would it from market (I was certainly lying for sake of my trainer). After this my trainer started providing me supplements. I realized that size of supplements packs had reduced but price had increased, when I enquired in market I found that same product was available in as less as 2000/-. At this point I decided to move out of that gym and joined another gym.

I could have done following –

1. Speak to my trainer

2. Speak to gym management

I thought of speaking to management but then they are not the one who asked me take supplements from trainer. And this would have only created resentment b/w trainer and me.

I quietly moved out of gym and join Legend Fitness, will jot down in another post as to why I have been able to continue with my current gym past more than 6 months, and hopefully in the future as well.

Comments

  1. Hi,
    I am Vinutha, currently managing Jaynagar FF. Firstly let me appriciate you for putting up mal-practices happening on the gym floor about which management is not aware and not in control.
    Coming to taking supplements, ofcourse, it is required.But one should always take advice from a sports nutritionist, who can make your nutrition plan as per your body type and intensity of workout. Please get in touch with me for eloborate discussion on 9945422994/26712201. I am a internatioanally certified Weight training personal trainer & sport nutritionist and would definately be glad to enlighten you on the topic.

    Regards
    Vinutha

    ReplyDelete
  2. I received a mail from Santosh (Director--Figurine Fitness) today and I am really happy that he offered help. Here is the abstract of mail I received -

    #####################################Hi Tarun,



    Its unfortunate that fitness enthusiasts like yourself could not bring it to the notice of the management it would have helped us to check it right then never the less we have figured out on our own who the two trainers where based on a clue we received and punished them for these acts that where on for a brief while. We have also put up a notice that says the trainers are only qualified to train and not suggest nutrition or supplements for which we have professional nutritionists who sit there.



    On the other end these supplements most often do not work and also can be counterproductive if not prescribed by body type and keeping in mind the progressive response of protein assimilation.



    Please feel free to visit our nutritionists and we will be glad to assist you and we really regret the inconvenience and embarrassment caused to you and we will surely make it up to you.



    Regards,



    SANTHOSH KUMAR

    Director--Figurine Fitness
    www.figurinefitness.in
    Phone +91 80 25294019
    Mobile +91 98450 32994
    santosh@figurinefitness.in
    ###################################

    ReplyDelete

Post a Comment

No spam only genuine comments :)

Popular posts from this blog

Verify email confirmation using Selenium WebDriver

Note: If you are new to java and selenium then start with selenium java training videos .   How to Verify Email Confirmation Using Selenium 4 and JavaMail (2026 Guide) Email confirmation is a critical part of most registration flows — account activation, password reset, multi-factor authentication, and onboarding. Every automation engineer eventually faces the same challenge: How do you verify an email confirmation link inside a Selenium test without making it slow and flaky? The wrong instinct is to automate Gmail's UI with Selenium. It's fragile, slow, and breaks constantly. The right approach: Use Selenium for browser automation Use JavaMail (IMAP) to read the email directly Extract the confirmation link Continue the test in Selenium Why Not Automate Gmail UI With Selenium? Automating the Gmail UI means logging in, searching, clicking a message, and parsing content from a third-party interface that changes frequently. This leads to: Flaky...

Using xPath to reach parent of an element

Note: If you are new to java and selenium then start with selenium java training videos .   I generally prefer CSS selectors over XPath when writing Selenium locators. CSS selectors are concise, readable, and usually provide everything I need. However, there are situations where XPath is a better fit—particularly when I need to navigate through an element's hierarchy, such as moving from an element to its parent, grandparent, or sibling. This post shows one such real-world example. The Problem I came across a situation where I needed to click a link based on the value of an input field. The HTML structure contained multiple similar groups of elements. The input field and the link I wanted to click were not directly related, but they shared a common parent structure. In the following example above, the input element is highlighted, and I need to click the corresponding anchor ( <a> ) element . The challenge is that there may be multiple similar structures on the page. I th...

Real Time JMeter Result Using Backend Listener

Since JMeter 2.13 Backend Listener has been available to create real time graph of JMeter Test. Following tutorial explain the entire process in detail. At the end of this tutorial you would be able to create JMeter Live Test Result dashboard similar to following - This tutorial borrows information from many sources and my own experiments with JMeter live reporting dashboard. I have added source of information wherever applicable But before we can build such a snazzy JMeter Live Reporting dashboard we need to understand two more components - influxDB (a time series database) and Grafana Dashboard This is a big tutorial, so take deep breath :-) and follow on. Once you complete set up specified in this tutorial then you can watch JMeter Training Video Tutorial to watch this in action. What is Time Series Database? A time series is a sequence of data points , typically consisting of successive measurements made over a time interval . Examples of time ...