Skip to content
View Shrinkhal01's full-sized avatar
🙉
🙉

Block or report Shrinkhal01

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Shrinkhal01/README.md

Hi, I'm Shrinkhal

A Passionate Software Developer from India

_shrinkhal


🛠️ Tech Stack

Programming Languages

c cpp java python

ML/DL Libraries

pytorch tensorflow


✨ About Me

  • 🔭 I’m currently working on Java, C++, C, Python projects.
  • 🌟 I also enjoy creating PowerPoint presentations.
  • 📫 Reach me at: [email protected].

🚀 100 Days of Code

I’ve done my **100 Days of Code** journey in Java. Feel free to explore the repository. Why Java? Well as my first ever programming language I still feel like it is the language that I would prefer to work with...

📞  Connect with Me

Twitter LinkedIn


🔥 Random Code Snippet

# A simple Python code for Fibonacci Series
def fibonacci(n):
    a, b = 0, 1
    for _ in range(n):
        print(a, end=" ")
        a, b = b, a + b

fibonacci(10)

📞  Connect with Me

Twitter LinkedIn

📅  Latest Contributions

Shrinkhal's Activity Graph

GitHub

GitHub

Pinned Loading

  1. -Real-time-Object-Detection-using-TensorFlow-and-OpenCV -Real-time-Object-Detection-using-TensorFlow-and-OpenCV Public

    This repository contains a Python script for real-time object detection using TensorFlow and OpenCV. The script utilizes a pre-trained deep learning model to detect objects in a webcam feed, provid…

    Python 4 1

  2. CHATBOT-LLama-2 CHATBOT-LLama-2 Public

    A Flask-based chat application with HTML/CSS frontend, allowing users to interact with an AI-powered bot using the Ollama Llama 2 model. Includes chat history viewing and real-time messaging capabi…

    HTML 2

  3. JAVA-PROGRAMS JAVA-PROGRAMS Public

    A diverse collection of Java programs and algorithms covering data structures, encryption techniques, sorting algorithms, and more. Perfect for students, educators, and developers looking to explor…

    Java 2