π― MINI CHALLENGE #3
Task: Filter Excel data
Given: sales.xlsx with columns:
β’ Name
β’ Department
β’ Salary
Filter:
1. Department = 'IT'
2. Salary > 50000
3. Save to new file
Use pandas!
β° 20 minutes
Solution tomorrow π
Hint: Use df[condition]
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
Task: Filter Excel data
Given: sales.xlsx with columns:
β’ Name
β’ Department
β’ Salary
Filter:
1. Department = 'IT'
2. Salary > 50000
3. Save to new file
Use pandas!
β° 20 minutes
Solution tomorrow π
Hint: Use df[condition]
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
Telegram
@Codingdidi
Free learning Resources For Data Analysts, Data science, ML, AI, GEN AI and Job updates, career growth, Tech updates
β€2
β
CHALLENGE SOLUTION
π‘ Tips:
β’ Use & for AND
β’ Use | for OR
β’ Use () around conditions
Kisne solve kiya? π
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
import pandas as pd
df = pd.read_excel('sales.xlsx')
filtered = df[
(df['Department'] == 'IT') &
(df['Salary'] > 50000)
]
filtered.to_excel(
'filtered_sales.xlsx',
index=False
)
print(f"Found {len(filtered)} records")
π‘ Tips:
β’ Use & for AND
β’ Use | for OR
β’ Use () around conditions
Kisne solve kiya? π
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
Telegram
@Codingdidi
Free learning Resources For Data Analysts, Data science, ML, AI, GEN AI and Job updates, career growth, Tech updates
β€3
π RESOURCE DROP!
Ultimate Python Cheatsheet:
π Data Types
π Loops & Conditions
π Functions
π File Handling
π Error Handling
π OOP Basics
π Common Libraries
π Best Practices
All in 1 PDF! π
Download link: [https://www.dataquest.io/wp-content/uploads/2024/09/Python-Cheat-Sheet.pdf]
πΎ Save kar lo!
Print karke desk pe rakho! π¨
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
Ultimate Python Cheatsheet:
π Data Types
π Loops & Conditions
π Functions
π File Handling
π Error Handling
π OOP Basics
π Common Libraries
π Best Practices
All in 1 PDF! π
Download link: [https://www.dataquest.io/wp-content/uploads/2024/09/Python-Cheat-Sheet.pdf]
πΎ Save kar lo!
Print karke desk pe rakho! π¨
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
β€1
Big Data Analytics (2024).pdf
8.4 MB
π Big Data Analytics
ββββββββββββββββββ
Theory, Techniques & Platforms
π¨βπ« Authors:
β’ Γmit Demirbaga
β’ Gagangeet Singh Aujla
β’ Anish Jindal
β’ OΔuzhan Kalyon
ββββββββββββββββββ
π What youβll learn:
ββββββββββββββββββ
β Big Data fundamentals
β Analytics concepts & theory
β Modern techniques & methodologies
β Big Data platforms & ecosystems
β Real-world analytical approaches
ββββββββββββββββββ
π― Who should read this?
ββββββββββββββββββ
β’ Data Analytics learners
β’ Big Data beginners
β’ Engineering / CS students
β’ Anyone exploring data-driven systems
ββββββββββββββββββ
π₯ Book shared below
ββββββββββββββββββ
Happy learning π
Stay consistent. Stay curious. π‘
ββββββββββββββββββ
Theory, Techniques & Platforms
π¨βπ« Authors:
β’ Γmit Demirbaga
β’ Gagangeet Singh Aujla
β’ Anish Jindal
β’ OΔuzhan Kalyon
ββββββββββββββββββ
π What youβll learn:
ββββββββββββββββββ
β Big Data fundamentals
β Analytics concepts & theory
β Modern techniques & methodologies
β Big Data platforms & ecosystems
β Real-world analytical approaches
ββββββββββββββββββ
π― Who should read this?
ββββββββββββββββββ
β’ Data Analytics learners
β’ Big Data beginners
β’ Engineering / CS students
β’ Anyone exploring data-driven systems
ββββββββββββββββββ
π₯ Book shared below
ββββββββββββββββββ
Happy learning π
Stay consistent. Stay curious. π‘
β€3
I rarely say this, but this is the best repository for mastering Python.
The course is led by David Beazley, the author of Python Cookbook (3rd edition, O'Reilly) and Python Distilled (Addison-Wesley).
In this PythonMastery.pdf, all the information is structured
πΎ Link: https://github.com/dabeaz-course/python-mastery/blob/main/PythonMastery.pdf
In the Exercises folder, all the exercises are located
πΎ Link: https://github.com/dabeaz-course/python-mastery/tree/main/Exercises
In the Solutions folder β the solutions
πΎ Link: https://github.com/dabeaz-course/python-mastery/tree/main/Solutions
Happy Learning!! π
The course is led by David Beazley, the author of Python Cookbook (3rd edition, O'Reilly) and Python Distilled (Addison-Wesley).
In this PythonMastery.pdf, all the information is structured
πΎ Link: https://github.com/dabeaz-course/python-mastery/blob/main/PythonMastery.pdf
In the Exercises folder, all the exercises are located
πΎ Link: https://github.com/dabeaz-course/python-mastery/tree/main/Exercises
In the Solutions folder β the solutions
πΎ Link: https://github.com/dabeaz-course/python-mastery/tree/main/Solutions
Happy Learning!! π
GitHub
python-mastery/PythonMastery.pdf at main Β· dabeaz-course/python-mastery
Advanced Python Mastery (course by @dabeaz). Contribute to dabeaz-course/python-mastery development by creating an account on GitHub.
β€1
Most developers are stuck in copy-paste mode
Thatβs why they never improve
So I simplified a viral project
into something you can actually understand
Inside:
β Clean 60-line code
β Step-by-step explanation
β Deep dive into how it really works
Donβt just run it
Understand it
Code Explanation: https://www.youtube.com/watch?v=O1kff3z4XhU
Code reference: https://github.com/Akansha-yadav24/hand-draw-opencv/blob/main/README.md
Then understand deeply: https://shorturl.at/cY8Rt
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
Thatβs why they never improve
So I simplified a viral project
into something you can actually understand
Inside:
β Clean 60-line code
β Step-by-step explanation
β Deep dive into how it really works
Donβt just run it
Understand it
Code Explanation: https://www.youtube.com/watch?v=O1kff3z4XhU
Code reference: https://github.com/Akansha-yadav24/hand-draw-opencv/blob/main/README.md
Then understand deeply: https://shorturl.at/cY8Rt
Share with Credit https://t.me/codingdidi
Double Tap β₯οΈ For More
YouTube
I Built This Viral AI Project in 60 Lines (Full Breakdown)
Most people are building this viral air drawing project.
Very few actually understand it.
In this video, I break it down from scratch.
No shortcuts. No copy-paste thinking.
Just ~60 lines of code.
And complete clarity.
Youβll learn how this actually works:β¦
Very few actually understand it.
In this video, I break it down from scratch.
No shortcuts. No copy-paste thinking.
Just ~60 lines of code.
And complete clarity.
Youβll learn how this actually works:β¦
Opportunity alert for my community Machine Learning Engineer at Grid Dynamics Bengaluru, Karnataka, IN
I've been curating the best opportunities for you all, and this one is worth checking out. If you've been looking to level up, this could be it.
Apply here: https://artha.link/@codingdidi/jobs/machine-learning-engineer-grid-dynamics-bengaluru-8a40a954
I've been curating the best opportunities for you all, and this one is worth checking out. If you've been looking to level up, this could be it.
Apply here: https://artha.link/@codingdidi/jobs/machine-learning-engineer-grid-dynamics-bengaluru-8a40a954
artha.link
Machine Learning Engineer
Total Experience- 4-6 years NP- Immediate-15 days Location- Bangalore A mid-level ML/Deep-Learning engineer who can do model development & training on text data... | artha.link
Job title: Machine learning engineer (Gen AI)
Location: Bangalore
experience: 4 To 7Years
Key responsibilities
- Advise clients on GenAI use cases, strategies, and provide feedback for product roadmap
- Evaluate and recommend suitable GenAI models and solutions for clientβs problem statement
- Design and prototype GenAI features and applications, focusing on user needs and value
- Keep up with the latest advancements in AI technologies, including Gen AI and the latest features of popular tools (RAG)
- Collaborate with engineering and design teams to ensure successful product integration
- Collect, clean, and preprocess data using appropriate tools and libraries, ensuring compatibility with AI algorithms and frameworks
- Train, test, and evaluate AI models employing appropriate evaluation metrics
- Optimize and fine-tune models for performance, scalability and efficiency
- Implement and deploy AI solutions in production environments under different frameworks
- Ability to build applications and use appropriate prompting on generative AI models
- Strong experience in Natural Language Processing, Large Language Models, and RAG approaches
- Assess the ethical implications and risks associated with GenAI product deployments
- Support pre-sales activities by providing GenAI expertise and contributing to product roadmaps
Skills and attributes for success - To qualify for the role you must have
- Bachelor's /Master's degree in computer science, data science, engineering, or a related field.
- Strong hands-on background in AI, machine learning, deep learning, and statistical modeling
- Proficiency in programming languages such as Python, Java
- Strong understanding of existing GenAI services
- Strong understanding of data structures, algorithms and AI project lifecycle
Apply Link: https://artha.link/@codingdidi/jobs/machine-learning-engineer-edgeverve-bangalore-ddc7f30c
Location: Bangalore
experience: 4 To 7Years
Key responsibilities
- Advise clients on GenAI use cases, strategies, and provide feedback for product roadmap
- Evaluate and recommend suitable GenAI models and solutions for clientβs problem statement
- Design and prototype GenAI features and applications, focusing on user needs and value
- Keep up with the latest advancements in AI technologies, including Gen AI and the latest features of popular tools (RAG)
- Collaborate with engineering and design teams to ensure successful product integration
- Collect, clean, and preprocess data using appropriate tools and libraries, ensuring compatibility with AI algorithms and frameworks
- Train, test, and evaluate AI models employing appropriate evaluation metrics
- Optimize and fine-tune models for performance, scalability and efficiency
- Implement and deploy AI solutions in production environments under different frameworks
- Ability to build applications and use appropriate prompting on generative AI models
- Strong experience in Natural Language Processing, Large Language Models, and RAG approaches
- Assess the ethical implications and risks associated with GenAI product deployments
- Support pre-sales activities by providing GenAI expertise and contributing to product roadmaps
Skills and attributes for success - To qualify for the role you must have
- Bachelor's /Master's degree in computer science, data science, engineering, or a related field.
- Strong hands-on background in AI, machine learning, deep learning, and statistical modeling
- Proficiency in programming languages such as Python, Java
- Strong understanding of existing GenAI services
- Strong understanding of data structures, algorithms and AI project lifecycle
Apply Link: https://artha.link/@codingdidi/jobs/machine-learning-engineer-edgeverve-bangalore-ddc7f30c
artha.link
Machine Learning Engineer
Job title: Machine learning engineer (Gen AI) Location: Bangalore experience: 4 To 7Years Key responsibilities Advise clients on GenAI use cases, strategies, an... | artha.link
β€1
Weβre Hiring: DevOps Engineer (Lead / Intermediate) | Toronto (Hybrid)
Looking for your next DevOps opportunity? Weβre hiring a hands-on DevOps Engineer to join a leading banking client in Toronto. If you enjoy building CI/CD pipelines and working on real-world deployments, this could be a great fit.
Location: Toronto (Bay Street) β Hybrid (2 days onsite/week)
Type: Contract (12 months + extensions)
Rate: Market rate (40 hours/week)
Start Date: Immediate
What Youβll Do:
β’ Build GitHub Actions workflows from scratch
β’ Develop CI/CD pipelines for Java / Spring Boot applications
β’ Deploy and manage applications on OpenShift (Kubernetes)
β’ Collaborate with DevOps and development teams
β’ Troubleshoot and optimize deployment pipelines.
What Weβre Looking For:
β’ 2β5 years of experience (Intermediate to Lead level)
β’ Strong hands-on experience with GitHub Actions (must-have)
β’ Experience with Java / Spring Boot
β’ Hands-on exposure to OpenShift / Kubernetes
β’ CI/CD pipeline development experience
β’ Knowledge of Docker and Linux/Unix
β’ Cloud exposure (AWS/Azure) is a plus.
Ideal Candidate:
β’ Hands-on contributor with a problem-solving mindset
β’ Takes ownership and thrives in a fast-paced environment
β’ Eager to learn and grow
Interested?
DM me or email your resume to priya@csican.com with details of your experience in GitHub Actions, Spring Boot, and OpenShift.
Looking for your next DevOps opportunity? Weβre hiring a hands-on DevOps Engineer to join a leading banking client in Toronto. If you enjoy building CI/CD pipelines and working on real-world deployments, this could be a great fit.
Location: Toronto (Bay Street) β Hybrid (2 days onsite/week)
Type: Contract (12 months + extensions)
Rate: Market rate (40 hours/week)
Start Date: Immediate
What Youβll Do:
β’ Build GitHub Actions workflows from scratch
β’ Develop CI/CD pipelines for Java / Spring Boot applications
β’ Deploy and manage applications on OpenShift (Kubernetes)
β’ Collaborate with DevOps and development teams
β’ Troubleshoot and optimize deployment pipelines.
What Weβre Looking For:
β’ 2β5 years of experience (Intermediate to Lead level)
β’ Strong hands-on experience with GitHub Actions (must-have)
β’ Experience with Java / Spring Boot
β’ Hands-on exposure to OpenShift / Kubernetes
β’ CI/CD pipeline development experience
β’ Knowledge of Docker and Linux/Unix
β’ Cloud exposure (AWS/Azure) is a plus.
Ideal Candidate:
β’ Hands-on contributor with a problem-solving mindset
β’ Takes ownership and thrives in a fast-paced environment
β’ Eager to learn and grow
Interested?
DM me or email your resume to priya@csican.com with details of your experience in GitHub Actions, Spring Boot, and OpenShift.
β€1
Role: Customer Data Platform Engineer
Required
- 5+ years of experience in Data Engineering, Martech Engineering, CDP, CRM, or related roles
- Bachelorβs or Masterβs degree in Computer Science, Information Technology, or a related field is preferred.
Preferred
- Experience with AWS, Azure and/or Google Cloud
- Familiarity with Python, Spark and/or workflow tools such as Airflow
Why join
- Be part of a new strategic organization within Honda
- Work on high-impact business and customer challenges
- Gain exposure to digital platforms, mobility, and growth strategy
- Strong learning and career development opportunities.
Apply Link: https://artha.link/@codingdidi/jobs/customer-data-platform-engineer-honda-bangalore-015ca9fe
Required
- 5+ years of experience in Data Engineering, Martech Engineering, CDP, CRM, or related roles
- Bachelorβs or Masterβs degree in Computer Science, Information Technology, or a related field is preferred.
Preferred
- Experience with AWS, Azure and/or Google Cloud
- Familiarity with Python, Spark and/or workflow tools such as Airflow
Why join
- Be part of a new strategic organization within Honda
- Work on high-impact business and customer challenges
- Gain exposure to digital platforms, mobility, and growth strategy
- Strong learning and career development opportunities.
Apply Link: https://artha.link/@codingdidi/jobs/customer-data-platform-engineer-honda-bangalore-015ca9fe
artha.link
Customer Data Platform Engineer
Company Description Honda Motor Co., Ltd., Japan is establishing a new Digital Innovation entity in India to accelerate growth through customer intelligence, di... | artha.link
β€1
ππ’π©π«π¨
Position: Junior Data Science
Qualifications: Bachelorβs/ Masterβs degree
Experience: Freshers/ Experienced
Location: Bengaluru, India
πApply Now: https://careers.wipro.com/job/JUNIR-DATA-SCIENCE/151455-en_US
Position: Junior Data Science
Qualifications: Bachelorβs/ Masterβs degree
Experience: Freshers/ Experienced
Location: Bengaluru, India
πApply Now: https://careers.wipro.com/job/JUNIR-DATA-SCIENCE/151455-en_US
β€1
Role: Senior Software Engineer (python + Fastapi + Aws + Generative Ai))
Work Location - Remote (Hybrid for Jaipur and Hyderabad)
Experience - 5-12 years
Skills Required - Python, Fast API, RAG, Gen Ai
Notice Period - Immediate or serving
Apply Link: https://artha.link/@codingdidi/jobs/senior-software-engineer-python-fastapi-programmers-io-uttar-pradesh-4bc7a31d
Work Location - Remote (Hybrid for Jaipur and Hyderabad)
Experience - 5-12 years
Skills Required - Python, Fast API, RAG, Gen Ai
Notice Period - Immediate or serving
Apply Link: https://artha.link/@codingdidi/jobs/senior-software-engineer-python-fastapi-programmers-io-uttar-pradesh-4bc7a31d
artha.link
Senior Software Engineer (python, Gen Ai, Ai/ml)
We are seeking an experienced Senior Software Engineer β Python + AI/ML & Generative AI The ideal candidate will have strong hands-on expertise in machine l... | artha.link
π Key Skills for Aspiring Tech Specialists
π Data Analyst:
- Proficiency in SQL for database querying
- Advanced Excel for data manipulation
- Programming with Python or R for data analysis
- Statistical analysis to understand data trends
- Data visualization tools like Tableau or PowerBI
- Data preprocessing to clean and structure data
- Exploratory data analysis techniques
π§ Data Scientist:
- Strong knowledge of Python and R for statistical analysis
- Machine learning for predictive modeling
- Deep understanding of mathematics and statistics
- Data wrangling to prepare data for analysis
- Big data platforms like Hadoop or Spark
- Data visualization and communication skills
- Experience with A/B testing frameworks
π Data Engineer:
- Expertise in SQL and NoSQL databases
- Experience with data warehousing solutions
- ETL (Extract, Transform, Load) process knowledge
- Familiarity with big data tools (e.g., Apache Spark)
- Proficient in Python, Java, or Scala
- Knowledge of cloud services like AWS, GCP, or Azure
- Understanding of data pipeline and workflow management tools
π€ Machine Learning Engineer:
- Proficiency in Python and libraries like scikit-learn, TensorFlow
- Solid understanding of machine learning algorithms
- Experience with neural networks and deep learning frameworks
- Ability to implement models and fine-tune their parameters
- Knowledge of software engineering best practices
- Data modeling and evaluation strategies
- Strong mathematical skills, particularly in linear algebra and calculus
π§ Deep Learning Engineer:
- Expertise in deep learning frameworks like TensorFlow or PyTorch
- Understanding of Convolutional and Recurrent Neural Networks
- Experience with GPU computing and parallel processing
- Familiarity with computer vision and natural language processing
- Ability to handle large datasets and train complex models
- Research mindset to keep up with the latest developments in deep learning
π€― AI Engineer:
- Solid foundation in algorithms, logic, and mathematics
- Proficiency in programming languages like Python or C++
- Experience with AI technologies including ML, neural networks, and cognitive computing
- Understanding of AI model deployment and scaling
- Knowledge of AI ethics and responsible AI practices
- Strong problem-solving and analytical skills
π NLP Engineer:
- Background in linguistics and language models
- Proficiency with NLP libraries (e.g., NLTK, spaCy)
- Experience with text preprocessing and tokenization
- Understanding of sentiment analysis, text classification, and named entity recognition
- Familiarity with transformer models like BERT and GPT
- Ability to work with large text datasets and sequential data
π Embrace the world of data and AI, and become the architect of tomorrow's technology!
π Data Analyst:
- Proficiency in SQL for database querying
- Advanced Excel for data manipulation
- Programming with Python or R for data analysis
- Statistical analysis to understand data trends
- Data visualization tools like Tableau or PowerBI
- Data preprocessing to clean and structure data
- Exploratory data analysis techniques
π§ Data Scientist:
- Strong knowledge of Python and R for statistical analysis
- Machine learning for predictive modeling
- Deep understanding of mathematics and statistics
- Data wrangling to prepare data for analysis
- Big data platforms like Hadoop or Spark
- Data visualization and communication skills
- Experience with A/B testing frameworks
π Data Engineer:
- Expertise in SQL and NoSQL databases
- Experience with data warehousing solutions
- ETL (Extract, Transform, Load) process knowledge
- Familiarity with big data tools (e.g., Apache Spark)
- Proficient in Python, Java, or Scala
- Knowledge of cloud services like AWS, GCP, or Azure
- Understanding of data pipeline and workflow management tools
π€ Machine Learning Engineer:
- Proficiency in Python and libraries like scikit-learn, TensorFlow
- Solid understanding of machine learning algorithms
- Experience with neural networks and deep learning frameworks
- Ability to implement models and fine-tune their parameters
- Knowledge of software engineering best practices
- Data modeling and evaluation strategies
- Strong mathematical skills, particularly in linear algebra and calculus
π§ Deep Learning Engineer:
- Expertise in deep learning frameworks like TensorFlow or PyTorch
- Understanding of Convolutional and Recurrent Neural Networks
- Experience with GPU computing and parallel processing
- Familiarity with computer vision and natural language processing
- Ability to handle large datasets and train complex models
- Research mindset to keep up with the latest developments in deep learning
π€― AI Engineer:
- Solid foundation in algorithms, logic, and mathematics
- Proficiency in programming languages like Python or C++
- Experience with AI technologies including ML, neural networks, and cognitive computing
- Understanding of AI model deployment and scaling
- Knowledge of AI ethics and responsible AI practices
- Strong problem-solving and analytical skills
π NLP Engineer:
- Background in linguistics and language models
- Proficiency with NLP libraries (e.g., NLTK, spaCy)
- Experience with text preprocessing and tokenization
- Understanding of sentiment analysis, text classification, and named entity recognition
- Familiarity with transformer models like BERT and GPT
- Ability to work with large text datasets and sequential data
π Embrace the world of data and AI, and become the architect of tomorrow's technology!
Job Title: Data Platform Engineer / Developer
Location- India
Job Description: This is a critical, high-impact role at the core of our client delivery capability. We are seeking a
Data Platform Engineer with architecture depth who can design and build production-grade
Apply here: https://artha.link/@codingdidi/jobs/data-platform-engineer-brainwave-india-7bd47394
Location- India
Job Description: This is a critical, high-impact role at the core of our client delivery capability. We are seeking a
Data Platform Engineer with architecture depth who can design and build production-grade
Apply here: https://artha.link/@codingdidi/jobs/data-platform-engineer-brainwave-india-7bd47394
artha.link
Senior Data Architect
Job Title-Data Architect Location- India Job Description We are seeking a hands-on Data Architect with strong engineering sensibilities to lead enterprise data... | artha.link
π Exciting AI Internship Opportunity Alert! π
We are excited to announce an internship opportunity for an AI Engineer Intern in our Search & Discovery team. This role will contribute to the development of next-generation AI-powered search and recommendation systems. The focus will be on applying Generative AI and Large Language Models (LLMs) to enhance product discovery and improve customer experience.
Please reach out to me directly on Linkedin and also send resume to gadhanja@coupang.com
We are excited to announce an internship opportunity for an AI Engineer Intern in our Search & Discovery team. This role will contribute to the development of next-generation AI-powered search and recommendation systems. The focus will be on applying Generative AI and Large Language Models (LLMs) to enhance product discovery and improve customer experience.
Please reach out to me directly on Linkedin and also send resume to gadhanja@coupang.com
Hiring: C++ & Python Developer (4β6 Years Experience)
We are looking for experienced C++ and Python developers to work on high-performance real-time data systems and scalable backend pipelines. The role involves handling streaming data, low-latency systems, cloud-based infrastructure, and large-scale data processing workflows.
Good to have:
β’ AWS or cloud platform experience
β’ Understanding of financial/crypto market data
β’ Exposure to distributed systems, real-time messaging, data engineering, and high-throughput applications
π Location: Mumbai
π’ Work Mode: WFO β 5 Days a Week
Interested candidates can share their profile at: piyushw833@gmail.com
We are looking for experienced C++ and Python developers to work on high-performance real-time data systems and scalable backend pipelines. The role involves handling streaming data, low-latency systems, cloud-based infrastructure, and large-scale data processing workflows.
Good to have:
β’ AWS or cloud platform experience
β’ Understanding of financial/crypto market data
β’ Exposure to distributed systems, real-time messaging, data engineering, and high-throughput applications
π Location: Mumbai
π’ Work Mode: WFO β 5 Days a Week
Interested candidates can share their profile at: piyushw833@gmail.com
β€1
π Weβre Hiring: AI Engineers & AI Interns!
Excited to share that my team is expanding and we are looking for passionate minds to join us in building the next generation of intelligent solutions! We have openings for both AI Engineers (2-3 years of experience) and curious AI Engineer Interns.
If you are obsessed with moving past basic prompt chaining into the world of agentic workflows, stateful multi-agent systems, and production-grade advanced RAG, this is the place for you.
π» Tech Stack & Tools we work with:
* Core: Python, PyTorch
* Agentic Frameworks: LangGraph, LlamaIndex Workflows, DSPy, CrewAI / AutoGen
* Vector Databases: Qdrant, Pinecone (Serverless), pgvector, LanceDB
* Protocols & Optimization: Model Context Protocol (MCP), Local fine-tuning & inference (MLX, Unsloth, lmstudio, vllm, ollama, etc)
π± What weβre looking for:
For AI Engineers (2-3 YOE):
* Proven experience building and deploying scalable, stateful multi-agent architectures (preferably using LangGraph or advanced event-driven workflows).
* Heavy hands-on experience with production-grade RAG pipelines, payload filtering, and hybrid search optimization using Qdrant, Pinecone, or pgvector.
* Deep understanding of algorithmic prompt optimization and compilation tools like DSPy.
* Ability to optimize model latency, manage context windows efficiently, and handle production data pipelines.
For AI Interns:
* Strong programming fundamentals in Python.
* High curiosity for modern Generative AI paradigms (Agentic AI, Vector search, and Tool Use).
* A self-starting, problem-solving mindset with a drive to learn complex frameworks quickly.
β¨ What youβll gain:
* Practical exposure to shipping state-of-the-art agentic AI features to production.
* Direct mentorship and guidance from experienced engineers pushing the boundaries of LLM tech.
* A fast-paced, high-impact environment where your code directly shapes product capabilities.
If this sounds like you (or someone you know), feel free to reach out or drop your resume to
omarkhan99@smcindiaonline.com
or kartikmanimuthu@smcindiaonline.com .
Letβs build something amazing together! π
Excited to share that my team is expanding and we are looking for passionate minds to join us in building the next generation of intelligent solutions! We have openings for both AI Engineers (2-3 years of experience) and curious AI Engineer Interns.
If you are obsessed with moving past basic prompt chaining into the world of agentic workflows, stateful multi-agent systems, and production-grade advanced RAG, this is the place for you.
π» Tech Stack & Tools we work with:
* Core: Python, PyTorch
* Agentic Frameworks: LangGraph, LlamaIndex Workflows, DSPy, CrewAI / AutoGen
* Vector Databases: Qdrant, Pinecone (Serverless), pgvector, LanceDB
* Protocols & Optimization: Model Context Protocol (MCP), Local fine-tuning & inference (MLX, Unsloth, lmstudio, vllm, ollama, etc)
π± What weβre looking for:
For AI Engineers (2-3 YOE):
* Proven experience building and deploying scalable, stateful multi-agent architectures (preferably using LangGraph or advanced event-driven workflows).
* Heavy hands-on experience with production-grade RAG pipelines, payload filtering, and hybrid search optimization using Qdrant, Pinecone, or pgvector.
* Deep understanding of algorithmic prompt optimization and compilation tools like DSPy.
* Ability to optimize model latency, manage context windows efficiently, and handle production data pipelines.
For AI Interns:
* Strong programming fundamentals in Python.
* High curiosity for modern Generative AI paradigms (Agentic AI, Vector search, and Tool Use).
* A self-starting, problem-solving mindset with a drive to learn complex frameworks quickly.
β¨ What youβll gain:
* Practical exposure to shipping state-of-the-art agentic AI features to production.
* Direct mentorship and guidance from experienced engineers pushing the boundaries of LLM tech.
* A fast-paced, high-impact environment where your code directly shapes product capabilities.
If this sounds like you (or someone you know), feel free to reach out or drop your resume to
omarkhan99@smcindiaonline.com
or kartikmanimuthu@smcindiaonline.com .
Letβs build something amazing together! π
π’ Weβre Hiring: Associate System Engineer (Entry-Level) IBM
Kick-start your career with us! Weβre inviting applications from 2024β2025 graduates who are passionate about technology, innovation, and problem-solving to join us as Associate System Engineers across multiple locations in India.
Who can apply?
β BE/BTech, ME/MTech, MCA, or https://ibm.co/6041EMBJT. (CS/IT and related specializations such as CSE, AI/ML, Data Science, Cloud Computing, Big Data, IoT, Robotics, Cybersecurity, Blockchain, etc.)
β Minimum 6 CGPA / 60% with no active backlogs
β Graduating batch of 2024 or 2025 (degree must be completed before joining)
What weβre looking for:
πΉ Programming knowledge in Java, C++, Python, or Node.js
πΉ Understanding of SDLC concepts
πΉ Strong communication & problem-solving skills
πΉ Flexibility to work from anywhere in India
If youβre ready to build impactful solutions, this is your opportunity!
Apply here: https://ibm.co/6042EMBJp
Kick-start your career with us! Weβre inviting applications from 2024β2025 graduates who are passionate about technology, innovation, and problem-solving to join us as Associate System Engineers across multiple locations in India.
Who can apply?
β BE/BTech, ME/MTech, MCA, or https://ibm.co/6041EMBJT. (CS/IT and related specializations such as CSE, AI/ML, Data Science, Cloud Computing, Big Data, IoT, Robotics, Cybersecurity, Blockchain, etc.)
β Minimum 6 CGPA / 60% with no active backlogs
β Graduating batch of 2024 or 2025 (degree must be completed before joining)
What weβre looking for:
πΉ Programming knowledge in Java, C++, Python, or Node.js
πΉ Understanding of SDLC concepts
πΉ Strong communication & problem-solving skills
πΉ Flexibility to work from anywhere in India
If youβre ready to build impactful solutions, this is your opportunity!
Apply here: https://ibm.co/6042EMBJp
β€1
π Weβre Hiring | Power BI Developer | 1 YoE
Dream IT Consulting Services is hiring a Power BI Developer with 1β2 years of experience.
π Gurugram (On-site)
πΉ Skills: Power BI, SQL, DAX, Power Query, Data Modeling
If youβre looking for a great opportunity to grow in data analytics and visualization, apply now!
π© Apply to the job below or share your resume at:
kanchan@dreamitcs.com | hr@dreamitcs.com
Dream IT Consulting Services is hiring a Power BI Developer with 1β2 years of experience.
π Gurugram (On-site)
πΉ Skills: Power BI, SQL, DAX, Power Query, Data Modeling
If youβre looking for a great opportunity to grow in data analytics and visualization, apply now!
π© Apply to the job below or share your resume at:
kanchan@dreamitcs.com | hr@dreamitcs.com
Hiring Alert | Power BI Developer | 1 YoE
We are looking for a Power BI Developer with experience in data visualization, dashboard creation, and SQL.
Skills Required:
* Power BI
* SQL
* DAX
* Data Visualization
* Excel
Experience: 1+ Years
Location: Pune
Notice Period: Immediate to 15 Days Preferred.
Interested candidates can share their updated resume at hr@vortexiasolutions.in
We are looking for a Power BI Developer with experience in data visualization, dashboard creation, and SQL.
Skills Required:
* Power BI
* SQL
* DAX
* Data Visualization
* Excel
Experience: 1+ Years
Location: Pune
Notice Period: Immediate to 15 Days Preferred.
Interested candidates can share their updated resume at hr@vortexiasolutions.in
β
BIG IT-03 - Assistant Manager β Data Engineering - Big It-03
π Hyderabad, Telangana, India, Telangana, IN
π€ Exp: Not specified
πΌ full-time β’ Not specified
π Apply Now: https://me.artha.link/eIem1yR
β BIG IT - 01 - Lead Azure Data Engineer - Big It - 01
π Hyderabad, Telangana, India, Telangana, IN
π€ Exp: Not specified
πΌ full-time β’ Not specified
π Apply Now: https://me.artha.link/4cFP5jv
β Marsh - Senior Data Analyst - Python
π Mumbai, Maharashtra, IN
π€ Exp: Not specified
πΌ Not specified β’ Not specified
π Apply Now: https://me.artha.link/6r55GxY
β Jade Business Services (JBS) - Gcp Data Engineer Lead
π Hubballi, Karnataka, IN
π€ Exp: Not specified
πΌ Not specified β’ Not specified
π Apply Now: https://me.artha.link/U0EY8Ok
β CareerUS Solutions - Machine Learning Engineer
π Kochi, Kerala, IN
π€ Exp: Not specified
πΌ Not specified β’ Not specified
π Apply Now: https://me.artha.link/OANzRQJ
π Hyderabad, Telangana, India, Telangana, IN
π€ Exp: Not specified
πΌ full-time β’ Not specified
π Apply Now: https://me.artha.link/eIem1yR
β BIG IT - 01 - Lead Azure Data Engineer - Big It - 01
π Hyderabad, Telangana, India, Telangana, IN
π€ Exp: Not specified
πΌ full-time β’ Not specified
π Apply Now: https://me.artha.link/4cFP5jv
β Marsh - Senior Data Analyst - Python
π Mumbai, Maharashtra, IN
π€ Exp: Not specified
πΌ Not specified β’ Not specified
π Apply Now: https://me.artha.link/6r55GxY
β Jade Business Services (JBS) - Gcp Data Engineer Lead
π Hubballi, Karnataka, IN
π€ Exp: Not specified
πΌ Not specified β’ Not specified
π Apply Now: https://me.artha.link/U0EY8Ok
β CareerUS Solutions - Machine Learning Engineer
π Kochi, Kerala, IN
π€ Exp: Not specified
πΌ Not specified β’ Not specified
π Apply Now: https://me.artha.link/OANzRQJ
artha.link
Assistant Manager β Data Engineering - Big It-03
About the Company A global technology consulting firm specialising in digital transformation, enterprise&... | artha.link