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

Cybersecurity Enthusiast | Linux Enthusiast

_shrinkhal GitHub Followers LinkedIn

🛠️ Tech Stack

Programming Languages

c cpp java python

ML/DL Libraries

pytorch tensorflow

Tools & Technologies

linux docker git github


✨ About Me

🔭 I’m currently working on Java, C++, C, Python projects, Linux Systems. 🌟 I also enjoy creating PowerPoint presentations. 📫 Reach me at: shrinkhalshrinkhal22@gmail.com. 🌱 I’m currently learning Machine Learning and Deep Learning. 💬 Ask me about Cybersecurity, Linux, and Programming.

🚀 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...

Check out the repository here!


📈 GitHub Stats

Shrinkhal's GitHub stats Top Languages


🐍 GitHub Contribution Snake

github-snake

💡 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 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 3

  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