kumar_abhishek

Kumar Abhishek, a technology leader in the field of engineering, brings more than 11 years of valuable experience in software testing to the table. He is deeply passionate about nurturing world-class engineering teams characterized by high skill levels, motivation, and exceptional efficiency. Abhishek has successfully led engineering teams in the creation of innovative software test systems that are robust, scalable, sustainable, and aligned with business objectives. He brings expertise in live and on-demand video streaming, and internet-based content delivery networks (CDNs) which enables him to contribute significantly to the success of projects and initiatives. Throughout his career, he has consistently demonstrated his ability to establish, oversee, and guide exceptionally efficient engineering teams.

Abhishek is esteemed in the industry, acting as an expert judge for both the Globee Award for Technology and the Globee Award for Disruptor in 2024. Moreover, he secured the Gold award in Titan Business Award in 2024, under the category "Management - Best Quality Management Strategy". Abhishek's expertise extends to speaking engagements at various software conferences, and he holds the title of IEEE Senior member.

Abhishek has a proven track record of delivering high-quality products and solutions for various networking and streaming clients, such as Hotstar, Amazon Prime, Apple, and Netflix. I also have a strong background in product management, AI, and marketing, with credentials from BITS Pilani, IIIT Bangalore, and IIM Calcutta. I am passionate about AI and its applications in NLP.
  • Skills: AI, NLP, Software Testing

Blogs

AI: Blog a Day – Day 8: RAG – Retrieval Augmented Generation

By

RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...

AI: Blog a Day – Day 7: Vector and Vector Databases

By

Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...

AI: Blog a Day – Day 6: Embeddings – How AI Understands

By

Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...

Read the latest Blogs

Forums

Not Just an Upgrade

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Not Just an Upgrade

Restoring On Top I

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Restoring On Top I

Designing Delta Tables with Liquid Clustering: Real-World Patterns for Data Engineers

By mehul.bhuva@gmail.com

Comments posted to this topic are about the item Designing Delta Tables with Liquid...

Visit the forum

Question of the Day

Restoring On Top I

I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?

USE Master
BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak'
GO

USE DNRTest
GO
CREATE TABLE MyTest(myid INT)
GO
USE master
RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACE

See possible answers