Skip to content
View odaiAltmrawe's full-sized avatar

Highlights

  • Pro

Block or report odaiAltmrawe

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
odaiAltmrawe/README.md

🌟 Welcome to Odai ALtmrawe's Digital Universe 🌟

Header

Typing SVG

Coding Animation

About Me

Coding

const odai = {
    name: "Odai ALtmrawe",
    title: "Computer Engineer & Mobile Developer",
    location: "Jordan 🇯🇴",
    education: {
        degree: "BS Computer Engineering",
        university: "University of Jordan",
        gpa: "3.45/4.0",
        status: "2021 - Present"
    },
    currentRoles: [
        "📱 Native Android Instructor @ Tesla Academy",
        "👥 Mobile Team Leader @ Waves JU"
    ],
    recentAchievements: [
        "🥉 3rd Place - IEEE MotionSense AI Competition 2025",
        "🏅 6th Place - Crown Prince Award 2025"
    ],
    focus: ["Mobile Development", "FPGA Design", "AI & ML"],
    motto: "Transforming ideas into code, one commit at a time! 🚀"
};
  • 🔭 Currently working on cutting-edge Android applications and AI-powered solutions
  • 🌱 Learning advanced machine learning and computer vision techniques
  • 💡 Passionate about IoT systems, embedded programming, and FPGA design
  • ⚡ Fun fact: I built a dual-issue out-of-order processor from scratch!
  • 🎯 Goal: Creating technology that makes a positive impact

🏆 Awards & Achievements

🥉 IEEE MotionSense AI Competition 2025

3rd Place Winner Actify: AI-Powered Fitness Tracker Transforming motion data into valuable health insights

🏅 Crown Prince Award 2025

6th Place out of 150 Apps Sawtak: Civic Engagement Platform Connecting citizens with decision makers

🛠️ Tech Arsenal

💻 Programming Languages

📱 Mobile Development

🌐 Web Technologies

🤖 AI & Machine Learning

⚡ Hardware & Tools

🗄️ Databases

📊 GitHub Analytics

readme stats streak stats top langs

🐍 Contribution Snake

Snake animation

📈 Activity Graph

🏅 GitHub Trophies

GitHub Trophies

🚀 Featured Projects

🤖 AI & Machine Learning Projects

🧠 Actify - AI Fitness Tracker

🥉 3rd Place IEEE Competition Winner

Transform your motion data into actionable health insights using advanced AI algorithms.

Tech Stack:

class MotionSenseAI:
    def __init__(self):
        self.model = load_trained_model()
    
    def analyze_motion(self, sensor_data):
        insights = self.model.predict(sensor_data)
        return generate_health_recommendations(insights)

Features:

  • 🏃‍♂️ Real-time activity recognition
  • 📊 Health insights dashboard
  • 🎯 Personalized recommendations
  • 📱 Cross-platform mobile app

🗳️ Sawtak - Civic Engagement Platform

🏅 6th Place Crown Prince Award

Connecting citizens with decision makers through digital democracy.

Tech Stack:

class SawtakApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Sawtak - Your Voice Matters',
      home: CivicEngagementDashboard(),
    );
  }
}

Features:

  • 🏛️ Government integration
  • 📝 Digital voting system
  • 💬 Citizen feedback portal
  • 📊 Real-time analytics

📱 Mobile Applications

🌦️ Smart Weather & Caller App

Native Android applications with advanced features

Tech Stack:

public class WeatherService {
    private WeatherAPI weatherAPI;
    
    public WeatherData getCurrentWeather(String location) {
        return weatherAPI.fetchWeatherData(location);
    }
    
    public void setupSmartNotifications() {
        // Advanced notification system
    }
}

Features:

  • 🌡️ Real-time weather data
  • 📞 Smart call management
  • 🔔 Intelligent notifications
  • 🎨 Material Design UI

🎮 Flutter Gaming Suite

Interactive Bluetooth-enabled games

Tech Stack:

class BluetoothGameController {
  BluetoothConnection? connection;
  
  Future<void> connectToDevice() async {
    connection = await BluetoothConnection.toAddress(deviceAddress);
    startGameSession();
  }
  
  void handleJoystickInput(JoystickData data) {
    // Process gaming input
  }
}

Features:

  • 🎮 Joystick control interface
  • 💬 Real-time chat system
  • 🔗 Bluetooth connectivity
  • 🏆 Multiplayer gaming

⚡ Hardware & FPGA Projects

🖥️ Dual-Issue Out-of-Order Processor

Advanced processor architecture in Verilog

Features:

  • ⚡ Dual-issue execution engine
  • 🔄 Out-of-order processing
  • 🧠 Branch prediction unit
  • 💾 Advanced cache optimization
module dual_issue_processor(
    input clk, rst,
    input [31:0] instruction1, instruction2,
    output [31:0] result1, result2,
    output reg pipeline_stall
);

