Skip to content
View Rooted1's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@EddieHubCommunity

Block or report Rooted1

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
rooted1/README.md

Hello world! Welcome to my Github profile!


Hi, I’m Ruth — a software engineer and AI graduate student.
I’m passionate about building ethical and socially responsible artificial intelligence systems. My early curiosity about how humans interact with computers — sparked while growing up in Nigeria — evolved into a career centered on problem-solving, critical thinking, and impact-driven technology.

I focus on developing intelligent systems that improve lives, particularly in healthcare and socially meaningful domains. I believe technology should not only be powerful — it should be responsible.

GIF

  • 🎓 Artificial Intelligence graduate student at UT Austin
  • 🔬 Building ethical, interpretable, and socially responsible AI systems
  • 🧠 Exploring deep learning, healthcare AI, and AI governance
  • 🤝 Seeking collaboration on high-impact AI research and production-grade systems
  • 📫 Reach me on Twitter: @rootedBugs
  • ✨ Passionate about building systems that are not just intelligent — but accountable


github-readme-stats top_langs

Popular Repos:

DS_Tutorials squlla_learning_system wefly sketchup babyfacebook project-cinemass

Pinned Loading

  1. Create a linked list in python Create a linked list in python
    1
    class Node:
    2
      def __init__(self, value, next_node=None):
    3
        self.value = value
    4
        self.next_node = next_node
    5