Skip to content
View akashkathole7's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Block or report akashkathole7

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
akashkathole7/README.md

Hi 👋, I'm Akash

🖥️ To view this in your browser, visit akashkathole7.github.io

🐍 GitHub Contribution Graph

GitHub Contribution Snake

Connect With Me🤝

LinkedIn Twitter Stack Overflow Blog Calendar

Coding and Composing share much in common :)

📚 My Latest Articles

A Hypnotic Revelation The Editorial Engine: A Technologist’s Pilgrimage

16 Apr 2025
What if the reason you’re not writing isn’t discipline, but design? A technologist reflects on blogging, voice, and where it all begins.



The Architects Who Built Our Digital Foundation The Architects Who Built Our Digital Foundation

8 Apr 2025
They wrote the code. We live in their world. Meet 5 legends behind AI, C, Unix & Apollo who redefined what's possible with software.



Grospel of Croffee: The Parable of the Maiden's Plea Grospel of Croffee: The Parable of the Maiden's Plea

21 Mar 2025
Oat milk? In keto?! A poetic tale of forbidden flavour, almond betrayal, and the sacred union of cream. The Grospel deepens.



Croffee anyone? Or Kroffee if you’re so inclined. Croffee anyone? Or Kroffee if you’re so inclined.

20 Mar 2025
Ditch almond milk! Discover Croffee: Heavy cream in coffee, the ultimate keto hack. A hilarious take on keto coffee alternatives & plant-based myths.



We Broke the Web. Now Comes the Rollback-olution™ We Broke the Web. Now Comes the Rollback-olution™

17 Mar 2025
The web has come full circle. After 25 years of over-engineering, WebO+ revives the best of Web1, Web2, and Web3 - minus the complexity.



👨 Open Source Contributions

👨 StackOverflow Contributions

Stack Overflow Contributions

I've helped ~2.3m developers on Stack Overflow, earning 7601 reputation points.

🏆 Top Answers

🏷 Top Tags

  • javascript → 13 answers (675 score)
  • jquery → 9 answers (608 score)
  • resize → 1 answers (582 score)
  • image → 1 answers (582 score)
  • sorting → 1 answers (64 score)

🏅 Badges: 0 Gold | 6 Silver | 24 Bronze
👀 Impact: ~2.3m people reached

🔗 View Full Profile



Mark streak

Pinned Loading

  1. bigmart_sales_prediction bigmart_sales_prediction Public

    Jupyter Notebook

  2. Customer-segmentation-KMeans Customer-segmentation-KMeans Public

    Jupyter Notebook

  3. Exploratory-Data-Analysis---Terrorism Exploratory-Data-Analysis---Terrorism Public

    Jupyter Notebook

  4. insurance_price_predicton insurance_price_predicton Public

    Jupyter Notebook

  5. merge_&_merge_sort.py merge_&_merge_sort.py
    1
    def merge(A,B):
    2
        (i,j,c) = (0,0,[])
    3
        (m,n) = (len(A),len(B))
    4
        while i + j < m + n:
    5
            if i == m:
  6. search_insert_position.py search_insert_position.py
    1
    def search_insert_position(data,target):
    2
        i = 0
    3
        while i < len(data):
    4
            if data[i] == target:
    5
                return i