// Instruction decode and dispatch logic
always @(posedge clk) begin
    if (!pipeline_stall) begin
        // Dual instruction processing
        dispatch_unit(instruction1, instruction2);
    end
end

endmodule

🌧️ Smart Irrigation System

IoT-based weather-aware garden automation

Features:

  • 🌦️ Weather API integration
  • 💧 Smart water management
  • 📊 Real-time monitoring
  • 🔌 IoT connectivity
#include <stdio.h>
#include <wifi.h>
#include <sensors.h>

void smartIrrigation() {
    float rainfall_prob = getWeatherData();
    float soil_moisture = readSoilSensor();
    
    if (rainfall_prob < RAIN_THRESHOLD && 
        soil_moisture < MOISTURE_THRESHOLD) {
        activateIrrigation();
        logActivity("Irrigation activated");
    }
}

🌐 Web & Backend Projects

🏥 Medical Platform

Secure client-server medical data management

Tech Stack:

<?php

class MedicalController extends Controller {
    public function secureDataTransfer(Request $request) {
        $encryptedData = encrypt($request->medicalData);
        
        // TCP secure transmission
        return response()->json([
            'status' => 'secure_transfer_complete',
            'data' => $encryptedData
        ]);
    }
    
    public function generateHealthReport($patientId) {
        return HealthReportService::generate($patientId);
    }
}

Features:

  • 🔐 End-to-end encryption
  • 👨‍⚕️ Multi-role authentication
  • 📊 Health analytics dashboard
  • 🏥 Hospital integration

🤖 Intelligent Chatbot

NLP-powered conversational AI from scratch

Tech Stack:

class IntelligentChatbot:
    def __init__(self):
        self.nlp_model = self.load_trained_model()
        self.context_manager = ContextManager()
    
    def process_message(self, user_input):
        intent = self.classify_intent(user_input)
        context = self.context_manager.get_context()
        
        response = self.generate_response(intent, context)
        self.context_manager.update_context(user_input, response)
        
        return response
    
    def continuous_learning(self, feedback):
        self.retrain_model(feedback)

Features:

  • 🧠 Advanced NLP processing
  • 💬 Context-aware conversations
  • 📈 Continuous learning
  • 🎯 Intent classification

🎓 Learning Journey & Certifications

timeline
    title My Learning Timeline
    
    2019 : Android Native Java
         : First steps into mobile development
    
    2023 : Computer Vision (Udemy)
         : Verilog Training (PSTU)  
         : ROS2 Self-Learning
    
    2024 : Flutter & Dart (Udemy)
         : Advanced FPGA Design
    
    2025 : Frontend Web (HTML, CSS, JS)
         : Backend Laravel & FastAPI
         : React.js & React Native
         : Supervised ML (Coursera)
         : IEEE Competition Winner
         : Crown Prince Award
Loading

📚 Certification Timeline

Year Certification Institution Status
2019 Android Native Programming Self-Study ✅ Completed
2023 Computer Vision Udemy ✅ Completed
2023 Verilog Training PSTU ✅ Completed
2024 Flutter & Dart Udemy ✅ Completed
2025 Full Stack Web Development Multiple ✅ Completed
2025 Supervised Machine Learning Coursera ✅ Completed

📈 Detailed Analytics

Profile Summary Most Used Languages Repos per Language Stats Productive Time

🎯 Current Focus & Goals

🚀 2025 Roadmap

  • 🎯 Launch Actify: Deploy AI fitness tracker to app stores
  • 🏛️ Expand Sawtak: Scale civic engagement platform
  • 🤖 Master Advanced ML: Complete specialized AI courses
  • FPGA Innovation: Design next-gen processor architecture
  • 🌐 Open Source: Contribute to 15+ projects
  • 📚 Knowledge Sharing: Publish technical articles
  • 👥 Community Building: Mentor junior developers
  • 🎪 Startup Launch: Transform award-winning projects into products

💡 Current Learning Focus

const learningPath2025 = {
    primary: [
        "Advanced Computer Vision 👁️",
        "Edge AI & IoT Integration 🔌", 
        "Quantum Computing Fundamentals ⚛️",
        "Advanced FPGA Architecture ⚡"
    ],
    secondary: [
        "DevOps & Cloud Architecture ☁️",
        "Blockchain Development 🔗",
        "AR/VR Development 🥽",
        "Technical Leadership 👑"
    ],
    goals: {
        competitions: "Win international tech competitions 🏆",
        impact: "Create technology that changes lives 🌍",
        community: "Build a strong developer community 🤝"
    }
};

📫 Let's Connect!

🌐 Find Me Across The Internet

LinkedIn Gmail WhatsApp GitHub

Profile Views

💭 Random Dev Quote


⭐ From Odai ALtmrawe with 💜

"Innovation distinguishes between a leader and a follower" - Steve Jobs

🌟 Made with ❤️ and lots of ☕

Pinned Loading

  1. Dual-Issue-Out-of-Order-Processor Dual-Issue-Out-of-Order-Processor Public

    1